Welcome to mirror list, hosted at ThFree Co, Russian Federation.

actions.js « test_reports « stores « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71d875c1a833ab49399da25f10a3eaabe5105bb5 (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
import axios from '~/lib/utils/axios_utils';
import * as types from './mutation_types';
import createFlash from '~/flash';
import { s__ } from '~/locale';

export const setEndpoint = ({ commit }, data) => commit(types.SET_ENDPOINT, data);

export const fetchReports = ({ state, commit, dispatch }) => {
  dispatch('toggleLoading');

  return axios
    .get(state.endpoint)
    .then(response => {
      const { data } = response;
      commit(types.SET_REPORTS, data);
    })
    .catch(() => {
      createFlash(s__('TestReports|There was an error fetching the test reports.'));
    })
    .finally(() => {
      dispatch('toggleLoading');
    });
};

export const setSelectedSuite = ({ commit }, data) => commit(types.SET_SELECTED_SUITE, data);
export const removeSelectedSuite = ({ commit }) => commit(types.SET_SELECTED_SUITE, {});
export const toggleLoading = ({ commit }) => commit(types.TOGGLE_LOADING);

// prevent babel-plugin-rewire from generating an invalid default during karma tests
export default () => {};