20 lines
577 B
JavaScript
20 lines
577 B
JavaScript
import axios from '~/lib/utils/axios_utils';
|
|
import * as types from './mutation_types';
|
|
|
|
export const fetchAutocompleteOptions = ({ commit, getters }) => {
|
|
commit(types.REQUEST_AUTOCOMPLETE);
|
|
return axios
|
|
.get(getters.autocompleteQuery)
|
|
.then(({ data }) => commit(types.RECEIVE_AUTOCOMPLETE_SUCCESS, data))
|
|
.catch(() => {
|
|
commit(types.RECEIVE_AUTOCOMPLETE_ERROR);
|
|
});
|
|
};
|
|
|
|
export const clearAutocomplete = ({ commit }) => {
|
|
commit(types.CLEAR_AUTOCOMPLETE);
|
|
};
|
|
|
|
export const setSearch = ({ commit }, value) => {
|
|
commit(types.SET_SEARCH, value);
|
|
};
|