1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/+network-endpoints/endpoint-subset-list.tsx
Jari Kolehmainen a03da3c572
Remove lingui (#1874)
* remove lingui

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>

* babelless

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>

* tweak ts-loader options

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>

* tweak renderer webpack config

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2020-12-29 14:53:34 +02:00

165 lines
5.1 KiB
TypeScript

import "./endpoint-subset-list.scss";
import React from "react";
import { observer } from "mobx-react";
import { EndpointSubset, Endpoint, EndpointAddress} from "../../api/endpoints";
import { Table, TableCell, TableHead, TableRow } from "../table";
import { autobind } from "../../utils";
import { lookupApiLink } from "../../api/kube-api";
import { Link } from "react-router-dom";
import { getDetailsUrl } from "../kube-object";
interface Props {
subset: EndpointSubset;
endpoint: Endpoint;
}
@observer
export class EndpointSubsetList extends React.Component<Props> {
getAddressTableRow(ip: string) {
const { subset } = this.props;
const address = subset.getAddresses().find(address => address.getId() == ip);
return this.renderAddressTableRow(address);
}
@autobind()
getNotReadyAddressTableRow(ip: string) {
const { subset} = this.props;
const address = subset.getNotReadyAddresses().find(address => address.getId() == ip);
return this.renderAddressTableRow(address);
}
@autobind()
renderAddressTable(addresses: EndpointAddress[], virtual: boolean) {
return (
<div>
<div className="title flex gaps">Addresses</div>
<Table
items={addresses}
selectable={false}
virtual={virtual}
scrollable={false}
getTableRow={this.getAddressTableRow}
className="box grow"
>
<TableHead>
<TableCell className="ip">IP</TableCell>
<TableCell className="name">Hostname</TableCell>
<TableCell className="target">Target</TableCell>
</TableHead>
{
!virtual && addresses.map(address => this.getAddressTableRow(address.getId()))
}
</Table>
</div>
);
}
@autobind()
renderAddressTableRow(address: EndpointAddress) {
const { endpoint } = this.props;
return (
<TableRow
key={address.getId()}
nowrap
>
<TableCell className="ip">{address.ip}</TableCell>
<TableCell className="name">{address.hostname}</TableCell>
<TableCell className="target">
{ address.targetRef && (
<Link to={getDetailsUrl(lookupApiLink(address.getTargetRef(), endpoint))}>
{address.targetRef.name}
</Link>
)}
</TableCell>
</TableRow>
);
}
render() {
const { subset } = this.props;
const addresses = subset.getAddresses();
const notReadyAddresses = subset.getNotReadyAddresses();
const addressesVirtual = addresses.length > 100;
const notReadyAddressesVirtual = notReadyAddresses.length > 100;
return(
<div className="EndpointSubsetList flex column">
{addresses.length > 0 && (
<div>
<div className="title flex gaps">Addresses</div>
<Table
items={addresses}
selectable={false}
virtual={addressesVirtual}
scrollable={false}
getTableRow={this.getAddressTableRow}
className="box grow"
>
<TableHead>
<TableCell className="ip">IP</TableCell>
<TableCell className="host">Hostname</TableCell>
<TableCell className="target">Target</TableCell>
</TableHead>
{ !addressesVirtual && addresses.map(address => this.getAddressTableRow(address.getId())) }
</Table>
</div>
)}
{notReadyAddresses.length > 0 && (
<div>
<div className="title flex gaps">Not Ready Addresses</div>
<Table
items={notReadyAddresses}
selectable
virtual={notReadyAddressesVirtual}
scrollable={false}
getTableRow={this.getNotReadyAddressTableRow}
className="box grow"
>
<TableHead>
<TableCell className="ip">IP</TableCell>
<TableCell className="host">Hostname</TableCell>
<TableCell className="target">Target</TableCell>
</TableHead>
{ !notReadyAddressesVirtual && notReadyAddresses.map(address => this.getNotReadyAddressTableRow(address.getId())) }
</Table>
</div>
)}
<div className="title flex gaps">Ports</div>
<Table
selectable={false}
virtual={false}
scrollable={false}
className="box grow"
>
<TableHead>
<TableCell className="port">Port</TableCell>
<TableCell className="name">Name</TableCell>
<TableCell className="protocol">Protocol</TableCell>
</TableHead>
{
subset.ports.map(port => {
return (
<TableRow
key={port.port}
nowrap
>
<TableCell className="name">{port.port}</TableCell>
<TableCell className="name">{port.name}</TableCell>
<TableCell className="node">{port.protocol}</TableCell>
</TableRow>
);
})
}
</Table>
</div>
);
}
}