0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 15:51:11 +02:00
discourse-custom-wizard/assets/javascripts/wizard/controllers/custom-step.js.es6

33 Zeilen
921 B
Text

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");
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 id = this.get("wizard.id");
2017-10-17 15:17:53 +02:00
window.location.href = getUrl(`/w/${id}/steps/${next}`);
} else {
this.transitionToRoute("custom.step", next);
}
},
goBack() {
this.transitionToRoute("custom.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`);
},
},
});