mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
58 lines
1.3 KiB
JavaScript
58 lines
1.3 KiB
JavaScript
import computed from "ember-addons/ember-computed-decorators";
|
|
import ValidState from "wizard/mixins/valid-state";
|
|
import { ajax } from "wizard/lib/ajax";
|
|
|
|
export default Ember.Object.extend(ValidState, {
|
|
id: null,
|
|
|
|
@computed("index")
|
|
displayIndex: index => index + 1,
|
|
|
|
@computed("fields.[]")
|
|
fieldsById(fields) {
|
|
const lookup = {};
|
|
fields.forEach(field => (lookup[field.get("id")] = field));
|
|
return lookup;
|
|
},
|
|
|
|
validate() {
|
|
let allValid = true;
|
|
const result = { warnings: [] };
|
|
|
|
this.fields.forEach(field => {
|
|
allValid = allValid && field.check();
|
|
const warning = field.get("warning");
|
|
if (warning) {
|
|
result.warnings.push(warning);
|
|
}
|
|
});
|
|
|
|
this.setValid(allValid);
|
|
|
|
return result;
|
|
},
|
|
|
|
fieldError(id, description) {
|
|
const field = this.fields.findBy("id", id);
|
|
if (field) {
|
|
field.setValid(false, description);
|
|
}
|
|
},
|
|
|
|
save() {
|
|
const fields = {};
|
|
this.fields.forEach(f => (fields[f.id] = f.value));
|
|
|
|
return ajax({
|
|
url: `/wizard/steps/${this.id}`,
|
|
type: "PUT",
|
|
data: { fields }
|
|
}).catch(response => {
|
|
response.responseJSON.errors.forEach(err =>
|
|
this.fieldError(err.field, err.description)
|
|
);
|
|
throw new Error(response);
|
|
});
|
|
}
|
|
});
|