aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/component-measures/components/MeasureContentContainer.js
blob: faf2ee60d5fdf0b6be5aca04eb6bd5236287336d (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
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
/*
 * SonarQube
 * Copyright (C) 2009-2017 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.
 */
// @flow
import React from 'react';
import MeasureContent from './MeasureContent';
import { getBranchName } from '../../../helpers/branches';
/*:: import type { Component, Period, Query } from '../types'; */
/*:: import type { MeasureEnhanced } from '../../../components/measure/types'; */
/*:: import type { Metric } from '../../../store/metrics/actions'; */
/*:: import type { RawQuery } from '../../../helpers/query'; */

/*:: type Props = {|
  branch: {},
  className?: string,
  currentUser: { isLoggedIn: boolean },
  rootComponent: Component,
  fetchMeasures: (
    component: string,
    metricsKey: Array<string>,
    branch: string | null
  ) => Promise<{ component: Component, measures: Array<MeasureEnhanced> }>,
  leakPeriod?: Period,
  metric: Metric,
  metrics: { [string]: Metric },
  router: {
    push: ({ pathname: string, query?: RawQuery }) => void
  },
  selected: ?string,
  updateQuery: Query => void,
  view: string
|}; */

/*:: type State = {
  component: ?Component,
  loading: {
    measure: boolean,
    components: boolean
  },
  measure: ?MeasureEnhanced,
  secondaryMeasure: ?MeasureEnhanced
}; */

export default class MeasureContentContainer extends React.PureComponent {
  /*:: mounted: boolean; */
  /*:: props: Props; */
  state /*: State */ = {
    component: null,
    loading: {
      measure: false,
      components: false
    },
    measure: null,
    secondaryMeasure: null
  };

  componentDidMount() {
    this.mounted = true;
    this.fetchMeasure(this.props);
  }

  componentWillReceiveProps(nextProps /*: Props */) {
    const { component } = this.state;
    const componentChanged =
      !component ||
      nextProps.rootComponent.key !== component.key ||
      nextProps.selected !== component.key;
    if (componentChanged || nextProps.metric !== this.props.metric) {
      this.fetchMeasure(nextProps);
    }
  }

  componentWillUnmount() {
    this.mounted = false;
  }

  fetchMeasure = ({ branch, rootComponent, fetchMeasures, metric, selected } /*: Props */) => {
    this.updateLoading({ measure: true });

    const metricKeys = [metric.key];
    if (metric.key === 'ncloc') {
      metricKeys.push('ncloc_language_distribution');
    } else if (metric.key === 'function_complexity') {
      metricKeys.push('function_complexity_distribution');
    } else if (metric.key === 'file_complexity') {
      metricKeys.push('file_complexity_distribution');
    }

    fetchMeasures(selected || rootComponent.key, metricKeys, getBranchName(branch)).then(
      ({ component, measures }) => {
        if (this.mounted) {
          const measure = measures.find(measure => measure.metric.key === metric.key);
          const secondaryMeasure = measures.find(measure => measure.metric.key !== metric.key);
          this.setState({ component, measure, secondaryMeasure });
          this.updateLoading({ measure: false });
        }
      },
      () => this.updateLoading({ measure: false })
    );
  };

  updateLoading = (loading /*: { [string]: boolean } */) => {
    if (this.mounted) {
      this.setState(state => ({ loading: { ...state.loading, ...loading } }));
    }
  };

  updateSelected = (component /*: string */) =>
    this.props.updateQuery({
      selected: component !== this.props.rootComponent.key ? component : null
    });

  updateView = (view /*: string */) => this.props.updateQuery({ view });

  render() {
    if (!this.state.component) {
      return null;
    }

    return (
      <MeasureContent
        branch={this.props.branch}
        className={this.props.className}
        component={this.state.component}
        currentUser={this.props.currentUser}
        loading={this.state.loading.measure || this.state.loading.components}
        leakPeriod={this.props.leakPeriod}
        measure={this.state.measure}
        metric={this.props.metric}
        metrics={this.props.metrics}
        rootComponent={this.props.rootComponent}
        router={this.props.router}
        secondaryMeasure={this.state.secondaryMeasure}
        updateLoading={this.updateLoading}
        updateSelected={this.updateSelected}
        updateView={this.updateView}
        view={this.props.view}
      />
    );
  }
}