module UiBibz::Helpers::Ui::Core::NavigationsHelper

Public Instance Methods

ui_breadcrumb(content = nil, options = nil, html_options = nil, &block) click to toggle source

Breadcrumb Component

options (Hash) html_options (Hash)

# File lib/ui_bibz/helpers/ui/core/navigations_helper.rb, line 57
def ui_breadcrumb(content = nil, options = nil, html_options = nil, &block)
  if block.nil?
    UiBibz::Ui::Core::Navigations::Breadcrumb.new(content, options, html_options, &block).render
  else
    UiBibz::Ui::Core::Navigations::Breadcrumb.new(content, options, html_options).tap(&block).render
  end
end
ui_nav(content = nil, options = nil, html_options = nil, &block) click to toggle source

Nav Component

options (Hash) html_options (Hash)

# File lib/ui_bibz/helpers/ui/core/navigations_helper.rb, line 8
def ui_nav(content = nil, options = nil, html_options = nil, &block)
  UiBibz::Ui::Core::Navigations::Nav.new(content, options, html_options).tap(&block).render
end
ui_navbar(content = nil, options = nil, html_options = nil, &block) click to toggle source

Navbar Component

options (Hash) html_options (Hash)

# File lib/ui_bibz/helpers/ui/core/navigations_helper.rb, line 24
def ui_navbar(content = nil, options = nil, html_options = nil, &block)
  UiBibz::Ui::Core::Navigations::Navbar.new(content, options, html_options).tap(&block).render
end
ui_pagination(content = nil, options = nil, html_options = nil, &block) click to toggle source

Pagination Component

options (Hash) html_options (Hash)

# File lib/ui_bibz/helpers/ui/core/navigations_helper.rb, line 32
def ui_pagination(content = nil, options = nil, html_options = nil, &block)
  UiBibz::Ui::Core::Navigations::Pagination.new(content, options, html_options).tap(&block).render
end
ui_tab_group(content = nil, options = nil, html_options = nil, &block) click to toggle source

TabGroup Component

options (Hash) html_options (Hash)

# File lib/ui_bibz/helpers/ui/core/navigations_helper.rb, line 16
def ui_tab_group(content = nil, options = nil, html_options = nil, &block)
  UiBibz::Ui::Core::Navigations::TabGroup.new(content, options, html_options).tap(&block).render
end
ui_toolbar(content = nil, options = nil, html_options = nil, &block) click to toggle source

Toolbar Component

options (Hash) html_options (Hash)

# File lib/ui_bibz/helpers/ui/core/navigations_helper.rb, line 40
def ui_toolbar(content = nil, options = nil, html_options = nil, &block)
  UiBibz::Ui::Core::Navigations::Toolbar.new(content, options, html_options).tap(&block).render
end