mirror of
https://github.com/Studio-Saelix/sencho.git
synced 2026-08-11 03:06:54 +00:00
907e7427e5
Final PR of the System Sheet (§9.11) chrome rollout, stacked on PR 2.
Migrates the last five sheet consumers and extracts the inline network
detail sheet from ResourcesView into its own file.
Sheets migrated:
* VolumeBrowserSheet: crumb Resources > Volumes > {name}, Refresh tree
primary, footer audit-log notice. Uses the new SystemSheet noScroll
prop because the body is a 2-pane file browser that manages its own
scroll regions; each pane (file tree, file preview) wraps its scroll
region in ScrollArea per §10 Scrollbars.
* ImageDetailsSheet: crumb Resources > Images > {name}. Three sections
(Overview, Config, Layers) flush against hairlines. Removed the
icon-prefixed title and per-layer card wrapping (replaced with
divide-y dividers).
* NetworkDetailSheet: NEW file extracted from the inline 150-line
network sheet that lived inside ResourcesView.tsx. Crumb Resources >
Networks > {name}. Five sections (Overview, IPAM, Options, Connected,
Labels). Re-exports NetworkInspectData so ResourcesView can import
the type. ResourcesView now renders the extracted component and drops
its now-unused Sheet, ScrollArea, copyToClipboard, Copy, and Container
imports.
* AppStoreView template detail sheet: crumb App store > {template}.
Tabs Essentials | Advanced. Deploy lifted from SheetFooter into the
toolbar primary slot. The remote-target signal (was a Badge in the
header) collapses into the meta line as "→ {remoteName}".
* BlueprintDetail: the §9.11 reference implementation, intentionally
migrated last. Crumb Blueprints > {name}. The kebab dropdown
dissolves into individual toolbar actions: Apply now (primary), Edit
(secondary, when not in editMode), Enable/Disable (secondary), Delete
(destructive). Body has Description, Deployments, Compose sections.
Primitive enhancement:
* Added noScroll?: boolean to SystemSheet. When true, the body is
rendered as a flex container instead of being wrapped in ScrollArea.
Caller manages its own scroll regions and body padding.
Final state: frontend/src/components/ui/sheet.tsx is now imported only
by TopBar.tsx (mobile nav drawer, intentionally out of scope per the
plan) and SystemSheet itself. The §9.11 rollout is complete.
293 lines
10 KiB
TypeScript
293 lines
10 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
import { SystemSheet, SheetSection } from '@/components/ui/system-sheet';
|
|
import { Skeleton } from '@/components/ui/skeleton';
|
|
import { Badge } from '@/components/ui/badge';
|
|
import { toast } from '@/components/ui/toast-store';
|
|
import { apiFetch } from '@/lib/api';
|
|
import { formatBytes } from '@/lib/utils';
|
|
import { copyToClipboard } from '@/lib/clipboard';
|
|
import { Copy } from 'lucide-react';
|
|
|
|
interface ImageInspect {
|
|
Id: string;
|
|
RepoTags?: string[] | null;
|
|
RepoDigests?: string[] | null;
|
|
Created: string;
|
|
Size: number;
|
|
Architecture?: string;
|
|
Os?: string;
|
|
Author?: string;
|
|
Config?: {
|
|
Cmd?: string[] | null;
|
|
Entrypoint?: string[] | null;
|
|
WorkingDir?: string;
|
|
User?: string;
|
|
Env?: string[] | null;
|
|
Labels?: Record<string, string> | null;
|
|
ExposedPorts?: Record<string, unknown> | null;
|
|
};
|
|
RootFS?: { Type?: string; Layers?: string[] };
|
|
}
|
|
|
|
interface ImageHistoryEntry {
|
|
Id: string;
|
|
Created: number;
|
|
CreatedBy: string;
|
|
Tags?: string[] | null;
|
|
Size: number;
|
|
Comment?: string;
|
|
}
|
|
|
|
interface ImageDetails {
|
|
inspect: ImageInspect;
|
|
history: ImageHistoryEntry[];
|
|
}
|
|
|
|
interface ImageDetailsSheetProps {
|
|
imageId: string | null;
|
|
onClose: () => void;
|
|
}
|
|
|
|
function formatRelativeAge(timestampSec: number): string {
|
|
const now = Date.now() / 1000;
|
|
const diff = now - timestampSec;
|
|
if (diff < 60) return 'just now';
|
|
if (diff < 3600) return `${Math.floor(diff / 60)}m ago`;
|
|
if (diff < 86400) return `${Math.floor(diff / 3600)}h ago`;
|
|
if (diff < 86400 * 30) return `${Math.floor(diff / 86400)}d ago`;
|
|
if (diff < 86400 * 365) return `${Math.floor(diff / (86400 * 30))}mo ago`;
|
|
return `${Math.floor(diff / (86400 * 365))}y ago`;
|
|
}
|
|
|
|
function shortDigest(id: string): string {
|
|
const colon = id.indexOf(':');
|
|
const hex = colon >= 0 ? id.slice(colon + 1) : id;
|
|
return hex.substring(0, 12);
|
|
}
|
|
|
|
export function ImageDetailsSheet({ imageId, onClose }: ImageDetailsSheetProps) {
|
|
const [data, setData] = useState<ImageDetails | null>(null);
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
useEffect(() => {
|
|
if (!imageId) {
|
|
setData(null);
|
|
return;
|
|
}
|
|
let cancelled = false;
|
|
setLoading(true);
|
|
setData(null);
|
|
|
|
apiFetch(`/system/images/${encodeURIComponent(imageId)}`)
|
|
.then(async (res) => {
|
|
if (!res.ok) {
|
|
throw new Error(res.status === 404 ? 'Image not found.' : 'Failed to load image details.');
|
|
}
|
|
return res.json() as Promise<ImageDetails>;
|
|
})
|
|
.then((details) => {
|
|
if (!cancelled) setData(details);
|
|
})
|
|
.catch((err: unknown) => {
|
|
if (cancelled) return;
|
|
const msg = err instanceof Error ? err.message : 'Failed to load image details.';
|
|
toast.error(msg);
|
|
})
|
|
.finally(() => {
|
|
if (!cancelled) setLoading(false);
|
|
});
|
|
|
|
return () => { cancelled = true; };
|
|
}, [imageId]);
|
|
|
|
const inspect = data?.inspect;
|
|
const history = data?.history ?? [];
|
|
const totalLayers = history.length;
|
|
|
|
const name = inspect?.RepoTags?.[0] || (inspect ? shortDigest(inspect.Id) : 'Image details');
|
|
const meta = inspect
|
|
? `${formatBytes(inspect.Size)} · ${inspect.Architecture ?? '?'}/${inspect.Os ?? '?'} · ${totalLayers} layers`
|
|
: (loading ? 'Loading…' : '');
|
|
|
|
const footerContext = inspect?.Created
|
|
? `Created ${formatRelativeAge(new Date(inspect.Created).getTime() / 1000)}`
|
|
: undefined;
|
|
|
|
return (
|
|
<SystemSheet
|
|
open={!!imageId}
|
|
onOpenChange={(open) => !open && onClose()}
|
|
crumb={['Resources', 'Images', name]}
|
|
name={name}
|
|
meta={meta}
|
|
footerContext={footerContext}
|
|
size="md"
|
|
>
|
|
{loading && (
|
|
<div className="space-y-3">
|
|
<Skeleton className="h-5 w-1/2" />
|
|
<Skeleton className="h-5 w-full" />
|
|
<Skeleton className="h-5 w-full" />
|
|
<Skeleton className="h-5 w-3/4" />
|
|
</div>
|
|
)}
|
|
|
|
{!loading && inspect && (
|
|
<>
|
|
<SheetSection title="Overview">
|
|
<div className="grid grid-cols-2 gap-x-4 gap-y-2 text-sm">
|
|
<Field label="ID">
|
|
<p className="font-mono text-xs mt-0.5 flex items-center gap-1.5">
|
|
{shortDigest(inspect.Id)}
|
|
<button
|
|
className="text-muted-foreground hover:text-foreground transition-colors"
|
|
onClick={async () => {
|
|
try { await copyToClipboard(inspect.Id); toast.success('ID copied'); }
|
|
catch { toast.error('Copy failed.'); }
|
|
}}
|
|
aria-label="Copy image ID"
|
|
>
|
|
<Copy className="w-3 h-3" strokeWidth={1.5} />
|
|
</button>
|
|
</p>
|
|
</Field>
|
|
<Field label="Size">
|
|
<p className="font-mono text-xs mt-0.5 tabular-nums">{formatBytes(inspect.Size)}</p>
|
|
</Field>
|
|
<Field label="Created">
|
|
<p className="text-xs mt-0.5" title={new Date(inspect.Created).toLocaleString()}>
|
|
{new Date(inspect.Created).toLocaleDateString()}
|
|
</p>
|
|
</Field>
|
|
<Field label="Arch / OS">
|
|
<p className="text-xs mt-0.5">
|
|
<Badge variant="outline" className="text-[10px] h-5">{inspect.Architecture ?? 'unknown'} / {inspect.Os ?? 'unknown'}</Badge>
|
|
</p>
|
|
</Field>
|
|
{inspect.Author && (
|
|
<Field label="Author" span={2}>
|
|
<p className="text-xs mt-0.5">{inspect.Author}</p>
|
|
</Field>
|
|
)}
|
|
{inspect.RepoTags && inspect.RepoTags.length > 0 && (
|
|
<Field label="Tags" span={2}>
|
|
<div className="flex flex-wrap gap-1 mt-1">
|
|
{inspect.RepoTags.map((t) => (
|
|
<Badge key={t} variant="outline" className="text-[10px] h-5 font-mono">{t}</Badge>
|
|
))}
|
|
</div>
|
|
</Field>
|
|
)}
|
|
</div>
|
|
</SheetSection>
|
|
|
|
{inspect.Config && (
|
|
<SheetSection title="Config">
|
|
<div className="space-y-2 text-sm">
|
|
<ConfigRow label="Cmd" value={inspect.Config.Cmd?.join(' ')} />
|
|
<ConfigRow label="Entrypoint" value={inspect.Config.Entrypoint?.join(' ')} />
|
|
<ConfigRow label="WorkingDir" value={inspect.Config.WorkingDir} />
|
|
<ConfigRow label="User" value={inspect.Config.User} />
|
|
<ConfigRow
|
|
label="Ports"
|
|
value={
|
|
inspect.Config.ExposedPorts
|
|
? Object.keys(inspect.Config.ExposedPorts).join(', ')
|
|
: undefined
|
|
}
|
|
/>
|
|
{inspect.Config.Env && inspect.Config.Env.length > 0 && (
|
|
<CollapsibleList label="Env" count={inspect.Config.Env.length} items={inspect.Config.Env} />
|
|
)}
|
|
{inspect.Config.Labels && Object.keys(inspect.Config.Labels).length > 0 && (
|
|
<CollapsibleList
|
|
label="Labels"
|
|
count={Object.keys(inspect.Config.Labels).length}
|
|
items={Object.entries(inspect.Config.Labels).map(([k, v]) => `${k}=${v}`)}
|
|
/>
|
|
)}
|
|
</div>
|
|
</SheetSection>
|
|
)}
|
|
|
|
<SheetSection title={`Layers · ${totalLayers}`}>
|
|
{totalLayers === 0 ? (
|
|
<p className="text-xs text-muted-foreground italic">No layer history available.</p>
|
|
) : (
|
|
<ol className="divide-y divide-card-border/40">
|
|
{history.map((h, idx) => {
|
|
const empty = h.Size === 0;
|
|
return (
|
|
<li
|
|
key={`${h.Id}-${idx}`}
|
|
className={`py-2 ${empty ? 'opacity-60' : ''}`}
|
|
>
|
|
<div className="flex items-baseline justify-between gap-3 text-[11px] text-muted-foreground tabular-nums">
|
|
<span>#{totalLayers - idx}</span>
|
|
<span className="font-mono">{formatBytes(h.Size)}</span>
|
|
<span>{formatRelativeAge(h.Created)}</span>
|
|
</div>
|
|
<p
|
|
className="font-mono text-[11px] mt-1 break-all"
|
|
title={h.CreatedBy}
|
|
>
|
|
{h.CreatedBy || '(no command)'}
|
|
</p>
|
|
{h.Comment && (
|
|
<p className="text-[11px] text-muted-foreground italic mt-0.5">{h.Comment}</p>
|
|
)}
|
|
</li>
|
|
);
|
|
})}
|
|
</ol>
|
|
)}
|
|
</SheetSection>
|
|
</>
|
|
)}
|
|
</SystemSheet>
|
|
);
|
|
}
|
|
|
|
function Field({ label, children, span }: { label: string; children: React.ReactNode; span?: 1 | 2 }) {
|
|
return (
|
|
<div className={span === 2 ? 'col-span-2' : undefined}>
|
|
<span className="text-xs text-muted-foreground">{label}</span>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ConfigRow({ label, value }: { label: string; value?: string }) {
|
|
if (!value) return null;
|
|
return (
|
|
<div className="grid grid-cols-[100px_1fr] gap-3 items-baseline">
|
|
<span className="text-xs text-muted-foreground">{label}</span>
|
|
<span className="font-mono text-[11px] break-all">{value}</span>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function CollapsibleList({ label, count, items }: { label: string; count: number; items: string[] }) {
|
|
const [open, setOpen] = useState(false);
|
|
return (
|
|
<div className="grid grid-cols-[100px_1fr] gap-3 items-baseline">
|
|
<span className="text-xs text-muted-foreground">{label} ({count})</span>
|
|
<div>
|
|
<button
|
|
className="text-[11px] text-muted-foreground hover:text-foreground transition-colors underline-offset-2 hover:underline"
|
|
onClick={() => setOpen((v) => !v)}
|
|
>
|
|
{open ? 'Collapse' : 'Expand'}
|
|
</button>
|
|
{open && (
|
|
<ol className="mt-1.5 space-y-0.5">
|
|
{items.map((item, i) => (
|
|
<li key={i} className="font-mono text-[11px] break-all">{item}</li>
|
|
))}
|
|
</ol>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|