1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/wizard/controllers/custom-step.js.es6
2019-07-02 14:49:14 +10:00

26 Zeilen
717 B
JavaScript

import StepController from 'wizard/controllers/step';
import getUrl from 'discourse-common/lib/get-url';
export default StepController.extend({
actions: {
goNext(response) {
const next = this.get('step.next');
if (response.route_to) {
window.location.href = response.route_to;
} else if (response.refresh_required) {
const id = this.get('wizard.id');
window.location.href = getUrl(`/w/${id}/steps/${next}`);
} else {
this.transitionToRoute('custom.step', next);
}
},
goBack() {
this.transitionToRoute('custom.step', this.get('step.previous'));
},
showMessage(message) {
this.set('stepMessage', message);
}
}
});