175 lines
4.6 KiB
TypeScript
175 lines
4.6 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { msg } from '@lingui/core/macro';
|
|
import { Trans } from '@lingui/react/macro';
|
|
import type { Document } from '@prisma/client';
|
|
import { useForm } from 'react-hook-form';
|
|
import { useNavigate } from 'react-router';
|
|
import { useSearchParams } from 'react-router';
|
|
import { z } from 'zod';
|
|
|
|
import { trpc } from '@documenso/trpc/react';
|
|
import { Button } from '@documenso/ui/primitives/button';
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from '@documenso/ui/primitives/dialog';
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormMessage,
|
|
} from '@documenso/ui/primitives/form/form';
|
|
import { Textarea } from '@documenso/ui/primitives/textarea';
|
|
import { useToast } from '@documenso/ui/primitives/use-toast';
|
|
|
|
const ZRejectDocumentFormSchema = z.object({
|
|
reason: z.string().max(500, msg`Reason must be less than 500 characters`),
|
|
});
|
|
|
|
type TRejectDocumentFormSchema = z.infer<typeof ZRejectDocumentFormSchema>;
|
|
|
|
export interface DocumentSigningRejectDialogProps {
|
|
document: Pick<Document, 'id'>;
|
|
token: string;
|
|
onRejected?: (reason: string) => void | Promise<void>;
|
|
}
|
|
|
|
export function DocumentSigningRejectDialog({
|
|
document,
|
|
token,
|
|
onRejected,
|
|
}: DocumentSigningRejectDialogProps) {
|
|
const { toast } = useToast();
|
|
const navigate = useNavigate();
|
|
const [searchParams] = useSearchParams();
|
|
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
|
|
const { mutateAsync: rejectDocumentWithToken } =
|
|
trpc.recipient.rejectDocumentWithToken.useMutation();
|
|
|
|
const form = useForm<TRejectDocumentFormSchema>({
|
|
resolver: zodResolver(ZRejectDocumentFormSchema),
|
|
defaultValues: {
|
|
reason: '',
|
|
},
|
|
});
|
|
|
|
const onRejectDocument = async ({ reason }: TRejectDocumentFormSchema) => {
|
|
try {
|
|
await rejectDocumentWithToken({
|
|
documentId: document.id,
|
|
token,
|
|
reason,
|
|
});
|
|
|
|
toast({
|
|
title: 'Document rejected',
|
|
description: 'The document has been successfully rejected.',
|
|
duration: 5000,
|
|
});
|
|
|
|
setIsOpen(false);
|
|
|
|
if (onRejected) {
|
|
await onRejected(reason);
|
|
} else {
|
|
await navigate(`/sign/${token}/rejected`);
|
|
}
|
|
} catch (err) {
|
|
toast({
|
|
title: 'Error',
|
|
description: 'An error occurred while rejecting the document. Please try again.',
|
|
variant: 'destructive',
|
|
duration: 5000,
|
|
});
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (searchParams?.get('reject') === 'true') {
|
|
setIsOpen(true);
|
|
}
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (!isOpen) {
|
|
form.reset();
|
|
}
|
|
}, [isOpen]);
|
|
|
|
return (
|
|
<Dialog open={isOpen} onOpenChange={setIsOpen}>
|
|
<DialogTrigger asChild>
|
|
<Button variant="outline">
|
|
<Trans>Reject Document</Trans>
|
|
</Button>
|
|
</DialogTrigger>
|
|
|
|
<DialogContent>
|
|
<DialogHeader>
|
|
<DialogTitle>
|
|
<Trans>Reject Document</Trans>
|
|
</DialogTitle>
|
|
|
|
<DialogDescription>
|
|
<Trans>
|
|
Are you sure you want to reject this document? This action cannot be undone.
|
|
</Trans>
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
|
|
<Form {...form}>
|
|
<form onSubmit={form.handleSubmit(onRejectDocument)} className="space-y-4">
|
|
<FormField
|
|
control={form.control}
|
|
name="reason"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormControl>
|
|
<Textarea
|
|
{...field}
|
|
rows={4}
|
|
placeholder="Bitte gib' einen Grund für die Ablehnung an."
|
|
disabled={form.formState.isSubmitting}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<DialogFooter>
|
|
<Button
|
|
type="button"
|
|
variant="ghost"
|
|
onClick={() => setIsOpen(false)}
|
|
disabled={form.formState.isSubmitting}
|
|
>
|
|
<Trans>Cancel</Trans>
|
|
</Button>
|
|
|
|
<Button
|
|
type="submit"
|
|
variant="destructive"
|
|
loading={form.formState.isSubmitting}
|
|
disabled={!form.formState.isValid}
|
|
>
|
|
<Trans>Reject Document</Trans>
|
|
</Button>
|
|
</DialogFooter>
|
|
</form>
|
|
</Form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|