blob: 8301fd6add4b61a37d715f4ac421f9e79916a0a6 (
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
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
|
import React from 'react';
import Gate from './gate/gate';
import GeneralMain from './main/main';
import Meta from './meta';
import { SizeMain } from './domains/size-domain';
import { DuplicationsMain } from './domains/duplications-domain';
import { CoverageMain } from './domains/coverage-domain';
import { IssuesMain } from './domains/debt-domain';
import { getMetrics } from '../../api/metrics';
import { RouterMixin } from '../../components/router/router';
export const Overview = React.createClass({
mixins: [RouterMixin],
getInitialState () {
return { ready: false };
},
componentDidMount () {
this.requestMetrics();
},
requestMetrics () {
return getMetrics().then(metrics => this.setState({ ready: true, metrics }));
},
renderLoading () {
return <div className="text-center">
<i className="spinner spinner-margin"/>
</div>;
},
renderMain() {
return <div className="overview">
<div className="overview-main">
<Gate component={this.props.component} gate={this.props.gate}/>
<GeneralMain {...this.props} {...this.state} navigate={this.navigate}/>
</div>
<Meta component={this.props.component}/>
</div>;
},
renderSize () {
return <div className="overview">
<SizeMain {...this.props} {...this.state}/>
</div>;
},
renderDuplications () {
return <div className="overview">
<DuplicationsMain {...this.props} {...this.state}/>
</div>;
},
renderTests () {
return <div className="overview">
<CoverageMain {...this.props} {...this.state}/>
</div>;
},
renderIssues () {
return <div className="overview">
<IssuesMain {...this.props} {...this.state}/>
</div>;
},
render () {
if (!this.state.ready) {
return this.renderLoading();
}
switch (this.state.route) {
case '':
return this.renderMain();
case '/size':
return this.renderSize();
case '/duplications':
return this.renderDuplications();
case '/tests':
return this.renderTests();
case '/issues':
return this.renderIssues();
default:
throw new Error('Unknown route: ' + this.state.route);
}
}
});
export const EmptyOverview = React.createClass({
render() {
return (
<div className="page">
<div className="alert alert-warning">
{window.t('provisioning.no_analysis')}
</div>
</div>
);
}
});
|