import { useCallback, useMemo, useState } from "react"; import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query"; import { FileIcon } from "lucide-react"; import { FileTree, type FileEntry } from "~/client/components/file-tree"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "~/client/components/ui/card"; import { Button } from "~/client/components/ui/button"; import { Checkbox } from "~/client/components/ui/checkbox"; import { Label } from "~/client/components/ui/label"; import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, } from "~/client/components/ui/alert-dialog"; import { Tooltip, TooltipContent, TooltipTrigger } from "~/client/components/ui/tooltip"; import type { Snapshot, Volume } from "~/client/lib/types"; import { toast } from "sonner"; import { listSnapshotFilesOptions, restoreSnapshotMutation } from "~/client/api-client/@tanstack/react-query.gen"; interface Props { snapshot: Snapshot; repositoryName: string; volume?: Volume; } export const SnapshotFileBrowser = (props: Props) => { const { snapshot, repositoryName, volume } = props; const isReadOnly = volume?.config && "readOnly" in volume.config && volume.config.readOnly === true; const queryClient = useQueryClient(); const [expandedFolders, setExpandedFolders] = useState>(new Set()); const [fetchedFolders, setFetchedFolders] = useState>(new Set()); const [loadingFolders, setLoadingFolders] = useState>(new Set()); const [allFiles, setAllFiles] = useState>(new Map()); const [selectedPaths, setSelectedPaths] = useState>(new Set()); const [showRestoreDialog, setShowRestoreDialog] = useState(false); const [deleteExtraFiles, setDeleteExtraFiles] = useState(false); const volumeBasePath = snapshot.paths[0]?.match(/^(.*?_data)(\/|$)/)?.[1] || "/"; const { data: filesData, isLoading: filesLoading } = useQuery({ ...listSnapshotFilesOptions({ path: { name: repositoryName, snapshotId: snapshot.short_id }, query: { path: volumeBasePath }, }), }); const stripBasePath = useCallback( (path: string): string => { if (!volumeBasePath) return path; if (path === volumeBasePath) return "/"; if (path.startsWith(`${volumeBasePath}/`)) { const stripped = path.slice(volumeBasePath.length); return stripped; } return path; }, [volumeBasePath], ); const addBasePath = useCallback( (displayPath: string): string => { if (!volumeBasePath) return displayPath; if (displayPath === "/") return volumeBasePath; return `${volumeBasePath}${displayPath}`; }, [volumeBasePath], ); useMemo(() => { if (filesData?.files) { setAllFiles((prev) => { const next = new Map(prev); for (const file of filesData.files) { const strippedPath = stripBasePath(file.path); if (strippedPath !== "/") { next.set(strippedPath, { ...file, path: strippedPath }); } } return next; }); setFetchedFolders((prev) => new Set(prev).add("/")); } }, [filesData, stripBasePath]); const fileArray = useMemo(() => Array.from(allFiles.values()), [allFiles]); const handleFolderExpand = useCallback( async (folderPath: string) => { setExpandedFolders((prev) => { const next = new Set(prev); next.add(folderPath); return next; }); if (!fetchedFolders.has(folderPath)) { setLoadingFolders((prev) => new Set(prev).add(folderPath)); try { const fullPath = addBasePath(folderPath); const result = await queryClient.ensureQueryData( listSnapshotFilesOptions({ path: { name: repositoryName, snapshotId: snapshot.short_id }, query: { path: fullPath }, }), ); if (result.files) { setAllFiles((prev) => { const next = new Map(prev); for (const file of result.files) { const strippedPath = stripBasePath(file.path); // Skip the directory itself if (strippedPath !== folderPath) { next.set(strippedPath, { ...file, path: strippedPath }); } } return next; }); setFetchedFolders((prev) => new Set(prev).add(folderPath)); } } catch (error) { console.error("Failed to fetch folder contents:", error); } finally { setLoadingFolders((prev) => { const next = new Set(prev); next.delete(folderPath); return next; }); } } }, [repositoryName, snapshot, fetchedFolders, queryClient, stripBasePath, addBasePath], ); const handleFolderHover = useCallback( (folderPath: string) => { if (!fetchedFolders.has(folderPath) && !loadingFolders.has(folderPath)) { const fullPath = addBasePath(folderPath); queryClient.prefetchQuery({ ...listSnapshotFilesOptions({ path: { name: repositoryName, snapshotId: snapshot.short_id }, query: { path: fullPath }, }), }); } }, [repositoryName, snapshot, fetchedFolders, loadingFolders, queryClient, addBasePath], ); const { mutate: restoreSnapshot, isPending: isRestoring } = useMutation({ ...restoreSnapshotMutation(), onSuccess: (data) => { toast.success("Restore completed", { description: `Successfully restored ${data.filesRestored} file(s). ${data.filesSkipped} file(s) skipped.`, }); setSelectedPaths(new Set()); }, onError: (error) => { toast.error("Restore failed", { description: error.message || "Failed to restore snapshot" }); }, }); const handleRestoreClick = useCallback(() => { setShowRestoreDialog(true); }, []); const handleConfirmRestore = useCallback(() => { const pathsArray = Array.from(selectedPaths); const includePaths = pathsArray.map((path) => addBasePath(path)); restoreSnapshot({ path: { name: repositoryName }, body: { snapshotId: snapshot.short_id, include: includePaths, delete: deleteExtraFiles, }, }); setShowRestoreDialog(false); }, [selectedPaths, addBasePath, repositoryName, snapshot.short_id, restoreSnapshot, deleteExtraFiles]); return (
File Browser {`Viewing snapshot from ${new Date(snapshot?.time ?? 0).toLocaleString()}`}
{selectedPaths.size > 0 && ( {isReadOnly && (

Volume is mounted as read-only.

Please remount with read-only disabled to restore files.

)}
)}
{filesLoading && fileArray.length === 0 && (

Loading files...

)} {fileArray.length === 0 && !filesLoading && (

No files in this snapshot

)} {fileArray.length > 0 && (
)}
Confirm Restore {selectedPaths.size > 0 ? `This will restore ${selectedPaths.size} selected ${selectedPaths.size === 1 ? "item" : "items"} from the snapshot.` : "This will restore everything from the snapshot."}{" "} Existing files will be overwritten by what's in the snapshot. This action cannot be undone.
setDeleteExtraFiles(checked === true)} />
Cancel Confirm
); };