feat(studio): add flat identity header for the inspector

This commit is contained in:
Vance Ingalls
2026-07-14 00:59:06 -07:00
parent b324a43ba0
commit 0152667526
2 changed files with 168 additions and 0 deletions
@@ -0,0 +1,89 @@
import { Eye, EyeSlash } from "@phosphor-icons/react";
import { ClipboardList, Film, Square, Type, X } from "../../icons/SystemIcons";
const ICON_BY_KIND = { text: Type, media: Film, other: Square } as const;
const ICON_COLOR_BY_KIND = {
text: "text-panel-accent",
media: "text-panel-media",
other: "text-panel-container",
} as const;
export function PropertyPanelFlatHeader({
name,
meta,
elementKind,
hidden,
onToggleHidden,
copied,
onCopy,
onClear,
onUngroup,
showUngroup,
}: {
name: string;
meta: string;
elementKind: "text" | "media" | "other";
hidden: boolean;
onToggleHidden?: () => void;
copied: boolean;
onCopy: () => void;
onClear: () => void;
onUngroup?: () => void;
showUngroup: boolean;
}) {
const Icon = ICON_BY_KIND[elementKind];
const visibilityLabel = hidden ? "Show element" : "Hide element";
return (
<div className="flex items-center gap-2.5 border-b border-panel-hairline px-4 py-3">
<Icon
size={15}
data-flat-header-icon="true"
className={`flex-shrink-0 ${ICON_COLOR_BY_KIND[elementKind]}`}
/>
<div className="flex min-w-0 flex-1 items-baseline gap-2">
<span className="truncate text-[13px] font-semibold text-panel-text-0">{name}</span>
<span className="truncate font-mono text-[10px] text-panel-text-4">{meta}</span>
</div>
<div className="flex flex-shrink-0 items-center gap-2.5 text-panel-text-3">
{showUngroup && (
<button type="button" aria-label="Ungroup" title="Ungroup (⌘⇧G)" onClick={onUngroup}>
<svg
width="13"
height="13"
viewBox="0 0 16 16"
fill="none"
stroke="currentColor"
strokeWidth="1.5"
>
<rect x="1.5" y="1.5" width="7" height="7" rx="1" />
<rect x="7.5" y="7.5" width="7" height="7" rx="1" />
</svg>
</button>
)}
{onToggleHidden && (
<button
type="button"
aria-label={visibilityLabel}
title={visibilityLabel}
onClick={onToggleHidden}
>
{hidden ? <EyeSlash size={13} weight="bold" /> : <Eye size={13} weight="bold" />}
</button>
)}
<button
type="button"
aria-label="Copy element info to clipboard"
title={copied ? "Copied!" : "Copy element info for any AI agent"}
onClick={onCopy}
className={copied ? "text-panel-accent" : undefined}
>
<ClipboardList size={13} />
</button>
<button type="button" aria-label="Clear selection" onClick={onClear}>
<X size={13} />
</button>
</div>
</div>
);
}