Sha256: 7309e3b64b4b24da637098ecf2d773d70e7a05d3945bac4f95de3be02ea10e31

Contents?: true

Size: 1.58 KB

Versions: 6

Compression:

Stored size: 1.58 KB

Contents

# frozen_string_literal: true

module UiBibz::Ui::Core::Notifications::Components
  # Create a alert body
  #
  # ==== 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::Notifications::ToastHeader.new(content, options = nil, html_options = nil)
  #
  #   UiBibz::Ui::Core::Notifications::ToastHeader.new(options = nil, html_options = nil) do
  #     content
  #   end
  #
  # ==== Examples
  #
  #   UiBibz::Ui::Core::Notifications::ToastHeader.new.render
  #
  #   UiBibz::Ui::Core::Notifications::ToastHeader.new do
  #     'Exemple'
  #   end.render
  #
  class ToastHeader < UiBibz::Ui::Core::Component
    # See UiBibz::Ui::Core::Component.initialize

    def pre_render
      content_tag :div, html_options do
        concat UiBibz::Ui::Core::Icons::Glyph.new(options[:glyph], class: 'mr-2').render unless options[:glyph].nil?
        concat image_tag(options[:img], class: 'rounded mr-2') unless options[:img].nil?
        concat content_tag(:strong, content, class: 'mr-auto')
        concat content_tag(:small, options[:time], class: 'text-muted') unless options[:time].nil?
        concat close_button
      end
    end

    private

    def close_button
      content_tag :button, '', class: 'ml-2 mb-1 btn-close', "data-dismiss": 'toast', "aria-label": 'Close'
    end

    def component_html_classes
      'toast-header'
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ui_bibz-3.0.0.alpha9 lib/ui_bibz/ui/core/notifications/components/toast_header.rb
ui_bibz-3.0.0.alpha8 lib/ui_bibz/ui/core/notifications/components/toast_header.rb
ui_bibz-3.0.0.alpha6 lib/ui_bibz/ui/core/notifications/components/toast_header.rb
ui_bibz-3.0.0.alpha5 lib/ui_bibz/ui/core/notifications/components/toast_header.rb
ui_bibz-3.0.0.alpha3 lib/ui_bibz/ui/core/notifications/components/toast_header.rb
ui_bibz-3.0.0.alpha2 lib/ui_bibz/ui/core/notifications/components/toast_header.rb