mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 08:43:45 +08:00
361e954c55
This commit introduces a little bit of duplication since the old plugin UIs not using the new plugin show page look different from ones like AI and Gamification which have been converted. We can use the new admin header component on the plugins list, but for the other pages we are manually rendering a breadcrumb trail and the list of plugin tabs. Over time as we convert more plugins to use the new UI guidelines and show page we can get rid of this duplication.
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
import Controller from "@ember/controller";
|
|
import { service } from "@ember/service";
|
|
|
|
export default class AdminPluginsController extends Controller {
|
|
@service adminPluginNavManager;
|
|
@service router;
|
|
|
|
get adminRoutes() {
|
|
return this.allAdminRoutes.filter((route) => this.routeExists(route));
|
|
}
|
|
|
|
get brokenAdminRoutes() {
|
|
return this.allAdminRoutes.filter((route) => !this.routeExists(route));
|
|
}
|
|
|
|
// NOTE: See also AdminPluginsIndexController, there is some duplication here
|
|
// while we convert plugins to use_new_show_route
|
|
get allAdminRoutes() {
|
|
return this.model
|
|
.filter((plugin) => plugin?.enabled && plugin?.adminRoute)
|
|
.map((plugin) => {
|
|
return Object.assign(plugin.adminRoute, { plugin_id: plugin.id });
|
|
});
|
|
}
|
|
|
|
get showTopNav() {
|
|
return (
|
|
!this.adminPluginNavManager.viewingPluginsList &&
|
|
(!this.adminPluginNavManager.currentPlugin ||
|
|
this.adminPluginNavManager.isSidebarMode)
|
|
);
|
|
}
|
|
|
|
routeExists(route) {
|
|
try {
|
|
if (route.use_new_show_route) {
|
|
this.router.urlFor(route.full_location, route.location);
|
|
} else {
|
|
this.router.urlFor(route.full_location);
|
|
}
|
|
return true;
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|