🚸 Associate recipients to fields, improved flow

This commit is contained in:
Timur Ercan
2023-02-15 15:44:23 +01:00
parent 5d4b51b094
commit 676c563c2f
7 changed files with 168 additions and 49 deletions

View File

@ -16,7 +16,7 @@ type FieldPropsType = {
positionX: number; positionX: number;
positionY: number; positionY: number;
id: string; id: string;
recipient: string; Recipient: { name: ""; email: "" };
}; };
onPositionChanged: any; onPositionChanged: any;
onDelete: any; onDelete: any;
@ -53,13 +53,22 @@ export default function Field(props: FieldPropsType) {
> >
<div <div
ref={nodeRef} ref={nodeRef}
style={{ background: stc(props.field.recipient) }}
className="cursor-move opacity-80 p-2 m-auto w-auto flex-row-reverse text-lg font-bold text-center absolute top-0 left-0" className="cursor-move opacity-80 p-2 m-auto w-auto flex-row-reverse text-lg font-bold text-center absolute top-0 left-0"
style={{
background: stc(props.field.Recipient.email),
}}
> >
<Logo className="mx-auto w-16 mb-2"></Logo>
<div className="m-auto w-auto flex-row-reverse text-lg font-bold text-center"> <div className="m-auto w-auto flex-row-reverse text-lg font-bold text-center">
{/* todo icons */} {/* todo icons */}
{field.type} {field.type}
<div className="text-xs text-center">{props.field.recipient}</div> {field.type === "SIGNATURE" ? (
<div className="text-xs text-center">
{`${props.field.Recipient?.name} <${props.field.Recipient?.email}>`}
</div>
) : (
""
)}
</div> </div>
<strong> <strong>
<IconButton <IconButton

View File

@ -1,18 +1,25 @@
import { NEXT_PUBLIC_WEBAPP_URL } from "@documenso/lib/constants"; import { NEXT_PUBLIC_WEBAPP_URL } from "@documenso/lib/constants";
import { useRouter } from "next/router"; import { useRouter } from "next/router";
import dynamic from "next/dynamic"; import dynamic from "next/dynamic";
import React, { useState } from "react"; import React, { Fragment, useState } from "react";
import { Button } from "@documenso/ui"; import { Button } from "@documenso/ui";
import short from "short-uuid"; import short from "short-uuid";
import toast from "react-hot-toast"; import toast from "react-hot-toast";
import { FieldType } from "@prisma/client"; import { FieldType } from "@prisma/client";
import { Listbox, Transition } from "@headlessui/react";
import { CheckIcon, ChevronUpDownIcon } from "@heroicons/react/24/outline";
import { classNames } from "@documenso/lib";
const stc = require("string-to-color");
const PDFViewer = dynamic(() => import("./pdf-viewer"), { const PDFViewer = dynamic(() => import("./pdf-viewer"), {
ssr: false, ssr: false,
}); });
export default function PDFEditor(props: any) { export default function PDFEditor(props: any) {
const [selectedRecipient, setSelectedRecipient] = useState(""); const [selectedRecipient, setSelectedRecipient]: any = useState(
props?.document?.Recipient[0]
);
const noRecipients = props?.document?.Recipient?.length === 0;
const [fields, setFields] = useState<any[]>(props.document.Field); const [fields, setFields] = useState<any[]>(props.document.Field);
const router = useRouter(); const router = useRouter();
@ -43,48 +50,134 @@ export default function PDFEditor(props: any) {
return ( return (
<> <>
<label <div hidden={noRecipients}>
htmlFor="location" <Listbox value={selectedRecipient} onChange={setSelectedRecipient}>
className="block text-sm font-medium text-gray-700" {({ open }) => (
> <div className="relative mt-1 mb-2">
Location <Listbox.Button className="relative w-full cursor-default rounded-md border border-gray-300 bg-white py-2 pl-3 pr-10 text-left shadow-sm focus:border-neon focus:outline-none focus:ring-1 focus:ring-neon sm:text-sm">
</label> <span className="flex items-center">
<select <span
className="mt-1 block w-full rounded-md border-gray-300 py-2 pl-3 pr-10 text-base focus:border-indigo-500 focus:outline-none focus:ring-indigo-500 sm:text-sm" className="inline-block h-4 w-4 flex-shrink-0 rounded-full"
value={selectedRecipient} style={{ background: stc(selectedRecipient?.email) }}
onChange={(e) => setSelectedRecipient(e.target.value)} />
> <span className="ml-3 block truncate">
{props?.document?.Recipient?.map((item: any) => ( {`${selectedRecipient?.name} <${selectedRecipient?.email}>`}
<option key={item.email + short.generate().toString()}> </span>
{item.name ? `${item.name} <${item.email}>` : item.email} </span>
</option> <span className="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2">
))} <ChevronUpDownIcon
</select> className="h-5 w-5 text-gray-400"
<Button aria-hidden="true"
className="inline ml-1" />
onClick={() => { </span>
const signatureField = { </Listbox.Button>
id: -1,
page: 0,
type: FieldType.SIGNATURE,
positionX: 0,
positionY: 0,
recipient: selectedRecipient,
};
upsertField(props?.document, signatureField).then((res) => { <Transition
setFields(fields.concat(res)); show={open}
}); as={Fragment}
}} leave="transition ease-in duration-100"
> leaveFrom="opacity-100"
Add Signature Field leaveTo="opacity-0"
</Button> >
<Button color="secondary" className="inline ml-1"> <Listbox.Options className="absolute z-10 mt-1 max-h-60 w-full overflow-auto rounded-md bg-white py-1 text-base shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none sm:text-sm">
Add Date Field {props?.document?.Recipient?.map((recipient: any) => (
</Button> <Listbox.Option
<Button color="secondary" className="inline ml-1"> key={recipient?.id}
Add Text Field className={({ active }) =>
</Button> classNames(
active ? "text-white bg-indigo-600" : "text-gray-900",
"relative cursor-default select-none py-2 pl-3 pr-9"
)
}
value={recipient}
>
{({ selected, active }) => (
<>
<div className="flex items-center">
<span
className="inline-block h-4 w-4 flex-shrink-0 rounded-full"
style={{
background: stc(recipient?.email),
}}
/>
<span
className={classNames(
selected ? "font-semibold" : "font-normal",
"ml-3 block truncate"
)}
>
{`${selectedRecipient?.name} <${selectedRecipient?.email}>`}
</span>
</div>
{selected ? (
<span
className={classNames(
active ? "text-white" : "text-indigo-600",
"absolute inset-y-0 right-0 flex items-center pr-4"
)}
>
<CheckIcon
className="h-5 w-5"
aria-hidden="true"
/>
</span>
) : null}
</>
)}
</Listbox.Option>
))}
</Listbox.Options>
</Transition>
</div>
)}
</Listbox>
<Button
className="inline ml-1"
color="secondary"
onClick={() => {
console.log(selectedRecipient);
const signatureField = {
id: -1,
page: 0,
type: FieldType.SIGNATURE,
positionX: 0,
positionY: 0,
Recipient: selectedRecipient,
};
upsertField(props?.document, signatureField).then((res) => {
setFields(fields.concat(res));
});
}}
>
<span
className="inline-block h-4 w-4 flex-shrink-0 rounded-full mr-3"
style={{
background: stc(selectedRecipient?.email),
}}
/>
Add Signature Field
</Button>
<Button color="secondary" className="inline ml-1" disabled>
<span
className="inline-block h-4 w-4 flex-shrink-0 rounded-full mr-3"
style={{
background: stc(selectedRecipient?.email),
}}
/>
Add Date Field
</Button>
<Button color="secondary" className="inline ml-1" disabled>
<span
className="inline-block h-4 w-4 flex-shrink-0 rounded-full mr-3"
style={{
background: stc(selectedRecipient?.email),
}}
/>
Add Text Field
</Button>
</div>
<PDFViewer <PDFViewer
document={props.document} document={props.document}
fields={fields} fields={fields}

View File

@ -30,6 +30,7 @@ async function getHandler(req: NextApiRequest, res: NextApiResponse) {
const fields = await prisma.field.findMany({ const fields = await prisma.field.findMany({
where: { documentId: +documentId }, where: { documentId: +documentId },
include: { Recipient: true },
}); });
return res.status(200).end(JSON.stringify(fields)); return res.status(200).end(JSON.stringify(fields));
@ -44,6 +45,7 @@ async function postHandler(req: NextApiRequest, res: NextApiResponse) {
page: number; page: number;
positionX: number; positionX: number;
positionY: number; positionY: number;
Recipient: { id: number };
} = req.body; } = req.body;
if (!user) return; if (!user) return;
@ -69,6 +71,7 @@ async function postHandler(req: NextApiRequest, res: NextApiResponse) {
page: +body.page, page: +body.page,
positionX: +body.positionX, positionX: +body.positionX,
positionY: +body.positionY, positionY: +body.positionY,
recipientId: body.Recipient.id,
}, },
create: { create: {
documentId: +documentId, documentId: +documentId,
@ -76,6 +79,11 @@ async function postHandler(req: NextApiRequest, res: NextApiResponse) {
page: +body.page, page: +body.page,
positionX: +body.positionX, positionX: +body.positionX,
positionY: +body.positionY, positionY: +body.positionY,
// todo refactor only one type of recipientId
recipientId: body.Recipient.id,
},
include: {
Recipient: true,
}, },
}); });

View File

@ -9,6 +9,7 @@ import { DocumentStatus } from "@prisma/client";
import { import {
InformationCircleIcon, InformationCircleIcon,
PaperAirplaneIcon, PaperAirplaneIcon,
UserPlusIcon,
UsersIcon, UsersIcon,
} from "@heroicons/react/24/outline"; } from "@heroicons/react/24/outline";
import { getDocument } from "@documenso/lib/query"; import { getDocument } from "@documenso/lib/query";
@ -66,7 +67,6 @@ const DocumentsDetailPage: NextPageWithLayout = (props: any) => {
<div className="mt-4 flex flex-shrink-0 md:mt-0 md:ml-4"> <div className="mt-4 flex flex-shrink-0 md:mt-0 md:ml-4">
<Button <Button
icon={PaperAirplaneIcon} icon={PaperAirplaneIcon}
disabled={(props?.document?.Recipient?.length || 0) === 0}
className="ml-3" className="ml-3"
href={ href={
NEXT_PUBLIC_WEBAPP_URL + NEXT_PUBLIC_WEBAPP_URL +

View File

@ -8,6 +8,7 @@ import {
CheckIcon, CheckIcon,
EnvelopeIcon, EnvelopeIcon,
PaperAirplaneIcon, PaperAirplaneIcon,
PencilSquareIcon,
UserPlusIcon, UserPlusIcon,
XMarkIcon, XMarkIcon,
} from "@heroicons/react/24/outline"; } from "@heroicons/react/24/outline";
@ -62,6 +63,14 @@ const RecipientsPage: NextPageWithLayout = (props: any) => {
</h2> </h2>
</div> </div>
<div className="mt-4 flex flex-shrink-0 md:mt-0 md:ml-4"> <div className="mt-4 flex flex-shrink-0 md:mt-0 md:ml-4">
<Button
icon={PencilSquareIcon}
color="secondary"
className="mr-2"
href={breadcrumbItems[1].href}
>
Customize Document
</Button>
<Button <Button
className="min-w-[125px]" className="min-w-[125px]"
color="primary" color="primary"

View File

@ -23,7 +23,7 @@ export const uploadDocument = async (event: any) => {
.then((response: Response) => { .then((response: Response) => {
response.json().then((createdDocumentIdFromBody) => { response.json().then((createdDocumentIdFromBody) => {
router.push( router.push(
`${NEXT_PUBLIC_WEBAPP_URL}/documents/${createdDocumentIdFromBody}` `${NEXT_PUBLIC_WEBAPP_URL}/documents/${createdDocumentIdFromBody}/recipients`
); );
}); });
}); });

View File

@ -19,7 +19,7 @@ export const getDocument = async (
}, },
include: { include: {
Recipient: true, Recipient: true,
Field: true, Field: { include: { Recipient: true } },
}, },
}); });