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-10-20 07:40:23 +02:00
|
|
|
import { selectKitContent } from '../lib/wizard';
|
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,
|
2020-10-20 07:40:23 +02:00
|
|
|
customFields: selectKitContent(parentModel.custom_fields.map(f => f.name)),
|
2020-04-13 14:17:22 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
});
|