mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
129 lines
4.0 KiB
TypeScript
129 lines
4.0 KiB
TypeScript
import { ReactElement } from "react";
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
import { NEXT_PUBLIC_WEBAPP_URL } from "@documenso/lib";
|
|
import { getDocument } from "@documenso/lib/query";
|
|
import { getUserFromToken } from "@documenso/lib/server";
|
|
import { Breadcrumb, Button } from "@documenso/ui";
|
|
import PDFEditor from "../../../components/editor/pdf-editor";
|
|
import Layout from "../../../components/layout";
|
|
import { NextPageWithLayout } from "../../_app";
|
|
import { InformationCircleIcon, PaperAirplaneIcon, UsersIcon } from "@heroicons/react/24/outline";
|
|
import { DocumentStatus } from "@prisma/client";
|
|
import { Document as PrismaDocument } from "@prisma/client";
|
|
|
|
const DocumentsDetailPage: NextPageWithLayout = (props: any) => {
|
|
const router = useRouter();
|
|
|
|
return (
|
|
<div className="mt-4">
|
|
<div>
|
|
<div>
|
|
<Breadcrumb
|
|
document={props.document}
|
|
items={[
|
|
{
|
|
title: "Documents",
|
|
href: "/documents",
|
|
},
|
|
{
|
|
title: props.document.title,
|
|
href: NEXT_PUBLIC_WEBAPP_URL + "/documents/" + props.document.id,
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
<div className="mt-2 md:flex md:items-center md:justify-between">
|
|
<div className="min-w-0 flex-1">
|
|
<h2 className="text-2xl font-bold leading-7 text-gray-900 sm:truncate sm:text-3xl sm:tracking-tight">
|
|
{props.document.title}
|
|
</h2>
|
|
<div className="mt-1 flex flex-col sm:mt-0 sm:flex-row sm:flex-wrap sm:space-x-6">
|
|
<div className="mt-2 flex items-center text-sm text-gray-500">
|
|
<UsersIcon
|
|
className="mr-1.5 h-5 w-5 flex-shrink-0 text-gray-400"
|
|
aria-hidden="true"
|
|
/>
|
|
|
|
<Link href={`/documents/${props.document.id}/recipients`}>
|
|
{props?.document?.Recipient?.length} Recipients
|
|
</Link>
|
|
</div>
|
|
<div className="mt-2 flex items-center text-sm text-gray-500">
|
|
<InformationCircleIcon
|
|
className="mr-1.5 h-5 w-5 flex-shrink-0 text-gray-400"
|
|
aria-hidden="true"
|
|
/>
|
|
{formatDocumentStatus(props.document.status)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="mt-4 flex flex-shrink-0 md:mt-0 md:ml-4">
|
|
<Button
|
|
icon={PaperAirplaneIcon}
|
|
className="ml-3"
|
|
href={NEXT_PUBLIC_WEBAPP_URL + "/documents/" + props.document.id + "/recipients"}
|
|
onClick={() => {
|
|
if (
|
|
confirm(`Send document out to ${props?.document?.Recipient?.length} recipients?`)
|
|
) {
|
|
}
|
|
}}>
|
|
Prepare to Send
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="mx-auto w-fit">
|
|
<PDFEditor document={props.document} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
function formatDocumentStatus(status: DocumentStatus) {
|
|
switch (status) {
|
|
case DocumentStatus.DRAFT:
|
|
return "Draft";
|
|
|
|
case DocumentStatus.PENDING:
|
|
return "Waiting for others";
|
|
|
|
case DocumentStatus.COMPLETED:
|
|
return "Completed";
|
|
}
|
|
}
|
|
|
|
export async function getServerSideProps(context: any) {
|
|
const user = await getUserFromToken(context.req, context.res);
|
|
if (!user)
|
|
return {
|
|
redirect: {
|
|
destination: "/login",
|
|
permanent: false,
|
|
},
|
|
};
|
|
|
|
const { id: documentId } = context.query;
|
|
|
|
try {
|
|
const document: PrismaDocument = await getDocument(+documentId, context.req, context.res);
|
|
|
|
return {
|
|
props: {
|
|
document: JSON.parse(JSON.stringify({ ...document, document: "" })),
|
|
},
|
|
};
|
|
} catch (error) {
|
|
return {
|
|
notFound: true,
|
|
};
|
|
}
|
|
}
|
|
|
|
DocumentsDetailPage.getLayout = function getLayout(page: ReactElement) {
|
|
return <Layout>{page}</Layout>;
|
|
};
|
|
|
|
export default DocumentsDetailPage;
|