mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
76c61a5c29
- make converter more explicit
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import { DocValue } from 'fyo/core/types';
|
|
import { ValidationError, ValueError } from 'fyo/utils/errors';
|
|
import { t } from 'fyo/utils/translation';
|
|
import { OptionField } from 'schemas/types';
|
|
|
|
export function validateEmail(value: DocValue) {
|
|
const isValid = /(.+)@(.+){2,}\.(.+){2,}/.test(value as string);
|
|
if (!isValid) {
|
|
throw new ValidationError(`Invalid email: ${value}`);
|
|
}
|
|
}
|
|
|
|
export function validatePhoneNumber(value: DocValue) {
|
|
const isValid = /[+]{0,1}[\d ]+/.test(value as string);
|
|
if (!isValid) {
|
|
throw new ValidationError(`Invalid phone: ${value}`);
|
|
}
|
|
}
|
|
|
|
export function validateSelect(field: OptionField, value: string) {
|
|
const options = field.options;
|
|
if (!options) {
|
|
return;
|
|
}
|
|
|
|
if (!field.required && !value) {
|
|
return;
|
|
}
|
|
|
|
const validValues = options.map((o) => o.value);
|
|
|
|
if (validValues.includes(value)) {
|
|
return;
|
|
}
|
|
|
|
const labels = options.map((o) => o.label).join(', ');
|
|
throw new ValueError(
|
|
t`Invalid value ${value} for ${field.label}. Must be one of ${labels}`
|
|
);
|
|
}
|