'use client'; import { useTransition } from 'react'; import { useRouter } from 'next/navigation'; import { Loader } from 'lucide-react'; import { DO_NOT_INVALIDATE_QUERY_ON_MUTATION } from '@documenso/lib/constants/trpc'; import { AppError, AppErrorCode } from '@documenso/lib/errors/app-error'; import type { TRecipientActionAuth } from '@documenso/lib/types/document-auth'; import type { Recipient } from '@documenso/prisma/client'; import type { FieldWithSignature } from '@documenso/prisma/types/field-with-signature'; import { trpc } from '@documenso/trpc/react'; import { useToast } from '@documenso/ui/primitives/use-toast'; import { useRequiredSigningContext } from './provider'; import { SigningFieldContainer } from './signing-field-container'; export type EmailFieldProps = { field: FieldWithSignature; recipient: Recipient; }; export const EmailField = ({ field, recipient }: EmailFieldProps) => { const router = useRouter(); const { toast } = useToast(); const { email: providedEmail } = useRequiredSigningContext(); const [isPending, startTransition] = useTransition(); const { mutateAsync: signFieldWithToken, isLoading: isSignFieldWithTokenLoading } = trpc.field.signFieldWithToken.useMutation(DO_NOT_INVALIDATE_QUERY_ON_MUTATION); const { mutateAsync: removeSignedFieldWithToken, isLoading: isRemoveSignedFieldWithTokenLoading, } = trpc.field.removeSignedFieldWithToken.useMutation(DO_NOT_INVALIDATE_QUERY_ON_MUTATION); const isLoading = isSignFieldWithTokenLoading || isRemoveSignedFieldWithTokenLoading || isPending; const onSign = async (authOptions?: TRecipientActionAuth) => { try { await signFieldWithToken({ token: recipient.token, fieldId: field.id, value: providedEmail ?? '', isBase64: false, authOptions, }); startTransition(() => router.refresh()); } catch (err) { const error = AppError.parseError(err); if (error.code === AppErrorCode.UNAUTHORIZED) { throw error; } console.error(err); toast({ title: 'Error', description: 'An error occurred while signing the document.', variant: 'destructive', }); } }; const onRemove = async () => { try { await removeSignedFieldWithToken({ token: recipient.token, fieldId: field.id, }); startTransition(() => router.refresh()); } catch (err) { console.error(err); toast({ title: 'Error', description: 'An error occurred while removing the signature.', variant: 'destructive', }); } }; return ( {isLoading && (
)} {!field.inserted && (

Email

)} {field.inserted &&

{field.customText}

}
); };