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

getters.js « store « security_reports « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08f6bcca15bedcf56aa15dfbd1e7f4d49225e901 (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
import { s__, sprintf } from '~/locale';
import { LOADING, ERROR, SUCCESS } from '~/reports/constants';
import { TRANSLATION_IS_LOADING } from './messages';
import { countVulnerabilities, groupedTextBuilder } from './utils';

export const summaryCounts = (state) =>
  countVulnerabilities(
    state.reportTypes.reduce((acc, reportType) => {
      acc.push(...state[reportType].newIssues);
      return acc;
    }, []),
  );

export const groupedSummaryText = (state, getters) => {
  const reportType = s__('ciReport|Security scanning');
  let status = '';

  // All reports are loading
  if (getters.areAllReportsLoading) {
    return { message: sprintf(TRANSLATION_IS_LOADING, { reportType }) };
  }

  // All reports returned error
  if (getters.allReportsHaveError) {
    return { message: s__('ciReport|Security scanning failed loading any results') };
  }

  if (getters.areReportsLoading && getters.anyReportHasError) {
    status = s__('ciReport|is loading, errors when loading results');
  } else if (getters.areReportsLoading && !getters.anyReportHasError) {
    status = s__('ciReport|is loading');
  } else if (!getters.areReportsLoading && getters.anyReportHasError) {
    status = s__('ciReport|: Loading resulted in an error');
  }

  const { critical, high, other } = getters.summaryCounts;

  return groupedTextBuilder({ reportType, status, critical, high, other });
};

export const summaryStatus = (state, getters) => {
  if (getters.areReportsLoading) {
    return LOADING;
  }

  if (getters.anyReportHasError || getters.anyReportHasIssues) {
    return ERROR;
  }

  return SUCCESS;
};

export const areReportsLoading = (state) =>
  state.reportTypes.some((reportType) => state[reportType].isLoading);

export const areAllReportsLoading = (state) =>
  state.reportTypes.every((reportType) => state[reportType].isLoading);

export const allReportsHaveError = (state) =>
  state.reportTypes.every((reportType) => state[reportType].hasError);

export const anyReportHasError = (state) =>
  state.reportTypes.some((reportType) => state[reportType].hasError);

export const anyReportHasIssues = (state) =>
  state.reportTypes.some((reportType) => state[reportType].newIssues.length > 0);