discourse/app/assets/javascripts/admin/addon/controllers/admin-plugins.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
774 B
JavaScript
Raw Normal View History

import { inject as service } from "@ember/service";
import Controller from "@ember/controller";
export default class AdminPluginsController extends Controller {
@service router;
get adminRoutes() {
return this.allAdminRoutes.filter((route) =>
this.routeExists(route.full_location)
);
}
get brokenAdminRoutes() {
return this.allAdminRoutes.filter(
(route) => !this.routeExists(route.full_location)
);
}
get allAdminRoutes() {
return this.model
.filter((plugin) => plugin?.enabled)
.map((plugin) => {
return plugin.adminRoute;
})
.filter(Boolean);
}
routeExists(routeName) {
try {
this.router.urlFor(routeName);
return true;
} catch (e) {
return false;
}
}
}