mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
- Move all strings of the form {`...`} to use just ""
- Fix RoleBindingDetails not rendering the name of the role binding
Signed-off-by: Sebastian Malton <sebastian@malton.name>
160 lines
5.0 KiB
TypeScript
160 lines
5.0 KiB
TypeScript
import "./role-binding-details.scss";
|
|
|
|
import React from "react";
|
|
import { AddRemoveButtons } from "../add-remove-buttons";
|
|
import { 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 { 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 { KubeObjectMeta } from "../kube-object/kube-object-meta";
|
|
import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry";
|
|
|
|
interface Props extends KubeObjectDetailsProps<RoleBinding> {
|
|
}
|
|
|
|
@observer
|
|
export class RoleBindingDetails extends React.Component<Props> {
|
|
@observable selectedSubjects = observable.array<IRoleBindingSubject>([], { 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: (
|
|
<p>Remove selected bindings for <b>{roleBinding.getName()}</b>?</p>
|
|
)
|
|
});
|
|
}
|
|
|
|
render() {
|
|
const { selectedSubjects } = this;
|
|
const { object: roleBinding } = this.props;
|
|
|
|
if (!roleBinding) {
|
|
return null;
|
|
}
|
|
const { roleRef } = roleBinding;
|
|
const subjects = roleBinding.getSubjects();
|
|
|
|
return (
|
|
<div className="RoleBindingDetails">
|
|
<KubeObjectMeta object={roleBinding}/>
|
|
|
|
<DrawerTitle title="Reference"/>
|
|
<Table>
|
|
<TableHead>
|
|
<TableCell>Kind</TableCell>
|
|
<TableCell>Name</TableCell>
|
|
<TableCell>API Group</TableCell>
|
|
</TableHead>
|
|
<TableRow>
|
|
<TableCell>{roleRef.kind}</TableCell>
|
|
<TableCell>{roleRef.name}</TableCell>
|
|
<TableCell>{roleRef.apiGroup}</TableCell>
|
|
</TableRow>
|
|
</Table>
|
|
|
|
<DrawerTitle title="Bindings"/>
|
|
{subjects.length > 0 && (
|
|
<Table selectable className="bindings box grow">
|
|
<TableHead>
|
|
<TableCell checkbox/>
|
|
<TableCell className="binding">Binding</TableCell>
|
|
<TableCell className="type">Type</TableCell>
|
|
<TableCell className="type">Namespace</TableCell>
|
|
</TableHead>
|
|
{
|
|
subjects.map((subject, i) => {
|
|
const { kind, name, namespace } = subject;
|
|
const isSelected = selectedSubjects.includes(subject);
|
|
|
|
return (
|
|
<TableRow
|
|
key={i} selected={isSelected}
|
|
onClick={prevDefault(() => this.selectSubject(subject))}
|
|
>
|
|
<TableCell checkbox isChecked={isSelected}/>
|
|
<TableCell className="binding">{name}</TableCell>
|
|
<TableCell className="type">{kind}</TableCell>
|
|
<TableCell className="ns">{namespace || "-"}</TableCell>
|
|
</TableRow>
|
|
);
|
|
})
|
|
}
|
|
</Table>
|
|
)}
|
|
|
|
<AddRemoveButtons
|
|
onAdd={() => AddRoleBindingDialog.open(roleBinding)}
|
|
onRemove={selectedSubjects.length ? this.removeSelectedSubjects : null}
|
|
addTooltip={`Add bindings to ${roleRef.name}`}
|
|
removeTooltip={`Remove selected bindings from ${roleRef.name}`}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
kubeObjectDetailRegistry.add({
|
|
kind: "RoleBinding",
|
|
apiVersions: ["rbac.authorization.k8s.io/v1"],
|
|
components: {
|
|
Details: (props) => <RoleBindingDetails {...props} />
|
|
}
|
|
});
|
|
kubeObjectDetailRegistry.add({
|
|
kind: "RoleBinding",
|
|
apiVersions: ["rbac.authorization.k8s.io/v1"],
|
|
priority: 5,
|
|
components: {
|
|
Details: (props) => <KubeEventDetails {...props} />
|
|
}
|
|
});
|
|
|
|
|
|
kubeObjectDetailRegistry.add({
|
|
kind: "ClusterRoleBinding",
|
|
apiVersions: ["rbac.authorization.k8s.io/v1"],
|
|
components: {
|
|
Details: (props) => <RoleBindingDetails {...props} />
|
|
}
|
|
});
|
|
kubeObjectDetailRegistry.add({
|
|
kind: "ClusterRoleBinding",
|
|
apiVersions: ["rbac.authorization.k8s.io/v1"],
|
|
priority: 5,
|
|
components: {
|
|
Details: (props) => <KubeEventDetails {...props} />
|
|
}
|
|
});
|