mirror of
https://github.com/lingble/chatwoot.git
synced 2026-03-20 03:52:43 +00:00
* feat: Adds pages to edit portals * Update app/javascript/dashboard/i18n/locale/en/helpCenter.json * Update app/javascript/dashboard/routes/dashboard/helpcenter/helpcenter.routes.js Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> * Review fixes * Adds translations * Fixes broken tests * Update app/javascript/dashboard/routes/dashboard/helpcenter/components/PortalPopover.vue * Update app/javascript/dashboard/routes/dashboard/helpcenter/components/PortalPopover.vue Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
83 lines
2.3 KiB
JavaScript
83 lines
2.3 KiB
JavaScript
import PortalAPI from 'dashboard/api/helpCenter/portals';
|
|
import { throwErrorMessage } from 'dashboard/store/utils/api';
|
|
import { types } from './mutations';
|
|
const portalAPIs = new PortalAPI();
|
|
export const actions = {
|
|
index: async ({ commit }) => {
|
|
try {
|
|
commit(types.SET_UI_FLAG, { isFetching: true });
|
|
const {
|
|
data: { payload, meta },
|
|
} = await portalAPIs.get();
|
|
commit(types.CLEAR_PORTALS);
|
|
const portalSlugs = payload.map(portal => portal.slug);
|
|
commit(types.ADD_MANY_PORTALS_ENTRY, payload);
|
|
commit(types.ADD_MANY_PORTALS_IDS, portalSlugs);
|
|
|
|
commit(types.SET_PORTALS_META, meta);
|
|
} catch (error) {
|
|
throwErrorMessage(error);
|
|
} finally {
|
|
commit(types.SET_UI_FLAG, { isFetching: false });
|
|
}
|
|
},
|
|
|
|
create: async ({ commit }, params) => {
|
|
commit(types.SET_UI_FLAG, { isCreating: true });
|
|
try {
|
|
const { data } = await portalAPIs.create(params);
|
|
const { slug: portalSlug } = data;
|
|
commit(types.ADD_PORTAL_ENTRY, data);
|
|
commit(types.ADD_PORTAL_ID, portalSlug);
|
|
} catch (error) {
|
|
throwErrorMessage(error);
|
|
} finally {
|
|
commit(types.SET_UI_FLAG, { isCreating: false });
|
|
}
|
|
},
|
|
|
|
update: async ({ commit }, { portalSlug, portalObj }) => {
|
|
commit(types.SET_HELP_PORTAL_UI_FLAG, {
|
|
uiFlags: { isUpdating: true },
|
|
portalSlug,
|
|
});
|
|
try {
|
|
const { data } = await portalAPIs.updatePortal({
|
|
portalSlug,
|
|
params: portalObj,
|
|
});
|
|
commit(types.UPDATE_PORTAL_ENTRY, data);
|
|
} catch (error) {
|
|
throwErrorMessage(error);
|
|
} finally {
|
|
commit(types.SET_HELP_PORTAL_UI_FLAG, {
|
|
uiFlags: { isUpdating: false },
|
|
portalSlug,
|
|
});
|
|
}
|
|
},
|
|
|
|
delete: async ({ commit }, { portalSlug }) => {
|
|
commit(types.SET_HELP_PORTAL_UI_FLAG, {
|
|
uiFlags: { isDeleting: true },
|
|
portalSlug,
|
|
});
|
|
try {
|
|
await portalAPIs.delete(portalSlug);
|
|
commit(types.REMOVE_PORTAL_ENTRY, portalSlug);
|
|
commit(types.REMOVE_PORTAL_ID, portalSlug);
|
|
} catch (error) {
|
|
throwErrorMessage(error);
|
|
} finally {
|
|
commit(types.SET_HELP_PORTAL_UI_FLAG, {
|
|
uiFlags: { isDeleting: false },
|
|
portalSlug,
|
|
});
|
|
}
|
|
},
|
|
|
|
updatePortal: async ({ commit }, portal) => {
|
|
commit(types.UPDATE_PORTAL_ENTRY, portal);
|
|
},
|
|
};
|