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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
/*
* SonarQube
* Copyright (C) 2009-2018 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 { differenceWith, map, sortBy, uniqBy } from 'lodash';
import Condition from './Condition';
import ConditionModal from './ConditionModal';
import DocTooltip from '../../../components/docs/DocTooltip';
import { translate, getLocalizedMetricName } from '../../../helpers/l10n';
import { Condition as ICondition, Metric, QualityGate } from '../../../app/types';
import ModalButton from '../../../components/controls/ModalButton';
import { Button } from '../../../components/ui/buttons';
import { Alert } from '../../../components/ui/Alert';
interface Props {
canEdit: boolean;
conditions: ICondition[];
metrics: { [key: string]: Metric };
onAddCondition: (condition: ICondition) => void;
onSaveCondition: (newCondition: ICondition, oldCondition: ICondition) => void;
onRemoveCondition: (Condition: ICondition) => void;
organization?: string;
qualityGate: QualityGate;
}
export default class Conditions extends React.PureComponent<Props> {
getConditionKey = (condition: ICondition, index: number) => {
return condition.id ? condition.id : `new-${index}`;
};
render() {
const { qualityGate, conditions, metrics, canEdit, organization } = this.props;
const existingConditions = conditions.filter(condition => metrics[condition.metric]);
const sortedConditions = sortBy(
existingConditions,
condition => metrics[condition.metric] && metrics[condition.metric].name
);
const duplicates: ICondition[] = [];
const savedConditions = existingConditions.filter(condition => condition.id != null);
savedConditions.forEach(condition => {
const sameCount = savedConditions.filter(
sample => sample.metric === condition.metric && sample.period === condition.period
).length;
if (sameCount > 1) {
duplicates.push(condition);
}
});
const uniqDuplicates = uniqBy(duplicates, d => d.metric).map(condition => ({
...condition,
metric: metrics[condition.metric]
}));
const availableMetrics = differenceWith(
map(metrics, metric => metric).filter(
metric => !metric.hidden && !['DATA', 'DISTRIB'].includes(metric.type)
),
conditions,
(metric, condition) => metric.key === condition.metric
);
return (
<div className="quality-gate-section" id="quality-gate-conditions">
{canEdit && (
<div className="pull-right">
<ModalButton
modal={({ onClose }) => (
<ConditionModal
header={translate('quality_gates.add_condition')}
metrics={availableMetrics}
onAddCondition={this.props.onAddCondition}
onClose={onClose}
organization={this.props.organization}
qualityGate={this.props.qualityGate}
/>
)}>
{({ onClick }) => (
<Button onClick={onClick}>{translate('quality_gates.add_condition')}</Button>
)}
</ModalButton>
</div>
)}
<header className="display-flex-center spacer-bottom">
<h3>{translate('quality_gates.conditions')}</h3>
<DocTooltip
className="spacer-left"
doc={import(/* webpackMode: "eager" */ 'Docs/tooltips/quality-gates/quality-gate-conditions.md')}
/>
</header>
<div className="big-spacer-bottom">{translate('quality_gates.introduction')}</div>
{uniqDuplicates.length > 0 && (
<Alert variant="warning">
<p>{translate('quality_gates.duplicated_conditions')}</p>
<ul className="list-styled spacer-top">
{uniqDuplicates.map(d => (
<li key={d.metric.key}>{getLocalizedMetricName(d.metric)}</li>
))}
</ul>
</Alert>
)}
{sortedConditions.length ? (
<table className="data zebra zebra-hover" id="quality-gate-conditions">
<thead>
<tr>
<th className="nowrap">
<div className="display-inline-flex-center">
{translate('quality_gates.conditions.metric')}
<DocTooltip
className="spacer-left"
doc={import(/* webpackMode: "eager" */ 'Docs/tooltips/quality-gates/metric.md')}
/>
</div>
</th>
<th className="thin nowrap">{translate('quality_gates.conditions.new_code')}</th>
<th className="thin nowrap">{translate('quality_gates.conditions.operator')}</th>
<th className="thin nowrap">{translate('quality_gates.conditions.warning')}</th>
<th className="thin nowrap">{translate('quality_gates.conditions.error')}</th>
{canEdit && <th />}
</tr>
</thead>
<tbody>
{sortedConditions.map((condition, index) => (
<Condition
canEdit={canEdit}
condition={condition}
key={this.getConditionKey(condition, index)}
metric={metrics[condition.metric]}
onRemoveCondition={this.props.onRemoveCondition}
onSaveCondition={this.props.onSaveCondition}
organization={organization}
qualityGate={qualityGate}
/>
))}
</tbody>
</table>
) : (
<div className="big-spacer-top">{translate('quality_gates.no_conditions')}</div>
)}
</div>
);
}
}
|