/** * Copyright (c) 2021 OpenLens Authors * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import "./role-binding-details.scss"; import React from "react"; import { AddRemoveButtons } from "../add-remove-buttons"; import type { IRoleBindingSubject, RoleBinding } 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 { disposeOnUnmount, observer } from "mobx-react"; import { observable, reaction } from "mobx"; import { roleBindingsStore } from "./role-bindings.store"; import { AddRoleBindingDialog } from "./add-role-binding-dialog"; import type { KubeObjectDetailsProps } from "../kube-object"; 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, () => { 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: `Remove`, message: (

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

) }); } render() { const { selectedSubjects } = this; const { object: roleBinding } = this.props; if (!roleBinding) { return null; } const { roleRef } = roleBinding; const subjects = roleBinding.getSubjects(); return (
Kind Name API Group {roleRef.kind} {roleRef.name} {roleRef.apiGroup}
{subjects.length > 0 && ( Binding Type Namespace { subjects.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 ${roleRef.name}`} removeTooltip={`Remove selected bindings from ${roleRef.name}`} />
); } }