tftsr-devops_investigation/src/components/Kubernetes/ResourceActionMenu.tsx

89 lines
2.6 KiB
TypeScript
Raw Normal View History

feat(kube): nav restructure, action menus, new resource lists, advanced components Navigation: - Restructure to match requested layout: Cluster, Nodes, Workloads, Config, Network, Storage, Namespaces, Events, Helm, Access Control, Custom Resources - Workloads: add Overview dashboard and Replication Controllers - Config: add PDB, PriorityClass, RuntimeClass, Lease, Mutating/Validating Webhooks - Network: add Endpoints, EndpointSlices, IngressClasses; move Port Forwarding here - Helm and Custom Resources sections wired through New shared components: - ResourceActionMenu: state-aware MoreHorizontal dropdown - ConfirmDeleteDialog: confirmation guard for all destructive operations - ScaleModal: replica count dialog (Deployments, StatefulSets, ReplicaSets, RCs) - LogsModal: container log viewer replacing PodList inline dialog - ShellExecModal: kubectl exec -it with container and shell selector - AttachModal: kubectl attach -it with container selector New resource list components (12): ReplicationControllerList, PodDisruptionBudgetList, PriorityClassList, RuntimeClassList, LeaseList, MutatingWebhookList, ValidatingWebhookList, EndpointList, EndpointSliceList, IngressClassList, NamespaceList, WorkloadOverview New advanced components (5): LogStreamPanel (Tauri-event streaming, follow/search/download), HelmChartList, HelmReleaseList, CrdList, CustomResourceList Updated 24 existing list components with context-appropriate action menus: - Pods: Logs, Shell, Attach, Edit, Delete, Force Delete (state-aware) - Deployments: Scale, Restart, Rollback, Edit, Delete - StatefulSets/ReplicaSets: Scale, Restart/none, Edit, Delete - DaemonSets: Restart, Edit, Delete - Jobs: Edit, Delete - CronJobs: Suspend/Resume (state-aware), Trigger, Edit, Delete - Services/Ingresses/ConfigMaps/Secrets/HPAs/PVCs/PVs/StorageClasses/ NetworkPolicies/ResourceQuotas/LimitRanges: Edit, Delete - Nodes: Cordon/Uncordon (state-aware), Drain, Edit - All RBAC resources: Edit, Delete Co-Authored-By: TFTSR Engineering <noreply@tftsr.com>
2026-06-09 01:38:05 +00:00
import React from "react";
import { MoreHorizontal } from "lucide-react";
import { Button } from "@/components/ui";
export interface ResourceAction {
label: string;
icon: React.ElementType;
onClick: () => void;
variant?: "default" | "destructive";
disabled?: boolean;
hidden?: boolean;
}
interface ResourceActionMenuProps {
actions: ResourceAction[];
triggerLabel?: string;
}
export function ResourceActionMenu({ actions, triggerLabel = "Actions" }: ResourceActionMenuProps) {
const [open, setOpen] = React.useState(false);
const ref = React.useRef<HTMLDivElement>(null);
const visible = actions.filter((a) => !a.hidden);
React.useEffect(() => {
if (!open) return;
const handler = (e: MouseEvent) => {
if (ref.current && !ref.current.contains(e.target as Node)) {
setOpen(false);
}
};
document.addEventListener("mousedown", handler);
return () => document.removeEventListener("mousedown", handler);
}, [open]);
if (visible.length === 0) return null;
return (
<div ref={ref} className="relative inline-block text-left">
<Button
variant="ghost"
size="sm"
aria-label={triggerLabel}
onClick={(e) => {
e.stopPropagation();
setOpen((v) => !v);
}}
>
<MoreHorizontal className="h-4 w-4" />
</Button>
{open && (
<div className="absolute right-0 z-50 mt-1 w-48 rounded-md border bg-card shadow-lg">
<div className="py-1">
{visible.map((action, idx) => {
const Icon = action.icon;
return (
<button
key={idx}
disabled={action.disabled}
onClick={(e) => {
e.stopPropagation();
setOpen(false);
action.onClick();
}}
className={[
"flex w-full items-center gap-2 px-3 py-2 text-sm transition-colors",
action.disabled
? "cursor-not-allowed opacity-50"
: "cursor-pointer hover:bg-accent hover:text-accent-foreground",
action.variant === "destructive"
? "text-destructive hover:text-destructive"
: "text-foreground",
]
.filter(Boolean)
.join(" ")}
>
<Icon className="h-4 w-4 shrink-0" />
{action.label}
</button>
);
})}
</div>
</div>
)}
</div>
);
}