import "./role-binding-details.scss" import * as React from "react"; import { t, Trans } from "@lingui/macro"; import { AddRemoveButtons } from "../add-remove-buttons"; import { clusterRoleBindingApi, IRoleBindingSubject, RoleBinding, roleBindingApi } from "../../api/endpoints"; import { autobind, prevDefault } from "../../utils"; import { Table, TableCell, TableHead, TableRow } from "../table"; import { ConfirmDialog } from "../confirm-dialog"; import { DrawerTitle } from "../drawer"; import { KubeEventDetails } from "../+events/kube-event-details"; import { disposeOnUnmount, observer } from "mobx-react"; import { observable, reaction } from "mobx"; import { roleBindingsStore } from "./role-bindings.store"; import { AddRoleBindingDialog } from "./add-role-binding-dialog"; import { KubeObjectDetailsProps } from "../kube-object"; import { _i18n } from "../../i18n"; import { apiManager } from "../../api/api-manager"; import { KubeObjectMeta } from "../kube-object/kube-object-meta"; interface Props extends KubeObjectDetailsProps { } @observer export class RoleBindingDetails extends React.Component { @observable selectedSubjects = observable.array([], { deep: false }); async componentDidMount() { disposeOnUnmount(this, [ reaction(() => this.props.object, (obj) => { this.selectedSubjects.clear(); }) ]) } selectSubject(subject: IRoleBindingSubject) { const { selectedSubjects } = this; const isSelected = selectedSubjects.includes(subject); selectedSubjects.replace( isSelected ? selectedSubjects.filter(sub => sub !== subject) // unselect : selectedSubjects.concat(subject) // select ) } @autobind() removeSelectedSubjects() { const { object: roleBinding } = this.props; const { selectedSubjects } = this; ConfirmDialog.open({ ok: () => roleBindingsStore.updateSubjects({ roleBinding, removeSubjects: selectedSubjects }), labelOk: _i18n._(t`Remove`), message: (

Remove selected bindings for {roleBinding.getName()}?

) }) } render() { const { selectedSubjects } = this; const { object: roleBinding } = this.props; if (!roleBinding) { return null; } const name = roleBinding.getName(); const { roleRef } = roleBinding; return (
Reference}/> Kind Name API Group {roleRef.kind} {roleRef.name} {roleRef.apiGroup}
Bindings}/> Binding Type Namespace { roleBinding.getSubjects().map((subject, i) => { const { kind, name, namespace } = subject; const isSelected = selectedSubjects.includes(subject); return ( this.selectSubject(subject))} > {name} {kind} {namespace || "-"} ) }) }
AddRoleBindingDialog.open(roleBinding)} onRemove={selectedSubjects.length ? this.removeSelectedSubjects : null} addTooltip={Add bindings to {name}} removeTooltip={Remove selected bindings from ${name}} />
) } } apiManager.registerViews([roleBindingApi, clusterRoleBindingApi], { Details: RoleBindingDetails, });