Restructure omni services and add Chatwoot research snapshot
This commit is contained in:
@@ -0,0 +1,89 @@
|
||||
import {
|
||||
SET_TEAM_UI_FLAG,
|
||||
CLEAR_TEAMS,
|
||||
SET_TEAMS,
|
||||
SET_TEAM_ITEM,
|
||||
EDIT_TEAM,
|
||||
DELETE_TEAM,
|
||||
} from './types';
|
||||
import TeamsAPI from '../../../api/teams';
|
||||
|
||||
export const actions = {
|
||||
create: async ({ commit }, teamInfo) => {
|
||||
commit(SET_TEAM_UI_FLAG, { isCreating: true });
|
||||
try {
|
||||
const response = await TeamsAPI.create(teamInfo);
|
||||
const team = response.data;
|
||||
commit(SET_TEAM_ITEM, team);
|
||||
return team;
|
||||
} catch (error) {
|
||||
throw new Error(error);
|
||||
} finally {
|
||||
commit(SET_TEAM_UI_FLAG, { isCreating: false });
|
||||
}
|
||||
},
|
||||
revalidate: async ({ commit }, { newKey }) => {
|
||||
try {
|
||||
const isExistingKeyValid = await TeamsAPI.validateCacheKey(newKey);
|
||||
if (!isExistingKeyValid) {
|
||||
const response = await TeamsAPI.refetchAndCommit(newKey);
|
||||
commit(SET_TEAMS, response.data);
|
||||
}
|
||||
} catch (error) {
|
||||
// Ignore error
|
||||
}
|
||||
},
|
||||
get: async ({ commit }) => {
|
||||
commit(SET_TEAM_UI_FLAG, { isFetching: true });
|
||||
try {
|
||||
const { data } = await TeamsAPI.get(true);
|
||||
commit(CLEAR_TEAMS);
|
||||
commit(SET_TEAMS, data);
|
||||
} catch (error) {
|
||||
throw new Error(error);
|
||||
} finally {
|
||||
commit(SET_TEAM_UI_FLAG, { isFetching: false });
|
||||
}
|
||||
},
|
||||
|
||||
show: async ({ commit }, { id }) => {
|
||||
commit(SET_TEAM_UI_FLAG, { isFetchingItem: true });
|
||||
try {
|
||||
const response = await TeamsAPI.show(id);
|
||||
commit(SET_TEAM_ITEM, response.data.payload);
|
||||
commit(SET_TEAM_UI_FLAG, {
|
||||
isFetchingItem: false,
|
||||
});
|
||||
} catch (error) {
|
||||
throw new Error(error);
|
||||
} finally {
|
||||
commit(SET_TEAM_UI_FLAG, {
|
||||
isFetchingItem: false,
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
update: async ({ commit }, { id, ...updateObj }) => {
|
||||
commit(SET_TEAM_UI_FLAG, { isUpdating: true });
|
||||
try {
|
||||
const response = await TeamsAPI.update(id, updateObj);
|
||||
commit(EDIT_TEAM, response.data);
|
||||
} catch (error) {
|
||||
throw new Error(error);
|
||||
} finally {
|
||||
commit(SET_TEAM_UI_FLAG, { isUpdating: false });
|
||||
}
|
||||
},
|
||||
|
||||
delete: async ({ commit }, teamId) => {
|
||||
commit(SET_TEAM_UI_FLAG, { isDeleting: true });
|
||||
try {
|
||||
await TeamsAPI.delete(teamId);
|
||||
commit(DELETE_TEAM, teamId);
|
||||
} catch (error) {
|
||||
throw new Error(error);
|
||||
} finally {
|
||||
commit(SET_TEAM_UI_FLAG, { isDeleting: false });
|
||||
}
|
||||
},
|
||||
};
|
||||
@@ -0,0 +1,24 @@
|
||||
export const getters = {
|
||||
getTeams($state) {
|
||||
return Object.values($state.records).sort((a, b) => a.id - b.id);
|
||||
},
|
||||
getTeamById: $state => id => {
|
||||
return (
|
||||
Object.values($state.records).find(record => record.id === Number(id)) ||
|
||||
{}
|
||||
);
|
||||
},
|
||||
getMyTeams($state, $getters) {
|
||||
return $getters.getTeams.filter(team => {
|
||||
const { is_member: isMember } = team;
|
||||
return isMember;
|
||||
});
|
||||
},
|
||||
getUIFlags($state) {
|
||||
return $state.uiFlags;
|
||||
},
|
||||
getTeam: $state => id => {
|
||||
const team = $state.records[id];
|
||||
return team || {};
|
||||
},
|
||||
};
|
||||
@@ -0,0 +1,22 @@
|
||||
import { getters } from './getters';
|
||||
import { actions } from './actions';
|
||||
import { mutations } from './mutations';
|
||||
|
||||
const state = {
|
||||
meta: {},
|
||||
records: {},
|
||||
uiFlags: {
|
||||
isFetching: false,
|
||||
isCreating: false,
|
||||
isUpdating: false,
|
||||
isDeleting: false,
|
||||
},
|
||||
};
|
||||
|
||||
export default {
|
||||
namespaced: true,
|
||||
state,
|
||||
getters,
|
||||
actions,
|
||||
mutations,
|
||||
};
|
||||
@@ -0,0 +1,54 @@
|
||||
import {
|
||||
SET_TEAM_UI_FLAG,
|
||||
CLEAR_TEAMS,
|
||||
SET_TEAMS,
|
||||
SET_TEAM_ITEM,
|
||||
EDIT_TEAM,
|
||||
DELETE_TEAM,
|
||||
} from './types';
|
||||
|
||||
export const mutations = {
|
||||
[SET_TEAM_UI_FLAG]($state, data) {
|
||||
$state.uiFlags = {
|
||||
...$state.uiFlags,
|
||||
...data,
|
||||
};
|
||||
},
|
||||
|
||||
[CLEAR_TEAMS]: $state => {
|
||||
$state.records = {};
|
||||
},
|
||||
|
||||
[SET_TEAMS]: ($state, data) => {
|
||||
const updatedRecords = { ...$state.records };
|
||||
data.forEach(team => {
|
||||
updatedRecords[team.id] = {
|
||||
...(updatedRecords[team.id] || {}),
|
||||
...team,
|
||||
};
|
||||
});
|
||||
$state.records = updatedRecords;
|
||||
},
|
||||
|
||||
[SET_TEAM_ITEM]: ($state, data) => {
|
||||
$state.records = {
|
||||
...$state.records,
|
||||
[data.id]: {
|
||||
...($state.records[data.id] || {}),
|
||||
...data,
|
||||
},
|
||||
};
|
||||
},
|
||||
|
||||
[EDIT_TEAM]: ($state, data) => {
|
||||
$state.records = {
|
||||
...$state.records,
|
||||
[data.id]: data,
|
||||
};
|
||||
},
|
||||
|
||||
[DELETE_TEAM]: ($state, teamId) => {
|
||||
const { [teamId]: toDelete, ...records } = $state.records;
|
||||
$state.records = records;
|
||||
},
|
||||
};
|
||||
@@ -0,0 +1,8 @@
|
||||
export const SET_TEAM_UI_FLAG = 'SET_TEAM_UI_FLAG';
|
||||
export const CLEAR_TEAMS = 'CLEAR_TEAMS';
|
||||
export const SET_TEAMS = 'SET_TEAMS';
|
||||
export const SET_TEAM_ITEM = 'SET_TEAM_ITEM';
|
||||
export const EDIT_TEAM = 'EDIT_TEAM';
|
||||
export const DELETE_TEAM = 'DELETE_TEAM';
|
||||
export const ADD_AGENTS_TO_TEAM = 'ADD_AGENTS_TO_TEAM';
|
||||
export const UPDATE_TEAMS_PRESENCE = 'UPDATE_TEAMS_PRESENCE';
|
||||
Reference in New Issue
Block a user