Files
documenso/apps/remix/app/utils/field-signing/number-field.ts
David Nguyen 7f09ba72f4 feat: add envelopes (#2025)
This PR is handles the changes required to support envelopes. The new
envelope editor/signing page will be hidden during release.

The core changes here is to migrate the documents and templates model to
a centralized envelopes model.

Even though Documents and Templates are removed, from the user
perspective they will still exist as we remap envelopes to documents and
templates.
2025-10-14 21:56:36 +11:00

49 lines
1.2 KiB
TypeScript

import { FieldType } from '@prisma/client';
import { AppError, AppErrorCode } from '@documenso/lib/errors/app-error';
import type { TFieldNumber } from '@documenso/lib/types/field';
import type { TSignEnvelopeFieldValue } from '@documenso/trpc/server/envelope-router/sign-envelope-field.types';
import { SignFieldNumberDialog } from '~/components/dialogs/sign-field-number-dialog';
type HandleNumberFieldClickOptions = {
field: TFieldNumber;
number: number | null;
};
export const handleNumberFieldClick = async (
options: HandleNumberFieldClickOptions,
): Promise<Extract<TSignEnvelopeFieldValue, { type: typeof FieldType.NUMBER }> | null> => {
const { field, number } = options;
if (field.type !== FieldType.NUMBER) {
throw new AppError(AppErrorCode.INVALID_REQUEST, {
message: 'Invalid field type',
});
}
if (field.inserted) {
return {
type: FieldType.NUMBER,
value: null,
};
}
let numberToInsert = number;
if (!numberToInsert) {
numberToInsert = await SignFieldNumberDialog.call({
fieldMeta: field.fieldMeta,
});
}
if (!numberToInsert) {
return null;
}
return {
type: FieldType.NUMBER,
value: numberToInsert,
};
};