24 lines
561 B
JavaScript
24 lines
561 B
JavaScript
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);
|
|
|
|
export const getStoreConfig = ({
|
|
searchPath,
|
|
issuesPath,
|
|
mrPath,
|
|
autocompletePath,
|
|
searchContext,
|
|
}) => ({
|
|
actions,
|
|
getters,
|
|
mutations,
|
|
state: createState({ searchPath, issuesPath, mrPath, autocompletePath, searchContext }),
|
|
});
|
|
|
|
const createStore = (config) => new Vuex.Store(getStoreConfig(config));
|
|
export default createStore;
|