mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
136 lines
4.6 KiB
TypeScript
136 lines
4.6 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 "./crd-resources.scss";
|
|
|
|
import React from "react";
|
|
import jsonPath from "jsonpath";
|
|
import { observer } from "mobx-react";
|
|
import type { RouteComponentProps } from "react-router";
|
|
import { KubeObjectListLayout } from "../kube-object-list-layout";
|
|
import type { KubeObject } from "../../api/kube-object";
|
|
import { computed, makeObservable } from "mobx";
|
|
import { crdStore } from "./crd.store";
|
|
import type { TableSortCallbacks } from "../table";
|
|
import { apiManager } from "../../api/api-manager";
|
|
import { parseJsonPath } from "../../utils/jsonPath";
|
|
import type { CRDRouteParams } from "../../../common/routes";
|
|
|
|
interface Props extends RouteComponentProps<CRDRouteParams> {
|
|
}
|
|
|
|
enum columnId {
|
|
name = "name",
|
|
namespace = "namespace",
|
|
age = "age",
|
|
}
|
|
|
|
@observer
|
|
export class CrdResources extends React.Component<Props> {
|
|
constructor(props: Props) {
|
|
super(props);
|
|
makeObservable(this);
|
|
}
|
|
|
|
@computed get crd() {
|
|
const { group, name } = this.props.match.params;
|
|
|
|
return crdStore.getByGroup(group, name);
|
|
}
|
|
|
|
@computed get store() {
|
|
if (!this.crd) return null;
|
|
|
|
return apiManager.getStore(this.crd.getResourceApiBase());
|
|
}
|
|
|
|
render() {
|
|
const { crd, store } = this;
|
|
|
|
if (!crd) return null;
|
|
const isNamespaced = crd.isNamespaced();
|
|
const extraColumns = crd.getPrinterColumns(false); // Cols with priority bigger than 0 are shown in details
|
|
const sortingCallbacks: TableSortCallbacks<KubeObject> = {
|
|
[columnId.name]: item => item.getName(),
|
|
[columnId.namespace]: item => item.getNs(),
|
|
[columnId.age]: item => item.getTimeDiffFromNow(),
|
|
};
|
|
|
|
extraColumns.forEach(column => {
|
|
sortingCallbacks[column.name] = item => jsonPath.value(item, parseJsonPath(column.jsonPath.slice(1)));
|
|
});
|
|
|
|
return (
|
|
<KubeObjectListLayout
|
|
isConfigurable
|
|
key={`crd_resources_${crd.getResourceApiBase()}`}
|
|
tableId="crd_resources"
|
|
className="CrdResources"
|
|
store={store}
|
|
sortingCallbacks={sortingCallbacks}
|
|
searchFilters={[
|
|
item => item.getSearchFields(),
|
|
]}
|
|
renderHeaderTitle={crd.getResourceTitle()}
|
|
customizeHeader={({ searchProps, ...headerPlaceholders }) => ({
|
|
searchProps: {
|
|
...searchProps,
|
|
placeholder: `Search ${crd.getResourceTitle()}...`,
|
|
},
|
|
...headerPlaceholders
|
|
})}
|
|
renderTableHeader={[
|
|
{ title: "Name", className: "name", sortBy: columnId.name, id: columnId.name },
|
|
isNamespaced && { title: "Namespace", className: "namespace", sortBy: columnId.namespace, id: columnId.namespace },
|
|
...extraColumns.map(column => {
|
|
const { name } = column;
|
|
|
|
return {
|
|
title: name,
|
|
className: name.toLowerCase(),
|
|
sortBy: name,
|
|
id: name
|
|
};
|
|
}),
|
|
{ title: "Age", className: "age", sortBy: columnId.age, id: columnId.age },
|
|
]}
|
|
renderTableContents={crdInstance => [
|
|
crdInstance.getName(),
|
|
isNamespaced && crdInstance.getNs(),
|
|
...extraColumns.map((column) => {
|
|
let value = jsonPath.value(crdInstance, parseJsonPath(column.jsonPath.slice(1)));
|
|
|
|
if (Array.isArray(value) || typeof value === "object") {
|
|
value = JSON.stringify(value);
|
|
}
|
|
|
|
return {
|
|
renderBoolean: true,
|
|
children: value,
|
|
};
|
|
}),
|
|
crdInstance.getAge(),
|
|
]}
|
|
/>
|
|
);
|
|
}
|
|
}
|