Sha256: 58668881547adf2cc432f393b923b4b83161ce0dcb0051e7e6cae8c841887706

Contents?: true

Size: 1.61 KB

Versions: 6

Compression:

Stored size: 1.61 KB

Contents

# frozen_string_literal: true

module UiBibz::Ui::Core::Boxes
  # Create a card 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:
  #
  # ==== Signatures
  #
  #   UiBibz::Ui::Core::Boxes::CardDeck.new(content, options = nil, html_options = nil)
  #
  #   UiBibz::Ui::Core::Boxes::CardDeck.new(options = nil, html_options = nil) do
  #     cg.card content, options, html_options, &block
  #   end
  #
  # ==== Examples
  #
  #   UiBibz::Ui::Core::Boxes::CardDeck.new do |cg|
  #     cg.card 'Exemple 1'
  #     cg.card 'Exemple 2'
  #     cg.card 'Exemple 3'
  #   end.render
  #
  class CardDeck < 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, html_options do
        content_tag :div, @items.join.html_safe, class: 'card-deck'
      end
    end

    def card(content = nil, options = nil, html_options = nil, &block)
      @items << if tap? content, options
                  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
    end

    private

    def component_html_classes
      'card-deck-wrapper'
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ui_bibz-2.5.6 lib/ui_bibz/ui/core/boxes/card_deck.rb
ui_bibz-2.5.5 lib/ui_bibz/ui/core/boxes/card_deck.rb
ui_bibz-2.5.3 lib/ui_bibz/ui/core/boxes/card_deck.rb
ui_bibz-2.5.2 lib/ui_bibz/ui/core/boxes/card_deck.rb
ui_bibz-2.5.1 lib/ui_bibz/ui/core/boxes/card_deck.rb
ui_bibz-2.5.0 lib/ui_bibz/ui/core/boxes/card_deck.rb