From c21e30d689ce3181c931eaa21680499478ad8f28 Mon Sep 17 00:00:00 2001 From: Lucas Smith Date: Tue, 28 May 2024 02:45:57 +0000 Subject: [PATCH] chore: tidy code --- .../primitives/document-flow/add-signers.tsx | 37 ++++++------------- 1 file changed, 12 insertions(+), 25 deletions(-) diff --git a/packages/ui/primitives/document-flow/add-signers.tsx b/packages/ui/primitives/document-flow/add-signers.tsx index cfee325e1..3ec73f599 100644 --- a/packages/ui/primitives/document-flow/add-signers.tsx +++ b/packages/ui/primitives/document-flow/add-signers.tsx @@ -106,11 +106,13 @@ export const AddSignersFormPartial = ({ const { setValue, - getValues, formState: { errors, isSubmitting }, control, + watch, } = form; + const watchedSigners = watch('signers'); + const onFormSubmit = form.handleSubmit(onSubmit); const { @@ -122,6 +124,11 @@ export const AddSignersFormPartial = ({ name: 'signers', }); + const emptySignerIndex = watchedSigners.findIndex((signer) => !signer.name && !signer.email); + const isUserAlreadyARecipient = watchedSigners.some( + (signer) => signer.email.toLowerCase() === user?.email?.toLowerCase(), + ); + const hasBeenSentToRecipientId = (id?: number) => { if (!id) { return false; @@ -161,17 +168,7 @@ export const AddSignersFormPartial = ({ removeSigner(index); }; - const emptySignerIndex = signers.findIndex( - (signer) => - !getValues(`signers.${signers.indexOf(signer)}.name`) || - !getValues(`signers.${signers.indexOf(signer)}.email`), - ); - const onAddSelfSigner = () => { - const lastSignerIndex = signers.length - 1; - if (signers[lastSignerIndex].email || signers[lastSignerIndex].name) { - onRemoveSigner(lastSignerIndex); - } if (emptySignerIndex !== -1) { setValue(`signers.${emptySignerIndex}.name`, user?.name ?? ''); setValue(`signers.${emptySignerIndex}.email`, user?.email ?? ''); @@ -235,11 +232,7 @@ export const AddSignersFormPartial = ({ type="email" placeholder="Email" {...field} - disabled={ - isSubmitting || - hasBeenSentToRecipientId(signer.nativeId) || - signers[index].email === user?.email - } + disabled={isSubmitting || hasBeenSentToRecipientId(signer.nativeId)} onKeyDown={onKeyDown} /> @@ -265,11 +258,7 @@ export const AddSignersFormPartial = ({ @@ -352,14 +341,12 @@ export const AddSignersFormPartial = ({ Add Signer +