Updates the left sidebar to display custom folder colors and icons: - FolderCard component now accepts folderColor and folderIcon props - LeftSidebar fetches folder metadata and passes to FolderCard - Supports same 10 icons as host manager (Folder, Server, Cloud, Database, Box, Package, Layers, Archive, HardDrive, Globe) - Folder metadata refreshes with host data and on ssh-hosts:changed events This ensures the sidebar reflects folder appearance changes made in the host manager.
134 lines
3.3 KiB
TypeScript
134 lines
3.3 KiB
TypeScript
import React, { useState } from "react";
|
|
import { CardTitle } from "@/components/ui/card.tsx";
|
|
import {
|
|
ChevronDown,
|
|
Folder,
|
|
Server,
|
|
Cloud,
|
|
Database,
|
|
Box,
|
|
Package,
|
|
Layers,
|
|
Archive,
|
|
HardDrive,
|
|
Globe,
|
|
} from "lucide-react";
|
|
import { Button } from "@/components/ui/button.tsx";
|
|
import { Host } from "@/ui/desktop/navigation/hosts/Host.tsx";
|
|
import { Separator } from "@/components/ui/separator.tsx";
|
|
|
|
interface SSHHost {
|
|
id: number;
|
|
name: string;
|
|
ip: string;
|
|
port: number;
|
|
username: string;
|
|
folder: string;
|
|
tags: string[];
|
|
pin: boolean;
|
|
authType: string;
|
|
password?: string;
|
|
key?: string;
|
|
keyPassword?: string;
|
|
keyType?: string;
|
|
enableTerminal: boolean;
|
|
enableTunnel: boolean;
|
|
enableFileManager: boolean;
|
|
defaultPath: string;
|
|
tunnelConnections: Array<{
|
|
sourcePort: number;
|
|
endpointPort: number;
|
|
endpointHost: string;
|
|
maxRetries: number;
|
|
retryInterval: number;
|
|
autoStart: boolean;
|
|
}>;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
}
|
|
|
|
interface FolderCardProps {
|
|
folderName: string;
|
|
hosts: SSHHost[];
|
|
isFirst: boolean;
|
|
isLast: boolean;
|
|
folderColor?: string;
|
|
folderIcon?: string;
|
|
}
|
|
|
|
export function FolderCard({
|
|
folderName,
|
|
hosts,
|
|
folderColor,
|
|
folderIcon,
|
|
}: FolderCardProps): React.ReactElement {
|
|
const [isExpanded, setIsExpanded] = useState(true);
|
|
|
|
const toggleExpanded = () => {
|
|
setIsExpanded(!isExpanded);
|
|
};
|
|
|
|
const iconMap: Record<string, React.ComponentType<{ size?: number; strokeWidth?: number; className?: string; style?: React.CSSProperties }>> = {
|
|
Folder,
|
|
Server,
|
|
Cloud,
|
|
Database,
|
|
Box,
|
|
Package,
|
|
Layers,
|
|
Archive,
|
|
HardDrive,
|
|
Globe,
|
|
};
|
|
|
|
const FolderIcon = folderIcon && iconMap[folderIcon] ? iconMap[folderIcon] : Folder;
|
|
|
|
return (
|
|
<div className="bg-dark-bg-darker border-2 border-dark-border rounded-lg overflow-hidden p-0 m-0">
|
|
<div
|
|
className={`px-4 py-3 relative ${isExpanded ? "border-b-2" : ""} bg-dark-bg-header`}
|
|
>
|
|
<div className="flex gap-2 pr-10">
|
|
<div className="flex-shrink-0 flex items-center">
|
|
<FolderIcon
|
|
size={16}
|
|
strokeWidth={3}
|
|
style={folderColor ? { color: folderColor } : undefined}
|
|
/>
|
|
</div>
|
|
<div className="flex-1 min-w-0">
|
|
<CardTitle className="mb-0 leading-tight break-words text-md">
|
|
{folderName}
|
|
</CardTitle>
|
|
</div>
|
|
</div>
|
|
<Button
|
|
variant="outline"
|
|
className="w-[28px] h-[28px] absolute right-4 top-1/2 -translate-y-1/2 flex-shrink-0"
|
|
onClick={toggleExpanded}
|
|
>
|
|
<ChevronDown
|
|
className={`h-4 w-4 transition-transform ${isExpanded ? "" : "rotate-180"}`}
|
|
/>
|
|
</Button>
|
|
</div>
|
|
{isExpanded && (
|
|
<div className="flex flex-col p-2 gap-y-3">
|
|
{hosts.map((host, index) => (
|
|
<React.Fragment
|
|
key={`${folderName}-host-${host.id}-${host.name || host.ip}`}
|
|
>
|
|
<Host host={host} />
|
|
{index < hosts.length - 1 && (
|
|
<div className="relative -mx-2">
|
|
<Separator className="p-0.25 absolute inset-x-0" />
|
|
</div>
|
|
)}
|
|
</React.Fragment>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|