mirror of
https://github.com/Studio-Saelix/sencho.git
synced 2026-08-10 18:56:53 +00:00
9e4b969dfb
Adds a Table/Graph toggle to Fleet → Traffic. Graph mode draws the fleet as a ReactFlow diagram with a second toggle that switches edge encoding between Tunnels (one edge per node pair, coloured by tunnel state) and Aliases (same edges labelled with alias counts). Clicking a node card opens the existing opt-in sheet, where each opted-in stack now has a Topology button that opens a focused side sheet showing the stack at the centre, the aliases it publishes, and the meshed consumer nodes with per-tunnel state. Reuses the existing /mesh/status and /mesh/aliases endpoints; no backend changes. Inherits the Admiral gate from the parent Routing tab. Layout helpers and the per-stack sheet are unit-tested.
177 lines
8.2 KiB
TypeScript
177 lines
8.2 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
import { apiFetch } from '@/lib/api';
|
|
import { toast } from '@/components/ui/toast-store';
|
|
import { SystemSheet } from '@/components/ui/system-sheet';
|
|
import { Button } from '@/components/ui/button';
|
|
import { ConfirmModal } from '@/components/ui/modal';
|
|
import type { MeshStackEntry } from '@/types/mesh';
|
|
import { Loader2, Workflow } from 'lucide-react';
|
|
|
|
interface Props {
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
nodeId: number;
|
|
nodeName: string;
|
|
onChanged: () => void;
|
|
onViewTopology?: (stack: string) => void;
|
|
}
|
|
|
|
export function MeshOptInSheet({ open, onOpenChange, nodeId, nodeName, onChanged, onViewTopology }: Props) {
|
|
const [stacks, setStacks] = useState<MeshStackEntry[]>([]);
|
|
const [loading, setLoading] = useState(false);
|
|
const [error, setError] = useState<string | null>(null);
|
|
const [pendingStack, setPendingStack] = useState<string | null>(null);
|
|
const [confirmStack, setConfirmStack] = useState<MeshStackEntry | null>(null);
|
|
|
|
useEffect(() => {
|
|
if (!open) return;
|
|
let cancelled = false;
|
|
(async () => {
|
|
setLoading(true);
|
|
setError(null);
|
|
try {
|
|
const res = await apiFetch(`/mesh/nodes/${nodeId}/stacks`, { localOnly: true });
|
|
if (!res.ok) throw new Error(`status ${res.status}`);
|
|
const data = await res.json() as { stacks: MeshStackEntry[] };
|
|
if (!cancelled) setStacks(data.stacks);
|
|
} catch (err) {
|
|
if (!cancelled) setError((err as Error).message);
|
|
} finally {
|
|
if (!cancelled) setLoading(false);
|
|
}
|
|
})();
|
|
return () => { cancelled = true; };
|
|
}, [open, nodeId]);
|
|
|
|
const performToggle = async (stack: MeshStackEntry) => {
|
|
setPendingStack(stack.name);
|
|
setError(null);
|
|
try {
|
|
const action = stack.optedIn ? 'opt-out' : 'opt-in';
|
|
const res = await apiFetch(
|
|
`/mesh/nodes/${nodeId}/stacks/${encodeURIComponent(stack.name)}/${action}`,
|
|
{ method: 'POST', localOnly: true },
|
|
);
|
|
if (res.status === 409) {
|
|
const body = await res.json().catch(() => ({})) as { error?: string };
|
|
setError(body.error || 'Port already claimed by another mesh stack');
|
|
return;
|
|
}
|
|
if (res.status === 503) {
|
|
const body = await res.json().catch(() => ({})) as { error?: string };
|
|
setError(body.error || 'Mesh data plane unavailable on this node');
|
|
return;
|
|
}
|
|
if (!res.ok) throw new Error(`status ${res.status}`);
|
|
setStacks((prev) => prev.map((s) => s.name === stack.name ? { ...s, optedIn: !stack.optedIn } : s));
|
|
onChanged();
|
|
toast.success(stack.optedIn
|
|
? `${stack.name} removed from mesh, redeploying`
|
|
: `${stack.name} added to mesh, redeploying`);
|
|
} catch (err) {
|
|
setError((err as Error).message);
|
|
toast.error('Mesh update failed');
|
|
} finally {
|
|
setPendingStack(null);
|
|
}
|
|
};
|
|
|
|
const inMeshCount = stacks.filter((s) => s.optedIn).length;
|
|
const meta = `${inMeshCount} of ${stacks.length} in mesh`;
|
|
|
|
return (
|
|
<>
|
|
<SystemSheet
|
|
open={open}
|
|
onOpenChange={onOpenChange}
|
|
crumb={['Fleet', 'Mesh', nodeName]}
|
|
name={nodeName}
|
|
meta={meta}
|
|
size="sm"
|
|
>
|
|
<div className="space-y-4">
|
|
<p className="text-sm text-stat-subtitle leading-snug">
|
|
Adding a stack lets its services be reached from other meshed stacks by hostname.
|
|
Toggling a stack triggers a redeploy on its node so the routing override applies.
|
|
</p>
|
|
|
|
{loading && (
|
|
<div className="flex items-center gap-2 text-stat-subtitle text-sm">
|
|
<Loader2 className="w-4 h-4 animate-spin" /> Loading stacks…
|
|
</div>
|
|
)}
|
|
{error && (
|
|
<div className="rounded border border-destructive/30 bg-destructive/10 p-2 text-xs text-destructive">
|
|
{error}
|
|
</div>
|
|
)}
|
|
{!loading && stacks.length === 0 && (
|
|
<div className="text-sm text-stat-subtitle">No stacks deployed on this node yet.</div>
|
|
)}
|
|
|
|
<div className="space-y-2">
|
|
{stacks.map((stack) => (
|
|
<div key={stack.name} className="flex items-center justify-between rounded border border-card-border bg-card px-3 py-2">
|
|
<div className="flex items-center gap-3">
|
|
<span className="text-sm font-mono">{stack.name}</span>
|
|
{stack.optedIn && pendingStack !== stack.name && (
|
|
<span className="text-[10px] leading-3 tracking-[0.18em] uppercase text-success/80 font-mono">in mesh</span>
|
|
)}
|
|
</div>
|
|
{pendingStack === stack.name ? (
|
|
<Loader2 className="w-4 h-4 animate-spin text-stat-subtitle" />
|
|
) : (
|
|
<div className="flex items-center gap-2">
|
|
{stack.optedIn && onViewTopology && (
|
|
<Button
|
|
size="sm"
|
|
variant="ghost"
|
|
onClick={() => onViewTopology(stack.name)}
|
|
aria-label={`View topology for ${stack.name}`}
|
|
>
|
|
<Workflow className="w-3 h-3 mr-1" /> Topology
|
|
</Button>
|
|
)}
|
|
<Button
|
|
size="sm"
|
|
variant={stack.optedIn ? 'outline' : 'default'}
|
|
onClick={() => setConfirmStack(stack)}
|
|
>
|
|
{stack.optedIn ? 'Remove from mesh' : 'Add to mesh'}
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</SystemSheet>
|
|
|
|
<ConfirmModal
|
|
open={!!confirmStack}
|
|
onOpenChange={(o) => { if (!o) setConfirmStack(null); }}
|
|
variant={confirmStack?.optedIn ? 'destructive' : 'default'}
|
|
kicker={`Mesh / ${nodeName}`}
|
|
title={
|
|
confirmStack?.optedIn
|
|
? `Remove ${confirmStack.name} from mesh?`
|
|
: `Add ${confirmStack?.name ?? ''} to mesh?`
|
|
}
|
|
description={
|
|
confirmStack?.optedIn
|
|
? `${confirmStack.name} will be redeployed on ${nodeName} so its containers drop the mesh routing entries from /etc/hosts.`
|
|
: confirmStack
|
|
? `${confirmStack.name} will be redeployed on ${nodeName} so its containers pick up the mesh routing entries.`
|
|
: undefined
|
|
}
|
|
confirmLabel={confirmStack?.optedIn ? 'Remove and redeploy' : 'Add and redeploy'}
|
|
onConfirm={() => {
|
|
if (confirmStack) void performToggle(confirmStack);
|
|
setConfirmStack(null);
|
|
}}
|
|
onCancel={() => setConfirmStack(null)}
|
|
/>
|
|
</>
|
|
);
|
|
}
|