import Component from "@glimmer/component"; import { action } from "@ember/object"; import { service } from "@ember/service"; import DButton from "discourse/components/d-button"; import icon from "discourse-common/helpers/d-icon"; import i18n from "discourse-common/helpers/i18n"; import AdminConfigAreaCard from "admin/components/admin-config-area-card"; import InstallThemeModal from "../components/modal/install-theme"; import ThemesGridCard from "./themes-grid-card"; // NOTE (martin): Much of the JS code in this component is placeholder code. Much // of the existing theme logic in /admin/customize/themes has old patterns // and technical debt, so anything copied from there to here is subject // to change as we improve this incrementally. export default class ThemesGrid extends Component { @service modal; @service router; externalResources = [ { key: "admin.customize.theme.beginners_guide_title", link: "https://meta.discourse.org/t/91966", }, { key: "admin.customize.theme.developers_guide_title", link: "https://meta.discourse.org/t/93648", }, { key: "admin.customize.theme.browse_themes", link: "https://meta.discourse.org/c/theme", }, ]; get sortedThemes() { // Always show currently set default theme first return this.args.themes.sort((a, b) => { if (a.default) { return -1; } else if (b.default) { return 1; } }); } // TODO (martin) These install methods may not belong here and they // are incomplete or have stubbed or omitted properties. We may want // to move this to the new config route or a dedicated component // that sits in the route. installThemeOptions() { return { selectedType: "theme", userId: null, content: null, installedThemes: this.args.themes, addTheme: this.addTheme, updateSelectedType: () => {}, }; } @action addTheme(theme) { this.refresh(); theme.setProperties({ recentlyInstalled: true }); this.router.transitionTo("adminCustomizeThemes.show", theme.get("id"), { queryParams: { repoName: null, repoUrl: null, }, }); } @action installModal() { this.modal.show(InstallThemeModal, { model: { ...this.installThemeOptions() }, }); } }