mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
83 lines
2.8 KiB
TypeScript
83 lines
2.8 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import "./view.scss";
|
|
|
|
import { observer } from "mobx-react";
|
|
import React from "react";
|
|
import { KubeObjectListLayout } from "../../kube-object-list-layout";
|
|
import { KubeObjectStatusIcon } from "../../kube-object-status-icon";
|
|
import { AddClusterRoleDialog } from "./add-dialog/view";
|
|
import { SiblingsInTabLayout } from "../../layout/siblings-in-tab-layout";
|
|
import { KubeObjectAge } from "../../kube-object/age";
|
|
import type { ClusterRoleStore } from "./store";
|
|
import { withInjectables } from "@ogre-tools/injectable-react";
|
|
import clusterRoleStoreInjectable from "./store.injectable";
|
|
import type { OpenAddClusterRoleDialog } from "./add-dialog/open.injectable";
|
|
import openAddClusterRoleDialogInjectable from "./add-dialog/open.injectable";
|
|
|
|
enum columnId {
|
|
name = "name",
|
|
namespace = "namespace",
|
|
age = "age",
|
|
}
|
|
|
|
interface Dependencies {
|
|
clusterRoleStore: ClusterRoleStore;
|
|
openAddClusterRoleDialog: OpenAddClusterRoleDialog;
|
|
}
|
|
|
|
@observer
|
|
class NonInjectedClusterRoles extends React.Component<Dependencies> {
|
|
render() {
|
|
const {
|
|
openAddClusterRoleDialog,
|
|
clusterRoleStore,
|
|
} = this.props;
|
|
|
|
return (
|
|
<SiblingsInTabLayout>
|
|
<KubeObjectListLayout
|
|
isConfigurable
|
|
tableId="access_cluster_roles"
|
|
className="ClusterRoles"
|
|
store={clusterRoleStore}
|
|
sortingCallbacks={{
|
|
[columnId.name]: clusterRole => clusterRole.getName(),
|
|
[columnId.age]: clusterRole => -clusterRole.getCreationTimestamp(),
|
|
}}
|
|
searchFilters={[
|
|
clusterRole => clusterRole.getSearchFields(),
|
|
]}
|
|
renderHeaderTitle="Cluster Roles"
|
|
renderTableHeader={[
|
|
{ title: "Name", className: "name", sortBy: columnId.name, id: columnId.name },
|
|
{ className: "warning", showWithColumn: columnId.name },
|
|
{ title: "Age", className: "age", sortBy: columnId.age, id: columnId.age },
|
|
]}
|
|
renderTableContents={clusterRole => [
|
|
clusterRole.getName(),
|
|
<KubeObjectStatusIcon key="icon" object={clusterRole} />,
|
|
<KubeObjectAge key="age" object={clusterRole} />,
|
|
]}
|
|
addRemoveButtons={{
|
|
onAdd: () => openAddClusterRoleDialog(),
|
|
addTooltip: "Create new ClusterRole",
|
|
}}
|
|
/>
|
|
<AddClusterRoleDialog/>
|
|
</SiblingsInTabLayout>
|
|
);
|
|
}
|
|
}
|
|
|
|
export const ClusterRoles = withInjectables<Dependencies>(NonInjectedClusterRoles, {
|
|
getProps: (di, props) => ({
|
|
...props,
|
|
clusterRoleStore: di.inject(clusterRoleStoreInjectable),
|
|
openAddClusterRoleDialog: di.inject(openAddClusterRoleDialogInjectable),
|
|
}),
|
|
});
|