mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
986fb522be
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.
112 lines
2.7 KiB
JavaScript
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,
|
|
},
|
|
});
|
|
}
|
|
}
|