1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/wizard/routes/custom-step.js.es6

34 Zeilen
768 B
Text

2017-10-13 15:02:34 +02:00
export default Ember.Route.extend({
model(params) {
const appModel = this.modelFor('custom');
const allSteps = appModel.steps;
if (allSteps) {
const step = allSteps.findBy('id', params.step_id);
return step ? step : allSteps[0];
};
2017-10-13 15:02:34 +02:00
return appModel;
},
afterModel(model) {
if (model.completed) return this.transitionTo('index');
return model.set("wizardId", this.modelFor('custom').id);
},
setupController(controller, model) {
let props = {
step: model,
wizard: this.modelFor('custom')
};
if (!model.permitted) {
props['stepMessage'] = {
state: 'not-permitted',
text: "You're not allowed to view this step."
};
}
controller.setProperties(props);
2017-10-13 15:02:34 +02:00
}
});