0d9ed0674b
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
90 lines
1.9 KiB
JavaScript
90 lines
1.9 KiB
JavaScript
import Vue from 'vue';
|
|
import types from '../mutation-types';
|
|
import { throwErrorMessage } from 'dashboard/store/utils/api';
|
|
|
|
import ConversationInboxApi from '../../api/inbox/conversation';
|
|
|
|
const state = {
|
|
records: {},
|
|
uiFlags: {
|
|
isFetching: false,
|
|
isUpdating: false,
|
|
},
|
|
};
|
|
|
|
export const getters = {
|
|
getUIFlags($state) {
|
|
return $state.uiFlags;
|
|
},
|
|
getByConversationId: _state => conversationId => {
|
|
return _state.records[conversationId];
|
|
},
|
|
};
|
|
|
|
export const actions = {
|
|
show: async ({ commit }, { conversationId }) => {
|
|
commit(types.SET_CONVERSATION_WATCHERS_UI_FLAG, {
|
|
isFetching: true,
|
|
});
|
|
|
|
try {
|
|
const response = await ConversationInboxApi.fetchParticipants(
|
|
conversationId
|
|
);
|
|
commit(types.SET_CONVERSATION_WATCHERS, {
|
|
conversationId,
|
|
data: response.data,
|
|
});
|
|
} catch (error) {
|
|
throwErrorMessage(error);
|
|
} finally {
|
|
commit(types.SET_CONVERSATION_WATCHERS_UI_FLAG, {
|
|
isFetching: false,
|
|
});
|
|
}
|
|
},
|
|
|
|
update: async ({ commit }, { conversationId, userIds }) => {
|
|
commit(types.SET_CONVERSATION_WATCHERS_UI_FLAG, {
|
|
isUpdating: true,
|
|
});
|
|
|
|
try {
|
|
const response = await ConversationInboxApi.updateParticipants({
|
|
conversationId,
|
|
userIds,
|
|
});
|
|
commit(types.SET_CONVERSATION_WATCHERS, {
|
|
conversationId,
|
|
data: response.data,
|
|
});
|
|
} catch (error) {
|
|
throwErrorMessage(error);
|
|
} finally {
|
|
commit(types.SET_CONVERSATION_WATCHERS_UI_FLAG, {
|
|
isUpdating: false,
|
|
});
|
|
}
|
|
},
|
|
};
|
|
|
|
export const mutations = {
|
|
[types.SET_CONVERSATION_WATCHERS_UI_FLAG]($state, data) {
|
|
$state.uiFlags = {
|
|
...$state.uiFlags,
|
|
...data,
|
|
};
|
|
},
|
|
|
|
[types.SET_CONVERSATION_WATCHERS]($state, { data, conversationId }) {
|
|
Vue.set($state.records, conversationId, data);
|
|
},
|
|
};
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state,
|
|
getters,
|
|
actions,
|
|
mutations,
|
|
};
|