mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Leases view Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com> * Renamed default exports Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com>
88 lines
2.9 KiB
TypeScript
88 lines
2.9 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import "./leases.scss";
|
|
|
|
import * as React from "react";
|
|
import { observer } from "mobx-react";
|
|
import type { Lease } from "../../../common/k8s-api/endpoints/lease.api";
|
|
import { KubeObjectStatusIcon } from "../kube-object-status-icon";
|
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
import { KubeObjectListLayout } from "../kube-object-list-layout";
|
|
import { SiblingsInTabLayout } from "../layout/siblings-in-tab-layout";
|
|
import { KubeObjectAge } from "../kube-object/age";
|
|
import { autoBind } from "../../../common/utils";
|
|
import { withInjectables } from "@ogre-tools/injectable-react";
|
|
import leaseStoreInjectable from "./store.injectable";
|
|
import type { LeaseStore } from "./store";
|
|
|
|
enum columnId {
|
|
name = "name",
|
|
namespace = "namespace",
|
|
holder = "holder",
|
|
age = "age",
|
|
}
|
|
|
|
export interface LeaseProps extends KubeObjectDetailsProps<Lease> {
|
|
}
|
|
|
|
interface Dependencies {
|
|
leaseStore: LeaseStore;
|
|
}
|
|
|
|
@observer
|
|
class NonInjectedLease extends React.Component<LeaseProps & Dependencies> {
|
|
constructor(props: LeaseProps & Dependencies) {
|
|
super(props);
|
|
autoBind(this);
|
|
}
|
|
|
|
render() {
|
|
const { leaseStore } = this.props;
|
|
|
|
return (
|
|
<SiblingsInTabLayout>
|
|
<KubeObjectListLayout
|
|
isConfigurable
|
|
tableId="configuration_leases"
|
|
className="Leases"
|
|
store={leaseStore}
|
|
sortingCallbacks={{
|
|
[columnId.name]: lease => lease.getName(),
|
|
[columnId.namespace]: lease => lease.getNs(),
|
|
[columnId.holder]: lease => lease.getHolderIdentity(),
|
|
[columnId.age]: lease => -lease.getCreationTimestamp(),
|
|
}}
|
|
searchFilters={[
|
|
lease => lease.getSearchFields(),
|
|
]}
|
|
renderHeaderTitle="Leases"
|
|
renderTableHeader={[
|
|
{ title: "Name", className: "name", sortBy: columnId.name, id: columnId.name },
|
|
{ className: "warning", showWithColumn: columnId.name },
|
|
{ title: "Namespace", className: "namespace", sortBy: columnId.namespace, id: columnId.namespace },
|
|
{ title: "Holder", className: "holder", sortBy: columnId.holder, id: columnId.holder },
|
|
{ title: "Age", className: "age", sortBy: columnId.age, id: columnId.age },
|
|
]}
|
|
renderTableContents={lease => [
|
|
lease.getName(),
|
|
<KubeObjectStatusIcon key="icon" object={lease} />,
|
|
lease.getNs(),
|
|
lease.getHolderIdentity(),
|
|
<KubeObjectAge key="age" object={lease} />,
|
|
]}
|
|
/>
|
|
</SiblingsInTabLayout>
|
|
);
|
|
}
|
|
}
|
|
|
|
export const Leases = withInjectables<Dependencies, LeaseProps>(NonInjectedLease, {
|
|
getProps: (di, props) => ({
|
|
...props,
|
|
leaseStore: di.inject(leaseStoreInjectable),
|
|
}),
|
|
});
|