1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/discourse/routes/admin-wizard.js.es6
Angus McLeod 7b09410a26 various
2017-10-05 08:36:46 +08:00

27 Zeilen
743 B
JavaScript

import CustomWizard from '../models/custom-wizard';
import { ajax } from 'discourse/lib/ajax';
export default Discourse.Route.extend({
model(params) {
if (params.wizard_id === 'new') {
this.set('new', true);
return CustomWizard.create();
}
this.set('new', false);
const wizard = this.modelFor('admin-wizards-custom').findBy('id', params.wizard_id);
if (!wizard) return this.transitionTo('adminWizardsCustom.index');
return wizard;
},
afterModel(model) {
return ajax('/admin/wizards/field-types')
.then((result) => model.set('fieldTypes', result.types));
},
setupController(controller, model) {
controller.set("new", this.get('new'));
controller.set("model", model);
}
});