Sha256: 26bcf5865b73d271a3694e5b9401039ad00144380e90978c4343ac050a379277

Contents?: true

Size: 1.28 KB

Versions: 10

Compression:

Stored size: 1.28 KB

Contents

module UiBibz::Ui::Core

  # Create a NavbarNav
  #
  # This element is an extend of UiBibz::Ui::Core::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::NavbarNav.new(content, options = nil, html_options = nil)
  #
  #   UiBibz::Ui::Core::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::NavbarNav.new().tap do |n|
  #     n.link 'Test', url: '#test'
  #     n.link 'Test2', url: '#test2', status: :active
  #   end.render
  #
  class NavbarNav < Nav

    # See UiBibz::Ui::Core::Component.initialize
    def initialize content = nil, options = nil, html_options = nil, &block
      super
    end

  private

    def type
      'navbar-nav'
    end

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

  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ui_bibz-2.0.0.alpha10 lib/ui_bibz/ui/core/nav/components/navbar_nav.rb
ui_bibz-2.0.0.alpha9 lib/ui_bibz/ui/core/nav/components/navbar_nav.rb
ui_bibz-2.0.0.alpha8 lib/ui_bibz/ui/core/nav/components/navbar_nav.rb
ui_bibz-2.0.0.alpha7 lib/ui_bibz/ui/core/nav/components/navbar_nav.rb
ui_bibz-2.0.0.alpha6 lib/ui_bibz/ui/core/nav/components/navbar_nav.rb
ui_bibz-2.0.0.alpha5 lib/ui_bibz/ui/core/nav/components/navbar_nav.rb
ui_bibz-2.0.0.alpha4 lib/ui_bibz/ui/core/nav/components/navbar_nav.rb
ui_bibz-2.0.0.alpha3 lib/ui_bibz/ui/core/nav/components/navbar_nav.rb
ui_bibz-2.0.0.alpha2 lib/ui_bibz/ui/core/nav/components/navbar_nav.rb
ui_bibz-2.0.0.alpha lib/ui_bibz/ui/core/nav/components/navbar_nav.rb