discourse/app/assets/javascripts/admin/addon/routes/admin-customize-themes.js
Martin Brennan 986fb522be
FEATURE: Add theme-components route for admin (#24264)
This commit adds an /admin/customize/theme-components route,
that opens the theme page with the components tab pre-selected,
so people can navigate to that directly.
2023-11-08 13:42:27 +10:00

112 lines
2.7 KiB
JavaScript

import { action } from "@ember/object";
import Route from "@ember/routing/route";
import { next } from "@ember/runloop";
import { inject as service } from "@ember/service";
import I18n from "discourse-i18n";
import InstallThemeModal from "../components/modal/install-theme";
export default class AdminCustomizeThemesRoute extends Route {
@service dialog;
@service router;
@service modal;
queryParams = {
repoUrl: null,
repoName: null,
tab: null,
};
model() {
return this.store.findAll("theme");
}
setupController(controller, model) {
super.setupController(controller, model);
if (controller.tab) {
controller.setProperties({
editingTheme: false,
currentTab: controller.tab,
// this is to get rid of the queryString since we don't want it hanging around
tab: undefined,
});
}
if (controller.repoUrl) {
next(() => {
this.modal.show(InstallThemeModal, {
model: {
uploadUrl: controller.repoUrl,
uploadName: controller.repoName,
selection: "directRepoInstall",
clearParams: this.clearParams,
...this.installThemeOptions(model),
},
});
});
}
}
installThemeOptions(model) {
return {
selectedType: this.controller.currentTab,
userId: model.userId,
content: model.content,
installedThemes: this.controller.installedThemes,
addTheme: this.addTheme,
updateSelectedType: this.updateSelectedType,
};
}
@action
routeRefreshModel() {
this.refresh();
}
@action
installModal() {
const currentTheme = this.modelFor("adminCustomizeThemes");
if (this.currentModel?.warnUnassignedComponent) {
this.dialog.yesNoConfirm({
message: I18n.t("admin.customize.theme.unsaved_parent_themes"),
didConfirm: () => {
currentTheme.set("recentlyInstalled", false);
this.modal.show(InstallThemeModal, {
model: { ...this.installThemeOptions(currentTheme) },
});
},
});
} else {
this.modal.show(InstallThemeModal, {
model: { ...this.installThemeOptions(currentTheme) },
});
}
}
@action
updateSelectedType(type) {
this.controller.set("currentTab", type);
}
@action
clearParams() {
this.controller.setProperties({
repoUrl: null,
repoName: null,
});
}
@action
addTheme(theme) {
this.refresh();
theme.setProperties({ recentlyInstalled: true });
this.router.transitionTo("adminCustomizeThemes.show", theme.get("id"), {
queryParams: {
repoName: null,
repoUrl: null,
},
});
}
}