summaryrefslogtreecommitdiff
path: root/lib/sidebars/groups/menus/customer_relations_menu.rb
blob: fdbbd662ad65ac4a95700407d4762439734fd065 (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
# 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?
          can_read_contact? || can_read_organization?
        end

        private

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

        def organizations_menu_item
          ::Sidebars::MenuItem.new(
            title: _('Organizations'),
            link: organizations_group_crm_index_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