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/discourse/routes/admin-wizards-wizard-show.js.es6

46 Zeilen
1,2 KiB
Text

2020-04-13 14:17:22 +02:00
import CustomWizard from '../models/custom-wizard';
import { ajax } from 'discourse/lib/ajax';
import DiscourseRoute from "discourse/routes/discourse";
2020-05-28 05:06:06 +02:00
import I18n from "I18n";
2020-04-13 14:17:22 +02:00
export default DiscourseRoute.extend({
model(params) {
if (params.wizardId === 'create') {
return { create: true };
} else {
return ajax(`/admin/wizards/wizard/${params.wizardId}`);
}
},
afterModel(model) {
if (model.none) {
return this.transitionTo('adminWizardsWizard');
}
},
2020-04-14 01:39:21 +02:00
setupController(controller, model) {
2020-04-13 14:17:22 +02:00
const parentModel = this.modelFor('adminWizardsWizard');
const wizard = CustomWizard.create((!model || model.create) ? {} : model);
2020-04-20 13:40:32 +02:00
const fieldTypes = Object.keys(parentModel.field_types).map(type => {
return {
id: type,
name: I18n.t(`admin.wizard.field.type.${type}`)
};
})
2020-04-22 15:03:18 +02:00
2020-04-20 11:41:13 +02:00
let props = {
2020-04-13 14:17:22 +02:00
wizardList: parentModel.wizard_list,
2020-04-20 13:40:32 +02:00
fieldTypes,
2020-04-13 14:17:22 +02:00
userFields: parentModel.userFields,
apis: parentModel.apis,
themes: parentModel.themes,
wizard,
currentStep: wizard.steps[0],
currentAction: wizard.actions[0],
creating: model.create
2020-04-20 11:41:13 +02:00
};
controller.setProperties(props);
2020-04-13 14:17:22 +02:00
}
});