/** * 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 { } @observer export class RoleBindings extends React.Component { render() { return ( <> 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(), , binding.getNs(), binding.getSubjectNames(), binding.getAge(), ]} addRemoveButtons={{ onAdd: () => RoleBindingDialog.open(), addTooltip: "Create new RoleBinding", }} /> ); } }