22 lines
801 B
JavaScript
22 lines
801 B
JavaScript
|
|
import rules from "../rule";
|
||
|
|
import { isEmptyValue } from "../util";
|
||
|
|
var string = function string(rule, value, callback, source, options) {
|
||
|
|
var errors = [];
|
||
|
|
var validate = rule.required || !rule.required && source.hasOwnProperty(rule.field);
|
||
|
|
if (validate) {
|
||
|
|
if (isEmptyValue(value, 'string') && !rule.required) {
|
||
|
|
return callback();
|
||
|
|
}
|
||
|
|
rules.required(rule, value, source, errors, options, 'string');
|
||
|
|
if (!isEmptyValue(value, 'string')) {
|
||
|
|
rules.type(rule, value, source, errors, options);
|
||
|
|
rules.range(rule, value, source, errors, options);
|
||
|
|
rules.pattern(rule, value, source, errors, options);
|
||
|
|
if (rule.whitespace === true) {
|
||
|
|
rules.whitespace(rule, value, source, errors, options);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
callback(errors);
|
||
|
|
};
|
||
|
|
export default string;
|