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

37 Zeilen
956 B
Text

2022-03-16 12:33:34 +01:00
import Controller from "@ember/controller";
import getUrl from "discourse-common/lib/get-url";
2022-03-16 12:33:34 +01:00
export default Controller.extend({
wizard: null,
step: null,
actions: {
goNext(response) {
let nextStepId = response["next_step_id"];
2019-08-29 01:51:18 +02:00
if (response.redirect_on_next) {
window.location.href = response.redirect_on_next;
} else if (response.refresh_required) {
const wizardId = this.get("wizard.id");
window.location.href = getUrl(`/w/${wizardId}/steps/${nextStepId}`);
} else {
2022-03-16 12:33:34 +01:00
this.transitionToRoute("step", nextStepId);
}
},
goBack() {
2022-03-16 12:33:34 +01:00
this.transitionToRoute("step", this.get("step.previous"));
2017-10-13 15:02:34 +02:00
},
showMessage(message) {
this.set("stepMessage", message);
2019-07-27 09:01:29 +02:00
},
resetWizard() {
const id = this.get("wizard.id");
const stepId = this.get("step.id");
2019-07-27 09:01:29 +02:00
window.location.href = getUrl(`/w/${id}/steps/${stepId}?reset=true`);
},
},
});