summaryrefslogtreecommitdiff
path: root/app/views/shared/nav/_sidebar_submenu.html.haml
blob: 750e6c9ee57193ff65100990f97c277f4d5a822b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
%ul.sidebar-sub-level-items{ class: ('is-fly-out-only' unless sidebar_menu.has_renderable_items?) }
  = nav_link(**sidebar_menu.all_active_routes, html_options: { class: 'fly-out-top-item' } ) do
    %span.fly-out-top-item-container
      %strong.fly-out-top-item-name
        = sidebar_menu.title
      - if sidebar_menu.has_pill?
        %span.badge.badge-pill.count.fly-out-badge{ **sidebar_menu.pill_html_options }
          = number_with_delimiter(sidebar_menu.pill_count)

  - if sidebar_menu.has_renderable_items?
    %li.divider.fly-out-top-item
    = render partial: 'shared/nav/sidebar_menu_item', collection: sidebar_menu.renderable_items