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