Sha256: aa0137b6075f37712a32cdd77909301307bd0455bc0b3f2e3a6bebe0de7229a4

Contents?: true

Size: 1.19 KB

Versions: 7

Compression:

Stored size: 1.19 KB

Contents

module UiBibz::Ui::Core::Cards::Components

  # Create a card footer
  #
  # ==== 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::CardFooter.new(content, options = nil, html_options = nil)
  #
  #   UiBibz::Ui::Core::Cards::CardFooter.new(options = nil, html_options = nil) do
  #     content
  #   end
  #
  # ==== Examples
  #
  #   UiBibz::Ui::Core::Cards::CardFooter.new.render
  #
  #   UiBibz::Ui::Core::Cards::CardFooter.new do
  #     'Exemple'
  #   end.render
  #
  class CardFooter < UiBibz::Ui::Core::Component

    # See UiBibz::Ui::Core::Component.initialize
    def initialize content = nil, options = nil, html_options = nil, &block
      super
    end

    # Render html tag
    def render
      content_tag :div, glyph_and_content_html, html_options
    end

  private

    def muted
      "text-muted" unless @options[:muted].nil?
    end

    def component_html_classes
      ["card-footer", muted]
    end

  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ui_bibz-2.0.0.alpha32 lib/ui_bibz/ui/core/cards/components/card_footer.rb
ui_bibz-2.0.0.alpha31 lib/ui_bibz/ui/core/cards/components/card_footer.rb
ui_bibz-2.0.0.alpha30 lib/ui_bibz/ui/core/cards/components/card_footer.rb
ui_bibz-2.0.0.alpha29 lib/ui_bibz/ui/core/cards/components/card_footer.rb
ui_bibz-2.0.0.alpha28 lib/ui_bibz/ui/core/cards/components/card_footer.rb
ui_bibz-2.0.0.alpha27 lib/ui_bibz/ui/core/cards/components/card_footer.rb
ui_bibz-2.0.0.alpha26 lib/ui_bibz/ui/core/cards/components/card_footer.rb