thooams/ui_bibz

View on GitHub
lib/ui_bibz/ui/core/boxes/components/body/card_body_text.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# 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::CardBodyText.new(content, options = nil, html_options = nil)
  #
  #   UiBibz::Ui::Core::Boxes::CardBodyText.new(options = nil, html_options = nil) do
  #     content
  #   end
  #
  # ==== Examples
  #
  #   UiBibz::Ui::Core::Boxes::CardBodyText.new.render
  #
  #   UiBibz::Ui::Core::Boxes::CardBodyText.new do
  #     'Exemple'
  #   end.render
  #
  class CardBodyText < UiBibz::Ui::Core::Component
    # See UiBibz::Ui::Core::Component.initialize

    # Render html tag
    def pre_render
      content_tag :p, content.html_safe, html_options
    end

    private

    def component_html_classes
      'card-text'
    end
  end
end