2021-11-11 11:23:49 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import * as actions from './actions';
|
|
|
|
import * as getters from './getters';
|
|
|
|
import mutations from './mutations';
|
|
|
|
import createState from './state';
|
|
|
|
|
|
|
|
Vue.use(Vuex);
|
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
export const getStoreConfig = ({
|
|
|
|
searchPath,
|
|
|
|
issuesPath,
|
|
|
|
mrPath,
|
|
|
|
autocompletePath,
|
|
|
|
searchContext,
|
2022-05-07 20:08:51 +05:30
|
|
|
search,
|
2021-11-18 22:05:49 +05:30
|
|
|
}) => ({
|
2021-11-11 11:23:49 +05:30
|
|
|
actions,
|
|
|
|
getters,
|
|
|
|
mutations,
|
2022-05-07 20:08:51 +05:30
|
|
|
state: createState({ searchPath, issuesPath, mrPath, autocompletePath, searchContext, search }),
|
2021-11-11 11:23:49 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
const createStore = (config) => new Vuex.Store(getStoreConfig(config));
|
|
|
|
export default createStore;
|