mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
74 lines
2.5 KiB
TypeScript
74 lines
2.5 KiB
TypeScript
import "./resource-quotas.scss";
|
|
|
|
import * as React from "react";
|
|
import { observer } from "mobx-react";
|
|
import { Trans } from "@lingui/macro";
|
|
import { RouteComponentProps } from "react-router";
|
|
import { KubeObjectMenu, KubeObjectMenuProps } from "../kube-object/kube-object-menu";
|
|
import { KubeObjectListLayout } from "../kube-object";
|
|
import { ResourceQuota, resourceQuotaApi } from "../../api/endpoints/resource-quota.api";
|
|
import { AddQuotaDialog } from "./add-quota-dialog";
|
|
import { resourceQuotaStore } from "./resource-quotas.store";
|
|
import { IResourceQuotaRouteParams } from "./resource-quotas.route";
|
|
import { apiManager } from "../../api/api-manager";
|
|
|
|
enum sortBy {
|
|
name = "name",
|
|
namespace = "namespace",
|
|
age = "age"
|
|
}
|
|
|
|
interface Props extends RouteComponentProps<IResourceQuotaRouteParams> {
|
|
}
|
|
|
|
@observer
|
|
export class ResourceQuotas extends React.Component<Props> {
|
|
render() {
|
|
return (
|
|
<>
|
|
<KubeObjectListLayout
|
|
className="ResourceQuotas" store={resourceQuotaStore}
|
|
sortingCallbacks={{
|
|
[sortBy.name]: (item: ResourceQuota) => item.getName(),
|
|
[sortBy.namespace]: (item: ResourceQuota) => item.getNs(),
|
|
[sortBy.age]: (item: ResourceQuota) => item.metadata.creationTimestamp,
|
|
}}
|
|
searchFilters={[
|
|
(item: ResourceQuota) => item.getSearchFields(),
|
|
(item: ResourceQuota) => item.getName(),
|
|
]}
|
|
renderHeaderTitle={<Trans>Resource Quotas</Trans>}
|
|
renderTableHeader={[
|
|
{ title: <Trans>Name</Trans>, className: "name", sortBy: sortBy.name },
|
|
{ title: <Trans>Namespace</Trans>, className: "namespace", sortBy: sortBy.namespace },
|
|
{ title: <Trans>Age</Trans>, className: "age", sortBy: sortBy.age },
|
|
]}
|
|
renderTableContents={(resourceQuota: ResourceQuota) => [
|
|
resourceQuota.getName(),
|
|
resourceQuota.getNs(),
|
|
resourceQuota.getAge(),
|
|
]}
|
|
renderItemMenu={(item: ResourceQuota) => {
|
|
return <ResourceQuotaMenu object={item}/>
|
|
}}
|
|
addRemoveButtons={{
|
|
onAdd: () => AddQuotaDialog.open(),
|
|
addTooltip: <Trans>Create new ResourceQuota</Trans>
|
|
}}
|
|
/>
|
|
<AddQuotaDialog/>
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
export function ResourceQuotaMenu(props: KubeObjectMenuProps<ResourceQuota>) {
|
|
return (
|
|
<KubeObjectMenu {...props}/>
|
|
);
|
|
}
|
|
|
|
apiManager.registerViews(resourceQuotaApi, {
|
|
Menu: ResourceQuotaMenu,
|
|
})
|