discourse/app/assets/javascripts/admin/addon/controllers/admin-plugins.js
David Taylor 48193767bf DEV: Sort imports
Automatically generated by `eslint --fix` to satisfy the updated configuration
2023-10-10 21:46:54 +01:00

37 lines
774 B
JavaScript

import Controller from "@ember/controller";
import { inject as service } from "@ember/service";
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;
}
}
}