summaryrefslogtreecommitdiff
path: root/lib/gitlab/cycle_analytics/summary/group/issue.rb
blob: 4d5ee1d43cab996c9f92a391c4869b0ed74672ba (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
# frozen_string_literal: true

module Gitlab
  module CycleAnalytics
    module Summary
      module Group
        class Issue < Group::Base
          attr_reader :group, :current_user, :options

          def initialize(group:, current_user:, options:)
            @group = group
            @current_user = current_user
            @options = options
          end

          def title
            n_('New Issue', 'New Issues', value)
          end

          def value
            @value ||= find_issues
          end

          private

          def find_issues
            issues = IssuesFinder.new(current_user, finder_params).execute
            issues = issues.where(projects: { id: options[:projects] }) if options[:projects]
            issues.count
          end

          def finder_params
            {
              group_id: group.id,
              include_subgroups: true,
              created_after: options[:from],
              created_before: options[:to]
            }.compact
          end
        end
      end
    end
  end
end