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

21 lines
472 B
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import getUrl from "discourse-common/lib/get-url";
export default Ember.Controller.extend({
2016-08-25 13:14:56 -04:00
wizard: null,
step: null,
2016-08-25 13:14:56 -04:00
actions: {
2016-09-07 18:04:01 -04:00
goNext(response) {
2018-06-15 11:03:24 -04:00
const next = this.get("step.next");
2016-09-07 18:04:01 -04:00
if (response.refresh_required) {
document.location = getUrl(`/wizard/steps/${next}`);
2016-09-07 18:04:01 -04:00
} else {
2018-06-15 11:03:24 -04:00
this.transitionToRoute("step", next);
2016-09-07 18:04:01 -04:00
}
2016-08-25 13:14:56 -04:00
},
goBack() {
2018-06-15 11:03:24 -04:00
this.transitionToRoute("step", this.get("step.previous"));
}
2016-08-25 13:14:56 -04:00
}
});