Sha256: 87fa71407827a27a84b15ba8960d20530c46f893ab368a6f729ee5f9842303f6
Contents?: true
Size: 1.14 KB
Versions: 6
Compression:
Stored size: 1.14 KB
Contents
# frozen_string_literal: true module UiBibz::Ui::Ux::Containers::Components # Create a panel column # # ==== 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: # # ==== Examples # # UiBibz::Ui::Core::Boxes::PanelColumn.new do |cg| # cg.panel 'Exemple 1' # cg.panel 'Exemple 2' # cg.panel 'Exemple 3' # end.render # class PanelColumn < UiBibz::Ui::Core::Component # See UiBibz::Ui::Core::Component.initialize def initialize(content = nil, options = nil, html_options = nil, &block) super @items = [] end # Render html tag def pre_render content_tag :div, @items.join.html_safe, html_options end def panel(content = nil, options = nil, html_options = nil, &block) @items << UiBibz::Ui::Ux::Containers::Panel.new(content, options, html_options).tap(&block).render end private def component_html_classes 'panel-columns' end end end
Version data entries
6 entries across 6 versions & 1 rubygems