mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* decentralizing page url-params management -- PoC / tsc 4.1 random fixes Signed-off-by: Roman <ixrock@gmail.com> * fixes, tweak example-extension for demo Signed-off-by: Roman <ixrock@gmail.com> * lint fixes, revert tests Signed-off-by: Roman <ixrock@gmail.com> * removed occasional changes related to typescript 4.1 Signed-off-by: Roman <ixrock@gmail.com> * updated example with 2 menu-items targeting same page with different params Signed-off-by: Roman <ixrock@gmail.com> * fix: merge page url chunks with native URL()-api, simplified default page-params registration Signed-off-by: Roman <ixrock@gmail.com> * fix: make lint happy Signed-off-by: Roman <ixrock@gmail.com> * fix: unit-tests Signed-off-by: Roman <ixrock@gmail.com> * renaming by jim's request: UrlParam => PageParam (type), createUrlParam => createPageParam (helper) Signed-off-by: Roman <ixrock@gmail.com> * fix: reverting NamespaceStore public-api breaking changes Signed-off-by: Roman <ixrock@gmail.com> * lint fix Signed-off-by: Roman <ixrock@gmail.com> * fine-tuning Signed-off-by: Roman <ixrock@gmail.com> * yes, lint always unhappy Signed-off-by: Roman <ixrock@gmail.com> * fix build Signed-off-by: Roman <ixrock@gmail.com> * small fixes Signed-off-by: Roman <ixrock@gmail.com> * fix merge-conflicts Signed-off-by: Roman <ixrock@gmail.com> * removed `isSystem` page-param's init field exposed to extensions-api Signed-off-by: Roman <ixrock@gmail.com>
53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
import { KubeObject } from "../../api/kube-object";
|
|
import { observer } from "mobx-react";
|
|
import React from "react";
|
|
import { Table, TableHead, TableCell, TableRow } from "../table";
|
|
import { prevDefault } from "../../utils";
|
|
import { Trans } from "@lingui/macro";
|
|
import { endpointStore } from "../+network-endpoints/endpoints.store";
|
|
import { Spinner } from "../spinner";
|
|
import { showDetails } from "../kube-object";
|
|
|
|
interface Props {
|
|
endpoint: KubeObject;
|
|
}
|
|
|
|
@observer
|
|
export class ServiceDetailsEndpoint extends React.Component<Props> {
|
|
render() {
|
|
const { endpoint } = this.props;
|
|
|
|
if (!endpoint && !endpointStore.isLoaded) return (
|
|
<div className="PodDetailsList flex justify-center"><Spinner/></div>
|
|
);
|
|
|
|
if (!endpoint) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className="EndpointList flex column">
|
|
<Table
|
|
selectable
|
|
virtual={false}
|
|
scrollable={false}
|
|
className="box grow"
|
|
>
|
|
<TableHead>
|
|
<TableCell className="name" ><Trans>Name</Trans></TableCell>
|
|
<TableCell className="endpoints"><Trans>Endpoints</Trans></TableCell>
|
|
</TableHead>
|
|
<TableRow
|
|
key={endpoint.getId()}
|
|
nowrap
|
|
onClick={prevDefault(() => showDetails(endpoint.selfLink, false))}
|
|
>
|
|
<TableCell className="name">{endpoint.getName()}</TableCell>
|
|
<TableCell className="endpoints">{ endpoint.toString()}</TableCell>
|
|
</TableRow>
|
|
</Table>
|
|
</div>
|
|
);
|
|
}
|
|
}
|