summaryrefslogtreecommitdiff
path: root/lib/gitlab/nav/top_nav_menu_builder.rb
blob: 721ae1889b8a0e905f3bd55bd72e3b68bda703ed (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
# frozen_string_literal: true

module Gitlab
  module Nav
    class TopNavMenuBuilder
      def initialize
        @primary = []
        @secondary = []
      end

      def add_primary_menu_item(**args)
        add_menu_item(dest: @primary, **args)
      end

      def add_secondary_menu_item(**args)
        add_menu_item(dest: @secondary, **args)
      end

      def build
        {
          primary: @primary,
          secondary: @secondary
        }
      end

      private

      def add_menu_item(dest:, **args)
        item = ::Gitlab::Nav::TopNavMenuItem.build(**args)

        dest.push(item)
      end
    end
  end
end