mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
24 lines
433 B
JavaScript
24 lines
433 B
JavaScript
import EmberObject from "@ember/object";
|
|
import ValidState from "wizard/mixins/valid-state";
|
|
|
|
export default EmberObject.extend(ValidState, {
|
|
id: null,
|
|
type: null,
|
|
value: null,
|
|
required: null,
|
|
warning: null,
|
|
|
|
check() {
|
|
if (!this.required) {
|
|
this.setValid(true);
|
|
return true;
|
|
}
|
|
|
|
const val = this.value;
|
|
const valid = val && val.length > 0;
|
|
|
|
this.setValid(valid);
|
|
return valid;
|
|
},
|
|
});
|