84 lines
2 KiB
JavaScript
84 lines
2 KiB
JavaScript
import produce from 'immer';
|
|
import createFlash from '~/flash';
|
|
|
|
import { DELETE_INTEGRATION_ERROR, ADD_INTEGRATION_ERROR } from './error_messages';
|
|
|
|
const deleteIntegrationFromStore = (store, query, { httpIntegrationDestroy }, variables) => {
|
|
const integration = httpIntegrationDestroy?.integration;
|
|
if (!integration) {
|
|
return;
|
|
}
|
|
|
|
const sourceData = store.readQuery({
|
|
query,
|
|
variables,
|
|
});
|
|
|
|
const data = produce(sourceData, (draftData) => {
|
|
// eslint-disable-next-line no-param-reassign
|
|
draftData.project.alertManagementIntegrations.nodes = draftData.project.alertManagementIntegrations.nodes.filter(
|
|
({ id }) => id !== integration.id,
|
|
);
|
|
});
|
|
|
|
store.writeQuery({
|
|
query,
|
|
variables,
|
|
data,
|
|
});
|
|
};
|
|
|
|
const addIntegrationToStore = (
|
|
store,
|
|
query,
|
|
{ httpIntegrationCreate, prometheusIntegrationCreate },
|
|
variables,
|
|
) => {
|
|
const integration =
|
|
httpIntegrationCreate?.integration || prometheusIntegrationCreate?.integration;
|
|
if (!integration) {
|
|
return;
|
|
}
|
|
|
|
const sourceData = store.readQuery({
|
|
query,
|
|
variables,
|
|
});
|
|
|
|
const data = produce(sourceData, (draftData) => {
|
|
// eslint-disable-next-line no-param-reassign
|
|
draftData.project.alertManagementIntegrations.nodes = [
|
|
integration,
|
|
...draftData.project.alertManagementIntegrations.nodes,
|
|
];
|
|
});
|
|
|
|
store.writeQuery({
|
|
query,
|
|
variables,
|
|
data,
|
|
});
|
|
};
|
|
|
|
const onError = (data, message) => {
|
|
createFlash({ message });
|
|
throw new Error(data.errors);
|
|
};
|
|
|
|
export const hasErrors = ({ errors = [] }) => errors?.length;
|
|
|
|
export const updateStoreAfterIntegrationDelete = (store, query, data, variables) => {
|
|
if (hasErrors(data)) {
|
|
onError(data, DELETE_INTEGRATION_ERROR);
|
|
} else {
|
|
deleteIntegrationFromStore(store, query, data, variables);
|
|
}
|
|
};
|
|
|
|
export const updateStoreAfterIntegrationAdd = (store, query, data, variables) => {
|
|
if (hasErrors(data)) {
|
|
onError(data, ADD_INTEGRATION_ERROR);
|
|
} else {
|
|
addIntegrationToStore(store, query, data, variables);
|
|
}
|
|
};
|