1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/+network-ingresses/ingress-details.tsx
Sebastian Malton f269ba8508 Introduce metrics details item for Ingress
Signed-off-by: Sebastian Malton <sebastian@malton.name>
2022-12-01 09:34:04 -05:00

144 lines
4.6 KiB
TypeScript

/**
* Copyright (c) OpenLens Authors. All rights reserved.
* Licensed under MIT License. See LICENSE in root directory for more information.
*/
import "./ingress-details.scss";
import React from "react";
import { observer } from "mobx-react";
import { DrawerItem, DrawerTitle } from "../drawer";
import type { ILoadBalancerIngress } from "../../../common/k8s-api/endpoints";
import { Ingress } from "../../../common/k8s-api/endpoints";
import { Table, TableCell, TableHead, TableRow } from "../table";
import type { KubeObjectDetailsProps } from "../kube-object-details";
import { computeRuleDeclarations } from "../../../common/k8s-api/endpoints/ingress.api";
import type { Logger } from "../../../common/logger";
import { withInjectables } from "@ogre-tools/injectable-react";
import loggerInjectable from "../../../common/logger.injectable";
export interface IngressDetailsProps extends KubeObjectDetailsProps<Ingress> {
}
interface Dependencies {
logger: Logger;
}
@observer
class NonInjectedIngressDetails extends React.Component<IngressDetailsProps & Dependencies> {
renderPaths(ingress: Ingress) {
return ingress.getRules()
.map((rule, index) => (
<div className="rules" key={index}>
{rule.host && (
<div className="host-title">
{`Host: ${rule.host}`}
</div>
)}
{rule.http && (
<Table className="paths">
<TableHead>
<TableCell className="path">Path</TableCell>
<TableCell className="link">Link</TableCell>
<TableCell className="backends">Backends</TableCell>
</TableHead>
{
computeRuleDeclarations(ingress, rule)
.map(({ displayAsLink, service, url, pathname }) => (
<TableRow key={index}>
<TableCell className="path">{pathname}</TableCell>
<TableCell className="link">
{
displayAsLink
? (
<a
href={url}
rel="noreferrer"
target="_blank"
>
{url}
</a>
)
: url
}
</TableCell>
<TableCell className="backends">{service}</TableCell>
</TableRow>
))
}
</Table>
)}
</div>
));
}
renderIngressPoints(ingressPoints: ILoadBalancerIngress[]) {
if (!ingressPoints || ingressPoints.length === 0) return null;
return (
<div>
<Table className="ingress-points">
<TableHead>
<TableCell className="name">Hostname</TableCell>
<TableCell className="ingresspoints">IP</TableCell>
</TableHead>
{
ingressPoints.map(({ hostname, ip }, index) => (
<TableRow key={index}>
<TableCell className="name">{hostname ? hostname : "-"}</TableCell>
<TableCell className="ingresspoints">{ip ? ip : "-"}</TableCell>
</TableRow>
))
}
</Table>
</div>
);
}
render() {
const { object: ingress, logger } = this.props;
if (!ingress) {
return null;
}
if (!(ingress instanceof Ingress)) {
logger.error("[IngressDetails]: passed object that is not an instanceof Ingress", ingress);
return null;
}
const port = ingress.getServiceNamePort();
return (
<div className="IngressDetails">
<DrawerItem name="Ports">
{ingress.getPorts()}
</DrawerItem>
{ingress.spec.tls && (
<DrawerItem name="TLS">
{ingress.spec.tls.map((tls, index) => <p key={index}>{tls.secretName}</p>)}
</DrawerItem>
)}
{port && (
<DrawerItem name="Service">
{`${port.serviceName}:${port.servicePort}`}
</DrawerItem>
)}
<DrawerTitle>Rules</DrawerTitle>
{this.renderPaths(ingress)}
<DrawerTitle>Load-Balancer Ingress Points</DrawerTitle>
{this.renderIngressPoints(ingress.status?.loadBalancer?.ingress ?? [])}
</div>
);
}
}
export const IngressDetails = withInjectables<Dependencies, IngressDetailsProps>(NonInjectedIngressDetails, {
getProps: (di, props) => ({
...props,
logger: di.inject(loggerInjectable),
}),
});