Restructure omni services and add Chatwoot research snapshot
This commit is contained in:
@@ -0,0 +1,84 @@
|
||||
import * as types from '../mutation-types';
|
||||
|
||||
const state = {
|
||||
currentPage: {
|
||||
me: 0,
|
||||
unassigned: 0,
|
||||
all: 0,
|
||||
appliedFilters: 0,
|
||||
},
|
||||
hasEndReached: {
|
||||
me: false,
|
||||
unassigned: false,
|
||||
all: false,
|
||||
},
|
||||
};
|
||||
|
||||
export const getters = {
|
||||
getHasEndReached: $state => filter => {
|
||||
return $state.hasEndReached[filter];
|
||||
},
|
||||
getCurrentPageFilter: $state => filter => {
|
||||
return $state.currentPage[filter];
|
||||
},
|
||||
getCurrentPage: $state => {
|
||||
return $state.currentPage;
|
||||
},
|
||||
};
|
||||
|
||||
export const actions = {
|
||||
setCurrentPage({ commit }, { filter, page }) {
|
||||
commit(types.default.SET_CURRENT_PAGE, { filter, page });
|
||||
},
|
||||
setEndReached({ commit }, { filter }) {
|
||||
commit(types.default.SET_CONVERSATION_END_REACHED, { filter });
|
||||
},
|
||||
reset({ commit }) {
|
||||
commit(types.default.CLEAR_CONVERSATION_PAGE);
|
||||
},
|
||||
};
|
||||
|
||||
export const mutations = {
|
||||
[types.default.SET_CURRENT_PAGE]: ($state, { filter, page }) => {
|
||||
$state.currentPage = {
|
||||
...$state.currentPage,
|
||||
[filter]: page,
|
||||
};
|
||||
},
|
||||
[types.default.SET_CONVERSATION_END_REACHED]: ($state, { filter }) => {
|
||||
if (filter === 'all') {
|
||||
$state.hasEndReached = {
|
||||
...$state.hasEndReached,
|
||||
unassigned: true,
|
||||
me: true,
|
||||
};
|
||||
}
|
||||
$state.hasEndReached = {
|
||||
...$state.hasEndReached,
|
||||
[filter]: true,
|
||||
};
|
||||
},
|
||||
[types.default.CLEAR_CONVERSATION_PAGE]: $state => {
|
||||
$state.currentPage = {
|
||||
me: 0,
|
||||
unassigned: 0,
|
||||
all: 0,
|
||||
appliedFilters: 0,
|
||||
};
|
||||
|
||||
$state.hasEndReached = {
|
||||
me: false,
|
||||
unassigned: false,
|
||||
all: false,
|
||||
appliedFilters: false,
|
||||
};
|
||||
},
|
||||
};
|
||||
|
||||
export default {
|
||||
namespaced: true,
|
||||
state,
|
||||
getters,
|
||||
actions,
|
||||
mutations,
|
||||
};
|
||||
Reference in New Issue
Block a user