Files
Termix/src/ui/sidebar/SidebarTree.tsx
T

2594 lines
100 KiB
TypeScript

/* eslint-disable react-refresh/only-export-components */
import {
useState,
useEffect,
useRef,
useLayoutEffect,
type MouseEvent,
} from "react";
import { useTranslation } from "react-i18next";
import { useVirtualizer } from "@tanstack/react-virtual";
import {
Box,
Boxes,
Check,
ChevronDown,
ChevronRight,
Copy,
CopyPlus,
Cpu,
FolderOpen,
FolderSearch,
Key,
KeyRound,
Layers, // --- tmux-monitor ---
Link,
Loader2,
MemoryStick,
MessagesSquare,
Monitor,
MoreHorizontal,
MousePointerClick,
Network,
Pencil,
Pin,
Server,
Share2,
Terminal,
Trash2,
Users,
Zap,
} from "lucide-react";
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuSeparator,
DropdownMenuSub,
DropdownMenuSubContent,
DropdownMenuSubTrigger,
DropdownMenuTrigger,
} from "@/components/dropdown-menu";
import { toast } from "sonner";
import {
bulkUpdateSSHHosts,
createSSHHost,
deleteSSHHost,
getHostPassword,
renameFolder,
updateFolderMetadata,
deleteAllHostsInFolder,
wakeOnLan,
} from "@/main-axios";
import type { Host, HostFolder, TabType } from "@/types/ui-types";
import type { SSHHostData } from "@/types/index";
import { FolderIconEl } from "@/components/folder-style";
import { resolveHostTabType } from "@/lib/host-connection-tabs";
import { copyToClipboard } from "@/lib/clipboard";
import {
canDeleteHost,
canEditHost,
canShareHost,
} from "@/sidebar/host-permissions";
import { FolderMetadataDialog } from "./FolderMetadataDialog";
import { HostShareModal } from "@/sidebar/HostShareModal";
import {
useStatusColorScheme,
getStatusClasses,
} from "@/hooks/use-status-color-scheme";
import {
useHostStatus,
useServerStatus,
useServerStatusMeta,
} from "@/lib/ServerStatusContext";
import {
Tooltip,
TooltipContent,
TooltipProvider,
TooltipTrigger,
} from "@/components/tooltip";
export function isFolder(item: Host | HostFolder): item is HostFolder {
return "children" in item;
}
function statusCheckEnabled(host: Host): boolean {
return host.statsConfig?.statusCheckEnabled !== false;
}
function buildStatusTooltip(host: Host, online: boolean): string {
const statusLabel = online ? "Online" : "Offline";
if (!statusCheckEnabled(host)) return "Monitoring disabled";
const protocols: string[] = [];
if (host.enableSsh) protocols.push("SSH");
if (host.enableRdp) protocols.push("RDP");
if (host.enableVnc) protocols.push("VNC");
if (host.enableTelnet) protocols.push("Telnet");
if (protocols.length === 0) return statusLabel;
return `${protocols.join(", ")}: ${statusLabel}`;
}
function getSshActions(
host: Host,
): { type: TabType; icon: typeof Terminal; label: string }[] {
const metricsEnabled =
host.enableSsh && host.statsConfig?.metricsEnabled !== false;
return [
host.enableSsh &&
host.enableTerminal && {
type: "terminal" as TabType,
icon: Terminal,
label: "Terminal",
},
host.enableSsh &&
host.enableFileManager && {
type: "files" as TabType,
icon: FolderSearch,
label: "Files",
},
host.enableSsh &&
host.enableDocker && {
type: "docker" as TabType,
icon: Box,
label: "Docker",
},
host.enableSsh &&
host.enableTunnel && {
type: "tunnel" as TabType,
icon: Network,
label: "Tunnel",
},
metricsEnabled && {
type: "host-metrics" as TabType,
icon: Server,
label: "Host Metrics",
},
// --- tmux-monitor --- opt-in per host, off by default
host.enableSsh &&
host.enableTerminal &&
host.enableTmuxMonitor && {
type: "tmux_monitor" as TabType,
icon: Layers,
label: "Tmux Monitor",
},
].filter(Boolean) as {
type: TabType;
icon: typeof Terminal;
label: string;
}[];
}
function hostMatchesQuery(host: Host, query: string) {
return (
host.name.toLowerCase().includes(query) ||
host.ip.toLowerCase().includes(query) ||
host.username.toLowerCase().includes(query) ||
host.tags?.some((t) => t.toLowerCase().includes(query))
);
}
function folderHasMatch(folder: HostFolder, query: string): boolean {
for (const child of folder.children) {
if (isFolder(child)) {
if (folderHasMatch(child, query)) return true;
} else {
if (hostMatchesQuery(child, query)) return true;
}
}
return false;
}
type VirtualRow = { item: Host | HostFolder; depth: number };
function collectVisibleRows(
children: (Host | HostFolder)[],
query: string,
openSet: Set<string>,
out: VirtualRow[] = [],
depth = 0,
): VirtualRow[] {
for (const child of children) {
if (isFolder(child)) {
const visible = query ? folderHasMatch(child, query) : true;
if (!visible) continue;
out.push({ item: child, depth });
const childOpen = query ? true : openSet.has(child.path ?? child.name);
if (childOpen)
collectVisibleRows(child.children, query, openSet, out, depth + 1);
} else {
if (!query || hostMatchesQuery(child, query))
out.push({ item: child, depth });
}
}
return out;
}
function collectAllHosts(children: (Host | HostFolder)[]): Host[] {
const out: Host[] = [];
for (const child of children) {
if (isFolder(child)) {
out.push(...collectAllHosts(child.children));
} else {
out.push(child);
}
}
return out;
}
// Open/close state and folder assignment are both keyed by the full " / " path,
// so two folders that share a leaf name don't collapse together. Synthetic group
// headers (group-by views) are excluded from the assignable-folder list.
function collectAllFolderPaths(children: (Host | HostFolder)[]): string[] {
const paths = new Set<string>();
for (const child of children) {
if (isFolder(child)) {
const path = child.path ?? child.name;
if (!path.startsWith("__group__:")) paths.add(path);
for (const p of collectAllFolderPaths(child.children)) paths.add(p);
}
}
return Array.from(paths).sort((a, b) => a.localeCompare(b));
}
async function writeClipboardText(value: string): Promise<void> {
await copyToClipboard(value);
}
function canCopyHostPassword(host: Host): boolean {
return (
host.authType === "password" ||
host.authType === "credential" ||
!!host.hasPassword ||
!!host.password
);
}
function canCopyHostSudoPassword(host: Host): boolean {
return (
!!host.hasSudoPassword ||
!!host.sudoPassword ||
!!host.terminalConfig?.sudoPassword
);
}
function folderHostCount(folder: HostFolder): {
total: number;
online: number;
} {
let total = 0,
online = 0;
for (const child of folder.children) {
if (isFolder(child)) {
const c = folderHostCount(child);
total += c.total;
online += c.online;
} else {
total++;
if (child.online) online++;
}
}
return { total, online };
}
export function HostItem({
host,
onOpenTab,
onEditHost: onEditHostProp,
onShareHost: onShareHostProp,
onProxmoxDiscover,
onDelete,
onDuplicate,
query = "",
stripeIndex = 0,
selectionMode = false,
selected = false,
onToggleSelect,
isMenuOpen = false,
onMenuOpenChange,
isTrayOpen = false,
onTrayOpenChange,
onDragStart,
onDragEnd,
depth = 0,
}: {
host: Host;
onOpenTab: (type: TabType) => void;
onEditHost?: () => void;
onShareHost?: () => void;
onDelete: () => void;
onDuplicate: () => void;
query?: string;
stripeIndex?: number;
selectionMode?: boolean;
selected?: boolean;
onToggleSelect?: () => void;
isMenuOpen?: boolean;
onMenuOpenChange?: (open: boolean) => void;
isTrayOpen?: boolean;
onTrayOpenChange?: (open: boolean) => void;
onProxmoxDiscover?: () => void;
onDragStart?: () => void;
onDragEnd?: () => void;
/** Nesting level when rendered in a flattened virtual list. */
depth?: number;
}) {
const { t } = useTranslation();
// Shared hosts expose actions matching the recipient's permission level.
const onEditHost = canEditHost(host) ? onEditHostProp : undefined;
const onShareHost = canShareHost(host) ? onShareHostProp : undefined;
const allowDelete = canDeleteHost(host);
const metricsEnabled =
host.enableSsh && host.statsConfig?.metricsEnabled !== false;
const [trayOnClick, setTrayOnClick] = useState(
() => localStorage.getItem("hostTrayOnClick") !== "false",
);
const [showHostTags, setShowHostTags] = useState<boolean>(() => {
const v = localStorage.getItem("showHostTags");
return v !== null ? v === "true" : true;
});
const [compactHostView, setCompactHostView] = useState(
() => localStorage.getItem("compactHostView") === "true",
);
const statusScheme = useStatusColorScheme();
const { initialLoadComplete } = useServerStatusMeta();
const statusCheckOn = statusCheckEnabled(host);
const statusLoading = !initialLoadComplete && statusCheckOn;
// Per-host subscription — status polls only re-render rows that flipped.
const liveStatus = useHostStatus(Number(host.id), statusCheckOn);
const isOnline = liveStatus != null ? liveStatus === "online" : host.online;
const isTouchOnly =
typeof window !== "undefined" && window.matchMedia("(hover: none)").matches;
const shouldUseClickTray = trayOnClick || isTouchOnly;
const showPasswordCopy = !host.isShared && canCopyHostPassword(host);
const showSudoPasswordCopy = !host.isShared && canCopyHostSudoPassword(host);
async function handleCopyPassword(
e: MouseEvent,
field: "password" | "sudoPassword",
) {
e.stopPropagation();
const password = await getHostPassword(Number(host.id), field);
if (!password) {
toast.error(t("nav.failedToCopyPassword"));
return;
}
try {
await writeClipboardText(password);
toast.success(t("nav.passwordCopied"));
} catch {
toast.error(t("nav.failedToCopyPassword"));
}
}
useEffect(() => {
const handler = () =>
setTrayOnClick(localStorage.getItem("hostTrayOnClick") !== "false");
window.addEventListener("storage", handler);
window.addEventListener("hostTrayOnClickChanged", handler);
return () => {
window.removeEventListener("storage", handler);
window.removeEventListener("hostTrayOnClickChanged", handler);
};
}, []);
useEffect(() => {
const handler = () => {
const v = localStorage.getItem("showHostTags");
setShowHostTags(v !== null ? v === "true" : true);
};
window.addEventListener("storage", handler);
window.addEventListener("showHostTagsChanged", handler);
return () => {
window.removeEventListener("storage", handler);
window.removeEventListener("showHostTagsChanged", handler);
};
}, []);
useEffect(() => {
const handler = () =>
setCompactHostView(localStorage.getItem("compactHostView") === "true");
window.addEventListener("storage", handler);
window.addEventListener("compactHostViewChanged", handler);
return () => {
window.removeEventListener("storage", handler);
window.removeEventListener("compactHostViewChanged", handler);
};
}, []);
if (query && !hostMatchesQuery(host, query)) return null;
const depthStyle =
depth > 0 ? ({ paddingLeft: depth * 12 } as const) : undefined;
if (compactHostView) {
return (
<div
draggable={!selectionMode && !isTouchOnly}
onDragStart={(e) => {
e.dataTransfer.effectAllowed = "move";
onDragStart?.();
}}
onDragEnd={() => onDragEnd?.()}
style={depthStyle}
className={`group relative flex items-stretch cursor-pointer select-none transition-colors hover:bg-muted/40 ${
selected
? "bg-accent-brand/5"
: stripeIndex % 2 === 1
? "bg-muted/20"
: ""
} ${isMenuOpen ? "bg-muted/40" : ""}`}
onClick={(e) => {
if (selectionMode) {
onToggleSelect?.();
return;
}
if (isTouchOnly) {
e.stopPropagation();
const actionCount = getSshActions(host).length;
const otherProtocols = [
host.enableRdp,
host.enableVnc,
host.enableTelnet,
].filter(Boolean).length;
if (actionCount + otherProtocols <= 1) {
if (host.enableSsh) onOpenTab("terminal");
else if (host.enableRdp) onOpenTab("rdp");
else if (host.enableVnc) onOpenTab("vnc");
else if (host.enableTelnet) onOpenTab("telnet");
else onOpenTab("terminal");
} else {
onTrayOpenChange?.(!isTrayOpen);
}
return;
}
if (host.enableSsh) onOpenTab("terminal");
else if (host.enableRdp) onOpenTab("rdp");
else if (host.enableVnc) onOpenTab("vnc");
else if (host.enableTelnet) onOpenTab("telnet");
else onOpenTab("terminal");
}}
>
<div
className={`w-[3px] shrink-0 transition-colors ${getStatusClasses(isOnline, statusScheme, "stripe", statusLoading)}`}
/>
<div className="flex flex-col min-w-0 flex-1">
<div className="flex items-center gap-1.5 min-w-0 px-2.5 py-1">
{selectionMode && (
<div
className={`size-3.5 border-2 flex items-center justify-center shrink-0 transition-colors ${selected ? "border-accent-brand bg-accent-brand" : "border-border bg-background"}`}
>
{selected && <Check className="size-2 text-background" />}
</div>
)}
<TooltipProvider delayDuration={300}>
<Tooltip>
<TooltipTrigger className="flex items-center">
<span
className={`size-1.5 rounded-full shrink-0 ${getStatusClasses(isOnline, statusScheme, "dot", statusLoading)}`}
/>
</TooltipTrigger>
<TooltipContent side="right">
{buildStatusTooltip(host, isOnline)}
</TooltipContent>
</Tooltip>
</TooltipProvider>
<span className="text-[13px] font-medium truncate text-foreground leading-none">
{host.name}
</span>
{host.isShared && (
<TooltipProvider delayDuration={300}>
<Tooltip>
<TooltipTrigger asChild>
<span className="flex items-center gap-0.5 text-[9px] px-1 py-px border border-accent-brand/30 bg-accent-brand/10 text-accent-brand shrink-0 leading-none uppercase tracking-wider">
<Users className="size-2.5" />
{t("hosts.sharing.sharedBadge")}
</span>
</TooltipTrigger>
<TooltipContent side="right">
{t("hosts.sharing.sharedBadgeTooltip", {
owner: host.ownerUsername || "?",
level: t(
`hosts.sharing.levels.${host.permissionLevel ?? "connect"}.label`,
),
})}
</TooltipContent>
</Tooltip>
</TooltipProvider>
)}
{!selectionMode && shouldUseClickTray && (
<button
title={
isTrayOpen
? t("hosts.collapseActions")
: t("hosts.expandActions")
}
onClick={(e) => {
e.stopPropagation();
onTrayOpenChange?.(!isTrayOpen);
}}
className="ml-auto flex items-center justify-center size-5 rounded text-muted-foreground/30 hover:text-muted-foreground hover:bg-muted-foreground/10 transition-colors shrink-0"
>
<ChevronRight
className={`size-3 transition-transform duration-150 ${isTrayOpen ? "rotate-90" : ""}`}
/>
</button>
)}
{!selectionMode && !shouldUseClickTray && (
<span className="text-[11px] text-muted-foreground/70 truncate leading-none ml-auto shrink-0 group-hover:hidden">
{host.ip}
</span>
)}
{selectionMode && (
<span className="text-[11px] text-muted-foreground/70 truncate leading-none ml-auto shrink-0">
{host.ip}
</span>
)}
</div>
{/* Click-tray mode: always-visible action buttons */}
{shouldUseClickTray && !selectionMode && (
<div
className={`overflow-hidden transition-all duration-150 ease-out ${isTrayOpen || isMenuOpen ? "max-h-[72px] opacity-100" : "max-h-0 opacity-0"}`}
>
<div className="flex items-center flex-wrap gap-1 px-2 pb-1">
{getSshActions(host).map(({ type, icon: Icon, label }) => (
<button
key={type}
title={label}
onClick={(e) => {
e.stopPropagation();
onOpenTab(type);
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Icon className="size-3.5" />
</button>
))}
{host.enableSsh &&
(host.enableRdp || host.enableVnc || host.enableTelnet) &&
getSshActions(host).length > 0 && (
<div className="w-px h-3.5 bg-border/60 mx-0.5 shrink-0" />
)}
{host.enableRdp && (
<button
title="RDP"
onClick={(e) => {
e.stopPropagation();
onOpenTab("rdp");
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Monitor className="size-3.5" />
</button>
)}
{host.enableVnc && (
<button
title="VNC"
onClick={(e) => {
e.stopPropagation();
onOpenTab("vnc");
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<MousePointerClick className="size-3.5" />
</button>
)}
{host.enableTelnet && (
<button
title="Telnet"
onClick={(e) => {
e.stopPropagation();
onOpenTab("telnet");
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<MessagesSquare className="size-3.5" />
</button>
)}
{host.macAddress && (
<button
title={t("hosts.wakeOnLanAction")}
onClick={async (e) => {
e.stopPropagation();
try {
await wakeOnLan(host.id);
toast.success(
t("hosts.wakeOnLanSuccess", { name: host.name }),
);
} catch {
toast.error(t("hosts.wakeOnLanError"));
}
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Zap className="size-3.5" />
</button>
)}
<div className="w-px h-3.5 bg-border/60 mx-0.5 shrink-0" />
{showPasswordCopy && (
<button
title={t("nav.copyPassword")}
onClick={(e) => handleCopyPassword(e, "password")}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Key className="size-3.5" />
</button>
)}
{showSudoPasswordCopy && (
<button
title={t("nav.copySudoPassword")}
onClick={(e) => handleCopyPassword(e, "sudoPassword")}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<KeyRound className="size-3.5" />
</button>
)}
{onEditHost && (
<button
title="Edit Host"
onClick={(e) => {
e.stopPropagation();
onEditHost();
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Pencil className="size-3.5" />
</button>
)}
{onShareHost && (
<button
title={t("hosts.shareHost")}
onClick={(e) => {
e.stopPropagation();
onShareHost();
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Share2 className="size-3.5" />
</button>
)}
{host.enableProxmox && onProxmoxDiscover && (
<button
title={t("hosts.proxmoxDiscoverAction")}
onClick={(e) => {
e.stopPropagation();
onProxmoxDiscover();
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Boxes className="size-3.5" />
</button>
)}
<DropdownMenu open={isMenuOpen} onOpenChange={onMenuOpenChange}>
<DropdownMenuTrigger asChild>
<button
title="More options"
onClick={(e) => e.stopPropagation()}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<MoreHorizontal className="size-3.5" />
</button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end" className="text-xs">
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation();
writeClipboardText(`${host.username}@${host.ip}`);
toast.success(t("hosts.copiedToClipboard"));
}}
>
<Copy className="size-3.5 mr-2" />
{t("hosts.copyAddress")}
</DropdownMenuItem>
{showPasswordCopy && (
<DropdownMenuItem
onClick={(e) => handleCopyPassword(e, "password")}
>
<Key className="size-3.5 mr-2" />
{t("nav.copyPassword")}
</DropdownMenuItem>
)}
{showSudoPasswordCopy && (
<DropdownMenuItem
onClick={(e) => handleCopyPassword(e, "sudoPassword")}
>
<KeyRound className="size-3.5 mr-2" />
{t("nav.copySudoPassword")}
</DropdownMenuItem>
)}
{allowDelete && (
<>
<DropdownMenuSeparator />
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation();
onDuplicate();
}}
>
<CopyPlus className="size-3.5 mr-2" />
{t("hosts.cloneHostAction")}
</DropdownMenuItem>
<DropdownMenuSeparator />
<DropdownMenuItem
className="text-destructive focus:text-destructive"
onClick={(e) => {
e.stopPropagation();
onDelete();
}}
>
<Trash2 className="size-3.5 mr-2" />
{t("common.delete")}
</DropdownMenuItem>
</>
)}
</DropdownMenuContent>
</DropdownMenu>
</div>
</div>
)}
{/* Hover tray (non-click-tray mode) */}
{!shouldUseClickTray && !selectionMode && (
<div className="max-h-0 opacity-0 overflow-hidden transition-all duration-150 ease-out group-hover:max-h-[72px] group-hover:opacity-100">
<div className="flex items-center flex-wrap gap-1 px-2 pb-1">
{getSshActions(host).map(({ type, icon: Icon, label }) => (
<button
key={type}
title={label}
onClick={(e) => {
e.stopPropagation();
onOpenTab(type);
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Icon className="size-3.5" />
</button>
))}
{host.enableSsh &&
(host.enableRdp || host.enableVnc || host.enableTelnet) &&
getSshActions(host).length > 0 && (
<div className="w-px h-3.5 bg-border/60 mx-0.5 shrink-0" />
)}
{host.enableRdp && (
<button
title="RDP"
onClick={(e) => {
e.stopPropagation();
onOpenTab("rdp");
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Monitor className="size-3.5" />
</button>
)}
{host.enableVnc && (
<button
title="VNC"
onClick={(e) => {
e.stopPropagation();
onOpenTab("vnc");
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<MousePointerClick className="size-3.5" />
</button>
)}
{host.enableTelnet && (
<button
title="Telnet"
onClick={(e) => {
e.stopPropagation();
onOpenTab("telnet");
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<MessagesSquare className="size-3.5" />
</button>
)}
{host.macAddress && (
<button
title={t("hosts.wakeOnLanAction")}
onClick={async (e) => {
e.stopPropagation();
try {
await wakeOnLan(host.id);
toast.success(
t("hosts.wakeOnLanSuccess", { name: host.name }),
);
} catch {
toast.error(t("hosts.wakeOnLanError"));
}
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Zap className="size-3.5" />
</button>
)}
<div className="w-px h-3.5 bg-border/60 mx-0.5 shrink-0" />
{showPasswordCopy && (
<button
title={t("nav.copyPassword")}
onClick={(e) => handleCopyPassword(e, "password")}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Key className="size-3.5" />
</button>
)}
{showSudoPasswordCopy && (
<button
title={t("nav.copySudoPassword")}
onClick={(e) => handleCopyPassword(e, "sudoPassword")}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<KeyRound className="size-3.5" />
</button>
)}
{onEditHost && (
<button
title="Edit Host"
onClick={(e) => {
e.stopPropagation();
onEditHost();
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Pencil className="size-3.5" />
</button>
)}
{onShareHost && (
<button
title={t("hosts.shareHost")}
onClick={(e) => {
e.stopPropagation();
onShareHost();
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Share2 className="size-3.5" />
</button>
)}
{host.enableProxmox && onProxmoxDiscover && (
<button
title={t("hosts.proxmoxDiscoverAction")}
onClick={(e) => {
e.stopPropagation();
onProxmoxDiscover();
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Boxes className="size-3.5" />
</button>
)}
<DropdownMenu open={isMenuOpen} onOpenChange={onMenuOpenChange}>
<DropdownMenuTrigger asChild>
<button
title="More options"
onClick={(e) => e.stopPropagation()}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<MoreHorizontal className="size-3.5" />
</button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end" className="text-xs">
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation();
writeClipboardText(`${host.username}@${host.ip}`);
toast.success(t("hosts.copiedToClipboard"));
}}
>
<Copy className="size-3.5 mr-2" />
{t("hosts.copyAddress")}
</DropdownMenuItem>
{showPasswordCopy && (
<DropdownMenuItem
onClick={(e) => handleCopyPassword(e, "password")}
>
<Key className="size-3.5 mr-2" />
{t("nav.copyPassword")}
</DropdownMenuItem>
)}
{showSudoPasswordCopy && (
<DropdownMenuItem
onClick={(e) => handleCopyPassword(e, "sudoPassword")}
>
<KeyRound className="size-3.5 mr-2" />
{t("nav.copySudoPassword")}
</DropdownMenuItem>
)}
{allowDelete && (
<>
<DropdownMenuSeparator />
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation();
onDuplicate();
}}
>
<CopyPlus className="size-3.5 mr-2" />
{t("hosts.cloneHostAction")}
</DropdownMenuItem>
<DropdownMenuSeparator />
<DropdownMenuItem
className="text-destructive focus:text-destructive"
onClick={(e) => {
e.stopPropagation();
onDelete();
}}
>
<Trash2 className="size-3.5 mr-2" />
{t("common.delete")}
</DropdownMenuItem>
</>
)}
</DropdownMenuContent>
</DropdownMenu>
</div>
</div>
)}
</div>
</div>
);
}
return (
<div
draggable={!selectionMode && !isTouchOnly}
onDragStart={(e) => {
e.dataTransfer.effectAllowed = "move";
onDragStart?.();
}}
onDragEnd={() => onDragEnd?.()}
style={depthStyle}
className={`group relative flex items-stretch cursor-pointer select-none transition-colors hover:bg-muted/40 ${
selected
? "bg-accent-brand/5"
: stripeIndex % 2 === 1
? "bg-muted/20"
: ""
} ${isMenuOpen ? "bg-muted/40" : ""}`}
onClick={(e) => {
if (selectionMode) {
onToggleSelect?.();
return;
}
const launchDefault = () => {
if (host.enableSsh) onOpenTab("terminal");
else if (host.enableRdp) onOpenTab("rdp");
else if (host.enableVnc) onOpenTab("vnc");
else if (host.enableTelnet) onOpenTab("telnet");
else onOpenTab("terminal");
};
// On touch devices, open the action tray so the per-protocol buttons are
// reachable. If the host only exposes a single action, just launch it.
if (isTouchOnly) {
e.stopPropagation();
const actionCount = getSshActions(host).length;
const otherProtocols = [
host.enableRdp,
host.enableVnc,
host.enableTelnet,
].filter(Boolean).length;
if (actionCount + otherProtocols <= 1) {
launchDefault();
} else {
onTrayOpenChange?.(!isTrayOpen);
}
return;
}
launchDefault();
}}
>
{/* Status stripe */}
<div
className={`w-[3px] shrink-0 transition-colors ${getStatusClasses(isOnline, statusScheme, "stripe", statusLoading)}`}
/>
<div className="flex flex-col flex-1 min-w-0 px-2.5 pt-2 pb-1.5 gap-1">
{/* Name row */}
<div className="flex items-center gap-1.5 min-w-0">
{selectionMode && (
<div
className={`size-3.5 border-2 flex items-center justify-center shrink-0 transition-colors ${selected ? "border-accent-brand bg-accent-brand" : "border-border bg-background"}`}
>
{selected && <Check className="size-2 text-background" />}
</div>
)}
<TooltipProvider delayDuration={300}>
<Tooltip>
<TooltipTrigger className="flex items-center">
<span
className={`size-1.5 rounded-full shrink-0 ${getStatusClasses(isOnline, statusScheme, "dot", statusLoading)}`}
/>
</TooltipTrigger>
<TooltipContent side="right">
{buildStatusTooltip(host, isOnline)}
</TooltipContent>
</Tooltip>
</TooltipProvider>
<span className="text-[13px] font-medium truncate text-foreground leading-none">
{host.name}
</span>
{host.pin && (
<Pin className="size-2.5 text-accent-brand/50 shrink-0" />
)}
{host.isShared && (
<TooltipProvider delayDuration={300}>
<Tooltip>
<TooltipTrigger asChild>
<span className="flex items-center gap-0.5 text-[9px] px-1 py-px border border-accent-brand/30 bg-accent-brand/10 text-accent-brand shrink-0 leading-none uppercase tracking-wider">
<Users className="size-2.5" />
{t("hosts.sharing.sharedBadge")}
</span>
</TooltipTrigger>
<TooltipContent side="right">
{t("hosts.sharing.sharedBadgeTooltip", {
owner: host.ownerUsername || "?",
level: t(
`hosts.sharing.levels.${host.permissionLevel ?? "connect"}.label`,
),
})}
</TooltipContent>
</Tooltip>
</TooltipProvider>
)}
{!selectionMode && shouldUseClickTray && (
<button
title={
isTrayOpen
? t("hosts.collapseActions")
: t("hosts.expandActions")
}
onClick={(e) => {
e.stopPropagation();
onTrayOpenChange?.(!isTrayOpen);
}}
className="ml-auto flex items-center justify-center size-5 rounded text-muted-foreground/30 hover:text-muted-foreground hover:bg-muted-foreground/10 transition-colors shrink-0"
>
<ChevronRight
className={`size-3 transition-transform duration-150 ${isTrayOpen ? "rotate-90" : ""}`}
/>
</button>
)}
</div>
{/* Address — always visible */}
<span className="text-[11px] text-muted-foreground/70 truncate leading-none pl-3">
{host.username}@{host.ip}
</span>
{/* Tag pills */}
{showHostTags && host.tags && host.tags.length > 0 && (
<div className="flex items-center gap-1 min-w-0 overflow-hidden pl-3">
{host.tags.slice(0, 4).map((tag) => (
<span
key={tag}
className="text-[9px] px-1 py-px border border-border/50 bg-muted/30 text-muted-foreground/60 lowercase shrink-0 leading-none"
>
{tag}
</span>
))}
{host.tags.length > 4 && (
<span className="text-[9px] text-muted-foreground/40 shrink-0">
+{host.tags.length - 4}
</span>
)}
</div>
)}
{/* Connection buttons — always visible in click-tray mode, inside hover tray otherwise */}
{shouldUseClickTray && !selectionMode && (
<div className="flex items-center flex-wrap gap-1 pl-2 pb-1">
{getSshActions(host).map(({ type, icon: Icon, label }) => (
<button
key={type}
title={label}
onClick={(e) => {
e.stopPropagation();
onOpenTab(type);
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Icon className="size-3.5" />
</button>
))}
{host.enableSsh &&
(host.enableRdp || host.enableVnc || host.enableTelnet) &&
getSshActions(host).length > 0 && (
<div className="w-px h-3.5 bg-border/60 mx-0.5 shrink-0" />
)}
{host.enableRdp && (
<button
title="RDP"
onClick={(e) => {
e.stopPropagation();
onOpenTab("rdp");
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Monitor className="size-3.5" />
</button>
)}
{host.enableVnc && (
<button
title="VNC"
onClick={(e) => {
e.stopPropagation();
onOpenTab("vnc");
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<MousePointerClick className="size-3.5" />
</button>
)}
{host.enableTelnet && (
<button
title="Telnet"
onClick={(e) => {
e.stopPropagation();
onOpenTab("telnet");
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<MessagesSquare className="size-3.5" />
</button>
)}
{host.macAddress && (
<button
title={t("hosts.wakeOnLanAction")}
onClick={async (e) => {
e.stopPropagation();
try {
await wakeOnLan(host.id);
toast.success(
t("hosts.wakeOnLanSuccess", { name: host.name }),
);
} catch {
toast.error(t("hosts.wakeOnLanError"));
}
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Zap className="size-3.5" />
</button>
)}
</div>
)}
{/* Action tray — slides open on hover (default) or via chevron in click-tray mode */}
<div
className={`overflow-hidden transition-all duration-150 ease-out max-h-0 opacity-0 ${!shouldUseClickTray ? "group-hover:max-h-[130px] group-hover:opacity-100" : ""} ${selectionMode ? "!max-h-0 !opacity-0" : ""} ${(isMenuOpen || (shouldUseClickTray && isTrayOpen)) && !selectionMode ? "!max-h-[130px] !opacity-100" : ""}`}
>
{isOnline &&
((host.cpu != null && host.cpu > 0) ||
(host.ram != null && host.ram > 0)) && (
<div className="flex items-center gap-3 pl-3">
{host.cpu != null && host.cpu > 0 && (
<div className="flex items-center gap-1">
<Cpu className="size-2.5 shrink-0 text-muted-foreground/30" />
<div className="w-9 h-[3px] bg-muted-foreground/15 rounded-full overflow-hidden">
<div
className={`h-full rounded-full ${host.cpu > 80 ? "bg-red-400" : host.cpu > 50 ? "bg-yellow-400" : "bg-accent-brand"}`}
style={{ width: `${host.cpu}%` }}
/>
</div>
<span className="text-[9px] tabular-nums text-muted-foreground/40">
{host.cpu}%
</span>
</div>
)}
{host.ram != null && host.ram > 0 && (
<div className="flex items-center gap-1">
<MemoryStick className="size-2.5 shrink-0 text-muted-foreground/30" />
<div className="w-9 h-[3px] bg-muted-foreground/15 rounded-full overflow-hidden">
<div
className={`h-full rounded-full ${host.ram > 80 ? "bg-red-400" : host.ram > 60 ? "bg-yellow-400" : "bg-accent-brand/60"}`}
style={{ width: `${host.ram}%` }}
/>
</div>
<span className="text-[9px] tabular-nums text-muted-foreground/40">
{host.ram}%
</span>
</div>
)}
</div>
)}
<div className="flex flex-col gap-0.5 pt-1.5 pl-2 pb-1">
{/* Connection buttons — only shown here in hover mode */}
{!shouldUseClickTray && (
<div className="flex items-center flex-wrap gap-1">
{getSshActions(host).map(({ type, icon: Icon, label }) => (
<button
key={type}
title={label}
onClick={(e) => {
e.stopPropagation();
onOpenTab(type);
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Icon className="size-3.5" />
</button>
))}
{host.enableSsh &&
(host.enableRdp || host.enableVnc || host.enableTelnet) &&
getSshActions(host).length > 0 && (
<div className="w-px h-3.5 bg-border/60 mx-0.5 shrink-0" />
)}
{host.enableRdp && (
<button
title="RDP"
onClick={(e) => {
e.stopPropagation();
onOpenTab("rdp");
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Monitor className="size-3.5" />
</button>
)}
{host.enableVnc && (
<button
title="VNC"
onClick={(e) => {
e.stopPropagation();
onOpenTab("vnc");
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<MousePointerClick className="size-3.5" />
</button>
)}
{host.enableTelnet && (
<button
title="Telnet"
onClick={(e) => {
e.stopPropagation();
onOpenTab("telnet");
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<MessagesSquare className="size-3.5" />
</button>
)}
{host.macAddress && (
<button
title={t("hosts.wakeOnLanAction")}
onClick={async (e) => {
e.stopPropagation();
try {
await wakeOnLan(host.id);
toast.success(
t("hosts.wakeOnLanSuccess", { name: host.name }),
);
} catch {
toast.error(t("hosts.wakeOnLanError"));
}
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Zap className="size-3.5" />
</button>
)}
</div>
)}
{/* Management buttons row */}
<div className="flex items-center gap-1 pt-0.5 border-t border-border/40 mt-0.5">
{showPasswordCopy && (
<button
title={t("nav.copyPassword")}
onClick={(e) => handleCopyPassword(e, "password")}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Key className="size-3.5" />
</button>
)}
{showSudoPasswordCopy && (
<button
title={t("nav.copySudoPassword")}
onClick={(e) => handleCopyPassword(e, "sudoPassword")}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<KeyRound className="size-3.5" />
</button>
)}
{onEditHost && (
<button
title="Edit Host"
onClick={(e) => {
e.stopPropagation();
onEditHost();
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Pencil className="size-3.5" />
</button>
)}
{onShareHost && (
<button
title={t("hosts.shareHost")}
onClick={(e) => {
e.stopPropagation();
onShareHost();
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Share2 className="size-3.5" />
</button>
)}
{host.enableProxmox && onProxmoxDiscover && (
<button
title={t("hosts.proxmoxDiscoverAction")}
onClick={(e) => {
e.stopPropagation();
onProxmoxDiscover();
}}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<Boxes className="size-3.5" />
</button>
)}
<DropdownMenu open={isMenuOpen} onOpenChange={onMenuOpenChange}>
<DropdownMenuTrigger asChild>
<button
title="More options"
onClick={(e) => e.stopPropagation()}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
>
<MoreHorizontal className="size-3.5" />
</button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end" className="text-xs">
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation();
writeClipboardText(`${host.username}@${host.ip}`);
toast.success(t("hosts.copiedToClipboard"));
}}
>
<Copy className="size-3.5 mr-2" />
{t("hosts.copyAddress")}
</DropdownMenuItem>
{showPasswordCopy && (
<DropdownMenuItem
onClick={(e) => handleCopyPassword(e, "password")}
>
<Key className="size-3.5 mr-2" />
{t("nav.copyPassword")}
</DropdownMenuItem>
)}
{showSudoPasswordCopy && (
<DropdownMenuItem
onClick={(e) => handleCopyPassword(e, "sudoPassword")}
>
<KeyRound className="size-3.5 mr-2" />
{t("nav.copySudoPassword")}
</DropdownMenuItem>
)}
<DropdownMenuSub>
<DropdownMenuSubTrigger>
<Link className="size-3.5 mr-2" />
{t("hosts.copyLink")}
</DropdownMenuSubTrigger>
<DropdownMenuSubContent>
{host.enableSsh && host.enableTerminal && (
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation();
writeClipboardText(
`${window.location.origin}?view=terminal&hostId=${host.id}`,
);
toast.success(t("hosts.terminalUrlCopied"));
}}
>
<Terminal className="size-3.5 mr-2" />
{t("hosts.copyTerminalUrlAction")}
</DropdownMenuItem>
)}
{host.enableSsh && host.enableFileManager && (
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation();
writeClipboardText(
`${window.location.origin}?view=file-manager&hostId=${host.id}`,
);
toast.success(t("hosts.fileManagerUrlCopied"));
}}
>
<FolderSearch className="size-3.5 mr-2" />
{t("hosts.copyFileManagerUrlAction")}
</DropdownMenuItem>
)}
{host.enableSsh && host.enableTunnel && (
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation();
writeClipboardText(
`${window.location.origin}?view=tunnel&hostId=${host.id}`,
);
toast.success(t("hosts.tunnelUrlCopied"));
}}
>
<Network className="size-3.5 mr-2" />
{t("hosts.copyTunnelUrlAction")}
</DropdownMenuItem>
)}
{host.enableSsh && host.enableDocker && (
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation();
writeClipboardText(
`${window.location.origin}?view=docker&hostId=${host.id}`,
);
toast.success(t("hosts.dockerUrlCopied"));
}}
>
<Box className="size-3.5 mr-2" />
{t("hosts.copyDockerUrlAction")}
</DropdownMenuItem>
)}
{host.enableSsh && metricsEnabled && (
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation();
writeClipboardText(
`${window.location.origin}?view=host-metrics&hostId=${host.id}`,
);
toast.success(t("hosts.hostMetricsUrlCopied"));
}}
>
<Server className="size-3.5 mr-2" />
{t("hosts.copyHostMetricsUrlAction")}
</DropdownMenuItem>
)}
{host.enableSsh &&
host.enableTerminal &&
host.enableTmuxMonitor && (
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation();
writeClipboardText(
`${window.location.origin}?view=tmux_monitor&hostId=${host.id}`,
);
toast.success(t("hosts.tmuxMonitorUrlCopied"));
}}
>
<Layers className="size-3.5 mr-2" />
{t("hosts.copyTmuxMonitorUrlAction")}
</DropdownMenuItem>
)}
{host.enableRdp && (
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation();
writeClipboardText(
`${window.location.origin}?view=rdp&hostId=${host.id}`,
);
toast.success(t("hosts.rdpUrlCopied"));
}}
>
<Monitor className="size-3.5 mr-2" />
{t("hosts.copyRdpUrlAction")}
</DropdownMenuItem>
)}
{host.enableVnc && (
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation();
writeClipboardText(
`${window.location.origin}?view=vnc&hostId=${host.id}`,
);
toast.success(t("hosts.vncUrlCopied"));
}}
>
<MousePointerClick className="size-3.5 mr-2" />
{t("hosts.copyVncUrlAction")}
</DropdownMenuItem>
)}
{host.enableTelnet && (
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation();
writeClipboardText(
`${window.location.origin}?view=telnet&hostId=${host.id}`,
);
toast.success(t("hosts.telnetUrlCopied"));
}}
>
<Terminal className="size-3.5 mr-2" />
{t("hosts.copyTelnetUrlAction")}
</DropdownMenuItem>
)}
</DropdownMenuSubContent>
</DropdownMenuSub>
{allowDelete && (
<>
<DropdownMenuSeparator />
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation();
onDuplicate();
}}
>
<CopyPlus className="size-3.5 mr-2" />
{t("hosts.cloneHostAction")}
</DropdownMenuItem>
<DropdownMenuSeparator />
<DropdownMenuItem
className="text-destructive focus:text-destructive"
onClick={(e) => {
e.stopPropagation();
onDelete();
}}
>
<Trash2 className="size-3.5 mr-2" />
{t("common.delete")}
</DropdownMenuItem>
</>
)}
</DropdownMenuContent>
</DropdownMenu>
</div>
</div>
</div>
</div>
</div>
);
}
export function FolderItem({
folder,
depth = 0,
onOpenTab,
onEditHost,
onShareHost,
onDeleteHost,
onDuplicateHost,
onProxmoxDiscover,
query = "",
stripeMap,
openFolders,
onToggleFolder,
selectionMode,
selectedHostIds,
onToggleSelect,
openMenuHostId,
onMenuOpenChange,
openTrayHostId,
onTrayOpenChange,
onManageFolder,
onDeleteFolder,
onOpenAllSessions,
onShareFolder,
onMoveHostsToFolder,
draggedHostIds,
onDragHostStart,
onDragEnd,
/** When true, only render the folder header (children come from the virtual list). */
flat = false,
stripeIndex: stripeIndexProp,
}: {
folder: HostFolder;
depth?: number;
onOpenTab: (host: Host, type: TabType) => void;
onEditHost?: (host: Host) => void;
onShareHost?: (host: Host) => void;
onDeleteHost: (host: Host) => void;
onDuplicateHost: (host: Host) => void;
onProxmoxDiscover?: (host: Host) => void;
query?: string;
stripeMap?: Map<Host | HostFolder, number>;
openFolders: Set<string>;
onToggleFolder: (name: string) => void;
selectionMode: boolean;
selectedHostIds: Set<string>;
onToggleSelect: (id: string) => void;
openMenuHostId: string | null;
onMenuOpenChange: (hostId: string | null) => void;
openTrayHostId: string | null;
onTrayOpenChange: (hostId: string | null) => void;
onManageFolder: (folder: HostFolder) => void;
onDeleteFolder: (folder: HostFolder) => void;
onOpenAllSessions: (folder: HostFolder) => void;
onShareFolder?: (folder: HostFolder) => void;
onMoveHostsToFolder: (hostIds: string[], targetPath: string) => void;
draggedHostIds: string[] | null;
onDragHostStart: (hostId: string) => void;
onDragEnd: () => void;
flat?: boolean;
stripeIndex?: number;
}) {
const { t } = useTranslation();
const { getStatus, initialLoadComplete } = useServerStatus();
const { total } = folderHostCount(folder);
const online = initialLoadComplete
? collectAllHosts(folder.children).filter(
(h) => statusCheckEnabled(h) && getStatus(Number(h.id)) === "online",
).length
: folderHostCount(folder).online;
const [dragOver, setDragOver] = useState(false);
if (query && !folderHasMatch(folder, query)) return null;
const folderPath = folder.path ?? folder.name;
const isOpen = query ? true : openFolders.has(folderPath);
const stripeIndex = stripeIndexProp ?? stripeMap?.get(folder) ?? 0;
// Synthetic group headers (group-by tag/status/etc.) are not real folders, so
// they can't be edited, deleted, or used as drop targets.
const isGroup = folderPath.startsWith("__group__:");
return (
<div
style={depth > 0 ? { paddingLeft: depth * 12 } : undefined}
onDragOver={(e) => {
if (draggedHostIds && !isGroup) {
e.preventDefault();
e.stopPropagation();
setDragOver(true);
}
}}
onDragLeave={() => setDragOver(false)}
onDrop={(e) => {
if (draggedHostIds && !isGroup) {
e.preventDefault();
e.stopPropagation();
setDragOver(false);
onMoveHostsToFolder(draggedHostIds, folderPath);
}
}}
>
<button
onClick={() => !query && onToggleFolder(folderPath)}
className={`group/folder flex items-center gap-2 w-full px-3 py-2 hover:bg-muted/50 transition-colors text-left cursor-pointer ${stripeIndex % 2 === 1 ? "bg-muted/20" : ""} ${dragOver ? "ring-1 ring-inset ring-accent-brand bg-accent-brand/10" : ""}`}
>
<ChevronRight
className={`size-3 shrink-0 text-muted-foreground/50 transition-transform ${isOpen ? "rotate-90" : ""}`}
/>
<FolderIconEl
icon={folder.icon ?? "folder"}
className={`size-3.5 shrink-0 ${folder.color ? "" : isOpen ? "text-accent-brand" : "text-muted-foreground/60"}`}
style={folder.color ? { color: folder.color } : undefined}
/>
{
<>
<span className="text-[13px] font-semibold text-foreground/80 truncate flex-1">
{folder.name}
</span>
<span className="text-[10px] tabular-nums shrink-0 ml-1">
{online > 0 && (
<span className="text-accent-brand font-semibold">
{online}
</span>
)}
<span className="text-muted-foreground/40">/{total}</span>
</span>
{!isGroup && (
<span className="flex items-center gap-1.5 ml-1 opacity-0 group-hover/folder:opacity-100 transition-opacity">
<span
title={t("hosts.openAllSessions")}
className="text-muted-foreground/50 hover:text-foreground"
onClick={(e) => {
e.stopPropagation();
onOpenAllSessions(folder);
}}
>
<FolderOpen className="size-2.5" />
</span>
{onShareFolder && (
<span
title={t("hosts.shareFolder")}
className="text-muted-foreground/50 hover:text-foreground"
onClick={(e) => {
e.stopPropagation();
onShareFolder(folder);
}}
>
<Share2 className="size-2.5" />
</span>
)}
<span
title={t("hosts.editFolder")}
className="text-muted-foreground/50 hover:text-foreground"
onClick={(e) => {
e.stopPropagation();
onManageFolder(folder);
}}
>
<Pencil className="size-2.5" />
</span>
<span
title={t("hosts.deleteFolder")}
className="text-muted-foreground/50 hover:text-destructive"
onClick={(e) => {
e.stopPropagation();
onDeleteFolder(folder);
}}
>
<Trash2 className="size-2.5" />
</span>
</span>
)}
</>
}
</button>
{!flat && isOpen && (
<div className="border-l border-border/40 ml-[30px]">
{folder.children.map((child, i) =>
isFolder(child) ? (
<FolderItem
key={i}
folder={child}
depth={depth + 1}
onOpenTab={onOpenTab}
onEditHost={onEditHost}
onShareHost={onShareHost}
onDeleteHost={onDeleteHost}
onDuplicateHost={onDuplicateHost}
onProxmoxDiscover={onProxmoxDiscover}
query={query}
stripeMap={stripeMap}
openFolders={openFolders}
onToggleFolder={onToggleFolder}
selectionMode={selectionMode}
selectedHostIds={selectedHostIds}
onToggleSelect={onToggleSelect}
openMenuHostId={openMenuHostId}
onMenuOpenChange={onMenuOpenChange}
openTrayHostId={openTrayHostId}
onTrayOpenChange={onTrayOpenChange}
onManageFolder={onManageFolder}
onDeleteFolder={onDeleteFolder}
onOpenAllSessions={onOpenAllSessions}
onShareFolder={onShareFolder}
onMoveHostsToFolder={onMoveHostsToFolder}
draggedHostIds={draggedHostIds}
onDragHostStart={onDragHostStart}
onDragEnd={onDragEnd}
/>
) : (
<HostItem
key={i}
host={child}
onOpenTab={(t) => onOpenTab(child, t)}
onEditHost={onEditHost ? () => onEditHost(child) : undefined}
onShareHost={onShareHost ? () => onShareHost(child) : undefined}
onProxmoxDiscover={
onProxmoxDiscover ? () => onProxmoxDiscover(child) : undefined
}
onDelete={() => onDeleteHost(child)}
onDuplicate={() => onDuplicateHost(child)}
query={query}
stripeIndex={stripeMap?.get(child) ?? 0}
selectionMode={selectionMode}
selected={selectedHostIds.has(child.id)}
onToggleSelect={() => onToggleSelect(child.id)}
isMenuOpen={openMenuHostId === child.id}
onMenuOpenChange={(open) =>
onMenuOpenChange(open ? child.id : null)
}
isTrayOpen={openTrayHostId === child.id}
onTrayOpenChange={(open) =>
onTrayOpenChange(open ? child.id : null)
}
onDragStart={() => onDragHostStart(child.id)}
onDragEnd={onDragEnd}
/>
),
)}
</div>
)}
</div>
);
}
export function SidebarTree({
children,
onOpenTab,
onEditHost,
onShareHost,
onProxmoxDiscover,
query = "",
selectionMode,
onToggleSelectionMode,
loading = false,
}: {
children: (Host | HostFolder)[];
onOpenTab: (host: Host, type: TabType) => void;
onEditHost: (host: Host) => void;
onShareHost?: (host: Host) => void;
onProxmoxDiscover?: (host: Host) => void;
query?: string;
selectionMode: boolean;
onToggleSelectionMode: () => void;
loading?: boolean;
}) {
const { t } = useTranslation();
const [openFolders, setOpenFolders] = useState<Set<string>>(() => {
try {
const saved = localStorage.getItem("hostOpenFolders");
return saved ? new Set<string>(JSON.parse(saved)) : new Set();
} catch {
return new Set();
}
});
const [selectedHostIds, setSelectedHostIds] = useState<Set<string>>(
new Set(),
);
const [openMenuHostId, setOpenMenuHostId] = useState<string | null>(null);
const [openTrayHostId, setOpenTrayHostId] = useState<string | null>(null);
const [confirmDialog, setConfirmDialog] = useState<{
message: string;
onConfirm: () => Promise<void> | void;
} | null>(null);
const [draggedHostIds, setDraggedHostIds] = useState<string[] | null>(null);
const [rootDragOver, setRootDragOver] = useState(false);
const [folderDialog, setFolderDialog] = useState<{
mode: "create" | "edit";
folder?: HostFolder;
} | null>(null);
const [shareFolderTarget, setShareFolderTarget] = useState<string | null>(
null,
);
const [compactHostView, setCompactHostView] = useState(
() => localStorage.getItem("compactHostView") === "true",
);
const [trayOnClick, setTrayOnClick] = useState(
() => localStorage.getItem("hostTrayOnClick") !== "false",
);
useEffect(() => {
const handler = () =>
setCompactHostView(localStorage.getItem("compactHostView") === "true");
window.addEventListener("storage", handler);
window.addEventListener("compactHostViewChanged", handler);
return () => {
window.removeEventListener("storage", handler);
window.removeEventListener("compactHostViewChanged", handler);
};
}, []);
useEffect(() => {
const handler = () =>
setTrayOnClick(localStorage.getItem("hostTrayOnClick") !== "false");
window.addEventListener("storage", handler);
window.addEventListener("hostTrayOnClickChanged", handler);
return () => {
window.removeEventListener("storage", handler);
window.removeEventListener("hostTrayOnClickChanged", handler);
};
}, []);
function handleDragHostStart(hostId: string) {
// When the dragged host is part of an active selection, move the whole set.
if (selectionMode && selectedHostIds.has(hostId)) {
setDraggedHostIds([...selectedHostIds]);
} else {
setDraggedHostIds([hostId]);
}
}
async function handleMoveHostsToFolder(
hostIds: string[],
targetPath: string,
) {
setDraggedHostIds(null);
try {
await bulkUpdateSSHHosts(hostIds.map(Number), { folder: targetPath });
window.dispatchEvent(new CustomEvent("termix:hosts-changed"));
toast.success(
t("hosts.movedToFolder", {
count: hostIds.length,
folder: targetPath || t("hosts.folderPickerNone"),
}),
);
} catch {
toast.error(t("hosts.failedToMoveHosts"));
}
}
function handleManageFolder(folder: HostFolder) {
setFolderDialog({ mode: "edit", folder });
}
function handleOpenAllSessions(folder: HostFolder) {
const hosts = collectAllHosts(folder.children);
for (const host of hosts) {
const type = resolveHostTabType(host);
onOpenTab(host, type);
}
}
async function handleSaveFolderMetadata(value: {
name: string;
color: string;
icon: string;
credentialId: number | null;
}) {
const existing = folderDialog?.folder;
try {
if (existing) {
const oldPath = existing.path ?? existing.name;
const parent = oldPath.includes(" / ")
? oldPath.slice(0, oldPath.lastIndexOf(" / "))
: "";
const newPath = parent ? `${parent} / ${value.name}` : value.name;
if (newPath !== oldPath) {
await renameFolder(oldPath, newPath);
}
await updateFolderMetadata(
newPath,
value.color,
value.icon,
value.credentialId,
);
} else {
await updateFolderMetadata(
value.name,
value.color,
value.icon,
value.credentialId,
);
}
window.dispatchEvent(new CustomEvent("termix:hosts-changed"));
toast.success(t("hosts.folderSaved"));
} catch {
toast.error(t("hosts.failedToSaveFolder"));
}
}
function handleDeleteFolder(folder: HostFolder) {
const folderPath = folder.path ?? folder.name;
const { total } = folderHostCount(folder);
setConfirmDialog({
message: t("hosts.deleteFolderConfirm", {
name: folder.name,
count: total,
}),
onConfirm: async () => {
try {
await deleteAllHostsInFolder(folderPath);
window.dispatchEvent(new CustomEvent("termix:hosts-changed"));
toast.success(t("hosts.folderDeleted", { name: folder.name }));
} catch {
toast.error(t("hosts.failedToDeleteFolder"));
}
},
});
}
useEffect(() => {
const openCreate = () => setFolderDialog({ mode: "create" });
const expandAll = () => {
const next = new Set(collectAllFolderPaths(children));
persistOpenFolders(next);
setOpenFolders(next);
};
const collapseAll = () => {
const next = new Set<string>();
persistOpenFolders(next);
setOpenFolders(next);
};
window.addEventListener("hosts:create-folder", openCreate);
window.addEventListener("hosts:expand-all", expandAll);
window.addEventListener("hosts:collapse-all", collapseAll);
return () => {
window.removeEventListener("hosts:create-folder", openCreate);
window.removeEventListener("hosts:expand-all", expandAll);
window.removeEventListener("hosts:collapse-all", collapseAll);
};
}, [children]);
function persistOpenFolders(next: Set<string>) {
try {
localStorage.setItem("hostOpenFolders", JSON.stringify([...next]));
} catch {
// ignore quota/serialization failures
}
}
function toggleFolder(name: string) {
setOpenFolders((prev) => {
const next = new Set(prev);
if (next.has(name)) {
next.delete(name);
} else {
next.add(name);
}
persistOpenFolders(next);
return next;
});
}
function toggleSelect(id: string) {
setSelectedHostIds((prev) => {
const next = new Set(prev);
if (next.has(id)) {
next.delete(id);
} else {
next.add(id);
}
return next;
});
}
function handleDeleteHost(host: Host) {
setConfirmDialog({
message: t("hosts.deleteHostConfirm", { name: host.name }),
onConfirm: async () => {
try {
await deleteSSHHost(Number(host.id));
window.dispatchEvent(new CustomEvent("termix:hosts-changed"));
toast.success(t("hosts.deletedCount", { count: 1 }));
} catch {
toast.error(t("hosts.failedToDeleteCount", { count: 1 }));
}
},
});
}
async function handleDuplicateHost(host: Host) {
try {
const duplicateHost: SSHHostData = {
name: `${host.name} (copy)`,
ip: host.ip,
port: host.port,
username: host.username,
folder: host.folder,
tags: host.tags ?? [],
pin: host.pin ?? false,
notes: host.notes,
macAddress: host.macAddress,
// Key material is never sent to the frontend, so a cloned key-auth
// host would have authType "key" with no key — unusable. Reset to
// password so the clone is in a connectable (editable) state.
authType: host.authType === "key" ? "password" : host.authType,
password: host.authType === "key" ? null : (host.password ?? null),
key: null,
keyPassword: null,
keyType: null,
credentialId: host.credentialId ? Number(host.credentialId) : null,
overrideCredentialUsername: host.overrideCredentialUsername ?? false,
enableSsh: host.enableSsh,
enableRdp: host.enableRdp,
enableVnc: host.enableVnc,
enableTelnet: host.enableTelnet,
enableTerminal: host.enableTerminal,
enableTunnel: host.enableTunnel,
enableFileManager: host.enableFileManager,
enableDocker: host.enableDocker,
sshPort: host.sshPort,
rdpPort: host.rdpPort,
vncPort: host.vncPort,
telnetPort: host.telnetPort,
rdpUser: host.rdpUser ?? null,
rdpPassword: host.rdpPassword ?? null,
rdpDomain: host.domain ?? null,
rdpSecurity: host.security ?? null,
rdpIgnoreCert: host.ignoreCert ?? false,
vncAuthType: host.vncAuthType ?? null,
vncCredentialId: host.vncCredentialId ?? null,
vncPassword: host.vncPassword ?? null,
vncUser: host.vncUser ?? null,
telnetUser: host.telnetUser ?? null,
telnetPassword: host.telnetPassword ?? null,
defaultPath: host.defaultPath ?? "/",
forceKeyboardInteractive: host.forceKeyboardInteractive ?? false,
useSocks5: host.useSocks5,
socks5Host: host.socks5Host ?? null,
socks5Port: host.socks5Port ?? null,
socks5Username: host.socks5Username ?? null,
socks5Password: host.socks5Password ?? null,
socks5ProxyChain: host.socks5ProxyChain ?? null,
jumpHosts: (host.jumpHosts ?? []).map((j) => ({
hostId: Number(j.hostId),
})),
portKnockSequence: host.portKnockSequence ?? [],
tunnelConnections: host.serverTunnels ?? [],
quickActions: (host.quickActions ?? []).map((a) => ({
name: a.name,
snippetId: Number(a.snippetId),
})),
statsConfig: host.statsConfig,
guacamoleConfig: host.guacamoleConfig ?? null,
terminalConfig: host.terminalConfig ?? null,
};
await createSSHHost(duplicateHost);
window.dispatchEvent(new CustomEvent("termix:hosts-changed"));
toast.success(t("hosts.duplicatedHost", { name: host.name }));
} catch {
toast.error(t("hosts.failedToDuplicateHost"));
}
}
const allHosts = collectAllHosts(children);
const allFolderPaths = collectAllFolderPaths(children);
const visibleRows = collectVisibleRows(children, query, openFolders);
const parentRef = useRef<HTMLDivElement>(null);
const isTouchOnly =
typeof window !== "undefined" && window.matchMedia("(hover: none)").matches;
const clickTrayActive = trayOnClick || isTouchOnly;
const virtualizer = useVirtualizer({
count: visibleRows.length,
getScrollElement: () => parentRef.current,
estimateSize: (index) => {
const row = visibleRows[index];
if (!row) return 36;
if (isFolder(row.item)) return 36;
const isOpen = openTrayHostId === row.item.id;
if (compactHostView) {
// Compact rows are a single line; the tray adds a second wrapped row.
return isOpen ? 88 : 32;
}
// Default rows show name + address (+ optional tags), taller to start with.
// Click-tray mode also keeps the connection buttons visible even when closed.
const base = clickTrayActive ? 76 : 56;
return isOpen ? base + 96 : base;
},
overscan: 12,
getItemKey: (index) => {
const row = visibleRows[index];
if (!row) return index;
return isFolder(row.item)
? `folder:${row.item.path ?? row.item.name}`
: `host:${row.item.id}`;
},
});
// Remeasure when the tree shape changes (rows added/removed/reordered), so
// stale cached sizes from before don't leak onto different rows. Tray
// open/close is intentionally excluded — `measureElement`'s ResizeObserver
// already tracks that live via the CSS transition, and force-resetting the
// cache here would snap rows back to the rough estimate mid-animation and
// cause visible jitter.
useLayoutEffect(() => {
virtualizer.measure();
}, [
virtualizer,
openFolders,
query,
visibleRows.length,
compactHostView,
trayOnClick,
]);
if (loading) {
return (
<div className="relative flex flex-col flex-1 min-h-0">
<div className="flex-1 min-h-0 overflow-y-auto px-2 py-2 space-y-1.5">
{[28, 20, 24, 20, 28, 20].map((w, i) => (
<div
key={i}
className={`flex items-center gap-2 px-3 py-2 ${i % 2 === 1 ? "ml-4" : ""}`}
>
<div className="size-3 rounded-sm bg-muted/50 animate-pulse shrink-0" />
<div
className="h-3 rounded bg-muted/50 animate-pulse"
style={{ width: `${w * 3}px` }}
/>
</div>
))}
<div className="flex items-center justify-center gap-2 pt-4 text-muted-foreground/40">
<Loader2 className="size-3.5 animate-spin" />
<span className="text-xs">{t("hosts.loadingHosts")}</span>
</div>
</div>
</div>
);
}
return (
<div className="relative flex flex-col flex-1 min-h-0">
<div
ref={parentRef}
className={`flex-1 min-h-0 overflow-y-auto ${rootDragOver ? "ring-1 ring-inset ring-accent-brand/50" : ""}`}
onDragOver={(e) => {
if (draggedHostIds) {
e.preventDefault();
setRootDragOver(true);
}
}}
onDragLeave={(e) => {
if (e.currentTarget === e.target) setRootDragOver(false);
}}
onDrop={(e) => {
if (draggedHostIds) {
e.preventDefault();
setRootDragOver(false);
handleMoveHostsToFolder(draggedHostIds, "");
}
}}
>
{visibleRows.length === 0 ? (
<div className="flex flex-col items-center justify-center py-12 text-center px-4">
<Server className="size-8 text-muted-foreground/20 mb-2" />
<span className="text-sm font-semibold text-muted-foreground/60">
{query ? t("hosts.noHostsMatchSearch") : t("hosts.noHostsYet")}
</span>
</div>
) : (
<div
className="relative w-full"
style={{ height: virtualizer.getTotalSize() }}
>
{virtualizer.getVirtualItems().map((vItem) => {
const row = visibleRows[vItem.index];
if (!row) return null;
const { item, depth } = row;
return (
<div
key={vItem.key}
data-index={vItem.index}
ref={virtualizer.measureElement}
className="absolute top-0 left-0 w-full"
style={{
transform: `translateY(${vItem.start}px)`,
}}
>
{isFolder(item) ? (
<FolderItem
folder={item}
depth={depth}
flat
onOpenTab={onOpenTab}
onEditHost={onEditHost}
onShareHost={onShareHost}
onDeleteHost={handleDeleteHost}
onDuplicateHost={handleDuplicateHost}
onProxmoxDiscover={onProxmoxDiscover}
query={query}
openFolders={openFolders}
onToggleFolder={toggleFolder}
selectionMode={selectionMode}
selectedHostIds={selectedHostIds}
onToggleSelect={toggleSelect}
openMenuHostId={openMenuHostId}
onMenuOpenChange={setOpenMenuHostId}
openTrayHostId={openTrayHostId}
onTrayOpenChange={setOpenTrayHostId}
onManageFolder={handleManageFolder}
onDeleteFolder={handleDeleteFolder}
onOpenAllSessions={handleOpenAllSessions}
onShareFolder={(folder) =>
setShareFolderTarget(folder.path ?? folder.name)
}
onMoveHostsToFolder={handleMoveHostsToFolder}
draggedHostIds={draggedHostIds}
onDragHostStart={handleDragHostStart}
onDragEnd={() => setDraggedHostIds(null)}
stripeIndex={vItem.index}
/>
) : (
<HostItem
host={item}
depth={depth}
onOpenTab={(type) => onOpenTab(item, type)}
onEditHost={() => onEditHost(item)}
onShareHost={
onShareHost ? () => onShareHost(item) : undefined
}
onProxmoxDiscover={
onProxmoxDiscover
? () => onProxmoxDiscover(item)
: undefined
}
onDelete={() => handleDeleteHost(item)}
onDuplicate={() => handleDuplicateHost(item)}
query={query}
stripeIndex={vItem.index}
selectionMode={selectionMode}
selected={selectedHostIds.has(item.id)}
onToggleSelect={() => toggleSelect(item.id)}
isMenuOpen={openMenuHostId === item.id}
onMenuOpenChange={(open) =>
setOpenMenuHostId(open ? item.id : null)
}
isTrayOpen={openTrayHostId === item.id}
onTrayOpenChange={(open) =>
setOpenTrayHostId(open ? item.id : null)
}
onDragStart={() => handleDragHostStart(item.id)}
onDragEnd={() => setDraggedHostIds(null)}
/>
)}
</div>
);
})}
</div>
)}
</div>
{/* Floating selection bar */}
{selectionMode && (
<div className="absolute bottom-4 inset-x-3 z-50">
<div className="bg-popover border border-border shadow-xl px-2.5 py-2 flex items-center gap-1.5 flex-wrap">
<span className="text-xs font-semibold tabular-nums shrink-0">
{t("hosts.nSelected", { count: selectedHostIds.size })}
</span>
<div className="w-px h-4 bg-border mx-0.5" />
<button
className="text-[10px] text-muted-foreground hover:text-foreground px-1.5 py-1 hover:bg-muted rounded transition-colors"
onClick={() => {
if (selectedHostIds.size === allHosts.length)
setSelectedHostIds(new Set());
else setSelectedHostIds(new Set(allHosts.map((h) => h.id)));
}}
>
{selectedHostIds.size === allHosts.length
? t("hosts.deselectAll")
: t("hosts.selectAll")}
</button>
<DropdownMenu>
<DropdownMenuTrigger asChild>
<button
className="text-[10px] text-muted-foreground hover:text-foreground px-1.5 py-1 hover:bg-muted rounded transition-colors flex items-center gap-1 disabled:opacity-40"
disabled={selectedHostIds.size === 0}
>
{t("hosts.featuresMenu")} <ChevronDown className="size-2.5" />
</button>
</DropdownMenuTrigger>
<DropdownMenuContent align="start" className="text-xs">
{[
{
labelKey: "hosts.enableTerminalFeature",
field: "enableTerminal",
value: true,
icon: Terminal,
},
{
labelKey: "hosts.disableTerminalFeature",
field: "enableTerminal",
value: false,
icon: Terminal,
},
{
labelKey: "hosts.enableFilesFeature",
field: "enableFileManager",
value: true,
icon: FolderSearch,
},
{
labelKey: "hosts.disableFilesFeature",
field: "enableFileManager",
value: false,
icon: FolderSearch,
},
{
labelKey: "hosts.enableTunnelsFeature",
field: "enableTunnel",
value: true,
icon: Network,
},
{
labelKey: "hosts.disableTunnelsFeature",
field: "enableTunnel",
value: false,
icon: Network,
},
{
labelKey: "hosts.enableDockerFeature",
field: "enableDocker",
value: true,
icon: Box,
},
{
labelKey: "hosts.disableDockerFeature",
field: "enableDocker",
value: false,
icon: Box,
},
{
labelKey: "hosts.enableProxmoxFeature",
field: "enableProxmox",
value: true,
icon: Boxes,
},
{
labelKey: "hosts.disableProxmoxFeature",
field: "enableProxmox",
value: false,
icon: Boxes,
},
].map(({ labelKey, field, value, icon: Icon }) => (
<DropdownMenuItem
key={labelKey}
onClick={async () => {
const ids = Array.from(selectedHostIds).map(Number);
try {
await bulkUpdateSSHHosts(ids, { [field]: value });
window.dispatchEvent(
new CustomEvent("termix:hosts-changed"),
);
toast.success(
t("hosts.updatedCount", { count: ids.length }),
);
} catch {
toast.error(t("hosts.bulkUpdateFailed"));
}
}}
>
<Icon className="size-3.5 mr-2" />
{t(labelKey)}
</DropdownMenuItem>
))}
</DropdownMenuContent>
</DropdownMenu>
<DropdownMenu>
<DropdownMenuTrigger asChild>
<button
className="text-[10px] text-muted-foreground hover:text-foreground px-1.5 py-1 hover:bg-muted rounded transition-colors flex items-center gap-1 disabled:opacity-40"
disabled={selectedHostIds.size === 0}
>
{t("hosts.moveMenu")} <ChevronDown className="size-2.5" />
</button>
</DropdownMenuTrigger>
<DropdownMenuContent align="start" className="text-xs">
<DropdownMenuItem
onClick={async () => {
const ids = Array.from(selectedHostIds).map(Number);
try {
await bulkUpdateSSHHosts(ids, { folder: "" });
window.dispatchEvent(
new CustomEvent("termix:hosts-changed"),
);
toast.success(t("hosts.movedToRoot"));
} catch {
toast.error(t("hosts.failedToMoveHosts"));
}
}}
>
<FolderOpen className="size-3.5 mr-2" />
{t("hosts.noFolderOption")}
</DropdownMenuItem>
{allFolderPaths.map((f) => (
<DropdownMenuItem
key={f}
onClick={async () => {
const ids = Array.from(selectedHostIds).map(Number);
try {
await bulkUpdateSSHHosts(ids, { folder: f });
window.dispatchEvent(
new CustomEvent("termix:hosts-changed"),
);
toast.success(t("hosts.movedToFolder", { folder: f }));
} catch {
toast.error(t("hosts.failedToMoveHosts"));
}
}}
>
<FolderOpen className="size-3.5 mr-2" />
{f}
</DropdownMenuItem>
))}
</DropdownMenuContent>
</DropdownMenu>
<button
className="text-[10px] text-muted-foreground hover:text-foreground px-1.5 py-1 hover:bg-muted rounded transition-colors flex items-center gap-1 disabled:opacity-40"
disabled={selectedHostIds.size === 0}
onClick={() => {
const selectedHosts = allHosts.filter((h) =>
selectedHostIds.has(String(h.id)),
);
for (const host of selectedHosts) {
if (host.enableSsh) onOpenTab(host, "terminal");
else if (host.enableRdp) onOpenTab(host, "rdp");
else if (host.enableVnc) onOpenTab(host, "vnc");
else if (host.enableTelnet) onOpenTab(host, "telnet");
}
setSelectedHostIds(new Set());
onToggleSelectionMode();
}}
>
<Terminal className="size-3" />
{t("hosts.connectSelected")}
</button>
<button
className="text-[10px] text-destructive hover:text-destructive px-1.5 py-1 hover:bg-destructive/10 rounded transition-colors disabled:opacity-40"
disabled={selectedHostIds.size === 0}
onClick={() => {
setConfirmDialog({
message: t("hosts.deleteHostsConfirm", {
count: selectedHostIds.size,
plural: selectedHostIds.size !== 1 ? "s" : "",
}),
onConfirm: async () => {
const ids = Array.from(selectedHostIds);
const results = await Promise.allSettled(
ids.map((id) => deleteSSHHost(Number(id))),
);
const succeeded = results.filter(
(r) => r.status === "fulfilled",
).length;
const failed = results.filter(
(r) => r.status === "rejected",
).length;
setSelectedHostIds(new Set());
window.dispatchEvent(
new CustomEvent("termix:hosts-changed"),
);
if (succeeded > 0)
toast.success(
t("hosts.deletedCount", { count: succeeded }),
);
if (failed > 0)
toast.error(
t("hosts.failedToDeleteCount", { count: failed }),
);
},
});
}}
>
{t("hosts.deleteSelected")}
</button>
<div className="flex-1" />
<button
className="text-[10px] text-muted-foreground hover:text-foreground px-1.5 py-1 hover:bg-muted rounded transition-colors"
onClick={() => {
onToggleSelectionMode();
setSelectedHostIds(new Set());
}}
>
{t("hosts.cancelSelection")}
</button>
</div>
</div>
)}
{/* Confirm dialog */}
{confirmDialog && (
<div className="absolute inset-0 z-50 flex items-center justify-center bg-background/80 backdrop-blur-sm p-4">
<div className="bg-popover border border-border shadow-xl w-full max-w-xs flex flex-col gap-4 p-4">
<p className="text-sm text-foreground">{confirmDialog.message}</p>
<div className="flex justify-end gap-2">
<button
onClick={() => setConfirmDialog(null)}
className="px-3 py-1.5 text-xs border border-border text-muted-foreground hover:text-foreground hover:bg-muted rounded transition-colors"
>
{t("hosts.cancelBtn")}
</button>
<button
onClick={() => {
confirmDialog.onConfirm();
setConfirmDialog(null);
}}
className="px-3 py-1.5 text-xs bg-destructive text-destructive-foreground hover:bg-destructive/90 rounded transition-colors"
>
{t("hosts.deleteConfirmBtn")}
</button>
</div>
</div>
</div>
)}
<FolderMetadataDialog
open={folderDialog !== null}
mode={folderDialog?.mode ?? "create"}
initial={
folderDialog?.folder
? {
name: folderDialog.folder.name,
color: folderDialog.folder.color,
icon: folderDialog.folder.icon,
credentialId: folderDialog.folder.credentialId,
}
: undefined
}
onOpenChange={(v) => !v && setFolderDialog(null)}
onSubmit={handleSaveFolderMetadata}
/>
<HostShareModal
open={shareFolderTarget !== null}
onClose={() => setShareFolderTarget(null)}
host={null}
folder={shareFolderTarget}
/>
</div>
);
}