mirror of
https://github.com/documenso/documenso
synced 2026-04-21 13:27:18 +00:00
166 lines
5.1 KiB
TypeScript
166 lines
5.1 KiB
TypeScript
import { trpc } from '@documenso/trpc/react';
|
|
import { Alert, AlertDescription } from '@documenso/ui/primitives/alert';
|
|
import { Button } from '@documenso/ui/primitives/button';
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from '@documenso/ui/primitives/dialog';
|
|
import { useToast } from '@documenso/ui/primitives/use-toast';
|
|
import { plural } from '@lingui/core/macro';
|
|
import { Plural, Trans, useLingui } from '@lingui/react/macro';
|
|
import { EnvelopeType } from '@prisma/client';
|
|
import type * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
|
|
export type EnvelopesBulkDeleteDialogProps = {
|
|
envelopeIds: string[];
|
|
envelopeType: EnvelopeType;
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
onSuccess?: () => void;
|
|
} & Omit<DialogPrimitive.DialogProps, 'children'>;
|
|
|
|
export const EnvelopesBulkDeleteDialog = ({
|
|
envelopeIds,
|
|
envelopeType,
|
|
open,
|
|
onOpenChange,
|
|
onSuccess,
|
|
...props
|
|
}: EnvelopesBulkDeleteDialogProps) => {
|
|
const { t } = useLingui();
|
|
const { toast } = useToast();
|
|
|
|
const trpcUtils = trpc.useUtils();
|
|
|
|
const isDocument = envelopeType === EnvelopeType.DOCUMENT;
|
|
|
|
const { mutateAsync: bulkDeleteEnvelopes, isPending } = trpc.envelope.bulk.delete.useMutation({
|
|
onSuccess: async (result) => {
|
|
// Invalidate the appropriate query based on envelope type.
|
|
if (isDocument) {
|
|
await trpcUtils.document.findDocumentsInternal.invalidate();
|
|
} else {
|
|
await trpcUtils.template.findTemplates.invalidate();
|
|
}
|
|
|
|
if (result.failedIds.length > 0) {
|
|
toast({
|
|
title: isDocument ? t`Documents partially deleted` : t`Templates partially deleted`,
|
|
description: t`${plural(result.deletedCount, {
|
|
one: '# item deleted.',
|
|
other: '# items deleted.',
|
|
})} ${plural(result.failedIds.length, {
|
|
one: '# item could not be deleted.',
|
|
other: '# items could not be deleted.',
|
|
})}`,
|
|
variant: 'destructive',
|
|
});
|
|
} else {
|
|
toast({
|
|
title: isDocument ? t`Documents deleted` : t`Templates deleted`,
|
|
description: plural(result.deletedCount, {
|
|
one: '# item has been deleted.',
|
|
other: '# items have been deleted.',
|
|
}),
|
|
variant: 'default',
|
|
});
|
|
}
|
|
|
|
onSuccess?.();
|
|
onOpenChange(false);
|
|
},
|
|
onError: () => {
|
|
toast({
|
|
title: t`Error`,
|
|
description: t`An error occurred while deleting the items.`,
|
|
variant: 'destructive',
|
|
});
|
|
},
|
|
});
|
|
|
|
return (
|
|
<Dialog {...props} open={open} onOpenChange={onOpenChange}>
|
|
<DialogContent>
|
|
<DialogHeader>
|
|
<DialogTitle>{isDocument ? <Trans>Delete Documents</Trans> : <Trans>Delete Templates</Trans>}</DialogTitle>
|
|
|
|
<DialogDescription>
|
|
{isDocument ? (
|
|
<Plural
|
|
value={envelopeIds.length}
|
|
one="You are about to delete the selected document."
|
|
other="You are about to delete # documents."
|
|
/>
|
|
) : (
|
|
<Plural
|
|
value={envelopeIds.length}
|
|
one="You are about to delete the selected template."
|
|
other="You are about to delete # templates."
|
|
/>
|
|
)}
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
|
|
<Alert variant="warning">
|
|
<AlertDescription>
|
|
<p>
|
|
<Trans>
|
|
Please note that this action is <strong>irreversible</strong>.
|
|
</Trans>
|
|
</p>
|
|
|
|
<p className="mt-1">
|
|
<Trans>Once confirmed, the following will occur:</Trans>
|
|
</p>
|
|
|
|
<ul className="mt-0.5 list-inside list-disc">
|
|
{isDocument ? (
|
|
<>
|
|
<li>
|
|
<Trans>Selected documents will be permanently deleted</Trans>
|
|
</li>
|
|
<li>
|
|
<Trans>Pending documents will have their signing process cancelled</Trans>
|
|
</li>
|
|
<li>
|
|
<Trans>All recipients will be notified</Trans>
|
|
</li>
|
|
</>
|
|
) : (
|
|
<>
|
|
<li>
|
|
<Trans>Selected templates will be permanently deleted</Trans>
|
|
</li>
|
|
<li>
|
|
<Trans>Direct links associated with templates will be removed</Trans>
|
|
</li>
|
|
</>
|
|
)}
|
|
</ul>
|
|
</AlertDescription>
|
|
</Alert>
|
|
|
|
<DialogFooter>
|
|
<Button type="button" variant="secondary" onClick={() => onOpenChange(false)} disabled={isPending}>
|
|
<Trans>Cancel</Trans>
|
|
</Button>
|
|
|
|
<Button
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
void bulkDeleteEnvelopes({ envelopeIds });
|
|
}}
|
|
loading={isPending}
|
|
variant="destructive"
|
|
>
|
|
<Trans>Delete</Trans>
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|