discourse/app/assets/javascripts/wizard/addon/controllers/wizard-step.js

27 lines
659 B
JavaScript

import getUrl from "discourse-common/lib/get-url";
import Controller from "@ember/controller";
import { action } from "@ember/object";
export default Controller.extend({
wizard: null,
step: null,
@action
goNext(response) {
const next = this.get("step.next");
if (response?.refresh_required) {
document.location = getUrl(`/wizard/steps/${next}`);
} else if (response?.success && next) {
this.transitionToRoute("wizard.step", next);
} else if (response?.success) {
this.transitionToRoute("discovery.latest");
}
},
@action
goBack() {
this.transitionToRoute("wizard.step", this.step.previous);
},
});