2021-11-18 22:05:49 +05:30
|
|
|
import createFlash from '~/flash';
|
|
|
|
import axios from '~/lib/utils/axios_utils';
|
|
|
|
import { __ } from '~/locale';
|
2021-11-11 11:23:49 +05:30
|
|
|
import * as types from './mutation_types';
|
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
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);
|
|
|
|
createFlash({ message: __('There was an error fetching search autocomplete suggestions') });
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2022-01-26 12:08:38 +05:30
|
|
|
export const clearAutocomplete = ({ commit }) => {
|
|
|
|
commit(types.CLEAR_AUTOCOMPLETE);
|
|
|
|
};
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
export const setSearch = ({ commit }, value) => {
|
|
|
|
commit(types.SET_SEARCH, value);
|
|
|
|
};
|