You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
985 B
30 lines
985 B
import rules from '../rule/index.js';
|
|
import { isEmptyValue } from '../util';
|
|
/**
|
|
* Validates an array.
|
|
*
|
|
* @param rule The validation rule.
|
|
* @param value The value of the field on the source object.
|
|
* @param callback The callback function.
|
|
* @param source The source object being validated.
|
|
* @param options The validation options.
|
|
* @param options.messages The validation messages.
|
|
*/
|
|
function array(rule, value, callback, source, options) {
|
|
const errors = [];
|
|
const validate = rule.required || (!rule.required && source.hasOwnProperty(rule.field));
|
|
if (validate) {
|
|
if (isEmptyValue(value, 'array') && !rule.required) {
|
|
return callback();
|
|
}
|
|
rules.required(rule, value, source, errors, options, 'array');
|
|
if (!isEmptyValue(value, 'array')) {
|
|
rules.type(rule, value, source, errors, options);
|
|
rules.range(rule, value, source, errors, options);
|
|
}
|
|
}
|
|
callback(errors);
|
|
}
|
|
|
|
export default array;
|