2017-08-22 10:53:26 +03:00
|
|
|
import Component from '@ember/component';
|
2016-05-24 15:06:59 +03:00
|
|
|
import ValidationStateMixin from 'ghost-admin/mixins/validation-state';
|
2017-08-22 10:53:26 +03:00
|
|
|
import {computed} from '@ember/object';
|
2015-09-16 20:02:06 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles the CSS necessary to show a specific property state. When passed a
|
|
|
|
* DS.Errors object and a property name, if the DS.Errors object has errors for
|
|
|
|
* the specified property, it will change the CSS to reflect the error state
|
|
|
|
* @param {DS.Errors} errors The DS.Errors object
|
|
|
|
* @param {string} property Name of the property
|
|
|
|
*/
|
2015-10-28 14:36:45 +03:00
|
|
|
export default Component.extend(ValidationStateMixin, {
|
2015-09-16 20:02:06 +03:00
|
|
|
classNameBindings: ['errorClass'],
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
errorClass: computed('property', 'hasError', 'hasValidated.[]', function () {
|
2019-03-06 16:53:54 +03:00
|
|
|
let hasValidated = this.hasValidated;
|
|
|
|
let property = this.property;
|
2015-10-14 14:34:32 +03:00
|
|
|
|
2016-09-24 18:48:06 +03:00
|
|
|
if (hasValidated && hasValidated.includes(property)) {
|
2019-03-06 16:53:54 +03:00
|
|
|
return this.hasError ? 'error' : 'success';
|
2015-10-04 03:11:07 +03:00
|
|
|
} else {
|
|
|
|
return '';
|
|
|
|
}
|
2015-09-16 20:02:06 +03:00
|
|
|
})
|
|
|
|
});
|