mirror of
https://github.com/Studio-Saelix/sencho.git
synced 2026-08-05 08:27:42 +00:00
2a37e114df
- NodeRegistry: wire TLS ca/cert/key into Dockerode when present on node config - index.ts: /api/system/stats now branches on node type — remote nodes use docker.info() for CPU/RAM, local keeps systeminformation; disk gracefully returns null for remote - index.ts: POST /api/nodes now persists tls_ca, tls_cert, tls_key fields - FileSystemService: throw clean error on missing/empty compose_dir instead of crashing path.join - FileSystemService: guard getStacks() against falsy item.name entries - SSHFileAdapter: filter undefined/non-string names from SFTP readdir before returning - NodeManager: add SSH Authentication Type toggle (Password vs Private Key) - NodeManager: add Enable TLS toggle with conditional CA/cert/key textarea fields - NodeManager: auto-test connection immediately after node creation - NodeManager: replace "Strategy B" copy with Docker TCP setup instructions - NodeManager: add pr-8 to header and DialogHeader to prevent overlap with parent dialog X button Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
640 lines
26 KiB
TypeScript
640 lines
26 KiB
TypeScript
import { useState } from 'react';
|
|
import { useNodes } from '@/context/NodeContext';
|
|
import type { Node } from '@/context/NodeContext';
|
|
import { apiFetch } from '@/lib/api';
|
|
import { toast } from 'sonner';
|
|
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter, DialogTrigger } from './ui/dialog';
|
|
import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle } from './ui/alert-dialog';
|
|
import { Button } from './ui/button';
|
|
import { Input } from './ui/input';
|
|
import { Label } from './ui/label';
|
|
import { Badge } from './ui/badge';
|
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from './ui/select';
|
|
import { Separator } from './ui/separator';
|
|
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from './ui/table';
|
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from './ui/tooltip';
|
|
import { Plus, Trash2, Wifi, WifiOff, Star, Pencil, Server, Monitor, Globe, ShieldCheck } from 'lucide-react';
|
|
|
|
interface NodeFormData {
|
|
name: string;
|
|
type: 'local' | 'remote';
|
|
host: string;
|
|
port: number;
|
|
ssh_port: number;
|
|
compose_dir: string;
|
|
is_default: boolean;
|
|
ssh_user: string;
|
|
ssh_auth_type: 'password' | 'key';
|
|
ssh_password: string;
|
|
ssh_key: string;
|
|
tls_enabled: boolean;
|
|
tls_ca: string;
|
|
tls_cert: string;
|
|
tls_key: string;
|
|
}
|
|
|
|
const defaultFormData: NodeFormData = {
|
|
name: '',
|
|
type: 'remote',
|
|
host: '',
|
|
port: 2375,
|
|
ssh_port: 22,
|
|
compose_dir: '/opt/docker',
|
|
is_default: false,
|
|
ssh_user: '',
|
|
ssh_auth_type: 'password',
|
|
ssh_password: '',
|
|
ssh_key: '',
|
|
tls_enabled: false,
|
|
tls_ca: '',
|
|
tls_cert: '',
|
|
tls_key: '',
|
|
};
|
|
|
|
export function NodeManager() {
|
|
const { nodes, refreshNodes } = useNodes();
|
|
const [createOpen, setCreateOpen] = useState(false);
|
|
const [editOpen, setEditOpen] = useState(false);
|
|
const [deleteOpen, setDeleteOpen] = useState(false);
|
|
const [formData, setFormData] = useState<NodeFormData>(defaultFormData);
|
|
const [editingNodeId, setEditingNodeId] = useState<number | null>(null);
|
|
const [deletingNode, setDeletingNode] = useState<Node | null>(null);
|
|
const [testing, setTesting] = useState<number | null>(null);
|
|
const [testResult, setTestResult] = useState<{ nodeId: number; info: any } | null>(null);
|
|
|
|
const handleCreate = async () => {
|
|
try {
|
|
const payload = {
|
|
...formData,
|
|
// Only pass TLS fields if TLS is enabled
|
|
tls_ca: formData.tls_enabled ? formData.tls_ca : '',
|
|
tls_cert: formData.tls_enabled ? formData.tls_cert : '',
|
|
tls_key: formData.tls_enabled ? formData.tls_key : '',
|
|
// Only pass the relevant SSH credential
|
|
ssh_password: formData.ssh_auth_type === 'password' ? formData.ssh_password : '',
|
|
ssh_key: formData.ssh_auth_type === 'key' ? formData.ssh_key : '',
|
|
};
|
|
|
|
const res = await apiFetch('/nodes', {
|
|
method: 'POST',
|
|
body: JSON.stringify(payload),
|
|
});
|
|
if (!res.ok) {
|
|
const err = await res.json();
|
|
throw new Error(err.error || 'Failed to create node');
|
|
}
|
|
const { id: newNodeId } = await res.json();
|
|
toast.success(`Node "${formData.name}" created successfully`);
|
|
setCreateOpen(false);
|
|
setFormData(defaultFormData);
|
|
|
|
// Auto-test the new node connection immediately after creation
|
|
if (newNodeId) {
|
|
setTesting(newNodeId);
|
|
try {
|
|
const testRes = await apiFetch(`/nodes/${newNodeId}/test`, { method: 'POST' });
|
|
const testData = await testRes.json();
|
|
if (testData.success) {
|
|
toast.success(`Connected to "${formData.name}" successfully`);
|
|
setTestResult({ nodeId: newNodeId, info: testData.info });
|
|
} else {
|
|
toast.warning(`Node saved, but connection test failed: ${testData.error}`);
|
|
}
|
|
} catch {
|
|
// Non-fatal — node was created, test just didn't succeed
|
|
} finally {
|
|
setTesting(null);
|
|
}
|
|
}
|
|
|
|
await refreshNodes();
|
|
} catch (error: any) {
|
|
toast.error(error.message || 'Failed to create node');
|
|
}
|
|
};
|
|
|
|
const handleEdit = async () => {
|
|
if (!editingNodeId) return;
|
|
try {
|
|
const payload = {
|
|
...formData,
|
|
tls_ca: formData.tls_enabled ? formData.tls_ca : '',
|
|
tls_cert: formData.tls_enabled ? formData.tls_cert : '',
|
|
tls_key: formData.tls_enabled ? formData.tls_key : '',
|
|
ssh_password: formData.ssh_auth_type === 'password' ? formData.ssh_password : '',
|
|
ssh_key: formData.ssh_auth_type === 'key' ? formData.ssh_key : '',
|
|
};
|
|
|
|
const res = await apiFetch(`/nodes/${editingNodeId}`, {
|
|
method: 'PUT',
|
|
body: JSON.stringify(payload),
|
|
});
|
|
if (!res.ok) {
|
|
const err = await res.json();
|
|
throw new Error(err.error || 'Failed to update node');
|
|
}
|
|
toast.success(`Node "${formData.name}" updated`);
|
|
setEditOpen(false);
|
|
setEditingNodeId(null);
|
|
setFormData(defaultFormData);
|
|
await refreshNodes();
|
|
} catch (error: any) {
|
|
toast.error(error.message || 'Failed to update node');
|
|
}
|
|
};
|
|
|
|
const openEditDialog = (node: Node) => {
|
|
const hasTls = !!(node.tls_ca && node.tls_cert && node.tls_key);
|
|
setFormData({
|
|
name: node.name,
|
|
type: node.type,
|
|
host: node.host,
|
|
port: node.port,
|
|
ssh_port: node.ssh_port || 22,
|
|
compose_dir: node.compose_dir,
|
|
is_default: node.is_default,
|
|
ssh_user: node.ssh_user || '',
|
|
ssh_auth_type: node.ssh_key ? 'key' : 'password',
|
|
ssh_password: node.ssh_password || '',
|
|
ssh_key: node.ssh_key || '',
|
|
tls_enabled: hasTls,
|
|
tls_ca: node.tls_ca || '',
|
|
tls_cert: node.tls_cert || '',
|
|
tls_key: node.tls_key || '',
|
|
});
|
|
setEditingNodeId(node.id);
|
|
setEditOpen(true);
|
|
};
|
|
|
|
const handleDelete = async () => {
|
|
if (!deletingNode) return;
|
|
try {
|
|
const res = await apiFetch(`/nodes/${deletingNode.id}`, { method: 'DELETE' });
|
|
if (!res.ok) {
|
|
const err = await res.json();
|
|
throw new Error(err.error || 'Failed to delete node');
|
|
}
|
|
toast.success(`Node "${deletingNode.name}" deleted`);
|
|
setDeleteOpen(false);
|
|
setDeletingNode(null);
|
|
await refreshNodes();
|
|
} catch (error: any) {
|
|
toast.error(error.message || 'Failed to delete node');
|
|
}
|
|
};
|
|
|
|
const testConnection = async (node: Node) => {
|
|
setTesting(node.id);
|
|
setTestResult(null);
|
|
try {
|
|
const res = await apiFetch(`/nodes/${node.id}/test`, { method: 'POST' });
|
|
const result = await res.json();
|
|
if (result.success) {
|
|
toast.success(`Connected to "${node.name}" successfully`);
|
|
setTestResult({ nodeId: node.id, info: result.info });
|
|
} else {
|
|
toast.error(`Failed to connect: ${result.error}`);
|
|
}
|
|
await refreshNodes();
|
|
} catch (error: any) {
|
|
toast.error(error.message || 'Connection test failed');
|
|
} finally {
|
|
setTesting(null);
|
|
}
|
|
};
|
|
|
|
const getStatusBadge = (status: string) => {
|
|
switch (status) {
|
|
case 'online':
|
|
return <Badge variant="default" className="bg-green-600 text-white gap-1"><Wifi className="w-3 h-3" /> Online</Badge>;
|
|
case 'offline':
|
|
return <Badge variant="destructive" className="gap-1"><WifiOff className="w-3 h-3" /> Offline</Badge>;
|
|
default:
|
|
return <Badge variant="secondary" className="gap-1">Unknown</Badge>;
|
|
}
|
|
};
|
|
|
|
const getNodeIcon = (type: string) => {
|
|
return type === 'local'
|
|
? <Monitor className="w-4 h-4 text-muted-foreground" />
|
|
: <Globe className="w-4 h-4 text-muted-foreground" />;
|
|
};
|
|
|
|
const renderFormFields = () => (
|
|
<div className="space-y-4 py-4 max-h-[65vh] overflow-y-auto pr-1">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="node-name">Name</Label>
|
|
<Input
|
|
id="node-name"
|
|
placeholder="e.g., Production VPS"
|
|
value={formData.name}
|
|
onChange={(e) => setFormData({ ...formData, name: e.target.value })}
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="node-type">Type</Label>
|
|
<Select value={formData.type} onValueChange={(v) => setFormData({ ...formData, type: v as 'local' | 'remote' })}>
|
|
<SelectTrigger>
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="local">Local (Docker Socket)</SelectItem>
|
|
<SelectItem value="remote">Remote (TCP)</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
|
|
{formData.type === 'remote' && (
|
|
<>
|
|
<div className="rounded-md border border-amber-200 dark:border-amber-800 bg-amber-50 dark:bg-amber-950/30 p-3 space-y-1.5">
|
|
<p className="text-xs font-semibold text-amber-800 dark:text-amber-400">How to expose Docker via TCP on the remote machine</p>
|
|
<p className="text-xs text-amber-700 dark:text-amber-500">
|
|
Edit <code className="font-mono bg-amber-100 dark:bg-amber-900 px-1 rounded">/lib/systemd/system/docker.service</code> and update the ExecStart line:
|
|
</p>
|
|
<code className="block text-xs font-mono bg-amber-100 dark:bg-amber-900 text-amber-900 dark:text-amber-300 px-2 py-1.5 rounded break-all">
|
|
ExecStart=/usr/bin/dockerd -H fd:// -H tcp://0.0.0.0:2375 --containerd=/run/containerd/containerd.sock
|
|
</code>
|
|
<p className="text-xs text-amber-700 dark:text-amber-500">
|
|
Then restart: <code className="font-mono bg-amber-100 dark:bg-amber-900 px-1 rounded">systemctl daemon-reload && systemctl restart docker</code>
|
|
</p>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="node-host">Host</Label>
|
|
<Input
|
|
id="node-host"
|
|
placeholder="e.g., 192.168.1.50 or vps.example.com"
|
|
value={formData.host}
|
|
onChange={(e) => setFormData({ ...formData, host: e.target.value })}
|
|
/>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-2 gap-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="node-port">Docker API Port</Label>
|
|
<Input
|
|
id="node-port"
|
|
type="number"
|
|
placeholder="2375"
|
|
value={formData.port}
|
|
onChange={(e) => setFormData({ ...formData, port: parseInt(e.target.value) || 2375 })}
|
|
/>
|
|
<p className="text-xs text-muted-foreground">
|
|
Default: 2375 (unencrypted) or 2376 (TLS)
|
|
</p>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="node-ssh-port">SSH Port</Label>
|
|
<Input
|
|
id="node-ssh-port"
|
|
type="number"
|
|
placeholder="22"
|
|
value={formData.ssh_port}
|
|
onChange={(e) => setFormData({ ...formData, ssh_port: parseInt(e.target.value) || 22 })}
|
|
/>
|
|
<p className="text-xs text-muted-foreground">
|
|
Default: 22. Used for file operations (SFTP).
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<Separator />
|
|
|
|
{/* SSH Credentials Section */}
|
|
<div className="space-y-3">
|
|
<p className="text-sm font-medium">SSH Credentials <span className="text-muted-foreground font-normal">(for file operations via SFTP)</span></p>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="node-ssh-user">SSH Username</Label>
|
|
<Input
|
|
id="node-ssh-user"
|
|
placeholder="e.g., root"
|
|
value={formData.ssh_user}
|
|
onChange={(e) => setFormData({ ...formData, ssh_user: e.target.value })}
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label>Authentication Type</Label>
|
|
<Select
|
|
value={formData.ssh_auth_type}
|
|
onValueChange={(v) => setFormData({ ...formData, ssh_auth_type: v as 'password' | 'key' })}
|
|
>
|
|
<SelectTrigger>
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="password">Password</SelectItem>
|
|
<SelectItem value="key">Private Key</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
|
|
{formData.ssh_auth_type === 'password' ? (
|
|
<div className="space-y-2">
|
|
<Label htmlFor="node-ssh-password">SSH Password</Label>
|
|
<Input
|
|
id="node-ssh-password"
|
|
type="password"
|
|
placeholder="Enter SSH password"
|
|
value={formData.ssh_password}
|
|
onChange={(e) => setFormData({ ...formData, ssh_password: e.target.value })}
|
|
/>
|
|
</div>
|
|
) : (
|
|
<div className="space-y-2">
|
|
<Label htmlFor="node-ssh-key">SSH Private Key</Label>
|
|
<textarea
|
|
id="node-ssh-key"
|
|
className="flex min-h-[120px] w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 font-mono"
|
|
placeholder="-----BEGIN OPENSSH PRIVATE KEY-----"
|
|
value={formData.ssh_key}
|
|
onChange={(e) => setFormData({ ...formData, ssh_key: e.target.value })}
|
|
/>
|
|
<p className="text-xs text-muted-foreground">
|
|
Paste the full private key contents (PEM format).
|
|
</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<Separator />
|
|
|
|
{/* TLS Security Section */}
|
|
<div className="space-y-3">
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<p className="text-sm font-medium flex items-center gap-1.5">
|
|
<ShieldCheck className="w-4 h-4 text-blue-500" />
|
|
Enable TLS
|
|
</p>
|
|
<p className="text-xs text-muted-foreground mt-0.5">
|
|
Secure the Docker TCP connection with mutual TLS (port 2376).
|
|
</p>
|
|
</div>
|
|
<button
|
|
type="button"
|
|
role="switch"
|
|
aria-checked={formData.tls_enabled}
|
|
onClick={() => setFormData({ ...formData, tls_enabled: !formData.tls_enabled })}
|
|
className={`relative inline-flex h-6 w-11 items-center rounded-full transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 ${
|
|
formData.tls_enabled ? 'bg-blue-600' : 'bg-input'
|
|
}`}
|
|
>
|
|
<span
|
|
className={`inline-block h-4 w-4 rounded-full bg-white shadow transition-transform ${
|
|
formData.tls_enabled ? 'translate-x-6' : 'translate-x-1'
|
|
}`}
|
|
/>
|
|
</button>
|
|
</div>
|
|
|
|
{formData.tls_enabled && (
|
|
<div className="space-y-3 rounded-md border p-3">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="node-tls-ca">CA Certificate</Label>
|
|
<textarea
|
|
id="node-tls-ca"
|
|
className="flex min-h-[90px] w-full rounded-md border border-input bg-background px-3 py-2 text-xs ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 font-mono"
|
|
placeholder="-----BEGIN CERTIFICATE-----"
|
|
value={formData.tls_ca}
|
|
onChange={(e) => setFormData({ ...formData, tls_ca: e.target.value })}
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="node-tls-cert">Client Certificate</Label>
|
|
<textarea
|
|
id="node-tls-cert"
|
|
className="flex min-h-[90px] w-full rounded-md border border-input bg-background px-3 py-2 text-xs ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 font-mono"
|
|
placeholder="-----BEGIN CERTIFICATE-----"
|
|
value={formData.tls_cert}
|
|
onChange={(e) => setFormData({ ...formData, tls_cert: e.target.value })}
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="node-tls-key">Client Private Key</Label>
|
|
<textarea
|
|
id="node-tls-key"
|
|
className="flex min-h-[90px] w-full rounded-md border border-input bg-background px-3 py-2 text-xs ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 font-mono"
|
|
placeholder="-----BEGIN RSA PRIVATE KEY-----"
|
|
value={formData.tls_key}
|
|
onChange={(e) => setFormData({ ...formData, tls_key: e.target.value })}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</>
|
|
)}
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="node-compose-dir">Compose Directory</Label>
|
|
<Input
|
|
id="node-compose-dir"
|
|
placeholder="/opt/docker"
|
|
value={formData.compose_dir}
|
|
onChange={(e) => setFormData({ ...formData, compose_dir: e.target.value })}
|
|
/>
|
|
<p className="text-xs text-muted-foreground">
|
|
The root directory where compose stack folders live on this node. SSH credentials above are used to read and write compose files via SFTP.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
{/* Header — pr-8 ensures the Add Node button clears any parent dialog's X close icon */}
|
|
<div className="flex items-center justify-between pr-8">
|
|
<div>
|
|
<h2 className="text-lg font-semibold flex items-center gap-2">
|
|
<Server className="w-5 h-5" />
|
|
Nodes
|
|
</h2>
|
|
<p className="text-sm text-muted-foreground">
|
|
Manage Docker daemon connections across local and remote hosts
|
|
</p>
|
|
</div>
|
|
<Dialog open={createOpen} onOpenChange={setCreateOpen}>
|
|
<DialogTrigger asChild>
|
|
<Button size="sm" className="gap-1 shrink-0">
|
|
<Plus className="w-4 h-4" />
|
|
Add Node
|
|
</Button>
|
|
</DialogTrigger>
|
|
<DialogContent className="max-w-4xl">
|
|
<DialogHeader className="pr-8">
|
|
<DialogTitle>Add Remote Node</DialogTitle>
|
|
</DialogHeader>
|
|
{renderFormFields()}
|
|
<DialogFooter>
|
|
<Button variant="outline" onClick={() => setCreateOpen(false)}>Cancel</Button>
|
|
<Button onClick={handleCreate} disabled={!formData.name || (formData.type === 'remote' && !formData.host)}>
|
|
Add Node
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</div>
|
|
|
|
<Separator />
|
|
|
|
{/* Nodes Table */}
|
|
<div className="rounded-md border overflow-x-auto w-full">
|
|
<Table>
|
|
<TableHeader>
|
|
<TableRow>
|
|
<TableHead className="w-10"></TableHead>
|
|
<TableHead>Name</TableHead>
|
|
<TableHead>Type</TableHead>
|
|
<TableHead>Endpoint</TableHead>
|
|
<TableHead>Compose Dir</TableHead>
|
|
<TableHead>Status</TableHead>
|
|
<TableHead className="text-right">Actions</TableHead>
|
|
</TableRow>
|
|
</TableHeader>
|
|
<TableBody>
|
|
{nodes.map((node) => (
|
|
<TableRow key={node.id}>
|
|
<TableCell>
|
|
{node.is_default && (
|
|
<TooltipProvider>
|
|
<Tooltip>
|
|
<TooltipTrigger>
|
|
<Star className="w-4 h-4 text-yellow-500 fill-yellow-500" />
|
|
</TooltipTrigger>
|
|
<TooltipContent>Default Node</TooltipContent>
|
|
</Tooltip>
|
|
</TooltipProvider>
|
|
)}
|
|
</TableCell>
|
|
<TableCell className="font-medium">
|
|
<div className="flex items-center gap-2">
|
|
{getNodeIcon(node.type)}
|
|
{node.name}
|
|
</div>
|
|
</TableCell>
|
|
<TableCell>
|
|
<Badge variant="outline">{node.type === 'local' ? 'Local' : 'Remote'}</Badge>
|
|
</TableCell>
|
|
<TableCell className="text-muted-foreground text-sm font-mono">
|
|
{node.type === 'local' ? 'docker.sock' : `${node.host}:${node.port}`}
|
|
</TableCell>
|
|
<TableCell className="text-muted-foreground text-sm font-mono">
|
|
{node.compose_dir}
|
|
</TableCell>
|
|
<TableCell>{getStatusBadge(node.status)}</TableCell>
|
|
<TableCell className="text-right">
|
|
<div className="flex items-center justify-end gap-1">
|
|
<TooltipProvider>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
className="h-8 w-8"
|
|
onClick={() => testConnection(node)}
|
|
disabled={testing === node.id}
|
|
>
|
|
<Wifi className={`w-4 h-4 ${testing === node.id ? 'animate-pulse' : ''}`} />
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent>Test Connection</TooltipContent>
|
|
</Tooltip>
|
|
</TooltipProvider>
|
|
|
|
<TooltipProvider>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
className="h-8 w-8"
|
|
onClick={() => openEditDialog(node)}
|
|
>
|
|
<Pencil className="w-4 h-4" />
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent>Edit Node</TooltipContent>
|
|
</Tooltip>
|
|
</TooltipProvider>
|
|
|
|
{!node.is_default && (
|
|
<TooltipProvider>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
className="h-8 w-8 text-destructive hover:text-destructive"
|
|
onClick={() => { setDeletingNode(node); setDeleteOpen(true); }}
|
|
>
|
|
<Trash2 className="w-4 h-4" />
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent>Delete Node</TooltipContent>
|
|
</Tooltip>
|
|
</TooltipProvider>
|
|
)}
|
|
</div>
|
|
</TableCell>
|
|
</TableRow>
|
|
))}
|
|
</TableBody>
|
|
</Table>
|
|
</div>
|
|
|
|
{/* Connection Test Result */}
|
|
{testResult && (
|
|
<div className="rounded-md border p-4 bg-muted/30 space-y-2">
|
|
<h3 className="text-sm font-semibold flex items-center gap-2">
|
|
<Wifi className="w-4 h-4 text-green-500" />
|
|
Connection Details — {nodes.find(n => n.id === testResult.nodeId)?.name}
|
|
</h3>
|
|
<div className="grid grid-cols-2 md:grid-cols-3 gap-3 text-sm">
|
|
<div><span className="text-muted-foreground">Docker:</span> v{testResult.info.serverVersion}</div>
|
|
<div><span className="text-muted-foreground">OS:</span> {testResult.info.os}</div>
|
|
<div><span className="text-muted-foreground">Arch:</span> {testResult.info.architecture}</div>
|
|
<div><span className="text-muted-foreground">Containers:</span> {testResult.info.containers} ({testResult.info.containersRunning} running)</div>
|
|
<div><span className="text-muted-foreground">Images:</span> {testResult.info.images}</div>
|
|
<div><span className="text-muted-foreground">CPUs:</span> {testResult.info.cpus}</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{/* Edit Dialog */}
|
|
<Dialog open={editOpen} onOpenChange={setEditOpen}>
|
|
<DialogContent className="max-w-4xl">
|
|
<DialogHeader className="pr-8">
|
|
<DialogTitle>Edit Node</DialogTitle>
|
|
</DialogHeader>
|
|
{renderFormFields()}
|
|
<DialogFooter>
|
|
<Button variant="outline" onClick={() => { setEditOpen(false); setEditingNodeId(null); }}>Cancel</Button>
|
|
<Button onClick={handleEdit} disabled={!formData.name || (formData.type === 'remote' && !formData.host)}>
|
|
Save Changes
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
|
|
{/* Delete Confirmation */}
|
|
<AlertDialog open={deleteOpen} onOpenChange={setDeleteOpen}>
|
|
<AlertDialogContent>
|
|
<AlertDialogHeader>
|
|
<AlertDialogTitle>Delete Node</AlertDialogTitle>
|
|
<AlertDialogDescription>
|
|
Are you sure you want to remove <strong>{deletingNode?.name}</strong>? This will only remove the node from Sencho — it will not affect the remote Docker daemon or any running containers.
|
|
</AlertDialogDescription>
|
|
</AlertDialogHeader>
|
|
<AlertDialogFooter>
|
|
<AlertDialogCancel>Cancel</AlertDialogCancel>
|
|
<AlertDialogAction onClick={handleDelete}>Delete</AlertDialogAction>
|
|
</AlertDialogFooter>
|
|
</AlertDialogContent>
|
|
</AlertDialog>
|
|
</div>
|
|
);
|
|
}
|