Sha256: 82a6999fc517d6c0b0e418aa874818687dcd061898d642463828d2aa1bfde0ed
Contents?: true
Size: 1.5 KB
Versions: 22
Compression:
Stored size: 1.5 KB
Contents
module UiBibz::Ui::Core::Cards # Create a card 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: # # ==== Signatures # # UiBibz::Ui::Core::Cards::CardColumn.new(content, options = nil, html_options = nil) # # UiBibz::Ui::Core::Cards::CardColumn.new(options = nil, html_options = nil) do |cg| # cg.card content, options, html_options, &block # end # # ==== Examples # # UiBibz::Ui::Core::Cards::CardColumn.new do |cg| # cg.card 'Exemple 1' # cg.card 'Exemple 2' # cg.card 'Exemple 3' # end.render # class CardColumn < 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 render content_tag :div, @items.join.html_safe, html_options end def card content = nil, options = nil, html_options = nil, &block if is_tap content, options @items << UiBibz::Ui::Core::Cards::Card.new(content, options, html_options).tap(&block).render else @items << UiBibz::Ui::Core::Cards::Card.new(content, options, html_options, &block).render end end private def component_html_classes "card-columns" end end end
Version data entries
22 entries across 22 versions & 1 rubygems