Sha256: 4d50fb65f6d4e0a05002a1a3821fbb8141ec926c4f4962462a18548186697550

Contents?: true

Size: 1.47 KB

Versions: 6

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true

module UiBibz::Ui::Core::Navigations
  # Create a NavbarNav
  #
  # This element is an extend of UiBibz::Ui::Core::Navigations::Nav.
  #
  # ==== 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:
  # * +type+ - Symbol
  #   (+:pills+, +:tab+)
  # * +position+ - Symbol
  #   (+:right+, +:left+)
  #
  # ==== Signatures
  #
  #   UiBibz::Ui::Core::Navigations::NavbarNav.new(content, options = nil, html_options = nil)
  #
  #   UiBibz::Ui::Core::Navigations::NavbarNav.new(options = nil, html_options = nil).tap do |n|
  #     ...
  #     n.link content = nil, options = nil, html_options = nil, block
  #     ...
  #   end
  #
  # ==== Examples
  #
  #   UiBibz::Ui::Core::Navigations::NavbarNav.new().tap do |n|
  #     n.link 'Test', url: '#test'
  #     n.link 'Test2', url: '#test2', state: :active
  #   end.render
  #
  class NavbarNav < UiBibz::Ui::Core::Navigations::Nav
    # See UiBibz::Ui::Core::Navigations::Nav.initialize
    def initialize(content = nil, options = nil, html_options = nil, &block)
      super
    end

    private

    def component_html_classes
      ['navbar-nav']
    end

    def type
      'navbar-nav'
    end

    def position
      "pull-#{@options[:position]}" unless @options[:position].nil?
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ui_bibz-2.5.6 lib/ui_bibz/ui/core/navigations/components/navbar_nav.rb
ui_bibz-2.5.5 lib/ui_bibz/ui/core/navigations/components/navbar_nav.rb
ui_bibz-2.5.3 lib/ui_bibz/ui/core/navigations/components/navbar_nav.rb
ui_bibz-2.5.2 lib/ui_bibz/ui/core/navigations/components/navbar_nav.rb
ui_bibz-2.5.1 lib/ui_bibz/ui/core/navigations/components/navbar_nav.rb
ui_bibz-2.5.0 lib/ui_bibz/ui/core/navigations/components/navbar_nav.rb