Sha256: da32f707e5bad2e5945739fa990cadea167d32fde102d6629f09f9c810d16a37
Contents?: true
Size: 806 Bytes
Versions: 37
Compression:
Stored size: 806 Bytes
Contents
module ActiveAdmin module Views class SidebarSection < Panel builder_method :sidebar_section # Takes a ActiveAdmin::SidebarSection instance def build(section) @section = section super(@section.title) add_class @section.custom_class if @section.custom_class self.id = @section.id build_sidebar_content end # Renders attributes_table_for current resource def attributes_table(*args, &block) attributes_table_for resource, *args, &block end protected def build_sidebar_content if @section.block rvalue = instance_exec(&@section.block) self << rvalue if rvalue.is_a?(String) else render(@section.partial_name) end end end end end
Version data entries
37 entries across 37 versions & 6 rubygems