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
|
/*
* SonarQube
* Copyright (C) 2009-2016 SonarSource SA
* mailto:contact 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 _ from 'underscore';
import React from 'react';
import { Histogram } from '../../../components/charts/histogram';
import { formatMeasure } from '../../../helpers/measures';
import { collapsePath } from '../../../helpers/path';
import { getComponentDrilldownUrl } from '../../../helpers/urls';
import { getChildren } from '../../../api/components';
import { translate, translateWithParameters } from '../../../helpers/l10n';
const HEIGHT = 302;
const METRIC = 'ncloc';
export const NclocDistribution = React.createClass({
propTypes: {
component: React.PropTypes.object.isRequired
},
getInitialState() {
return { loading: true, files: [] };
},
componentDidMount () {
this.requestComponents();
},
requestComponents () {
let metrics = [METRIC];
return getChildren(this.props.component.key, metrics).then(r => {
let components = r.map(component => {
let measures = {};
(component.msr || []).forEach(measure => {
measures[measure.key] = measure.val;
});
return _.extend(component, { measures });
});
this.setState({ loading: false, components });
});
},
handleBarClick(d) {
window.location = getComponentDrilldownUrl(d.component.key, 'ncloc');
},
renderLoading () {
return <div className="overview-chart-placeholder" style={{ height: HEIGHT }}>
<i className="spinner"/>
</div>;
},
renderBarChart () {
if (this.state.loading) {
return this.renderLoading();
}
let data = this.state.components.map((component, index) => {
return {
x: parseInt(component.measures[METRIC], 10),
y: index,
value: component.name,
component: component
};
});
data = _.sortBy(data, d => -d.x);
let yTicks = data.map(d => {
return {
label: collapsePath(d.value, 20),
tooltip: d.value
};
});
let yValues = data.map(d => formatMeasure(d.x, 'SHORT_INT'));
return <Histogram data={data}
yTicks={yTicks}
yValues={yValues}
height={data.length * 25}
barsWidth={10}
onBarClick={this.handleBarClick}
padding={[0, 50, 0, 240]}/>;
},
render () {
return <div className="overview-domain-chart">
<div className="overview-card-header">
<h2 className="overview-title">{translate('overview.chart.components')}</h2>
<span className="small">
{translateWithParameters('overview.chart.legend.size_x', translate('metric.ncloc.name'))}
</span>
</div>
<div className="overview-bar-chart">
{this.renderBarChart()}
</div>
</div>;
}
});
|