Sha256: d2b003a46b7be595ea5cc0a13c81080dd3aad21914a620d20a76550e8af740ea
Contents?: true
Size: 818 Bytes
Versions: 4
Compression:
Stored size: 818 Bytes
Contents
module ActiveAdmin module Views class Panel < ActiveAdmin::Component builder_method :panel def build(title, attributes = {}) super(attributes) add_class "panel" @title = h3(title.to_s) @contents = div(class: "panel_contents") end def add_child(child) if @contents @contents << child else super end end # Override children? to only report children when the panel's # contents have been added to. This ensures that the panel # correcly appends string values, etc. def children? @contents.children? end def header_action(*args) action = args[0] @title << div(class: "header_action") do action end end end end end
Version data entries
4 entries across 4 versions & 2 rubygems