summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/sub_menus/common.rb
blob: 79054ec980218bc569e890bc7940736550f1566e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true

module QA
  module Page
    module Project
      module SubMenus
        module Common
          extend QA::Page::PageConcern
          include QA::Page::SubMenus::Common

          def self.included(base)
            super

            base.class_eval do
              view 'app/views/shared/nav/_sidebar_menu_item.html.haml' do
                element :sidebar_menu_item_link
              end

              view 'app/views/shared/nav/_sidebar_menu.html.haml' do
                element :sidebar_menu_link
              end

              view 'app/views/layouts/nav/_breadcrumbs.html.haml' do
                element :toggle_mobile_nav_button
              end
            end
          end

          private

          def sidebar_element
            QA::Runtime::Env.super_sidebar_enabled? ? :navbar : :project_sidebar
          end
        end
      end
    end
  end
end