Sha256: 5706481dc8be1ee003970066669dfd1bfa1fac4a6c4f2c1ebd28b73f80edb9f6
Contents?: true
Size: 1.07 KB
Versions: 31
Compression:
Stored size: 1.07 KB
Contents
# frozen_string_literal: true module ActiveAdmin # Shareable module to give a #display_on?(action) method # which returns true or false depending on an options hash. # # The options hash accepts: # # only: :index # only: [:index, :show] # except: :index # except: [:index, :show] # # call #normalize_display_options! after @options has been set # to ensure that the display options are setup correctly module OptionalDisplay def display_on?(action, render_context = self) return false if @options[:only] && !@options[:only].include?(action.to_sym) return false if @options[:except] && @options[:except].include?(action.to_sym) case condition = @options[:if] when Symbol, String render_context.public_send condition when Proc render_context.instance_exec &condition else true end end private def normalize_display_options! @options[:only] = Array(@options[:only]) if @options[:only] @options[:except] = Array(@options[:except]) if @options[:except] end end end
Version data entries
31 entries across 31 versions & 1 rubygems