Sha256: 4bf6a5a43a13a2f42c688fa97fc698c0af6522fad8c4d77250a8f0c59b96c416

Contents?: true

Size: 1.11 KB

Versions: 9

Compression:

Stored size: 1.11 KB

Contents

# frozen_string_literal: true

module UiBibz::Ui::Core::Navigations
  # Create a NavLinkLink
  #
  # 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 element with symbol value:
  #   (+:active+)
  #
  class NavText < UiBibz::Ui::Core::Component
    # UiBibz::Ui::Core::Component.initialize

    # Render html tag
    def pre_render
      options[:nav_type] == 'nav-links' ? content_html : content_tag(:li, content_html, class: 'nav-item nav-text')
    end

    private

    def content_html
      content_tag :span, html_options do
        concat glyph_and_content_html
        concat tag_html if options[:tag]
      end
    end

    def component_html_classes
      'nav-link'
    end

    def component_html_options
      options[:nav_type] == 'nav-tabs' ? { 'data-toggle' => 'tab', role: 'tab' } : {}
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
ui_bibz-3.0.0.alpha12 lib/ui_bibz/ui/core/navigations/components/nav_text.rb
ui_bibz-3.0.0.alpha11 lib/ui_bibz/ui/core/navigations/components/nav_text.rb
ui_bibz-3.0.0.alpha10 lib/ui_bibz/ui/core/navigations/components/nav_text.rb
ui_bibz-3.0.0.alpha9 lib/ui_bibz/ui/core/navigations/components/nav_text.rb
ui_bibz-3.0.0.alpha8 lib/ui_bibz/ui/core/navigations/components/nav_text.rb
ui_bibz-3.0.0.alpha6 lib/ui_bibz/ui/core/navigations/components/nav_text.rb
ui_bibz-3.0.0.alpha5 lib/ui_bibz/ui/core/navigations/components/nav_text.rb
ui_bibz-3.0.0.alpha3 lib/ui_bibz/ui/core/navigations/components/nav_text.rb
ui_bibz-3.0.0.alpha2 lib/ui_bibz/ui/core/navigations/components/nav_text.rb