Class: ActiveAdmin::SidebarSection

Inherits:
Object
  • Object
show all
Includes:
OptionalDisplay
Defined in:
lib/active_admin/sidebar_section.rb

Direct Known Subclasses

Filters::ActiveSidebar

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from OptionalDisplay

#display_on?

Constructor Details

#initialize(name, options = {}, &block) ⇒ SidebarSection

Returns a new instance of SidebarSection.



9
10
11
12
13
14
# File 'lib/active_admin/sidebar_section.rb', line 9

def initialize(name, options = {}, &block)
  @name = name.to_s
  @options = options
  @block = block
  normalize_display_options!
end

Instance Attribute Details

#blockObject

Returns the value of attribute block.



7
8
9
# File 'lib/active_admin/sidebar_section.rb', line 7

def block
  @block
end

#nameObject

Returns the value of attribute name.



7
8
9
# File 'lib/active_admin/sidebar_section.rb', line 7

def name
  @name
end

#optionsObject

Returns the value of attribute options.



7
8
9
# File 'lib/active_admin/sidebar_section.rb', line 7

def options
  @options
end

Instance Method Details

#custom_classObject



31
32
33
# File 'lib/active_admin/sidebar_section.rb', line 31

def custom_class
  options[:class]
end

#idObject

The id gets used for the div in the view



17
18
19
# File 'lib/active_admin/sidebar_section.rb', line 17

def id
  "#{name.downcase.underscore}_sidebar_section".parameterize
end

#partial_nameObject

If a block is not passed in, the name of the partial to render



27
28
29
# File 'lib/active_admin/sidebar_section.rb', line 27

def partial_name
  options[:partial] || "#{name.downcase.tr(' ', '_')}_sidebar"
end

#priorityObject



35
36
37
# File 'lib/active_admin/sidebar_section.rb', line 35

def priority
  options[:priority] || 10
end

#titleObject

The title gets displayed within the section in the view



22
23
24
# File 'lib/active_admin/sidebar_section.rb', line 22

def title
  I18n.t("active_admin.sidebars.#{name}", default: name.titlecase)
end