Sha256: 746b12f55d717c80cd895374ffc9457a7a1f60199c31f6379899af4b4ae6d0db

Contents?: true

Size: 1.98 KB

Versions: 34

Compression:

Stored size: 1.98 KB

Contents

module UiBibz::Ui::Core::Notifications

  # Create a badge
  #
  # This element is an extend of UiBibz::Ui::Core::Component.
  #
  # ==== 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:
  # * +status+ - status of élement with symbol value:
  #   (+:primary+, +:secondary+, +:success+, +:danger+, +:warning+, +:info+, +:light+, +:dark+)
  # * +glyph+ - [String | Hash] Add glyph with name or hash options
  #   * +name+ - [String]
  #   * +url+ - [String] Transform span to link
  # * +type+ - [Symbol]
  #   (+:pill+, +:square+)
  #
  # ==== Signatures
  #
  #   UiBibz::Ui::Core::Notifications::Badge.new(content, options = nil, html_options = nil)
  #
  #   UiBibz::Ui::Core::Notifications::Badge.new(options = nil, html_options = nil) do
  #     content
  #   end
  #
  # ==== Examples
  #
  #   UiBibz::Ui::Core::Notifications::Badge.new(content, status: :success, type: :pill).render
  #
  #   UiBibz::Ui::Core::Notifications::Badge.new() do
  #     #content
  #   end.render
  #
  # ==== Helper
  #
  #   ui_badge(content, options = {}, html_options = {})
  #
  #   ui_badge(options = {}, html_options = {}) do
  #     content
  #   end
  #
  class Badge < 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 options[:url].nil? ? :span : :a, glyph_and_content_html, html_options
    end

  private

    def component_html_options
      super.merge(options[:url].nil? ? {} : { href: options[:url] })
    end

    def component_html_classes
      ['badge', type]
    end

    def status
      "badge-#{ @options[:status] || :default  }"
    end

    def type
      "badge-pill" if @options[:type] == :pill
    end

  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
ui_bibz-2.4.0 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.15 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.14 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.13 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.12 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.11 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.10 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.9 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.8 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.7 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.6 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.5 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.4 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.3 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.2 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.1 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.3.0 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.2.2 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.2.1 lib/ui_bibz/ui/core/notifications/badge.rb
ui_bibz-2.2.0 lib/ui_bibz/ui/core/notifications/badge.rb