mirror of
https://github.com/discourse/discourse.git
synced 2026-08-08 12:08:12 -05:00
158 lines
3.9 KiB
Plaintext
158 lines
3.9 KiB
Plaintext
import { tracked } from "@glimmer/tracking";
|
|
import Component from "@ember/component";
|
|
import { action, computed } from "@ember/object";
|
|
import { next } from "@ember/runloop";
|
|
import { service } from "@ember/service";
|
|
import { fmt } from "discourse/lib/computed";
|
|
import discourseComputed from "discourse/lib/decorators";
|
|
import { isDocumentRTL } from "discourse/lib/text-direction";
|
|
import { i18n } from "discourse-i18n";
|
|
|
|
const JS_DEFAULT_VALUE = `import { apiInitializer } from "discourse/lib/api";
|
|
|
|
export default apiInitializer((api) => {
|
|
// Your code here
|
|
});
|
|
`;
|
|
|
|
const ADVANCED_TARGETS = ["desktop", "mobile"];
|
|
|
|
const ADVANCED_FIELDS = [
|
|
"embedded_scss",
|
|
"embedded_header",
|
|
"color_definitions",
|
|
"body_tag",
|
|
];
|
|
|
|
export default class AdminThemeEditor extends Component {
|
|
@service router;
|
|
|
|
@tracked showAdvanced;
|
|
@tracked onlyOverridden;
|
|
@tracked currentTargetName;
|
|
|
|
warning = null;
|
|
|
|
@fmt("fieldName", "currentTargetName", "%@|%@") editorId;
|
|
|
|
get visibleTargets() {
|
|
return this.theme.targets.filter((target) => {
|
|
if (target.edited) {
|
|
return true;
|
|
}
|
|
if (!this.showAdvanced && ADVANCED_TARGETS.includes(target.name)) {
|
|
return false;
|
|
}
|
|
if (!this.onlyOverridden) {
|
|
return true;
|
|
}
|
|
});
|
|
}
|
|
|
|
get visibleFields() {
|
|
let fields = this.theme.fields[this.currentTargetName];
|
|
if (this.onlyOverridden) {
|
|
fields = fields.filter((field) => field.edited);
|
|
}
|
|
if (!this.showAdvanced) {
|
|
fields = fields.filter(
|
|
(field) => field.edited || !ADVANCED_FIELDS.includes(field.name)
|
|
);
|
|
}
|
|
return fields;
|
|
}
|
|
|
|
get currentField() {
|
|
return this.theme.fields[this.currentTargetName].find(
|
|
(field) => field.name === this.fieldName
|
|
);
|
|
}
|
|
|
|
@discourseComputed("currentTargetName", "fieldName")
|
|
activeSectionMode(targetName, fieldName) {
|
|
if (fieldName === "color_definitions") {
|
|
return "scss";
|
|
}
|
|
if (fieldName === "js") {
|
|
return "javascript";
|
|
}
|
|
return fieldName && fieldName.includes("scss") ? "scss" : "html";
|
|
}
|
|
|
|
@discourseComputed("currentTargetName", "fieldName")
|
|
placeholder(targetName, fieldName) {
|
|
if (fieldName && fieldName === "color_definitions") {
|
|
const example =
|
|
":root {\n" +
|
|
" --mytheme-tertiary-or-highlight: #{dark-light-choose($tertiary, $highlight)};\n" +
|
|
"}";
|
|
|
|
return i18n("admin.customize.theme.color_definitions.placeholder", {
|
|
example: isDocumentRTL() ? `<div dir="ltr">${example}</div>` : example,
|
|
});
|
|
}
|
|
return "";
|
|
}
|
|
|
|
@computed("fieldName", "currentTargetName", "theme")
|
|
get activeSection() {
|
|
const themeValue = this.theme.getField(
|
|
this.currentTargetName,
|
|
this.fieldName
|
|
);
|
|
if (!themeValue && this.fieldName === "js") {
|
|
return JS_DEFAULT_VALUE;
|
|
}
|
|
return themeValue;
|
|
}
|
|
|
|
set activeSection(value) {
|
|
if (this.fieldName === "js" && value === JS_DEFAULT_VALUE) {
|
|
value = "";
|
|
}
|
|
this.theme.setField(this.currentTargetName, this.fieldName, value);
|
|
}
|
|
|
|
@discourseComputed("maximized")
|
|
maximizeIcon(maximized) {
|
|
return maximized ? "discourse-compress" : "discourse-expand";
|
|
}
|
|
|
|
@discourseComputed(
|
|
"currentTargetName",
|
|
"fieldName",
|
|
"theme.theme_fields.@each.error"
|
|
)
|
|
error(target, fieldName) {
|
|
return this.theme.getError(target, fieldName);
|
|
}
|
|
|
|
@action
|
|
toggleMaximize(event) {
|
|
event?.preventDefault();
|
|
this.toggleProperty("maximized");
|
|
next(() => this.appEvents.trigger("ace:resize"));
|
|
}
|
|
|
|
@action
|
|
setWarning(message) {
|
|
this.set("warning", message);
|
|
}
|
|
|
|
@action
|
|
toggleShowAdvanced() {
|
|
this.showAdvanced = !this.showAdvanced;
|
|
if (
|
|
!this.visibleTargets.some((t) => t.name === this.currentTargetName) ||
|
|
!this.visibleFields.some((f) => f.name === this.fieldName)
|
|
) {
|
|
this.router.replaceWith(
|
|
this.editRouteName,
|
|
this.theme.id,
|
|
this.visibleTargets[0].name,
|
|
this.visibleFields[0].name
|
|
);
|
|
}
|
|
}
|
|
}
|