Welcome to mirror list, hosted at ThFree Co, Russian Federation.

customer_relations_menu.rb « menus « groups « sidebars « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0aaa6ec45f18c219cec99416f53a138fd0e00375 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# frozen_string_literal: true

module Sidebars
  module Groups
    module Menus
      class CustomerRelationsMenu < ::Sidebars::Menu
        override :configure_menu_items
        def configure_menu_items
          add_item(contacts_menu_item) if can_read_contact?
          add_item(organizations_menu_item) if can_read_organization?

          true
        end

        override :title
        def title
          _('Customer relations')
        end

        override :sprite_icon
        def sprite_icon
          'users'
        end

        override :render?
        def render?
          return false unless context.group.root?

          can_read_contact? || can_read_organization?
        end

        private

        def contacts_menu_item
          ::Sidebars::MenuItem.new(
            title: _('Contacts'),
            link: group_crm_contacts_path(context.group),
            active_routes: { path: 'groups/crm#contacts' },
            item_id: :crm_contacts
          )
        end

        def organizations_menu_item
          ::Sidebars::MenuItem.new(
            title: _('Organizations'),
            link: group_crm_organizations_path(context.group),
            active_routes: { path: 'groups/crm#organizations' },
            item_id: :crm_organizations
          )
        end

        def can_read_contact?
          can?(context.current_user, :read_crm_contact, context.group)
        end

        def can_read_organization?
          can?(context.current_user, :read_crm_organization, context.group)
        end
      end
    end
  end
end