debian-mirror-gitlab/app/assets/javascripts/projects/commits/store/actions.js

35 lines
1 KiB
JavaScript
Raw Normal View History

2020-05-24 23:13:21 +05:30
import * as Sentry from '@sentry/browser';
2020-04-22 19:07:51 +05:30
import * as types from './mutation_types';
import axios from '~/lib/utils/axios_utils';
import createFlash from '~/flash';
import { __ } from '~/locale';
2020-06-23 00:09:42 +05:30
import { joinPaths } from '~/lib/utils/url_utility';
2020-04-22 19:07:51 +05:30
export default {
setInitialData({ commit }, data) {
commit(types.SET_INITIAL_DATA, data);
},
receiveAuthorsSuccess({ commit }, authors) {
commit(types.COMMITS_AUTHORS, authors);
},
receiveAuthorsError() {
createFlash(__('An error occurred fetching the project authors.'));
},
fetchAuthors({ dispatch, state }, author = null) {
const { projectId } = state;
return axios
2020-07-28 23:09:34 +05:30
.get(joinPaths(gon.relative_url_root || '', '/-/autocomplete/users.json'), {
2020-04-22 19:07:51 +05:30
params: {
project_id: projectId,
active: true,
search: author,
},
})
.then(({ data }) => dispatch('receiveAuthorsSuccess', data))
2020-05-24 23:13:21 +05:30
.catch(error => {
Sentry.captureException(error);
dispatch('receiveAuthorsError');
});
2020-04-22 19:07:51 +05:30
},
};