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
|
/*
* SonarQube
* Copyright (C) 2009-2021 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import * as React from 'react';
import { FormattedMessage } from 'react-intl';
import { Link } from 'react-router';
import { getBranchLikeQuery } from '../../../helpers/branch-like';
import { translate } from '../../../helpers/l10n';
import { getBaseUrl } from '../../../helpers/system';
import { Branch } from '../../../types/branch-like';
import { ComponentQualifier } from '../../../types/component';
export interface MeasuresPanelNoNewCodeProps {
branch?: Branch;
component: T.Component;
period?: T.Period;
}
export default function MeasuresPanelNoNewCode(props: MeasuresPanelNoNewCodeProps) {
const { branch, component, period } = props;
const isApp = component.qualifier === ComponentQualifier.Application;
const hasBadReferenceBranch =
!isApp && !!period && !period.date && period.mode === 'REFERENCE_BRANCH';
/*
* If the period is "reference branch"-based, and if there's no date, it means
* that we're not lacking a second analysis, but that we'll never have new code because the
* selected reference branch is itself, or has disappeared for some reason.
* Makes no sense for Apps (project aggregate)
*/
const hasBadNewCodeSettingSameRef = hasBadReferenceBranch && branch?.name === period?.parameter;
const badExplanationKey = hasBadReferenceBranch
? hasBadNewCodeSettingSameRef
? 'overview.measures.same_reference.explanation'
: 'overview.measures.bad_reference.explanation'
: 'overview.measures.empty_explanation';
const showSettingsLink = !!(component.configuration && component.configuration.showSettings);
return (
<div className="display-flex-center display-flex-justify-center" style={{ height: 500 }}>
<img
alt="" /* Make screen readers ignore this image; it's purely eye candy. */
className="spacer-right"
height={52}
src={`${getBaseUrl()}/images/source-code.svg`}
/>
<div className="big-spacer-left text-muted" style={{ maxWidth: 500 }}>
<p className="spacer-bottom big-spacer-top big">{translate(badExplanationKey)}</p>
{hasBadNewCodeSettingSameRef ? (
showSettingsLink && (
<p>
<FormattedMessage
defaultMessage={translate('overview.measures.bad_setting.link')}
id="overview.measures.bad_setting.link"
values={{
setting_link: (
<Link
to={{
pathname: '/project/baseline',
query: { id: component.key, ...getBranchLikeQuery(branch) }
}}>
{translate('settings.new_code_period.category')}
</Link>
)
}}
/>
</p>
)
) : (
<p>
<FormattedMessage
defaultMessage={translate('overview.measures.empty_link')}
id="overview.measures.empty_link"
values={{
learn_more_link: (
<Link to="/documentation/user-guide/clean-as-you-code/">
{translate('learn_more')}
</Link>
)
}}
/>
</p>
)}
</div>
</div>
);
}
|