summaryrefslogtreecommitdiff
path: root/lib/sidebars/projects/menus/repository_menu.rb
blob: 5bfc9e727ffbc1142bbabc1a81bfca363820ee6b (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# frozen_string_literal: true

module Sidebars
  module Projects
    module Menus
      class RepositoryMenu < ::Sidebars::Menu
        override :configure_menu_items
        def configure_menu_items
          return false unless can?(context.current_user, :read_code, context.project)
          return false if context.project.empty_repo?

          add_item(files_menu_item)
          add_item(commits_menu_item)
          add_item(branches_menu_item)
          add_item(tags_menu_item)
          add_item(contributors_menu_item)
          add_item(graphs_menu_item)
          add_item(compare_menu_item)

          true
        end

        override :extra_container_html_options
        def extra_container_html_options
          {
            class: 'shortcuts-tree'
          }
        end

        override :title
        def title
          _('Repository')
        end

        override :title_html_options
        def title_html_options
          {
            id: 'js-onboarding-repo-link'
          }
        end

        override :sprite_icon
        def sprite_icon
          'doc-text'
        end

        private

        def files_menu_item
          ::Sidebars::MenuItem.new(
            title: _('Files'),
            link: project_tree_path(context.project, context.current_ref),
            active_routes: { controller: %w[tree blob blame edit_tree new_tree find_file] },
            item_id: :files
          )
        end

        def commits_menu_item
          link = project_commits_path(context.project, context.current_ref, ref_type: ref_type_from_context(context))

          ::Sidebars::MenuItem.new(
            title: _('Commits'),
            link: link,
            active_routes: { controller: %w(commit commits) },
            item_id: :commits,
            container_html_options: { id: 'js-onboarding-commits-link' }
          )
        end

        def branches_menu_item
          ::Sidebars::MenuItem.new(
            title: _('Branches'),
            link: project_branches_path(context.project),
            active_routes: { controller: :branches },
            item_id: :branches,
            container_html_options: { id: 'js-onboarding-branches-link' }
          )
        end

        def tags_menu_item
          ::Sidebars::MenuItem.new(
            title: _('Tags'),
            link: project_tags_path(context.project),
            item_id: :tags,
            active_routes: { controller: :tags }
          )
        end

        def contributors_menu_item
          return false unless context.project.analytics_enabled?

          link = project_graph_path(context.project, context.current_ref, ref_type: ref_type_from_context(context))

          ::Sidebars::MenuItem.new(
            title: _('Contributor statistics'),
            link: link,
            active_routes: { path: 'graphs#show' },
            item_id: :contributors
          )
        end

        def graphs_menu_item
          link = project_network_path(context.project, context.current_ref, ref_type: ref_type_from_context(context))

          ::Sidebars::MenuItem.new(
            title: _('Graph'),
            link: link,
            active_routes: { controller: :network },
            item_id: :graphs
          )
        end

        def compare_menu_item
          ::Sidebars::MenuItem.new(
            title: _('Compare revisions'),
            link: project_compare_index_path(context.project, from: context.project.repository.root_ref, to: context.current_ref),
            active_routes: { controller: :compare },
            item_id: :compare
          )
        end

        def ref_type_from_context(context)
          ref_type = context.try(:ref_type)
          ref_type ||= 'heads' if context.current_ref == context.project.repository.root_ref
          ref_type
        end
      end
    end
  end
end

Sidebars::Projects::Menus::RepositoryMenu.prepend_mod_with('Sidebars::Projects::Menus::RepositoryMenu')