1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/+user-management/user-management.tsx
Sebastian Malton 5ee2ab5b4a
Move all RouteParam's and URL builders to src/common (#2778)
- Prevents some circular dependencies

- Allowed main to use them as needed

Signed-off-by: Sebastian Malton <sebastian@malton.name>
2021-06-10 08:52:09 -04:00

104 lines
3.5 KiB
TypeScript

/**
* Copyright (c) 2021 OpenLens Authors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
import "./user-management.scss";
import React from "react";
import { observer } from "mobx-react";
import { TabLayout, TabLayoutRoute } from "../layout/tab-layout";
import { PodSecurityPolicies } from "../+pod-security-policies";
import { isAllowedResource } from "../../../common/rbac";
import * as routes from "../../../common/routes";
import { ClusterRoleBindings } from "./+cluster-role-bindings";
import { ServiceAccounts } from "./+service-accounts";
import { Roles } from "./+roles";
import { RoleBindings } from "./+role-bindings";
import { ClusterRoles } from "./+cluster-roles";
@observer
export class UserManagement extends React.Component {
static get tabRoutes() {
const tabRoutes: TabLayoutRoute[] = [];
if (isAllowedResource("serviceaccounts")) {
tabRoutes.push({
title: "Service Accounts",
component: ServiceAccounts,
url: routes.serviceAccountsURL(),
routePath: routes.serviceAccountsRoute.path.toString(),
});
}
if (isAllowedResource("clusterroles")) {
tabRoutes.push({
title: "Cluster Roles",
component: ClusterRoles,
url: routes.clusterRolesURL(),
routePath: routes.clusterRolesRoute.path.toString(),
});
}
if (isAllowedResource("roles")) {
tabRoutes.push({
title: "Roles",
component: Roles,
url: routes.rolesURL(),
routePath: routes.rolesRoute.path.toString(),
});
}
if (isAllowedResource("clusterrolebindings")) {
tabRoutes.push({
title: "Cluster Role Bindings",
component: ClusterRoleBindings,
url: routes.clusterRoleBindingsURL(),
routePath: routes.clusterRoleBindingsRoute.path.toString(),
});
}
if (isAllowedResource("rolebindings")) {
tabRoutes.push({
title: "Role Bindings",
component: RoleBindings,
url: routes.roleBindingsURL(),
routePath: routes.roleBindingsRoute.path.toString(),
});
}
if (isAllowedResource("podsecuritypolicies")) {
tabRoutes.push({
title: "Pod Security Policies",
component: PodSecurityPolicies,
url: routes.podSecurityPoliciesURL(),
routePath: routes.podSecurityPoliciesRoute.path.toString(),
});
}
return tabRoutes;
}
render() {
return (
<TabLayout className="UserManagement" tabs={UserManagement.tabRoutes}/>
);
}
}