mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 08:38:42 +08:00
24 lines
407 B
JavaScript
24 lines
407 B
JavaScript
import ValidState from 'wizard/mixins/valid-state';
|
|
|
|
export default Ember.Object.extend(ValidState, {
|
|
id: null,
|
|
type: null,
|
|
value: null,
|
|
required: null,
|
|
warning: null,
|
|
|
|
check() {
|
|
if (!this.get('required')) {
|
|
this.setValid(true);
|
|
return true;
|
|
}
|
|
|
|
const val = this.get('value');
|
|
const valid = val && val.length > 0;
|
|
|
|
this.setValid(valid);
|
|
return valid;
|
|
}
|
|
|
|
});
|