Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
48 Zeilen
1,3 KiB
JavaScript
48 Zeilen
1,3 KiB
JavaScript
import CustomWizard from "../models/custom-wizard";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import DiscourseRoute from "discourse/routes/discourse";
|
|
import I18n from "I18n";
|
|
|
|
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");
|
|
}
|
|
},
|
|
|
|
setupController(controller, model) {
|
|
const parentModel = this.modelFor("adminWizardsWizard");
|
|
const wizard = CustomWizard.create(!model || model.create ? {} : model);
|
|
const fieldTypes = Object.keys(parentModel.field_types).map((type) => {
|
|
return {
|
|
id: type,
|
|
name: I18n.t(`admin.wizard.field.type.${type}`),
|
|
};
|
|
});
|
|
|
|
let props = {
|
|
wizardList: parentModel.wizard_list,
|
|
fieldTypes,
|
|
userFields: parentModel.userFields,
|
|
customFields: parentModel.custom_fields,
|
|
apis: parentModel.apis,
|
|
themes: parentModel.themes,
|
|
wizard,
|
|
currentStep: wizard.steps[0],
|
|
currentAction: wizard.actions[0],
|
|
creating: model.create,
|
|
subscribed: parentModel.subscribed,
|
|
subscription: parentModel.subscription,
|
|
};
|
|
|
|
controller.setProperties(props);
|
|
},
|
|
});
|