2019-09-04 21:01:54 +05:30
|
|
|
import * as mutationTypes from './mutation_types';
|
|
|
|
|
|
|
|
const notImplemented = () => {
|
2020-04-22 19:07:51 +05:30
|
|
|
/* eslint-disable-next-line @gitlab/require-i18n-strings */
|
2019-09-04 21:01:54 +05:30
|
|
|
throw new Error('Not implemented!');
|
|
|
|
};
|
|
|
|
|
|
|
|
export default {
|
2020-10-24 23:57:45 +05:30
|
|
|
[mutationTypes.SET_INITIAL_BOARD_DATA]: (state, data) => {
|
|
|
|
const { boardType, ...endpoints } = data;
|
2020-06-23 00:09:42 +05:30
|
|
|
state.endpoints = endpoints;
|
2020-10-24 23:57:45 +05:30
|
|
|
state.boardType = boardType;
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.SET_ACTIVE_ID](state, id) {
|
|
|
|
state.activeId = id;
|
2019-09-04 21:01:54 +05:30
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.REQUEST_ADD_LIST]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_ADD_LIST_SUCCESS]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_ADD_LIST_ERROR]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.REQUEST_UPDATE_LIST]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_UPDATE_LIST_SUCCESS]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_UPDATE_LIST_ERROR]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.REQUEST_REMOVE_LIST]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_REMOVE_LIST_SUCCESS]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_REMOVE_LIST_ERROR]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
[mutationTypes.REQUEST_ISSUES_FOR_ALL_LISTS]: state => {
|
|
|
|
state.isLoadingIssues = true;
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_ISSUES_FOR_ALL_LISTS_SUCCESS]: (state, listIssues) => {
|
|
|
|
state.issuesByListId = listIssues;
|
|
|
|
state.isLoadingIssues = false;
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_ISSUES_FOR_ALL_LISTS_FAILURE]: state => {
|
|
|
|
state.listIssueFetchFailure = true;
|
|
|
|
state.isLoadingIssues = false;
|
|
|
|
},
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
[mutationTypes.REQUEST_ADD_ISSUE]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_ADD_ISSUE_SUCCESS]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_ADD_ISSUE_ERROR]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.REQUEST_MOVE_ISSUE]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_MOVE_ISSUE_SUCCESS]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_MOVE_ISSUE_ERROR]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.REQUEST_UPDATE_ISSUE]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_UPDATE_ISSUE_SUCCESS]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.RECEIVE_UPDATE_ISSUE_ERROR]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.SET_CURRENT_PAGE]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
|
|
|
|
[mutationTypes.TOGGLE_EMPTY_STATE]: () => {
|
|
|
|
notImplemented();
|
|
|
|
},
|
|
|
|
};
|