mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 00:32:43 +10:00
65 lines
1.6 KiB
TypeScript
65 lines
1.6 KiB
TypeScript
import prisma from "@documenso/prisma";
|
|
import Head from "next/head";
|
|
import { useEffect } from "react";
|
|
import { NextPageWithLayout } from "../../_app";
|
|
import { ReadStatus } from "@prisma/client";
|
|
import SignaturePad from "signature_pad";
|
|
import { InformationCircleIcon, PencilIcon } from "@heroicons/react/24/outline";
|
|
import Logo from "../../../components/logo";
|
|
import PDFSigner from "../../../components/editor/pdf-signer";
|
|
import fields from "../../api/documents/[id]/fields";
|
|
//http://localhost:3000/documents/40/sign?token=wu82JFMxLvdYVJ9sKy9jvd
|
|
const SignPage: NextPageWithLayout = (props: any) => {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Sign | Documenso</title>
|
|
</Head>
|
|
<PDFSigner document={props.document} fields={props.fields} />
|
|
{/* todo read/ sign version of editor => flag or own component */}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export async function getServerSideProps(context: any) {
|
|
const recipientToken: string = context.query["token"];
|
|
|
|
// todo redirect to sigend of all already signed
|
|
|
|
await prisma.recipient.updateMany({
|
|
where: {
|
|
token: recipientToken,
|
|
},
|
|
data: {
|
|
readStatus: ReadStatus.OPENED,
|
|
},
|
|
});
|
|
|
|
const recipient = await prisma.recipient.findFirstOrThrow({
|
|
where: {
|
|
token: recipientToken,
|
|
},
|
|
include: {
|
|
Document: true,
|
|
},
|
|
});
|
|
|
|
const fields = await prisma.field.findMany({
|
|
where: {
|
|
documentId: recipient.Document.id,
|
|
},
|
|
include: {
|
|
Recipient: true,
|
|
},
|
|
});
|
|
|
|
return {
|
|
props: {
|
|
document: recipient.Document,
|
|
fields: fields,
|
|
},
|
|
};
|
|
}
|
|
|
|
export default SignPage;
|