45 lines
1.0 KiB
JavaScript
45 lines
1.0 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));
|
|
}
|
|
|
|
get allAdminRoutes() {
|
|
return this.model
|
|
.filter((plugin) => plugin?.enabled)
|
|
.map((plugin) => {
|
|
return plugin.adminRoute;
|
|
})
|
|
.filter(Boolean);
|
|
}
|
|
|
|
get showTopNav() {
|
|
return (
|
|
!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;
|
|
}
|
|
}
|
|
}
|