Files
sign/apps/web/src/components/forms/edit-document/add-signers.tsx

128 lines
3.9 KiB
TypeScript
Raw Normal View History

2023-06-10 22:33:12 +10:00
'use client';
import { AnimatePresence, motion } from 'framer-motion';
import { Plus, Trash } from 'lucide-react';
import { Control, Controller, FieldErrors, useFieldArray } from 'react-hook-form';
import { cn } from '@documenso/ui/lib/utils';
import { Button } from '@documenso/ui/primitives/button';
import { Input } from '@documenso/ui/primitives/input';
import { Label } from '@documenso/ui/primitives/label';
import { FormErrorMessage } from '~/components/form/form-error-message';
import { TEditDocumentFormSchema } from './types';
export type AddSignersFormProps = {
className?: string;
control: Control<TEditDocumentFormSchema>;
errors: FieldErrors<TEditDocumentFormSchema>;
isSubmitting: boolean;
};
export const AddSignersFormPartial = ({
className,
control,
errors,
isSubmitting,
}: AddSignersFormProps) => {
const {
append,
fields: signers,
remove,
} = useFieldArray({
control,
name: 'signers',
});
return (
<div className={cn('flex flex-col', className)}>
2023-06-11 01:50:19 -04:00
<h3 className="text-foreground text-2xl font-semibold">Add Signers</h3>
2023-06-10 22:33:12 +10:00
2023-06-11 01:50:19 -04:00
<p className="text-muted-foreground mt-2 text-sm">
Add the people who will sign the document.
</p>
2023-06-10 22:33:12 +10:00
2023-06-11 01:50:19 -04:00
<hr className="border-border mb-8 mt-4" />
2023-06-10 22:33:12 +10:00
<div className="-mx-2 flex flex-1 flex-col overflow-y-scroll px-2">
<div className="flex w-full flex-col gap-y-4">
<AnimatePresence>
{signers.map((field, index) => (
<motion.div key={field.id} className="flex flex-wrap items-end gap-x-4">
<div className="flex-1">
<Label htmlFor={`signer-${index}-email`}>Email</Label>
<Controller
control={control}
name={`signers.${index}.email`}
render={({ field }) => (
<Input
id={`signer-${index}-email`}
type="email"
2023-06-11 01:50:19 -04:00
className="bg-background mt-2"
2023-06-10 22:33:12 +10:00
disabled={isSubmitting}
{...field}
/>
)}
/>
</div>
<div className="flex-1">
<Label htmlFor={`signer-${index}-name`}>Name</Label>
<Controller
control={control}
name={`signers.${index}.name`}
render={({ field }) => (
<Input
id={`signer-${index}-name`}
type="text"
2023-06-11 01:50:19 -04:00
className="bg-background mt-2"
2023-06-10 22:33:12 +10:00
disabled={isSubmitting}
{...field}
/>
)}
/>
</div>
<div>
<button
type="button"
className="inline-flex h-10 w-10 items-center justify-center text-slate-500 hover:opacity-80"
disabled={isSubmitting}
onClick={() => remove(index)}
>
<Trash className="h-5 w-5" />
</button>
</div>
<div className="w-full">
<FormErrorMessage className="mt-2" error={errors.signers?.[index]?.email} />
<FormErrorMessage className="mt-2" error={errors.signers?.[index]?.name} />
</div>
</motion.div>
))}
</AnimatePresence>
</div>
<div className="mt-4">
<Button
type="button"
disabled={isSubmitting}
onClick={() =>
append({
email: '',
name: '',
})
}
>
<Plus className="-ml-1 mr-2 h-5 w-5" />
Add Signer
</Button>
</div>
</div>
</div>
);
};