summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/reports/codequality_report/store/getters.js
blob: d7c31bcf45915f5092e35fdf564e8a39c1cfead0 (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
import { LOADING, ERROR, SUCCESS } from '../../constants';
import { sprintf, __, s__, n__ } from '~/locale';
import { spriteIcon } from '~/lib/utils/common_utils';

export const hasCodequalityIssues = state =>
  Boolean(state.newIssues?.length || state.resolvedIssues?.length);

export const codequalityStatus = state => {
  if (state.isLoading) {
    return LOADING;
  }
  if (state.hasError) {
    return ERROR;
  }

  return SUCCESS;
};

export const codequalityText = state => {
  const { newIssues, resolvedIssues } = state;
  const text = [];

  if (!newIssues.length && !resolvedIssues.length) {
    text.push(s__('ciReport|No changes to code quality'));
  } else {
    text.push(s__('ciReport|Code quality'));

    if (resolvedIssues.length) {
      text.push(n__(' improved on %d point', ' improved on %d points', resolvedIssues.length));
    }

    if (newIssues.length && resolvedIssues.length) {
      text.push(__(' and'));
    }

    if (newIssues.length) {
      text.push(n__(' degraded on %d point', ' degraded on %d points', newIssues.length));
    }
  }

  return text.join('');
};

export const codequalityPopover = state => {
  if (state.headPath && !state.basePath) {
    return {
      title: s__('ciReport|Base pipeline codequality artifact not found'),
      content: sprintf(
        s__('ciReport|%{linkStartTag}Learn more about codequality reports %{linkEndTag}'),
        {
          linkStartTag: `<a href="${state.helpPath}" target="_blank" rel="noopener noreferrer">`,
          linkEndTag: `${spriteIcon('external-link', 's16')}</a>`,
        },
        false,
      ),
    };
  }
  return {};
};