Sha256: 2be62fba3c2307e6c9980fae220972cc334d32707b4c1b59e6dd83e51f07c5ec
Contents?: true
Size: 1.88 KB
Versions: 24
Compression:
Stored size: 1.88 KB
Contents
require 'ui_bibz/ui/ux/containers/components/panel_tab_group' module UiBibz::Ui::Ux::Containers::Components # Create a panel header # # ==== Attributes # # * +content+ - Content of element # * +options+ - Options of element # * +html_options+ - Html Options of element # # ==== Options # # You can add HTML attributes using the +html_options+. # You can pass arguments in options attribute: # # ==== Signatures # # UiBibz::Ui::Core::Boxes::PanelHeader.new(content, options = nil, html_options = nil) # # UiBibz::Ui::Core::Boxes::CarHeader.new(options = nil, html_options = nil) do # content # end # # ==== Examples # # UiBibz::Ui::Core::Boxes::PanelHeader.new.render # # UiBibz::Ui::Core::Boxes::PanelHeader.new do # 'Exemple' # end.render # class PanelHeader < UiBibz::Ui::Core::Component # See UiBibz::Ui::Core::Component.initialize def initialize content = nil, options = nil, html_options = nil, &block super end # Render html tag def pre_render content_tag :div, html_options do concat glyph_and_content_html concat @actions unless @actions.nil? end end def title text @content = content_tag :div, text, class: 'panel-title' end def actions content = nil, options = nil, html_options = nil, &block @actions = UiBibz::Ui::Core::Forms::Buttons::ButtonGroup.new(content, options, html_options).tap(&block).render end def tab_group content = nil, options = nil, html_options = nil, &block if is_tap(content, options) @content = PanelTabGroup.new(content, options, html_options).tap(&block).render else @content = PanelTabGroup.new(content, options, html_options, &block).render end end private def component_html_classes super << ['panel-header', 'justify-content-between'] end end end
Version data entries
24 entries across 24 versions & 1 rubygems