mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 15:26:18 +08:00
23 lines
406 B
JavaScript
23 lines
406 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;
|
|
}
|
|
});
|