0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2025-02-02 19:37:01 +01:00
discourse-custom-wizard/assets/javascripts/discourse/routes/admin-wizard.js.es6

67 Zeilen
1,6 KiB
Text

2017-09-23 10:34:07 +08:00
import CustomWizard from '../models/custom-wizard';
2017-10-05 08:36:46 +08:00
import { ajax } from 'discourse/lib/ajax';
2017-09-23 10:34:07 +08:00
export default Discourse.Route.extend({
2017-10-13 21:02:34 +08:00
beforeModel() {
const param = this.paramsFor('adminWizard').wizard_id;
const wizards = this.modelFor('admin-wizards-custom');
if (wizards.length && (param === 'first' || param === 'last')) {
const wizard = wizards.get(`${param}Object`);
if (wizard) {
this.transitionTo('adminWizard', wizard.id.dasherize());
}
}
},
2017-09-23 10:34:07 +08:00
model(params) {
2017-10-13 21:02:34 +08:00
const wizardId = params.wizard_id;
if (wizardId === 'new') {
2017-10-07 10:27:38 +08:00
this.set('newWizard', true);
return CustomWizard.create();
2017-10-09 13:52:09 +08:00
};
2017-10-07 10:27:38 +08:00
this.set('newWizard', false);
2017-09-23 10:34:07 +08:00
2017-10-13 21:02:34 +08:00
const wizard = this.modelFor('admin-wizards-custom').findBy('id', wizardId.underscore());
if (!wizard) return this.transitionTo('adminWizard', 'new');
2017-09-23 10:34:07 +08:00
return wizard;
},
2017-10-05 08:36:46 +08:00
afterModel(model) {
return Ember.RSVP.all([
this._getFieldTypes(model),
this._getThemes(model)
]);
},
_getFieldTypes(model) {
2017-10-05 08:36:46 +08:00
return ajax('/admin/wizards/field-types')
.then((result) => model.set('fieldTypes', result.types));
},
_getThemes(model) {
return this.store.findAll('theme').then((result) => {
model.set('themes', result.content);
});
},
2017-09-23 10:34:07 +08:00
setupController(controller, model) {
2017-10-07 10:27:38 +08:00
const newWizard = this.get('newWizard');
const steps = model.get('steps') || [];
controller.setProperties({
newWizard,
model,
currentStep: steps[0]
});
2017-10-06 10:59:02 +08:00
},
actions: {
2017-10-07 10:27:38 +08:00
refreshWizard() {
2017-10-06 10:59:02 +08:00
this.refresh();
}
2017-09-23 10:34:07 +08:00
}
});