mirror of
https://github.com/lingble/chatwoot.git
synced 2026-01-09 14:01:41 +00:00
* feat: allow caching of labels in the account scope * feat: send cache keys in account json response * feat: kickstart web worker * feat: setup basic architecture for workers * feat: install idb * feat: add datamanger * fix: typos * refactor: rename method * feat: make init db a manual step * refactor: separate accountIdFromRoute * feat: cache enabled API client * feat: enable caching for inboxes and labels * feat: enable cache for team * feat: manage exceptions for team * feat: add team to data manager * feat: add a generic listener * refactor: send only cache keys * refactor: separate validate method * feat: add listeners * feat: add event for revalidate * feat: add cache keys endpoint * refactor: fetch cache keys instead of full account data * fix: key pattern * feat: don't fetch account for cache_keys * fix: cache key base class * refactor: cache keys helper * feat: add helper * fix: cache-key update logic * feat: delete indexeddb on logout * feat: remove worker.js * refactor: move data-manager * refactor: name of file * feat: add test for DataManager * refactor: add fake idb to jest setup * test: cache keys helper * test: cache keys helper * test: cache_keys in accounts controller * refactor: remove cache_keys context * feat: add policy for cache-keys
118 lines
3.2 KiB
JavaScript
118 lines
3.2 KiB
JavaScript
import * as MutationHelpers from 'shared/helpers/vuex/mutationHelpers';
|
|
import types from '../mutation-types';
|
|
import LabelsAPI from '../../api/labels';
|
|
import AnalyticsHelper from '../../helper/AnalyticsHelper';
|
|
import { LABEL_EVENTS } from '../../helper/AnalyticsHelper/events';
|
|
|
|
export const state = {
|
|
records: [],
|
|
uiFlags: {
|
|
isFetching: false,
|
|
isFetchingItem: false,
|
|
isCreating: false,
|
|
isDeleting: false,
|
|
},
|
|
};
|
|
|
|
export const getters = {
|
|
getLabels(_state) {
|
|
return _state.records;
|
|
},
|
|
getUIFlags(_state) {
|
|
return _state.uiFlags;
|
|
},
|
|
getLabelsOnSidebar(_state) {
|
|
return _state.records
|
|
.filter(record => record.show_on_sidebar)
|
|
.sort((a, b) => a.title.localeCompare(b.title));
|
|
},
|
|
};
|
|
|
|
export const actions = {
|
|
revalidate: async function revalidate({ commit }, { newKey }) {
|
|
try {
|
|
const isExistingKeyValid = await LabelsAPI.validateCacheKey(newKey);
|
|
if (!isExistingKeyValid) {
|
|
const response = await LabelsAPI.refetchAndCommit(newKey);
|
|
commit(types.SET_LABELS, response.data.payload);
|
|
}
|
|
} catch (error) {
|
|
// Ignore error
|
|
}
|
|
},
|
|
|
|
get: async function getLabels({ commit }) {
|
|
commit(types.SET_LABEL_UI_FLAG, { isFetching: true });
|
|
try {
|
|
const response = await LabelsAPI.get(true);
|
|
commit(types.SET_LABELS, response.data.payload);
|
|
} catch (error) {
|
|
// Ignore error
|
|
} finally {
|
|
commit(types.SET_LABEL_UI_FLAG, { isFetching: false });
|
|
}
|
|
},
|
|
|
|
create: async function createLabels({ commit }, cannedObj) {
|
|
commit(types.SET_LABEL_UI_FLAG, { isCreating: true });
|
|
try {
|
|
const response = await LabelsAPI.create(cannedObj);
|
|
AnalyticsHelper.track(LABEL_EVENTS.CREATE);
|
|
commit(types.ADD_LABEL, response.data);
|
|
} catch (error) {
|
|
const errorMessage = error?.response?.data?.message;
|
|
throw new Error(errorMessage);
|
|
} finally {
|
|
commit(types.SET_LABEL_UI_FLAG, { isCreating: false });
|
|
}
|
|
},
|
|
|
|
update: async function updateLabels({ commit }, { id, ...updateObj }) {
|
|
commit(types.SET_LABEL_UI_FLAG, { isUpdating: true });
|
|
try {
|
|
const response = await LabelsAPI.update(id, updateObj);
|
|
AnalyticsHelper.track(LABEL_EVENTS.UPDATE);
|
|
commit(types.EDIT_LABEL, response.data);
|
|
} catch (error) {
|
|
throw new Error(error);
|
|
} finally {
|
|
commit(types.SET_LABEL_UI_FLAG, { isUpdating: false });
|
|
}
|
|
},
|
|
|
|
delete: async function deleteLabels({ commit }, id) {
|
|
commit(types.SET_LABEL_UI_FLAG, { isDeleting: true });
|
|
try {
|
|
await LabelsAPI.delete(id);
|
|
AnalyticsHelper.track(LABEL_EVENTS.DELETED);
|
|
commit(types.DELETE_LABEL, id);
|
|
} catch (error) {
|
|
throw new Error(error);
|
|
} finally {
|
|
commit(types.SET_LABEL_UI_FLAG, { isDeleting: false });
|
|
}
|
|
},
|
|
};
|
|
|
|
export const mutations = {
|
|
[types.SET_LABEL_UI_FLAG](_state, data) {
|
|
_state.uiFlags = {
|
|
..._state.uiFlags,
|
|
...data,
|
|
};
|
|
},
|
|
|
|
[types.SET_LABELS]: MutationHelpers.set,
|
|
[types.ADD_LABEL]: MutationHelpers.create,
|
|
[types.EDIT_LABEL]: MutationHelpers.update,
|
|
[types.DELETE_LABEL]: MutationHelpers.destroy,
|
|
};
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state,
|
|
getters,
|
|
actions,
|
|
mutations,
|
|
};
|