mirror of
https://github.com/documenso/documenso.git
synced 2026-06-22 04:12:06 +10:00
d5ce222482
Adds Cloud Signature Consortium (CSC) integration for AES/QES signing against a configured TSP. v1 ships as instance-wide configuration via environment variables, with per-envelope signature level selection, license gating, and an OAuth-driven signing flow (capture + FIFO signers, SAD session, blocking/in-progress recipient pages). Includes signature level compatibility checks (role, signing order, dictate next signer), envelope mutability assertions, Prisma migration for signature level and CSC tables, and docs for the new signing certificate options.
166 lines
4.5 KiB
TypeScript
166 lines
4.5 KiB
TypeScript
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';
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { msg } from '@lingui/core/macro';
|
|
import { Trans, useLingui } from '@lingui/react/macro';
|
|
import { useEffect, useState } from 'react';
|
|
import { useForm } from 'react-hook-form';
|
|
import { useSearchParams } from 'react-router';
|
|
import { z } from 'zod';
|
|
|
|
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 {
|
|
documentId: number;
|
|
token: string;
|
|
onRejected?: (reason: string) => void | Promise<void>;
|
|
trigger?: React.ReactNode;
|
|
}
|
|
|
|
export function DocumentSigningRejectDialog({
|
|
documentId,
|
|
token,
|
|
onRejected,
|
|
trigger,
|
|
}: DocumentSigningRejectDialogProps) {
|
|
const { t } = useLingui();
|
|
const { toast } = useToast();
|
|
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,
|
|
token,
|
|
reason,
|
|
});
|
|
|
|
toast({
|
|
title: t`Document rejected`,
|
|
description: t`The document has been successfully rejected.`,
|
|
duration: 5000,
|
|
});
|
|
|
|
setIsOpen(false);
|
|
|
|
if (onRejected) {
|
|
await onRejected(reason);
|
|
} else {
|
|
window.location.href = `/sign/${token}/rejected`;
|
|
}
|
|
} catch (err) {
|
|
toast({
|
|
title: t`Error`,
|
|
description: t`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>
|
|
{trigger ?? (
|
|
<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={t`Please provide a reason for rejecting this document`}
|
|
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>
|
|
);
|
|
}
|