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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
686 B
JavaScript
Raw Normal View History

import getUrl from "discourse-common/lib/get-url";
import Controller from "@ember/controller";
export default Controller.extend({
2016-08-26 01:14:56 +08:00
wizard: null,
step: null,
2016-08-26 01:14:56 +08:00
actions: {
2016-09-08 06:04:01 +08:00
goNext(response) {
const next = this.get("step.next");
if (response && response.refresh_required) {
if (this.get("step.id") === "locale") {
document.location = getUrl(`/wizard/steps/${next}`);
return;
} else {
this.send("refresh");
}
2016-09-08 06:04:01 +08:00
}
if (response && response.success) {
this.transitionToRoute("step", next);
}
2016-08-26 01:14:56 +08:00
},
goBack() {
this.transitionToRoute("step", this.get("step.previous"));
},
},
});