Sha256: 23f2359c0a140ef7c934f9da66007cc6867f1effda87f517fb5bda8b8684c159

Contents?: true

Size: 1.15 KB

Versions: 6

Compression:

Stored size: 1.15 KB

Contents

# frozen_string_literal: true

module UiBibz::Ui::Core::Boxes::Components::Body
  # Create a card block title
  #
  # ==== 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::CardBodyTitle.new(content, options = nil, html_options = nil)
  #
  #   UiBibz::Ui::Core::Boxes::CardBodyTitle.new(options = nil, html_options = nil) do
  #     content
  #   end
  #
  # ==== Examples
  #
  #   UiBibz::Ui::Core::Boxes::CardBodyTitle.new.render
  #
  #   UiBibz::Ui::Core::Boxes::CardBodyTitle.new do
  #     'Exemple'
  #   end.render
  #
  class CardBodyTitle < 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 pre_render
      content_tag :h4, content, html_options
    end

    private

    def component_html_classes
      'card-title'
    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/components/body/card_body_title.rb
ui_bibz-2.5.5 lib/ui_bibz/ui/core/boxes/components/body/card_body_title.rb
ui_bibz-2.5.3 lib/ui_bibz/ui/core/boxes/components/body/card_body_title.rb
ui_bibz-2.5.2 lib/ui_bibz/ui/core/boxes/components/body/card_body_title.rb
ui_bibz-2.5.1 lib/ui_bibz/ui/core/boxes/components/body/card_body_title.rb
ui_bibz-2.5.0 lib/ui_bibz/ui/core/boxes/components/body/card_body_title.rb