042aecb7f6
no issue - minor reduction in build size. Before/after: - `vendor.min.js 3.32 MB (710.66 KB gzipped)` - `vendor.min.js 3.29 MB (706 KB gzipped)`
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
import BaseValidator from './base';
|
|
import validator from 'validator';
|
|
import {isBlank} from '@ember/utils';
|
|
|
|
export default BaseValidator.create({
|
|
properties: ['label', 'url'],
|
|
|
|
label(model) {
|
|
let label = model.get('label');
|
|
let hasValidated = model.get('hasValidated');
|
|
|
|
if (isBlank(label)) {
|
|
model.get('errors').add('label', 'You must specify a label');
|
|
this.invalidate();
|
|
}
|
|
|
|
hasValidated.addObject('label');
|
|
},
|
|
|
|
url(model) {
|
|
let url = model.get('url');
|
|
let hasValidated = model.get('hasValidated');
|
|
/* eslint-disable camelcase */
|
|
let validatorOptions = {require_protocol: true};
|
|
/* eslint-enable camelcase */
|
|
let urlRegex = new RegExp(/^(\/|#|[a-zA-Z0-9-]+:)/);
|
|
|
|
if (isBlank(url)) {
|
|
model.get('errors').add('url', 'You must specify a URL or relative path');
|
|
this.invalidate();
|
|
} else if (url.match(/\s/) || (!validator.isURL(url, validatorOptions) && !url.match(urlRegex))) {
|
|
model.get('errors').add('url', 'You must specify a valid URL or relative path');
|
|
this.invalidate();
|
|
}
|
|
|
|
hasValidated.addObject('url');
|
|
}
|
|
});
|