egroupware_official/api/js/etemplate/Validators/Required.ts
2022-09-20 10:44:28 -06:00

26 lines
731 B
TypeScript

import {Required as LionRequired} from "@lion/form-core";
export class Required extends LionRequired
{
/**
* Returns a Boolean. True if the test fails
* @param {?} [modelValue]
* @param {?} [param]
* @param {{}} [config]
* @returns {Boolean|Promise<Boolean>}
*/
execute(modelValue : any, param : any, config : {}) : boolean | Promise<boolean>
{
return modelValue == "" || modelValue == undefined || modelValue == null;
}
/**
* Give a message about this field being required. Could be customised according to MessageData.
* @param {MessageData | undefined} data
* @returns {Promise<string>}
*/
static async getMessage(data)
{
return data.formControl.egw().lang("Field must not be empty !!!");
}
}