25 lines
715 B
TypeScript
25 lines
715 B
TypeScript
import { useQueryClient, useMutation } from '@tanstack/react-query';
|
|
|
|
import { promiseSequence } from '@/portainer/helpers/promise-utils';
|
|
import {
|
|
mutationOptions,
|
|
withError,
|
|
withInvalidate,
|
|
} from '@/react-tools/react-query';
|
|
import { EnvironmentId } from '@/react/portainer/environments/types';
|
|
|
|
import { deleteEndpoint } from '../environment.service';
|
|
|
|
export function useDeleteEnvironmentsMutation() {
|
|
const queryClient = useQueryClient();
|
|
|
|
return useMutation(
|
|
(ids: Array<EnvironmentId>) =>
|
|
promiseSequence(ids.map((id) => () => deleteEndpoint(id))),
|
|
mutationOptions(
|
|
withError('Failed to remove environments'),
|
|
withInvalidate(queryClient, [['environments']])
|
|
)
|
|
);
|
|
}
|