Sha256: 205b1d3b0a2258d44b0cba27a096746c7aa9fdf624c79807a2f32e4aa154df96
Contents?: true
Size: 1.59 KB
Versions: 13
Compression:
Stored size: 1.59 KB
Contents
# frozen_string_literal: true module UiBibz::Ui::Core::Boxes # Create a card grid # # ==== 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::CardGrid.new(content, options = nil, html_options = nil) # # UiBibz::Ui::Core::Boxes::CardGrid.new(options = nil, html_options = nil) do |cg| # cg.card content, options, html_options, &block # end # # ==== Examples # # UiBibz::Ui::Core::Boxes::CardGrid.new do |cg| # cg.card 'Exemple 1' # cg.card 'Exemple 2' # cg.card 'Exemple 3' # end.render # class CardGrid < UiBibz::Ui::Core::Layouts::Row include UiBibz::Ui::Concerns::HtmlConcern # See UiBibz::Ui::Core::Component.initialize # Render html tag def pre_render content_tag :div, @items.join.html_safe, html_options end def card(content = nil, options = nil, html_options = nil, &block) @items << content_tag(:div, if tapped?(block) UiBibz::Ui::Core::Boxes::Card.new(content, options, html_options).tap(&block).render else UiBibz::Ui::Core::Boxes::Card.new(content, options, html_options, &block).render end, class: 'col') end private def component_html_classes super << 'card-grid' end end end
Version data entries
13 entries across 13 versions & 1 rubygems