mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
64 lines
2.0 KiB
TypeScript
64 lines
2.0 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 type { RouteComponentProps } from "react-router";
|
|
import { KubeObjectListLayout } from "../../kube-object-list-layout";
|
|
import { KubeObjectStatusIcon } from "../../kube-object-status-icon";
|
|
import { AddClusterRoleDialog } from "./add-dialog";
|
|
import { clusterRolesStore } from "./store";
|
|
import type { ClusterRolesRouteParams } from "../../../../common/routes";
|
|
|
|
enum columnId {
|
|
name = "name",
|
|
namespace = "namespace",
|
|
age = "age",
|
|
}
|
|
|
|
export interface ClusterRolesProps extends RouteComponentProps<ClusterRolesRouteParams> {
|
|
}
|
|
|
|
@observer
|
|
export class ClusterRoles extends React.Component<ClusterRolesProps> {
|
|
render() {
|
|
return (
|
|
<>
|
|
<KubeObjectListLayout
|
|
isConfigurable
|
|
tableId="access_cluster_roles"
|
|
className="ClusterRoles"
|
|
store={clusterRolesStore}
|
|
sortingCallbacks={{
|
|
[columnId.name]: clusterRole => clusterRole.getName(),
|
|
[columnId.age]: clusterRole => clusterRole.getTimeDiffFromNow(),
|
|
}}
|
|
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} />,
|
|
clusterRole.getAge(),
|
|
]}
|
|
addRemoveButtons={{
|
|
onAdd: () => AddClusterRoleDialog.open(),
|
|
addTooltip: "Create new ClusterRole",
|
|
}}
|
|
/>
|
|
<AddClusterRoleDialog/>
|
|
</>
|
|
);
|
|
}
|
|
}
|