Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
32 Zeilen
903 B
JavaScript
32 Zeilen
903 B
JavaScript
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');
|
|
if (response.route_to) {
|
|
window.location.href = response.route_to;
|
|
} else if (response.refresh_required) {
|
|
const id = this.get('wizard.id');
|
|
window.location.href = getUrl(`/w/${id}/steps/${next}`);
|
|
} else {
|
|
this.transitionToRoute('custom.step', next);
|
|
}
|
|
},
|
|
|
|
goBack() {
|
|
this.transitionToRoute('custom.step', this.get('step.previous'));
|
|
},
|
|
|
|
showMessage(message) {
|
|
this.set('stepMessage', message);
|
|
},
|
|
|
|
resetWizard() {
|
|
const id = this.get('wizard.id');
|
|
const stepId = this.get('step.id');
|
|
window.location.href = getUrl(`/w/${id}/steps/${stepId}?reset=true`);
|
|
}
|
|
}
|
|
});
|