aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/code/actions/index.js
blob: 6f08f352e86605ccbd04f1fd694f6ec5d194dc16 (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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
/*
 * 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 { pushPath, replacePath } from 'redux-simple-router';

import { getChildren, getComponent, getTree, getBreadcrumbs } from '../../../api/components';
import { translate } from '../../../helpers/l10n';
import { getComponentUrl } from '../../../helpers/urls';


const METRICS = [
  'ncloc',
  'code_smells',
  'bugs',
  'vulnerabilities',
  'duplicated_lines_density',
  'alert_status'
];

const METRICS_WITH_COVERAGE = [
  ...METRICS,
  'coverage',
  'it_coverage',
  'overall_coverage'
];


export const INIT = 'INIT';
export const BROWSE = 'BROWSE';
export const SEARCH = 'SEARCH';
export const SELECT_NEXT = 'SELECT_NEXT';
export const SELECT_PREV = 'SELECT_PREV';
export const UPDATE_QUERY = 'UPDATE_QUERY';
export const START_FETCHING = 'START_FETCHING';
export const STOP_FETCHING = 'STOP_FETCHING';
export const RAISE_ERROR = 'RAISE_ERROR';


export function initComponentAction (component, breadcrumbs = []) {
  return {
    type: INIT,
    component,
    breadcrumbs
  };
}

export function browseAction (component, children = [], breadcrumbs = []) {
  return {
    type: BROWSE,
    component,
    children,
    breadcrumbs
  };
}

export function searchAction (components) {
  return {
    type: SEARCH,
    components
  };
}

export function updateQueryAction (query) {
  return {
    type: UPDATE_QUERY,
    query
  };
}

export function selectNext () {
  return { type: SELECT_NEXT };
}

export function selectPrev () {
  return { type: SELECT_PREV };
}

export function startFetching () {
  return { type: START_FETCHING };
}

export function stopFetching () {
  return { type: STOP_FETCHING };
}

export function raiseError (message) {
  return {
    type: RAISE_ERROR,
    message
  };
}


function getPath (componentKey) {
  return '/' + encodeURIComponent(componentKey);
}

function expandRootDir (components) {
  const rootDir = components.find(component => component.qualifier === 'DIR' && component.name === '/');
  if (rootDir) {
    return getChildren(rootDir.key, METRICS_WITH_COVERAGE).then(files => {
      return _.without([...components, ...files], rootDir);
    });
  } else {
    return components;
  }
}

function skipRootDir (breadcrumbs) {
  return breadcrumbs.filter(component => {
    return !(component.qualifier === 'DIR' && component.name === '/');
  });
}

function retrieveComponentBase (componentKey, candidate) {
  return candidate ?
      Promise.resolve(candidate) :
      getComponent(componentKey, METRICS_WITH_COVERAGE);
}

function retrieveComponentChildren (componentKey, candidate) {
  return candidate && candidate.children ?
      Promise.resolve(candidate.children) :
      getChildren(componentKey, METRICS_WITH_COVERAGE).then(expandRootDir);
}

function retrieveComponentBreadcrumbs (componentKey, candidate) {
  return candidate && candidate.breadcrumbs ?
      Promise.resolve(candidate.breadcrumbs) :
      getBreadcrumbs({ key: componentKey }).then(skipRootDir);
}

function retrieveComponent (componentKey, bucket) {
  const candidate = _.findWhere(bucket, { key: componentKey });
  return Promise.all([
    retrieveComponentBase(componentKey, candidate),
    retrieveComponentChildren(componentKey, candidate),
    retrieveComponentBreadcrumbs(componentKey, candidate)
  ]);
}

function requestTree (query, baseComponent, dispatch) {
  dispatch(startFetching());
  return getTree(baseComponent.key, { q: query, s: 'qualifier,name' })
      .then(r => dispatch(searchAction(r.components)))
      .then(() => dispatch(stopFetching()));
}

async function getErrorMessage (response) {
  switch (response.status) {
    case 401:
      return translate('not_authorized');
    default:
      try {
        let json = await response.json();
        return json['err_msg'] ||
            (json.errors && _.pluck(json.errors, 'msg').join('. ')) ||
            translate('default_error_message');
      } catch (e) {
        return translate('default_error_message');
      }
  }
}

export function initComponent (componentKey, breadcrumbs) {
  return dispatch => {
    dispatch(startFetching());
    return getComponent(componentKey, METRICS_WITH_COVERAGE)
        .then(component => dispatch(initComponentAction(component, breadcrumbs)))
        .then(() => dispatch(replacePath(getPath(componentKey))))
        .then(() => dispatch(stopFetching()));
  };
}

export function browse (componentKey) {
  return (dispatch, getState) => {
    const { bucket } = getState();
    dispatch(startFetching());
    return retrieveComponent(componentKey, bucket)
        .then(([component, children, breadcrumbs]) => {
          if (component.refKey) {
            window.location = getComponentUrl(component.refKey);
            return new Promise();
          } else {
            dispatch(browseAction(component, children, breadcrumbs));
          }
        })
        .then(() => dispatch(pushPath(getPath(componentKey))))
        .then(() => dispatch(stopFetching()))
        .catch(e => {
          getErrorMessage(e.response)
              .then(message => dispatch(raiseError(message)));
        });
  };
}

let debouncedSearch = function (query, baseComponent, dispatch) {
  if (query) {
    requestTree(query, baseComponent, dispatch);
  } else {
    dispatch(searchAction(null));
  }
};
debouncedSearch = _.debounce(debouncedSearch, 250);

export function search (query, baseComponent) {
  return dispatch => {
    dispatch(updateQueryAction(query));

    if (query.length > 2 || !query.length) {
      debouncedSearch(query, baseComponent, dispatch);
    }
  };
}

export function selectCurrent () {
  return (dispatch, getState) => {
    const { searchResults } = getState().current;
    if (searchResults) {
      const componentKey = getState().current.searchSelectedItem.key;
      dispatch(browse(componentKey));
    }
  };
}