786e0ac9c5
no issue - if a plain native class instance with tracked properties is validated against the `ValidationEngine` and it's associated validators would cause errors by assuming that the instance has a `.get()` method - updated all model access in `ValidationEngine` and the validators to use direct property access which works for both native class and `EmberObject` instances
30 lines
761 B
JavaScript
30 lines
761 B
JavaScript
import BaseValidator from './base';
|
|
import validator from 'validator';
|
|
import {isBlank} from '@ember/utils';
|
|
|
|
export default BaseValidator.create({
|
|
properties: ['email', 'role'],
|
|
|
|
email(model) {
|
|
let email = model.email;
|
|
|
|
if (isBlank(email)) {
|
|
model.errors.add('email', 'Please enter an email.');
|
|
this.invalidate();
|
|
} else if (!validator.isEmail(email)) {
|
|
model.errors.add('email', 'Invalid Email.');
|
|
this.invalidate();
|
|
}
|
|
},
|
|
|
|
role(model) {
|
|
let role = model.role;
|
|
|
|
if (isBlank(role)) {
|
|
model.errors.add('role', 'Please select a role.');
|
|
model.hasValidated.pushObject('role');
|
|
this.invalidate();
|
|
}
|
|
}
|
|
});
|