mirror of
https://github.com/documenso/documenso.git
synced 2025-11-11 04:52:41 +10:00
Adds custom font sizes to fields https://github.com/user-attachments/assets/1473a4d7-8dc6-4ead-acf5-dd78be7782a0
78 lines
2.2 KiB
TypeScript
78 lines
2.2 KiB
TypeScript
import { checkboxValidationSigns } from '@documenso/ui/primitives/document-flow/field-items-advanced-settings/constants';
|
|
|
|
import type { TCheckboxFieldMeta } from '../types/field-meta';
|
|
|
|
export const validateCheckboxField = (
|
|
values: string[],
|
|
fieldMeta: TCheckboxFieldMeta,
|
|
isSigningPage: boolean = false,
|
|
): string[] => {
|
|
const errors = [];
|
|
|
|
const { readOnly, required, validationRule, validationLength } = fieldMeta;
|
|
|
|
if (readOnly && required) {
|
|
errors.push('A field cannot be both read-only and required');
|
|
}
|
|
|
|
if (values.length === 0) {
|
|
errors.push('At least one option must be added');
|
|
}
|
|
|
|
if (readOnly && values.length === 0) {
|
|
errors.push('A read-only field must have at least one value');
|
|
}
|
|
|
|
if (isSigningPage && required && values.length === 0) {
|
|
errors.push('Selecting an option is required');
|
|
}
|
|
|
|
if (validationRule && !validationLength) {
|
|
errors.push('You need to specify the number of options for validation');
|
|
}
|
|
|
|
if (validationLength && !validationRule) {
|
|
errors.push('You need to specify the validation rule');
|
|
}
|
|
|
|
if (validationRule && validationLength) {
|
|
const validation = checkboxValidationSigns.find((sign) => sign.label === validationRule);
|
|
|
|
if (validation) {
|
|
let lengthCondition = false;
|
|
|
|
switch (validation.value) {
|
|
case '=':
|
|
lengthCondition = isSigningPage
|
|
? values.length !== validationLength
|
|
: values.length < validationLength;
|
|
break;
|
|
case '>=':
|
|
lengthCondition = values.length < validationLength;
|
|
break;
|
|
case '<=':
|
|
lengthCondition = isSigningPage
|
|
? values.length > validationLength
|
|
: values.length < validationLength;
|
|
break;
|
|
}
|
|
|
|
if (lengthCondition) {
|
|
let errorMessage;
|
|
if (isSigningPage) {
|
|
errorMessage = `You need to ${validationRule.toLowerCase()} ${validationLength} options`;
|
|
} else {
|
|
errorMessage =
|
|
validation.value === '<='
|
|
? `You need to select at least ${validationLength} options`
|
|
: `You need to add at least ${validationLength} options`;
|
|
}
|
|
|
|
errors.push(errorMessage);
|
|
}
|
|
}
|
|
}
|
|
|
|
return errors;
|
|
};
|