Automate fields validation in Angular-Formly.
meteor add wieldo:angular-formly-validator
- Add package using
meteor add
(see above) - Add the following dependencies to your AngularJS module:
angular.module('myApp', [
'formly',
'formlyValidator'
])
formlyValidator.register('required', function(config, $viewValue, $modelValue, scope) {
return true;
});
In field configuration, use structure as in example below:
{
transformers: {
validators: {
validatorName: validatorConfig
}
}
}
See formlyValidator
Each validator has build-in helper methods.
@returns Error
Throws Error with this message syntax
[formlyValidator] [validatorName] <msg>
{
required: <boolean>
}
{
minlength: <integer>
}
{
maxlength: <integer>
}
{
minnumber: <integer>
}
{
maxnumber: <integer>
}
Check if model matches pattern
{
pattern: <RegExp|string>
}
Check if model does not match pattern (negation of pattern)
{
notpattern: <RegExp|string>
}
Check if model matches the other model.
Field's key as a value.
{
match: <string>
}
Check if model does not match the other model (negation of match)
Field's key as a value.
{
notmatch: <string>
}
Check if model contains phrase of phrases.
{
contain: <string|string[]>
}
Check if model does not contain phrase of phrases.
{
notcontain: <string|string[]>
}
Check if model equals one of allowed values.
{
allowed: <any|any[]>
}
Check if model does not equal one of not allowed values.
{
notallowed: <any|any[]>
}
angular.module('myAppName', [
'formly',
'formlyValidator'
])
.run(runApp)
.controller('demoCtrl', demoCtrl);
function runApp(formlyValidator) {
// register customRequired validator
formlyValidator.register('customRequired', function(configValue, $viewValue, $modelValue) {
if(configValue !== true) {
return true;
}
var value = $viewValue || $modelValue;
return (value && value !== "") === true;
});
}
function demoCtrl() {
var vm = this;
vm.fields = [
key: 'firstName',
type: 'input',
templateOptions: {
label: "First name"
},
transformers: {
validators: {
customRequired: true
}
}
];
// if firstName value is empty
// then $scope.form.firstName.$error contain customRequired === false
}