umami/src/app/(main)/settings/teams/TeamLeaveForm.tsx
2024-02-05 23:59:33 -08:00

49 lines
1.1 KiB
TypeScript

import { useApi, useMessages } from 'components/hooks';
import { touch } from 'store/modified';
import ConfirmationForm from 'components/common/ConfirmationForm';
export function TeamLeaveForm({
teamId,
userId,
teamName,
onSave,
onClose,
}: {
teamId: string;
userId: string;
teamName: string;
onSave: () => void;
onClose: () => void;
}) {
const { formatMessage, labels, messages, FormattedMessage } = useMessages();
const { del, useMutation } = useApi();
const { mutate, error, isPending } = useMutation({
mutationFn: () => del(`/teams/${teamId}/users/${userId}`),
});
const handleConfirm = async () => {
mutate(null, {
onSuccess: async () => {
touch('team:members');
onSave();
onClose();
},
});
};
return (
<ConfirmationForm
buttonLabel={formatMessage(labels.leave)}
message={
<FormattedMessage {...messages.confirmDelete} values={{ target: <b>{teamName}</b> }} />
}
onConfirm={handleConfirm}
onClose={onClose}
isLoading={isPending}
error={error}
/>
);
}
export default TeamLeaveForm;