mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
05ee1d1aba
- These advanced fields are hidden behind an 'advanced' button, so will not affect normal use - The editor has been refactored into a component, and styling cleaned up so menu items do not overlap on small screens - Styling has been added to indicate which fields are in use for a theme - Icons have been added to identify which fields have errors
79 lines
2.0 KiB
JavaScript
79 lines
2.0 KiB
JavaScript
import { url } from "discourse/lib/computed";
|
|
import { default as computed } from "ember-addons/ember-computed-decorators";
|
|
|
|
export default Ember.Controller.extend({
|
|
section: null,
|
|
currentTarget: 0,
|
|
maximized: false,
|
|
previewUrl: url("model.id", "/admin/themes/%@/preview"),
|
|
showAdvanced: false,
|
|
editRouteName: "adminCustomizeThemes.edit",
|
|
showRouteName: "adminCustomizeThemes.show",
|
|
|
|
setTargetName: function(name) {
|
|
const target = this.get("model.targets").find(t => t.name === name);
|
|
this.set("currentTarget", target && target.id);
|
|
},
|
|
|
|
@computed("currentTarget")
|
|
currentTargetName(id) {
|
|
const target = this.get("model.targets").find(
|
|
t => t.id === parseInt(id, 10)
|
|
);
|
|
return target && target.name;
|
|
},
|
|
|
|
@computed("model.isSaving")
|
|
saveButtonText(isSaving) {
|
|
return isSaving ? I18n.t("saving") : I18n.t("admin.customize.save");
|
|
},
|
|
|
|
@computed("model.changed", "model.isSaving")
|
|
saveDisabled(changed, isSaving) {
|
|
return !changed || isSaving;
|
|
},
|
|
|
|
actions: {
|
|
save() {
|
|
this.set("saving", true);
|
|
this.get("model")
|
|
.saveChanges("theme_fields")
|
|
.finally(() => {
|
|
this.set("saving", false);
|
|
});
|
|
},
|
|
|
|
fieldAdded(target, name) {
|
|
this.replaceRoute(
|
|
this.get("editRouteName"),
|
|
this.get("model.id"),
|
|
target,
|
|
name
|
|
);
|
|
},
|
|
|
|
onlyOverriddenChanged(onlyShowOverridden) {
|
|
if (onlyShowOverridden) {
|
|
if (
|
|
!this.get("model").hasEdited(
|
|
this.get("currentTargetName"),
|
|
this.get("fieldName")
|
|
)
|
|
) {
|
|
let firstTarget = this.get("model.targets").find(t => t.edited);
|
|
let firstField = this.get(`model.fields.${firstTarget.name}`).find(
|
|
f => f.edited
|
|
);
|
|
|
|
this.replaceRoute(
|
|
this.get("editRouteName"),
|
|
this.get("model.id"),
|
|
firstTarget.name,
|
|
firstField.name
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|