Sha256: f760a39b021c22fc70a29dffbfb5fc7af7df59dcae081ebc188c370b97e89006

Contents?: true

Size: 1.88 KB

Versions: 6

Compression:

Stored size: 1.88 KB

Contents

module UiBibz::Ui::Core::Navigations

  # Create a Link
  #
  # 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:
  # * +state+ - status of élement with symbol value:
  #   (+:active+)
  # * +url+ - String
  # * +glyph+ - Add glyph with name or hash options
  #   * +name+ - String
  #   * +size+ - Integer
  #   * +type+ - Symbol
  #
  # ==== Signatures
  #
  #   UiBibz::Ui::Core::Navigations::Link.new(content, options = nil, html_options = nil)
  #
  #   UiBibz::Ui::Core::Navigations::Link.new(options = nil, html_options = nil) do
  #     content
  #   end
  #
  # ==== Examples
  #
  #   UiBibz::Ui::Core::Navigations::Link.new('Home', { glyph: 'home', url: '#url', state: :active },{ class: 'test' }).render
  #
  #   UiBibz::Ui::Core::Navigations::Link.new({ url: '#url', glyph: { name: 'eye', size: 3}}, { class: 'test' }) do
  #     'Home'
  #   end.render
  #
  class Link < 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
      link_to glyph_and_content_html, options[:url] || '#', html_options
    end

    private

    def component_html_options
      opts = super
      opts = opts.merge(collapse) unless options[:collapse].nil?
      opts
    end

   def collapse
      attrs = { role: "button", "data-toggle": "collapse", "data-target": "##{ options[:collapse] }" }
      attrs = attrs.merge({ "aria-expanded": true }) if options[:active_collapse]
      attrs
    end

    def text
      @options[:text].nil? ? true : @options[:text]
    end

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ui_bibz-2.3.5 lib/ui_bibz/ui/core/navigations/link.rb
ui_bibz-2.3.4 lib/ui_bibz/ui/core/navigations/link.rb
ui_bibz-2.3.3 lib/ui_bibz/ui/core/navigations/link.rb
ui_bibz-2.3.2 lib/ui_bibz/ui/core/navigations/link.rb
ui_bibz-2.3.1 lib/ui_bibz/ui/core/navigations/link.rb
ui_bibz-2.3.0 lib/ui_bibz/ui/core/navigations/link.rb