Class: ActiveAdmin::Scope
- Inherits:
-
Object
- Object
- ActiveAdmin::Scope
- Defined in:
- lib/active_admin/scope.rb
Instance Attribute Summary collapse
-
#default_block ⇒ Object
readonly
Returns the value of attribute default_block.
-
#display_if_block ⇒ Object
readonly
Returns the value of attribute display_if_block.
-
#group ⇒ Object
readonly
Returns the value of attribute group.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#scope_block ⇒ Object
readonly
Returns the value of attribute scope_block.
-
#scope_method ⇒ Object
readonly
Returns the value of attribute scope_method.
-
#show_count ⇒ Object
readonly
Returns the value of attribute show_count.
Instance Method Summary collapse
-
#initialize(name, method = nil, options = {}, &block) ⇒ Scope
constructor
Create a Scope.
- #name ⇒ Object
Constructor Details
#initialize(name, method = nil, options = {}, &block) ⇒ Scope
Create a Scope
Examples:
Scope.new(:published)
# => Scope with name 'Published' and scope method :published
Scope.new('Published', :public)
# => Scope with name 'Published' and scope method :public
Scope.new 'Published', :public, if: proc { current_admin_user.can? :manage, resource_class } do |articles|
articles.where published: true
end
# => Scope with name 'Published' and scope method :public, optionally displaying the scope per the :if block
Scope.new('Published') { |articles| articles.where(published: true) }
# => Scope with name 'Published' using a block to scope
Scope.new ->{Date.today.strftime '%A'}, :published_today
# => Scope with dynamic title using the :published_today scope method
Scope.new :published, nil, group: :status
# => Scope with the group :status
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/active_admin/scope.rb', line 31 def initialize(name, method = nil, = {}, &block) @name = name @scope_method = method.try(:to_sym) if name.is_a? Proc raise "A string/symbol is required as the second argument if your label is a proc." unless method @id = method.to_s.parameterize(separator: "_") else @scope_method ||= name.to_sym @id = name.to_s.parameterize(separator: "_") end @scope_method = nil if @scope_method == :all if block_given? @scope_method = nil @scope_block = block end @localizer = [:localizer] @show_count = .fetch(:show_count, true) @display_if_block = [:if] || proc { true } @default_block = [:default] || proc { false } @group = [:group].try(:to_sym) end |
Instance Attribute Details
#default_block ⇒ Object (readonly)
Returns the value of attribute default_block.
5 6 7 |
# File 'lib/active_admin/scope.rb', line 5 def default_block @default_block end |
#display_if_block ⇒ Object (readonly)
Returns the value of attribute display_if_block.
5 6 7 |
# File 'lib/active_admin/scope.rb', line 5 def display_if_block @display_if_block end |
#group ⇒ Object (readonly)
Returns the value of attribute group.
5 6 7 |
# File 'lib/active_admin/scope.rb', line 5 def group @group end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
5 6 7 |
# File 'lib/active_admin/scope.rb', line 5 def id @id end |
#scope_block ⇒ Object (readonly)
Returns the value of attribute scope_block.
5 6 7 |
# File 'lib/active_admin/scope.rb', line 5 def scope_block @scope_block end |
#scope_method ⇒ Object (readonly)
Returns the value of attribute scope_method.
5 6 7 |
# File 'lib/active_admin/scope.rb', line 5 def scope_method @scope_method end |
#show_count ⇒ Object (readonly)
Returns the value of attribute show_count.
5 6 7 |
# File 'lib/active_admin/scope.rb', line 5 def show_count @show_count end |
Instance Method Details
#name ⇒ Object
56 57 58 59 60 61 62 |
# File 'lib/active_admin/scope.rb', line 56 def name case @name when String then @name when Symbol then @localizer ? @localizer.t(@name, scope: "scopes") : @name.to_s.titleize else @name end end |