e4b7b9a63d
* State structure * How to refactr action modules * feat: Add state and mutations for multiple conversation on widget * Adds actions to support multiple conversation * Fix linter errors
37 lines
670 B
JavaScript
Executable file
37 lines
670 B
JavaScript
Executable file
import { getters } from './getters';
|
|
import { actions } from './actions';
|
|
import { mutations } from './mutations';
|
|
|
|
const state = {
|
|
conversations: {
|
|
byId: {},
|
|
allIds: [],
|
|
uiFlags: {
|
|
byId: {
|
|
// 1: { allMessagesLoaded: false, isAgentTyping: false, isFetching: false },
|
|
},
|
|
},
|
|
},
|
|
messages: {
|
|
byId: {},
|
|
allIds: [],
|
|
uiFlags: {
|
|
byId: {
|
|
// 1: { isCreating: false, isPending: false, isDeleting: false },
|
|
},
|
|
},
|
|
},
|
|
uiFlags: {
|
|
allConversationsLoaded: false,
|
|
isFetching: false,
|
|
isCreating: true,
|
|
},
|
|
};
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state,
|
|
getters,
|
|
actions,
|
|
mutations,
|
|
};
|