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

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;
  let text;
  if (!newIssues.length && !resolvedIssues.length) {
    text = s__('ciReport|No changes to code quality');
  } else if (newIssues.length && resolvedIssues.length) {
    text = sprintf(
      s__(`ciReport|Code quality scanning detected %{issueCount} changes in merged results`),
      {
        issueCount: newIssues.length + resolvedIssues.length,
      },
    );
  } else if (resolvedIssues.length) {
    text = n__(
      `ciReport|Code quality improved due to 1 resolved issue`,
      `ciReport|Code quality improved due to %d resolved issues`,
      resolvedIssues.length,
    );
  } else if (newIssues.length) {
    text = n__(
      `ciReport|Code quality degraded due to 1 new issue`,
      `ciReport|Code quality degraded due to %d new issues`,
      newIssues.length,
    );
  }

  return text;
};

export const codequalityPopover = (state) => {
  if (state.status === STATUS_NOT_FOUND) {
    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 {};
};