2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/fyo/model/validationFunction.ts
18alantom 3975eb3f64 fix(ux): display can't delete cause link
- update reports on ledger entries
- pull data until .plus({days: 1}) to account for all entries of the day
2022-05-30 17:04:25 +05:30

56 lines
1.5 KiB
TypeScript

import { DocValue } from 'fyo/core/types';
import { getOptionList } from 'fyo/utils';
import { ValidationError, ValueError } from 'fyo/utils/errors';
import { t } from 'fyo/utils/translation';
import { Field, OptionField } from 'schemas/types';
import { getIsNullOrUndef } from 'utils';
import { Doc } from './doc';
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 validateOptions(field: OptionField, value: string, doc: Doc) {
const options = getOptionList(field, doc);
if (!options.length) {
return;
}
if (!field.required && !value) {
return;
}
const validValues = options.map((o) => o.value);
if (validValues.includes(value) || field.allowCustom) {
return;
}
throw new ValueError(t`Invalid value ${value} for ${field.label}`);
}
export function validateRequired(field: Field, value: DocValue, doc: Doc) {
if (!getIsNullOrUndef(value)) {
return;
}
if (field.required) {
throw new ValidationError(`${field.label} is required`);
}
const requiredFunction = doc.required[field.fieldname];
if (requiredFunction && requiredFunction()) {
throw new ValidationError(`${field.label} is required`);
}
}