mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
60 lines
1.9 KiB
TypeScript
60 lines
1.9 KiB
TypeScript
import "./network.scss";
|
|
|
|
import React from "react";
|
|
import { observer } from "mobx-react";
|
|
import { Trans } from "@lingui/macro";
|
|
import { TabLayout, TabLayoutRoute } from "../layout/tab-layout";
|
|
import { Services, servicesRoute, servicesURL } from "../+network-services";
|
|
import { endpointRoute, Endpoints, endpointURL } from "../+network-endpoints";
|
|
import { Ingresses, ingressRoute, ingressURL } from "../+network-ingresses";
|
|
import { NetworkPolicies, networkPoliciesRoute, networkPoliciesURL } from "../+network-policies";
|
|
import { namespaceStore } from "../+namespaces/namespace.store";
|
|
import { isAllowedResource } from "../../../common/rbac";
|
|
|
|
@observer
|
|
export class Network extends React.Component {
|
|
static get tabRoutes(): TabLayoutRoute[] {
|
|
const query = namespaceStore.getContextParams();
|
|
const routes: TabLayoutRoute[] = [];
|
|
if (isAllowedResource("services")) {
|
|
routes.push({
|
|
title: <Trans>Services</Trans>,
|
|
component: Services,
|
|
url: servicesURL({ query }),
|
|
routePath: servicesRoute.path.toString(),
|
|
});
|
|
}
|
|
if (isAllowedResource("endpoints")) {
|
|
routes.push({
|
|
title: <Trans>Endpoints</Trans>,
|
|
component: Endpoints,
|
|
url: endpointURL({ query }),
|
|
routePath: endpointRoute.path.toString(),
|
|
});
|
|
}
|
|
if (isAllowedResource("ingresses")) {
|
|
routes.push({
|
|
title: <Trans>Ingresses</Trans>,
|
|
component: Ingresses,
|
|
url: ingressURL({ query }),
|
|
routePath: ingressRoute.path.toString(),
|
|
});
|
|
}
|
|
if (isAllowedResource("networkpolicies")) {
|
|
routes.push({
|
|
title: <Trans>Network Policies</Trans>,
|
|
component: NetworkPolicies,
|
|
url: networkPoliciesURL({ query }),
|
|
routePath: networkPoliciesRoute.path.toString(),
|
|
});
|
|
}
|
|
return routes;
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<TabLayout className="Network" tabs={Network.tabRoutes}/>
|
|
);
|
|
}
|
|
}
|