mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
113 lines
4.1 KiB
TypeScript
113 lines
4.1 KiB
TypeScript
import { notFound, redirect } from 'next/navigation';
|
|
|
|
import { match } from 'ts-pattern';
|
|
|
|
import { PDF_VIEWER_PAGE_SELECTOR } from '@documenso/lib/constants/pdf-viewer';
|
|
import { getServerComponentSession } from '@documenso/lib/next-auth/get-server-session';
|
|
import { getDocumentAndSenderByToken } from '@documenso/lib/server-only/document/get-document-by-token';
|
|
import { viewedDocument } from '@documenso/lib/server-only/document/viewed-document';
|
|
import { getFieldsForToken } from '@documenso/lib/server-only/field/get-fields-for-token';
|
|
import { getRecipientByToken } from '@documenso/lib/server-only/recipient/get-recipient-by-token';
|
|
import { getFile } from '@documenso/lib/universal/upload/get-file';
|
|
import { DocumentStatus, FieldType, SigningStatus } from '@documenso/prisma/client';
|
|
import { Card, CardContent } from '@documenso/ui/primitives/card';
|
|
import { ElementVisible } from '@documenso/ui/primitives/element-visible';
|
|
import { LazyPDFViewer } from '@documenso/ui/primitives/lazy-pdf-viewer';
|
|
|
|
import { DateField } from './date-field';
|
|
import { EmailField } from './email-field';
|
|
import { SigningForm } from './form';
|
|
import { NameField } from './name-field';
|
|
import { SigningProvider } from './provider';
|
|
import { SignatureField } from './signature-field';
|
|
|
|
export type SigningPageProps = {
|
|
params: {
|
|
token?: string;
|
|
};
|
|
};
|
|
|
|
export default async function SigningPage({ params: { token } }: SigningPageProps) {
|
|
if (!token) {
|
|
return notFound();
|
|
}
|
|
|
|
const [document, fields, recipient] = await Promise.all([
|
|
getDocumentAndSenderByToken({
|
|
token,
|
|
}).catch(() => null),
|
|
getFieldsForToken({ token }),
|
|
getRecipientByToken({ token }).catch(() => null),
|
|
viewedDocument({ token }).catch(() => null),
|
|
]);
|
|
|
|
if (!document || !document.documentData || !recipient) {
|
|
return notFound();
|
|
}
|
|
|
|
const { documentData } = document;
|
|
|
|
const documentDataUrl = await getFile(documentData)
|
|
.then((buffer) => Buffer.from(buffer).toString('base64'))
|
|
.then((data) => `data:application/pdf;base64,${data}`);
|
|
|
|
const { user } = await getServerComponentSession();
|
|
|
|
if (
|
|
document.status === DocumentStatus.COMPLETED ||
|
|
recipient.signingStatus === SigningStatus.SIGNED
|
|
) {
|
|
redirect(`/sign/${token}/complete`);
|
|
}
|
|
|
|
return (
|
|
<SigningProvider email={recipient.email} fullName={recipient.name} signature={user?.signature}>
|
|
<div className="mx-auto w-full max-w-screen-xl">
|
|
<h1 className="mt-4 truncate text-2xl font-semibold md:text-3xl" title={document.title}>
|
|
{document.title}
|
|
</h1>
|
|
|
|
<div className="mt-2.5 flex items-center gap-x-6">
|
|
<p className="text-muted-foreground">
|
|
{document.User.name} ({document.User.email}) has invited you to sign this document.
|
|
</p>
|
|
</div>
|
|
|
|
<div className="mt-8 grid grid-cols-12 gap-y-8 lg:gap-x-8 lg:gap-y-0">
|
|
<Card
|
|
className="col-span-12 rounded-xl before:rounded-xl lg:col-span-7 xl:col-span-8"
|
|
gradient
|
|
>
|
|
<CardContent className="p-2">
|
|
<LazyPDFViewer document={documentDataUrl} />
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<div className="col-span-12 lg:col-span-5 xl:col-span-4">
|
|
<SigningForm document={document} recipient={recipient} fields={fields} />
|
|
</div>
|
|
</div>
|
|
|
|
<ElementVisible target={PDF_VIEWER_PAGE_SELECTOR}>
|
|
{fields.map((field) =>
|
|
match(field.type)
|
|
.with(FieldType.SIGNATURE, () => (
|
|
<SignatureField key={field.id} field={field} recipient={recipient} />
|
|
))
|
|
.with(FieldType.NAME, () => (
|
|
<NameField key={field.id} field={field} recipient={recipient} />
|
|
))
|
|
.with(FieldType.DATE, () => (
|
|
<DateField key={field.id} field={field} recipient={recipient} />
|
|
))
|
|
.with(FieldType.EMAIL, () => (
|
|
<EmailField key={field.id} field={field} recipient={recipient} />
|
|
))
|
|
.otherwise(() => null),
|
|
)}
|
|
</ElementVisible>
|
|
</div>
|
|
</SigningProvider>
|
|
);
|
|
}
|