mirror of
https://github.com/nicotsx/ironmount.git
synced 2025-12-10 12:10:51 +01:00
105 lines
3.9 KiB
TypeScript
105 lines
3.9 KiB
TypeScript
import { Calendar, Clock, Database, FolderTree, HardDrive } from "lucide-react";
|
|
import { useNavigate } from "react-router";
|
|
import type { ListSnapshotsResponse } from "~/api-client/types.gen";
|
|
import { ByteSize } from "~/components/bytes-size";
|
|
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "~/components/ui/table";
|
|
import { Tooltip, TooltipContent, TooltipTrigger } from "~/components/ui/tooltip";
|
|
import { formatSnapshotDuration } from "~/modules/repositories/tabs/snapshots";
|
|
|
|
type Snapshot = ListSnapshotsResponse["snapshots"][0];
|
|
|
|
type Props = {
|
|
snapshots: Snapshot[];
|
|
repositoryName: string;
|
|
};
|
|
|
|
export const SnapshotsTable = ({ snapshots, repositoryName }: Props) => {
|
|
const navigate = useNavigate();
|
|
|
|
const handleRowClick = (snapshotId: string) => {
|
|
navigate(`/repositories/${repositoryName}/${snapshotId}`);
|
|
};
|
|
|
|
return (
|
|
<div className="overflow-x-auto">
|
|
<Table className="border-t">
|
|
<TableHeader className="bg-card-header">
|
|
<TableRow>
|
|
<TableHead className="uppercase">Snapshot ID</TableHead>
|
|
<TableHead className="uppercase">Date & Time</TableHead>
|
|
<TableHead className="uppercase">Size</TableHead>
|
|
<TableHead className="uppercase hidden md:table-cell text-right">Duration</TableHead>
|
|
<TableHead className="uppercase hidden text-right lg:table-cell">Volume</TableHead>
|
|
</TableRow>
|
|
</TableHeader>
|
|
<TableBody>
|
|
{snapshots.map((snapshot) => (
|
|
<TableRow
|
|
key={snapshot.short_id}
|
|
className="hover:bg-accent/50 cursor-pointer"
|
|
onClick={() => handleRowClick(snapshot.short_id)}
|
|
>
|
|
<TableCell className="font-mono text-sm">
|
|
<div className="flex items-center gap-2">
|
|
<HardDrive className="h-4 w-4 text-muted-foreground" />
|
|
<span className="text-strong-accent">{snapshot.short_id}</span>
|
|
</div>
|
|
</TableCell>
|
|
<TableCell>
|
|
<div className="flex items-center gap-2">
|
|
<Calendar className="h-4 w-4 text-muted-foreground" />
|
|
<span className="text-sm">{new Date(snapshot.time).toLocaleString()}</span>
|
|
</div>
|
|
</TableCell>
|
|
<TableCell>
|
|
<div className="flex items-center gap-2">
|
|
<Database className="h-4 w-4 text-muted-foreground" />
|
|
<span className="font-medium">
|
|
<ByteSize bytes={snapshot.size} base={1024} />
|
|
</span>
|
|
</div>
|
|
</TableCell>
|
|
<TableCell className="hidden md:table-cell">
|
|
<div className="flex items-center justify-end gap-2">
|
|
<Clock className="h-4 w-4 text-muted-foreground" />
|
|
<span className="text-sm text-muted-foreground">
|
|
{formatSnapshotDuration(snapshot.duration / 1000)}
|
|
</span>
|
|
</div>
|
|
</TableCell>
|
|
<TableCell className="hidden lg:table-cell">
|
|
<div className="flex items-center justify-end gap-2">
|
|
<FolderTree className="h-4 w-4 text-muted-foreground" />
|
|
<div className="flex flex-wrap gap-1">
|
|
<span className="text-xs bg-primary/10 text-primary rounded-md px-2 py-1" title={snapshot.paths[0]}>
|
|
{snapshot.paths[0].split("/").filter(Boolean).at(-2) || "/"}
|
|
</span>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<span
|
|
className={`text-xs bg-muted text-muted-foreground rounded-md px-2 py-1 cursor-help ${snapshot.paths.length <= 1 ? "hidden" : ""}`}
|
|
>
|
|
+{snapshot.paths.length - 1}
|
|
</span>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="top" className="max-w-md">
|
|
<div className="flex flex-col gap-1">
|
|
{snapshot.paths.slice(1).map((path) => (
|
|
<div key={`${snapshot.short_id}-${path}`} className="text-xs">
|
|
{path}
|
|
</div>
|
|
))}
|
|
</div>
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
</div>
|
|
</div>
|
|
</TableCell>
|
|
</TableRow>
|
|
))}
|
|
</TableBody>
|
|
</Table>
|
|
</div>
|
|
);
|
|
};
|