2020-06-22 07:49:26 +00:00
|
|
|
/* eslint no-param-reassign: 0 */
|
2021-06-06 11:29:05 +00:00
|
|
|
import Vue from 'vue';
|
2020-06-22 07:49:26 +00:00
|
|
|
import * as MutationHelpers from 'shared/helpers/vuex/mutationHelpers';
|
|
|
|
import * as types from '../mutation-types';
|
|
|
|
import IntegrationsAPI from '../../api/integrations';
|
|
|
|
|
|
|
|
const state = {
|
|
|
|
records: [],
|
|
|
|
uiFlags: {
|
2021-06-06 11:29:05 +00:00
|
|
|
isCreating: false,
|
2020-06-22 07:49:26 +00:00
|
|
|
isFetching: false,
|
|
|
|
isFetchingItem: false,
|
|
|
|
isUpdating: false,
|
2021-06-06 11:29:05 +00:00
|
|
|
isCreatingHook: false,
|
|
|
|
isDeletingHook: false,
|
2020-06-22 07:49:26 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export const getters = {
|
|
|
|
getIntegrations($state) {
|
2021-06-06 11:29:05 +00:00
|
|
|
return $state.records.filter(
|
|
|
|
item => item.id !== 'fullcontact' && item.id !== 'dialogflow'
|
|
|
|
);
|
|
|
|
},
|
|
|
|
getAppIntegrations($state) {
|
|
|
|
return $state.records.filter(item => item.id === 'dialogflow');
|
2020-06-22 07:49:26 +00:00
|
|
|
},
|
|
|
|
getIntegration: $state => integrationId => {
|
|
|
|
const [integration] = $state.records.filter(
|
|
|
|
record => record.id === integrationId
|
|
|
|
);
|
|
|
|
return integration || {};
|
|
|
|
},
|
|
|
|
getUIFlags($state) {
|
|
|
|
return $state.uiFlags;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export const actions = {
|
|
|
|
get: async ({ commit }) => {
|
|
|
|
commit(types.default.SET_INTEGRATIONS_UI_FLAG, { isFetching: true });
|
|
|
|
try {
|
|
|
|
const response = await IntegrationsAPI.get();
|
|
|
|
commit(types.default.SET_INTEGRATIONS, response.data.payload);
|
|
|
|
commit(types.default.SET_INTEGRATIONS_UI_FLAG, { isFetching: false });
|
|
|
|
} catch (error) {
|
|
|
|
commit(types.default.SET_INTEGRATIONS_UI_FLAG, { isFetching: false });
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
connectSlack: async ({ commit }, code) => {
|
|
|
|
commit(types.default.SET_INTEGRATIONS_UI_FLAG, { isUpdating: true });
|
|
|
|
try {
|
|
|
|
const response = await IntegrationsAPI.connectSlack(code);
|
|
|
|
commit(types.default.ADD_INTEGRATION, response.data);
|
|
|
|
commit(types.default.SET_INTEGRATIONS_UI_FLAG, { isUpdating: false });
|
|
|
|
} catch (error) {
|
|
|
|
commit(types.default.SET_INTEGRATIONS_UI_FLAG, { isUpdating: false });
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
deleteIntegration: async ({ commit }, integrationId) => {
|
|
|
|
commit(types.default.SET_INTEGRATIONS_UI_FLAG, { isDeleting: true });
|
|
|
|
try {
|
|
|
|
await IntegrationsAPI.delete(integrationId);
|
|
|
|
commit(types.default.DELETE_INTEGRATION, {
|
|
|
|
id: integrationId,
|
|
|
|
enabled: false,
|
|
|
|
});
|
|
|
|
commit(types.default.SET_INTEGRATIONS_UI_FLAG, { isDeleting: false });
|
|
|
|
} catch (error) {
|
|
|
|
commit(types.default.SET_INTEGRATIONS_UI_FLAG, { isDeleting: false });
|
|
|
|
}
|
|
|
|
},
|
2021-06-06 11:29:05 +00:00
|
|
|
createHook: async ({ commit }, hookData) => {
|
|
|
|
commit(types.default.SET_INTEGRATIONS_UI_FLAG, { isCreatingHook: true });
|
|
|
|
try {
|
|
|
|
const response = await IntegrationsAPI.createHook(hookData);
|
|
|
|
commit(types.default.ADD_INTEGRATION_HOOKS, response.data);
|
|
|
|
commit(types.default.SET_INTEGRATIONS_UI_FLAG, { isCreatingHook: false });
|
|
|
|
} catch (error) {
|
|
|
|
commit(types.default.SET_INTEGRATIONS_UI_FLAG, { isCreatingHook: false });
|
|
|
|
throw new Error(error);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
deleteHook: async ({ commit }, { appId, hookId }) => {
|
|
|
|
commit(types.default.SET_INTEGRATIONS_UI_FLAG, { isDeletingHook: true });
|
|
|
|
try {
|
|
|
|
await IntegrationsAPI.deleteHook(hookId);
|
|
|
|
commit(types.default.DELETE_INTEGRATION_HOOKS, { appId, hookId });
|
|
|
|
commit(types.default.SET_INTEGRATIONS_UI_FLAG, { isDeletingHook: false });
|
|
|
|
} catch (error) {
|
|
|
|
commit(types.default.SET_INTEGRATIONS_UI_FLAG, { isDeletingHook: false });
|
|
|
|
throw new Error(error);
|
|
|
|
}
|
|
|
|
},
|
2020-06-22 07:49:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export const mutations = {
|
|
|
|
[types.default.SET_INTEGRATIONS_UI_FLAG]($state, uiFlag) {
|
|
|
|
$state.uiFlags = { ...$state.uiFlags, ...uiFlag };
|
|
|
|
},
|
|
|
|
[types.default.SET_INTEGRATIONS]: MutationHelpers.set,
|
|
|
|
[types.default.ADD_INTEGRATION]: MutationHelpers.updateAttributes,
|
|
|
|
[types.default.DELETE_INTEGRATION]: MutationHelpers.updateAttributes,
|
2021-06-06 11:29:05 +00:00
|
|
|
[types.default.ADD_INTEGRATION_HOOKS]: ($state, data) => {
|
|
|
|
$state.records.forEach((element, index) => {
|
|
|
|
if (element.id === data.app_id) {
|
|
|
|
const record = $state.records[index];
|
|
|
|
Vue.set(record, 'hooks', [...record.hooks, data]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
[types.default.DELETE_INTEGRATION_HOOKS]: ($state, { appId, hookId }) => {
|
|
|
|
$state.records.forEach((element, index) => {
|
|
|
|
if (element.id === appId) {
|
|
|
|
const record = $state.records[index];
|
|
|
|
const hooksWithoutDeletedHook = record.hooks.filter(
|
|
|
|
hook => hook.id !== hookId
|
|
|
|
);
|
|
|
|
Vue.set(record, 'hooks', hooksWithoutDeletedHook);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2020-06-22 07:49:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default {
|
|
|
|
namespaced: true,
|
|
|
|
state,
|
|
|
|
getters,
|
|
|
|
actions,
|
|
|
|
mutations,
|
|
|
|
};
|