Class: Matestack::Ui::Bootstrap::Components::Navbar
Constant Summary
collapse
- POS_ATTRIBUTES =
i[fixed_top fixed_bottom sticky_top]
Instance Method Summary
collapse
Methods included from Registry
#bs_accordion, #bs_alert, #bs_avatar, #bs_badge, #bs_breadcrumb, #bs_btn, #bs_btn_group, #bs_card, #bs_carousel, #bs_close, #bs_col, #bs_collapse, #bs_container, #bs_dropdown, #bs_figure, #bs_form_checkbox, #bs_form_input, #bs_form_radio, #bs_form_select, #bs_form_submit, #bs_form_switch, #bs_icon, #bs_list_group, #bs_modal, #bs_navbar, #bs_page_heading, #bs_pagination, #bs_popover, #bs_progress, #bs_row, #bs_scrollspy, #bs_section_card, #bs_sidebar, #bs_smart_collection, #bs_spinner, #bs_tab_nav, #bs_tab_nav_content, #bs_toast, #bs_tooltip
Instance Method Details
#prepare ⇒ Object
18
19
20
|
# File 'lib/matestack/ui/bootstrap/components/navbar.rb', line 18
def prepare
@toggle = context.toggle.is_a?(Hash) ? context.toggle : { position: context.toggle }
end
|
#response(&block) ⇒ Object
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# File 'lib/matestack/ui/bootstrap/components/navbar.rb', line 22
def response(&block)
nav navbar_attributes do
bs_container size: "#{context.container_size.present? ? context.container_size : "fluid" }" do
if slots && slots[:custom_items]
slot :custom_items
else
toggle_button if @toggle[:position] == :left
brand_partial
toggle_button if !@toggle[:position].present? || @toggle[:position] == :right
navbar_content_partial(&block)
end
end
end
end
|