mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:43:24 +08:00
ca28548762
* fill blank space when no theme is selected * animate row's height in themes/components list when selecting, and hide children list * show warning when you move to a different page and have unsaved changes * refactor `adminCustomizeThemes.show` controller * allow collapsing/expanding children lists * fix a bug when adding components to a theme (changed the way it works slightly) * a bunch of other minor things
64 lines
1.8 KiB
JavaScript
64 lines
1.8 KiB
JavaScript
export default Ember.Route.extend({
|
|
model(params) {
|
|
const all = this.modelFor("adminCustomizeThemes");
|
|
const model = all.findBy("id", parseInt(params.theme_id));
|
|
return model
|
|
? {
|
|
model,
|
|
target: params.target,
|
|
field_name: params.field_name
|
|
}
|
|
: this.replaceWith("adminCustomizeThemes.index");
|
|
},
|
|
|
|
serialize(wrapper) {
|
|
return {
|
|
model: wrapper.model,
|
|
target: wrapper.target || "common",
|
|
field_name: wrapper.field_name || "scss",
|
|
theme_id: wrapper.model.get("id")
|
|
};
|
|
},
|
|
|
|
setupController(controller, wrapper) {
|
|
const fields = controller.fieldsForTarget(wrapper.target);
|
|
if (!fields.includes(wrapper.field_name)) {
|
|
this.transitionTo(
|
|
"adminCustomizeThemes.edit",
|
|
wrapper.model.id,
|
|
wrapper.target,
|
|
fields[0]
|
|
);
|
|
return;
|
|
}
|
|
controller.set("model", wrapper.model);
|
|
controller.setTargetName(wrapper.target || "common");
|
|
controller.set("fieldName", wrapper.field_name || "scss");
|
|
this.controllerFor("adminCustomizeThemes").set("editingTheme", true);
|
|
this.set("shouldAlertUnsavedChanges", true);
|
|
},
|
|
|
|
actions: {
|
|
willTransition(transition) {
|
|
if (
|
|
this.get("controller.model.changed") &&
|
|
this.get("shouldAlertUnsavedChanges") &&
|
|
transition.intent.name !== this.routeName
|
|
) {
|
|
transition.abort();
|
|
bootbox.confirm(
|
|
I18n.t("admin.customize.theme.unsaved_changes_alert"),
|
|
I18n.t("admin.customize.theme.discard"),
|
|
I18n.t("admin.customize.theme.stay"),
|
|
result => {
|
|
if (!result) {
|
|
this.set("shouldAlertUnsavedChanges", false);
|
|
transition.retry();
|
|
}
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|
|
});
|