feat(studio): track design-panel input usage across both inspector UIs (#2467)

* feat(studio): add design-panel input usage tracking primitive

* feat(studio): track input usage in classic inspector panel

* feat(studio): track input usage in flat inspector panel

* fix(studio): attribute animation meta by field, track classic chrome, widen coverage guard
This commit is contained in:
Miguel Ángel
2026-07-15 01:33:27 -04:00
committed by GitHub
parent e3ca89e9ac
commit 7cc10a9922
33 changed files with 1613 additions and 188 deletions
@@ -1,4 +1,5 @@
import { Eye, EyeSlash } from "@phosphor-icons/react";
import { useTrackDesignInput } from "../../contexts/DesignPanelInputContext";
import { ClipboardList, Film, Square, Type, X } from "../../icons/SystemIcons";
const ICON_BY_KIND = { text: Type, media: Film, other: Square } as const;
@@ -31,6 +32,7 @@ export function PropertyPanelFlatHeader({
onUngroup?: () => void;
showUngroup: boolean;
}) {
const track = useTrackDesignInput();
const Icon = ICON_BY_KIND[elementKind];
const visibilityLabel = hidden ? "Show element" : "Hide element";
@@ -47,7 +49,15 @@ export function PropertyPanelFlatHeader({
</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}>
<button
type="button"
aria-label="Ungroup"
title="Ungroup (⌘⇧G)"
onClick={() => {
track("button", "Ungroup");
onUngroup?.();
}}
>
<svg
width="13"
height="13"
@@ -66,7 +76,10 @@ export function PropertyPanelFlatHeader({
type="button"
aria-label={visibilityLabel}
title={visibilityLabel}
onClick={onToggleHidden}
onClick={() => {
track("toggle", "Element visibility");
onToggleHidden();
}}
>
{hidden ? <EyeSlash size={13} weight="bold" /> : <Eye size={13} weight="bold" />}
</button>
@@ -75,12 +88,22 @@ export function PropertyPanelFlatHeader({
type="button"
aria-label="Copy element info to clipboard"
title={copied ? "Copied!" : "Copy element info for any AI agent"}
onClick={onCopy}
onClick={() => {
track("button", "Copy element info");
onCopy();
}}
className={copied ? "text-panel-accent" : undefined}
>
<ClipboardList size={13} />
</button>
<button type="button" aria-label="Clear selection" onClick={onClear}>
<button
type="button"
aria-label="Clear selection"
onClick={() => {
track("button", "Clear selection");
onClear();
}}
>
<X size={13} />
</button>
</div>