mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
75 lines
2.7 KiB
TypeScript
75 lines
2.7 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 { RoleBindingDialog } from "./dialog";
|
|
import { roleBindingsStore } from "./store";
|
|
import { rolesStore } from "../+roles/store";
|
|
import { clusterRolesStore } from "../+cluster-roles/store";
|
|
import { serviceAccountsStore } from "../+service-accounts/store";
|
|
import type { RoleBindingsRouteParams } from "../../../../common/routes";
|
|
|
|
enum columnId {
|
|
name = "name",
|
|
namespace = "namespace",
|
|
bindings = "bindings",
|
|
age = "age",
|
|
}
|
|
|
|
export interface RoleBindingsProps extends RouteComponentProps<RoleBindingsRouteParams> {
|
|
}
|
|
|
|
@observer
|
|
export class RoleBindings extends React.Component<RoleBindingsProps> {
|
|
render() {
|
|
return (
|
|
<>
|
|
<KubeObjectListLayout
|
|
isConfigurable
|
|
tableId="access_role_bindings"
|
|
className="RoleBindings"
|
|
store={roleBindingsStore}
|
|
dependentStores={[rolesStore, clusterRolesStore, serviceAccountsStore]}
|
|
sortingCallbacks={{
|
|
[columnId.name]: binding => binding.getName(),
|
|
[columnId.namespace]: binding => binding.getNs(),
|
|
[columnId.bindings]: binding => binding.getSubjectNames(),
|
|
[columnId.age]: binding => binding.getTimeDiffFromNow(),
|
|
}}
|
|
searchFilters={[
|
|
binding => binding.getSearchFields(),
|
|
binding => binding.getSubjectNames(),
|
|
]}
|
|
renderHeaderTitle="Role Bindings"
|
|
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: "Bindings", className: "bindings", sortBy: columnId.bindings, id: columnId.bindings },
|
|
{ title: "Age", className: "age", sortBy: columnId.age, id: columnId.age },
|
|
]}
|
|
renderTableContents={binding => [
|
|
binding.getName(),
|
|
<KubeObjectStatusIcon key="icon" object={binding} />,
|
|
binding.getNs(),
|
|
binding.getSubjectNames(),
|
|
binding.getAge(),
|
|
]}
|
|
addRemoveButtons={{
|
|
onAdd: () => RoleBindingDialog.open(),
|
|
addTooltip: "Create new RoleBinding",
|
|
}}
|
|
/>
|
|
<RoleBindingDialog />
|
|
</>
|
|
);
|
|
}
|
|
}
|