mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
Makes it so clicking on the pending field tooltip will trigger the underlying field it refers to on click if the field can be found within the DOM.
202 lines
6.0 KiB
TypeScript
202 lines
6.0 KiB
TypeScript
import React from 'react';
|
|
|
|
import { Trans } from '@lingui/react/macro';
|
|
import { FieldType } from '@prisma/client';
|
|
import { TooltipArrow } from '@radix-ui/react-tooltip';
|
|
import { X } from 'lucide-react';
|
|
|
|
import { type TRecipientActionAuth } from '@documenso/lib/types/document-auth';
|
|
import { ZFieldMetaSchema } from '@documenso/lib/types/field-meta';
|
|
import type { FieldWithSignature } from '@documenso/prisma/types/field-with-signature';
|
|
import { FieldRootContainer } from '@documenso/ui/components/field/field';
|
|
import { RECIPIENT_COLOR_STYLES } from '@documenso/ui/lib/recipient-colors';
|
|
import { cn } from '@documenso/ui/lib/utils';
|
|
import { Tooltip, TooltipContent, TooltipTrigger } from '@documenso/ui/primitives/tooltip';
|
|
|
|
import { useRequiredDocumentSigningAuthContext } from './document-signing-auth-provider';
|
|
|
|
export type DocumentSigningFieldContainerProps = {
|
|
field: FieldWithSignature;
|
|
loading?: boolean;
|
|
children: React.ReactNode;
|
|
|
|
/**
|
|
* A function that is called before the field requires to be signed, or reauthed.
|
|
*
|
|
* Example, you may want to show a dialog prior to signing where they can enter a value.
|
|
*
|
|
* Once that action is complete, you will need to call `executeActionAuthProcedure` to proceed
|
|
* regardless if it requires reauth or not.
|
|
*
|
|
* If the function returns true, we will proceed with the signing process. Otherwise if
|
|
* false is returned we will not proceed.
|
|
*/
|
|
onPreSign?: () => Promise<boolean> | boolean;
|
|
|
|
/**
|
|
* The function required to be executed to insert the field.
|
|
*
|
|
* The auth values will be passed in if available.
|
|
*/
|
|
onSign?: (documentAuthValue?: TRecipientActionAuth) => Promise<void> | void;
|
|
onRemove?: (fieldType?: string) => Promise<void> | void;
|
|
type?:
|
|
| 'Date'
|
|
| 'Initials'
|
|
| 'Email'
|
|
| 'Name'
|
|
| 'Signature'
|
|
| 'Text'
|
|
| 'Radio'
|
|
| 'Dropdown'
|
|
| 'Number'
|
|
| 'Checkbox';
|
|
tooltipText?: string | null;
|
|
};
|
|
|
|
export const DocumentSigningFieldContainer = ({
|
|
field,
|
|
loading,
|
|
onPreSign,
|
|
onSign,
|
|
onRemove,
|
|
children,
|
|
type,
|
|
tooltipText,
|
|
}: DocumentSigningFieldContainerProps) => {
|
|
const { executeActionAuthProcedure, isAuthRedirectRequired } =
|
|
useRequiredDocumentSigningAuthContext();
|
|
|
|
const parsedFieldMeta = field.fieldMeta ? ZFieldMetaSchema.parse(field.fieldMeta) : undefined;
|
|
const readOnlyField = parsedFieldMeta?.readOnly || false;
|
|
|
|
const handleInsertField = async () => {
|
|
if (field.inserted || !onSign) {
|
|
return;
|
|
}
|
|
|
|
// Bypass reauth for non signature fields.
|
|
if (field.type !== FieldType.SIGNATURE) {
|
|
const presignResult = await onPreSign?.();
|
|
|
|
if (presignResult === false) {
|
|
return;
|
|
}
|
|
|
|
await onSign();
|
|
return;
|
|
}
|
|
|
|
if (isAuthRedirectRequired) {
|
|
await executeActionAuthProcedure({
|
|
onReauthFormSubmit: () => {
|
|
// Do nothing since the user should be redirected.
|
|
},
|
|
actionTarget: field.type,
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
// Handle any presign requirements, and halt if required.
|
|
if (onPreSign) {
|
|
const preSignResult = await onPreSign();
|
|
|
|
if (preSignResult === false) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
await executeActionAuthProcedure({
|
|
onReauthFormSubmit: onSign,
|
|
actionTarget: field.type,
|
|
});
|
|
};
|
|
|
|
const onRemoveSignedFieldClick = async () => {
|
|
if (!field.inserted) {
|
|
return;
|
|
}
|
|
|
|
await onRemove?.();
|
|
};
|
|
|
|
const onClearCheckBoxValues = async (fieldType?: string) => {
|
|
if (!field.inserted) {
|
|
return;
|
|
}
|
|
|
|
await onRemove?.(fieldType);
|
|
};
|
|
|
|
return (
|
|
<div className={cn('[container-type:size]')}>
|
|
<FieldRootContainer color={RECIPIENT_COLOR_STYLES.green} field={field}>
|
|
{!field.inserted && !loading && !readOnlyField && (
|
|
<button
|
|
type="submit"
|
|
className="absolute inset-0 z-10 h-full w-full rounded-[2px]"
|
|
onClick={async () => handleInsertField()}
|
|
/>
|
|
)}
|
|
|
|
{readOnlyField && (
|
|
<button className="bg-background/40 absolute inset-0 z-10 flex h-full w-full items-center justify-center rounded-md text-sm opacity-0 duration-200 group-hover:opacity-100">
|
|
<span className="bg-foreground/50 text-background rounded-xl p-2">
|
|
<Trans>Read only field</Trans>
|
|
</span>
|
|
</button>
|
|
)}
|
|
|
|
{type === 'Checkbox' && field.inserted && !loading && !readOnlyField && (
|
|
<button
|
|
className="absolute -bottom-10 flex items-center justify-evenly rounded-md border bg-gray-900 opacity-0 group-hover:opacity-100"
|
|
onClick={() => void onClearCheckBoxValues(type)}
|
|
>
|
|
<span className="rounded-md p-1 text-gray-400 transition-colors hover:bg-white/10 hover:text-gray-100">
|
|
<X className="h-4 w-4" />
|
|
</span>
|
|
</button>
|
|
)}
|
|
|
|
{type !== 'Checkbox' && field.inserted && !loading && !readOnlyField && (
|
|
<Tooltip delayDuration={0}>
|
|
<TooltipTrigger asChild>
|
|
<button className="absolute inset-0 z-10" onClick={onRemoveSignedFieldClick}></button>
|
|
</TooltipTrigger>
|
|
|
|
<TooltipContent
|
|
className="border-0 bg-orange-300 fill-orange-300 text-orange-900"
|
|
sideOffset={2}
|
|
>
|
|
{tooltipText && <p>{tooltipText}</p>}
|
|
|
|
<Trans>Remove</Trans>
|
|
<TooltipArrow />
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
)}
|
|
|
|
{(field.type === FieldType.RADIO || field.type === FieldType.CHECKBOX) &&
|
|
field.fieldMeta?.label && (
|
|
<div
|
|
className={cn(
|
|
'absolute -top-16 left-0 right-0 rounded-md p-2 text-center text-xs text-gray-700',
|
|
{
|
|
'bg-foreground/5 border-border border': !field.inserted,
|
|
},
|
|
{
|
|
'bg-documenso-200 border-primary border': field.inserted,
|
|
},
|
|
)}
|
|
>
|
|
{field.fieldMeta.label}
|
|
</div>
|
|
)}
|
|
|
|
{children}
|
|
</FieldRootContainer>
|
|
</div>
|
|
);
|
|
};
|