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';
|
2022-02-01 12:34:03 +03:00
|
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
import {classNameBindings} from '@ember-decorators/component';
|
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
|
|
|
|
*/
|
2022-02-01 12:34:03 +03:00
|
|
|
@classic
|
|
|
|
@classNameBindings('errorClass')
|
|
|
|
export default class GhValidationStatusContainer extends Component.extend(ValidationStateMixin) {
|
|
|
|
@computed('property', 'hasError', 'hasValidated.[]')
|
|
|
|
get errorClass() {
|
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 '';
|
|
|
|
}
|
2022-02-01 12:34:03 +03:00
|
|
|
}
|
|
|
|
}
|