| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098 |
- "use client";
- import { useEffect, useState, useCallback, useRef, useMemo } from "react";
- import { flushSync } from "react-dom";
- import { useUIStream, type TokenUsage } from "@json-render/react";
- import type { Spec } from "@json-render/core";
- import { collectUsedComponents, serializeProps } from "@json-render/codegen";
- import { toast } from "sonner";
- import {
- ResizablePanelGroup,
- ResizablePanel,
- ResizableHandle,
- } from "@/components/ui/resizable";
- import { CodeBlock } from "./code-block";
- import { CopyButton } from "./copy-button";
- import { Toaster } from "./ui/sonner";
- import { Header } from "./header";
- import { Sheet, SheetContent, SheetTitle } from "./ui/sheet";
- import { PlaygroundRenderer } from "@/lib/render/renderer";
- import { playgroundCatalog } from "@/lib/render/catalog";
- import { buildCatalogDisplayData } from "@/lib/render/catalog-display";
- type Tab = "json" | "nested" | "stream" | "catalog";
- type RenderView = "preview" | "code";
- type MobileView =
- | "json"
- | "nested"
- | "stream"
- | "catalog"
- | "preview"
- | "generated-code";
- interface Version {
- id: string;
- prompt: string;
- tree: Spec | null;
- status: "generating" | "complete" | "error";
- usage: TokenUsage | null;
- rawLines: string[];
- }
- /**
- * Convert a flat Spec into a nested tree structure that is easier for humans
- * to read. Children keys are resolved recursively into inline objects.
- */
- function specToNested(spec: Spec): Record<string, unknown> {
- function resolve(key: string): Record<string, unknown> {
- const el = spec.elements[key];
- if (!el) return { _key: key, _missing: true };
- const node: Record<string, unknown> = { type: el.type };
- if (el.props && Object.keys(el.props).length > 0) {
- node.props = el.props;
- }
- if (el.visible !== undefined) {
- node.visible = el.visible;
- }
- if (el.on && Object.keys(el.on).length > 0) {
- node.on = el.on;
- }
- if (el.repeat) {
- node.repeat = el.repeat;
- }
- if (el.children && el.children.length > 0) {
- node.children = el.children.map(resolve);
- }
- return node;
- }
- const result: Record<string, unknown> = {};
- if (spec.state && Object.keys(spec.state).length > 0) {
- result.state = spec.state;
- }
- result.elements = resolve(spec.root);
- return result;
- }
- const EXAMPLE_PROMPTS = [
- "Create a login form",
- "Build a pricing page",
- "Design a user profile card",
- "Make a contact form",
- ];
- export function Playground() {
- const [versions, setVersions] = useState<Version[]>([]);
- const [selectedVersionId, setSelectedVersionId] = useState<string | null>(
- null,
- );
- const [inputValue, setInputValue] = useState("");
- const [activeTab, setActiveTab] = useState<Tab>("json");
- const [catalogSection, setCatalogSection] = useState<
- "components" | "actions"
- >("components");
- const [renderView, setRenderView] = useState<RenderView>("preview");
- const [mobileView, setMobileView] = useState<MobileView>("preview");
- const [versionsSheetOpen, setVersionsSheetOpen] = useState(false);
- const inputRef = useRef<HTMLTextAreaElement>(null);
- const mobileInputRef = useRef<HTMLTextAreaElement>(null);
- const versionsEndRef = useRef<HTMLDivElement>(null);
- // Track the currently generating version ID
- const generatingVersionIdRef = useRef<string | null>(null);
- // Track the current tree for use as previousSpec in next generation
- const currentTreeRef = useRef<Spec | null>(null);
- const {
- spec: apiSpec,
- isStreaming,
- usage: streamUsage,
- rawLines: streamRawLines,
- send,
- clear,
- } = useUIStream({
- api: "/api/generate",
- onError: (err: Error) => {
- console.error("Generation error:", err);
- toast.error(err.message || "Generation failed. Please try again.");
- // Mark the version as errored
- if (generatingVersionIdRef.current) {
- const erroredVersionId = generatingVersionIdRef.current;
- setVersions((prev) =>
- prev.map((v) =>
- v.id === erroredVersionId ? { ...v, status: "error" as const } : v,
- ),
- );
- generatingVersionIdRef.current = null;
- }
- },
- } as Parameters<typeof useUIStream>[0]);
- // Get the selected version
- const selectedVersion = versions.find((v) => v.id === selectedVersionId);
- // Determine which tree to display:
- // - If streaming and selected version is the generating one, show apiSpec
- // - Otherwise show the selected version's tree
- const isSelectedVersionGenerating =
- selectedVersionId === generatingVersionIdRef.current && isStreaming;
- const hasValidApiTree =
- apiSpec && apiSpec.root && Object.keys(apiSpec.elements).length > 0;
- const currentTree =
- isSelectedVersionGenerating && hasValidApiTree
- ? apiSpec
- : (selectedVersion?.tree ??
- (isSelectedVersionGenerating ? apiSpec : null));
- // Raw JSONL lines: live from stream during generation, or stored per version
- const currentRawLines = isSelectedVersionGenerating
- ? streamRawLines
- : (selectedVersion?.rawLines ?? []);
- // Keep the ref updated with the current tree for use in handleSubmit
- if (
- currentTree &&
- currentTree.root &&
- Object.keys(currentTree.elements).length > 0
- ) {
- currentTreeRef.current = currentTree;
- }
- // Scroll to bottom when versions change
- useEffect(() => {
- versionsEndRef.current?.scrollIntoView({ behavior: "smooth" });
- }, [versions]);
- // Update version when streaming completes
- useEffect(() => {
- if (
- !isStreaming &&
- apiSpec &&
- apiSpec.root &&
- generatingVersionIdRef.current
- ) {
- const completedVersionId = generatingVersionIdRef.current;
- setVersions((prev) =>
- prev.map((v) =>
- v.id === completedVersionId
- ? {
- ...v,
- tree: apiSpec,
- status: "complete" as const,
- usage: streamUsage,
- rawLines: streamRawLines,
- }
- : v,
- ),
- );
- generatingVersionIdRef.current = null;
- }
- }, [isStreaming, apiSpec, streamUsage, streamRawLines]);
- const handleSubmit = useCallback(async () => {
- if (!inputValue.trim() || isStreaming) return;
- const newVersionId = Date.now().toString();
- const newVersion: Version = {
- id: newVersionId,
- prompt: inputValue.trim(),
- tree: null,
- status: "generating",
- usage: null,
- rawLines: [],
- };
- generatingVersionIdRef.current = newVersionId;
- setVersions((prev) => [...prev, newVersion]);
- setSelectedVersionId(newVersionId);
- setInputValue("");
- // Pass the current tree as context so the API can iterate on it
- await send(inputValue.trim(), { previousSpec: currentTreeRef.current });
- }, [inputValue, isStreaming, send]);
- const handleKeyDown = useCallback(
- (e: React.KeyboardEvent) => {
- if (e.key === "Enter" && !e.shiftKey) {
- e.preventDefault();
- handleSubmit();
- }
- },
- [handleSubmit],
- );
- const jsonCode = currentTree
- ? JSON.stringify(currentTree, null, 2)
- : "// waiting...";
- const nestedCode = useMemo(() => {
- if (!currentTree || !currentTree.root) return "// waiting...";
- return JSON.stringify(specToNested(currentTree), null, 2);
- }, [currentTree]);
- const generatedCode = useMemo(() => {
- if (!currentTree || !currentTree.root) {
- return "// Generate a UI to see the code";
- }
- const tree = currentTree;
- const components = collectUsedComponents(tree);
- function generateJSX(key: string, indent: number): string {
- const element = tree.elements[key];
- if (!element) return "";
- const spaces = " ".repeat(indent);
- const componentName = element.type;
- const propsObj: Record<string, unknown> = {};
- for (const [k, v] of Object.entries(element.props)) {
- if (v !== null && v !== undefined) {
- propsObj[k] = v;
- }
- }
- const propsStr = serializeProps(propsObj);
- const hasChildren = element.children && element.children.length > 0;
- if (!hasChildren) {
- return propsStr
- ? `${spaces}<${componentName} ${propsStr} />`
- : `${spaces}<${componentName} />`;
- }
- const lines: string[] = [];
- lines.push(
- propsStr
- ? `${spaces}<${componentName} ${propsStr}>`
- : `${spaces}<${componentName}>`,
- );
- for (const childKey of element.children!) {
- lines.push(generateJSX(childKey, indent + 1));
- }
- lines.push(`${spaces}</${componentName}>`);
- return lines.join("\n");
- }
- const jsx = generateJSX(tree.root, 2);
- const imports = Array.from(components).sort().join(", ");
- return `"use client";
- import { ${imports} } from "@/components/ui";
- export default function Page() {
- return (
- <div className="min-h-screen p-8 flex items-center justify-center">
- ${jsx}
- </div>
- );
- }`;
- }, [currentTree]);
- // Chat pane content
- const chatPane = (
- <div className="h-full flex flex-col border-t border-border">
- <div className="border-b border-border px-3 h-9 flex items-center">
- <span className="text-xs font-mono text-muted-foreground">
- versions
- </span>
- </div>
- <div
- className={`flex-1 p-2 min-h-0 ${versions.length > 0 ? "overflow-y-auto space-y-1" : "flex"}`}
- >
- {versions.length === 0 ? (
- <div className="flex-1 flex flex-col items-center justify-center text-center px-4">
- <p className="text-sm text-muted-foreground mb-4">
- Describe what you want to build, then iterate on it.
- </p>
- <div className="flex flex-wrap gap-2 justify-center">
- {EXAMPLE_PROMPTS.map((prompt) => (
- <button
- key={prompt}
- onMouseDown={(e) => {
- e.preventDefault();
- flushSync(() => setInputValue(prompt));
- // chatPane is rendered in both desktop and mobile layouts,
- // so inputRef may point to the hidden instance. Find the
- // textarea in the same layout container as the clicked button.
- const container = (e.currentTarget as HTMLElement).closest(
- ".h-full.flex.flex-col",
- );
- const el =
- container?.querySelector<HTMLTextAreaElement>(
- "textarea",
- ) ?? inputRef.current;
- if (el) {
- el.focus();
- el.setSelectionRange(prompt.length, prompt.length);
- }
- }}
- className="text-xs px-2 py-1 rounded border border-border text-muted-foreground hover:text-foreground hover:border-foreground/30 transition-colors"
- >
- {prompt}
- </button>
- ))}
- </div>
- </div>
- ) : (
- versions.map((version, index) => (
- <button
- key={version.id}
- onClick={() => setSelectedVersionId(version.id)}
- className={`w-full text-left px-3 py-2 rounded text-sm transition-colors ${
- selectedVersionId === version.id
- ? "bg-muted text-foreground"
- : "text-muted-foreground hover:bg-muted/50 hover:text-foreground"
- }`}
- >
- <div className="flex items-center gap-2">
- <span className="text-xs font-mono text-muted-foreground/70 shrink-0">
- v{index + 1}
- </span>
- <span className="truncate flex-1">{version.prompt}</span>
- {version.status === "generating" && (
- <span className="text-xs text-muted-foreground shrink-0 animate-pulse">
- ...
- </span>
- )}
- {version.status === "error" && (
- <span className="text-xs text-red-500 shrink-0">failed</span>
- )}
- </div>
- {version.usage && (
- <div className="flex items-center gap-2 mt-1 ml-6">
- <span className="text-[10px] font-mono text-muted-foreground/60">
- {version.usage.totalTokens.toLocaleString()} tokens
- </span>
- </div>
- )}
- </button>
- ))
- )}
- <div ref={versionsEndRef} />
- </div>
- <div
- className="border-t border-border p-3 cursor-text"
- onMouseDown={(e) => {
- // Focus textarea unless clicking a button or the textarea itself
- const target = e.target as HTMLElement;
- if (!target.closest("button") && target.tagName !== "TEXTAREA") {
- e.preventDefault();
- inputRef.current?.focus();
- }
- }}
- >
- <textarea
- ref={inputRef}
- value={inputValue}
- onChange={(e) => setInputValue(e.target.value)}
- onKeyDown={handleKeyDown}
- placeholder="Describe changes..."
- className="w-full bg-background text-base sm:text-sm resize-none outline-none placeholder:text-muted-foreground/50"
- rows={2}
- autoFocus
- />
- <div className="flex justify-between items-center mt-2">
- {versions.length > 0 ? (
- <button
- onClick={() => {
- setVersions([]);
- setSelectedVersionId(null);
- clear();
- }}
- className="text-xs text-muted-foreground hover:text-foreground transition-colors"
- >
- Clear
- </button>
- ) : (
- <div />
- )}
- {isStreaming ? (
- <button
- onClick={() => clear()}
- className="w-7 h-7 rounded-full bg-primary text-primary-foreground flex items-center justify-center hover:bg-primary/90 transition-colors"
- aria-label="Stop"
- >
- <svg
- width="14"
- height="14"
- viewBox="0 0 24 24"
- fill="currentColor"
- stroke="none"
- >
- <rect x="6" y="6" width="12" height="12" />
- </svg>
- </button>
- ) : (
- <button
- onClick={handleSubmit}
- disabled={!inputValue.trim()}
- className="w-7 h-7 rounded-full bg-primary text-primary-foreground flex items-center justify-center hover:bg-primary/90 transition-colors disabled:opacity-30"
- aria-label="Send"
- >
- <svg
- width="14"
- height="14"
- viewBox="0 0 24 24"
- fill="none"
- stroke="currentColor"
- strokeWidth="2"
- strokeLinecap="round"
- strokeLinejoin="round"
- >
- <path d="M5 12h14" />
- <path d="m12 5 7 7-7 7" />
- </svg>
- </button>
- )}
- </div>
- </div>
- </div>
- );
- // Catalog data for the catalog tab
- const catalogData = useMemo(
- () => buildCatalogDisplayData(playgroundCatalog.data),
- [],
- );
- // Code pane content
- const copyText =
- activeTab === "stream"
- ? currentRawLines.join("\n")
- : activeTab === "json"
- ? jsonCode
- : activeTab === "nested"
- ? nestedCode
- : "";
- const codePane = (
- <div className="h-full flex flex-col border-t border-border">
- <div className="border-b border-border px-3 h-9 flex items-center gap-3">
- {(["json", "nested", "stream", "catalog"] as const).map((tab) => (
- <button
- key={tab}
- onClick={() => setActiveTab(tab)}
- className={`text-xs font-mono transition-colors ${
- activeTab === tab
- ? "text-foreground"
- : "text-muted-foreground hover:text-foreground"
- }`}
- >
- {tab}
- </button>
- ))}
- <div className="flex-1" />
- {activeTab !== "catalog" && (
- <CopyButton text={copyText} className="text-muted-foreground" />
- )}
- </div>
- <div className="flex-1 overflow-auto">
- {activeTab === "catalog" ? (
- <div className="h-full flex flex-col text-sm">
- <div className="flex items-center gap-3 px-3 h-9 border-b border-border">
- {(
- [
- {
- key: "components",
- label: `components (${catalogData.components.length})`,
- },
- {
- key: "actions",
- label: `actions (${catalogData.actions.length})`,
- },
- ] as const
- ).map(({ key, label }) => (
- <button
- key={key}
- onClick={() => setCatalogSection(key)}
- className={`text-xs font-mono transition-colors ${
- catalogSection === key
- ? "text-foreground"
- : "text-muted-foreground hover:text-foreground"
- }`}
- >
- {label}
- </button>
- ))}
- </div>
- <div className="flex-1 overflow-auto p-3">
- {catalogSection === "components" ? (
- <div className="space-y-3">
- {catalogData.components.map((comp) => (
- <div
- key={comp.name}
- className="pb-3 border-b border-border last:border-b-0"
- >
- <div className="flex items-baseline gap-2 mb-1">
- <span className="font-mono font-medium text-foreground">
- {comp.name}
- </span>
- {comp.slots.length > 0 && (
- <span className="text-[10px] font-mono px-1.5 py-0.5 rounded bg-muted text-muted-foreground">
- slots: {comp.slots.join(", ")}
- </span>
- )}
- </div>
- {comp.description && (
- <p className="text-xs text-muted-foreground mb-2">
- {comp.description}
- </p>
- )}
- {comp.props.length > 0 && (
- <div className="flex flex-wrap gap-1 mb-1">
- {comp.props.map((p) => (
- <span
- key={p.name}
- className="text-[11px] font-mono px-1.5 py-0.5 rounded bg-green-500/10 text-green-700 dark:text-green-400"
- >
- {p.name}
- <span className="text-green-700/50 dark:text-green-400/50">
- : {p.type}
- </span>
- </span>
- ))}
- </div>
- )}
- {comp.events.length > 0 && (
- <div className="flex flex-wrap gap-1 mt-1.5">
- {comp.events.map((e) => (
- <span
- key={e}
- className="text-[11px] font-mono px-1.5 py-0.5 rounded bg-blue-500/10 text-blue-600 dark:text-blue-400"
- >
- on.{e}
- </span>
- ))}
- </div>
- )}
- </div>
- ))}
- </div>
- ) : (
- <div className="space-y-3">
- {catalogData.actions.map((action) => (
- <div
- key={action.name}
- className="pb-3 border-b border-border last:border-b-0"
- >
- <span className="font-mono font-medium text-foreground">
- {action.name}
- </span>
- {action.description && (
- <p className="text-xs text-muted-foreground mt-1 mb-2">
- {action.description}
- </p>
- )}
- {action.params.length > 0 && (
- <div className="flex flex-wrap gap-1">
- {action.params.map((p) => (
- <span
- key={p.name}
- className="text-[11px] font-mono px-1.5 py-0.5 rounded bg-green-500/10 text-green-700 dark:text-green-400"
- >
- {p.name}
- <span className="text-green-700/50 dark:text-green-400/50">
- : {p.type}
- </span>
- </span>
- ))}
- </div>
- )}
- </div>
- ))}
- </div>
- )}
- </div>
- </div>
- ) : activeTab === "stream" ? (
- currentRawLines.length > 0 ? (
- <CodeBlock
- code={currentRawLines.join("\n")}
- lang="json"
- fillHeight
- hideCopyButton
- />
- ) : (
- <div className="text-muted-foreground/50 p-3 text-sm font-mono">
- {isStreaming ? "streaming..." : "// waiting for generation"}
- </div>
- )
- ) : activeTab === "nested" ? (
- <CodeBlock code={nestedCode} lang="json" fillHeight hideCopyButton />
- ) : (
- <CodeBlock code={jsonCode} lang="json" fillHeight hideCopyButton />
- )}
- </div>
- </div>
- );
- // Preview pane content
- const previewPane = (
- <div className="h-full flex flex-col border-t border-border">
- <div className="border-b border-border px-3 h-9 flex items-center gap-3">
- {(
- [
- { key: "preview", label: "preview" },
- { key: "code", label: "code" },
- ] as const
- ).map(({ key, label }) => (
- <button
- key={key}
- onClick={() => setRenderView(key)}
- className={`text-xs font-mono transition-colors ${
- renderView === key
- ? "text-foreground"
- : "text-muted-foreground hover:text-foreground"
- }`}
- >
- {label}
- </button>
- ))}
- <div className="flex-1" />
- {renderView === "code" && (
- <CopyButton text={generatedCode} className="text-muted-foreground" />
- )}
- </div>
- <div className="flex-1 overflow-auto">
- {renderView === "preview" ? (
- currentTree && currentTree.root ? (
- <div className="w-full min-h-full flex items-center justify-center p-6">
- <PlaygroundRenderer
- spec={currentTree}
- data={currentTree.state}
- loading={isStreaming}
- />
- </div>
- ) : (
- <div className="h-full flex items-center justify-center text-muted-foreground/50 text-sm">
- {isStreaming
- ? "generating..."
- : "// enter a prompt to generate UI"}
- </div>
- )
- ) : (
- <CodeBlock
- code={generatedCode}
- lang="tsx"
- fillHeight
- hideCopyButton
- />
- )}
- </div>
- </div>
- );
- return (
- <div className="h-full flex flex-col">
- <Header />
- {/* Desktop: 3-pane resizable layout */}
- <div className="hidden lg:flex flex-1 min-h-0">
- <ResizablePanelGroup className="flex-1">
- <ResizablePanel defaultSize={25} minSize={15}>
- {chatPane}
- </ResizablePanel>
- <ResizableHandle />
- <ResizablePanel defaultSize={35} minSize={20}>
- {codePane}
- </ResizablePanel>
- <ResizableHandle />
- <ResizablePanel defaultSize={40} minSize={20}>
- {previewPane}
- </ResizablePanel>
- </ResizablePanelGroup>
- </div>
- {/* Mobile: toolbar + content + prompt input */}
- <div className="flex lg:hidden flex-col flex-1 min-h-0">
- {/* Top toolbar */}
- <div className="border-b border-border px-3 h-9 flex items-center gap-3 shrink-0 overflow-x-auto">
- {/* Version badge */}
- <button
- onClick={() => setVersionsSheetOpen(true)}
- className="text-xs font-mono font-medium px-1.5 py-0.5 rounded bg-muted text-foreground shrink-0"
- >
- v
- {versions.length > 0
- ? versions.findIndex((v) => v.id === selectedVersionId) + 1 ||
- versions.length
- : 0}
- </button>
- {/* Code tabs */}
- {(["json", "nested", "stream", "catalog"] as const).map((tab) => (
- <button
- key={tab}
- onClick={() => setMobileView(tab)}
- className={`text-xs font-mono transition-colors shrink-0 ${
- mobileView === tab
- ? "text-foreground"
- : "text-muted-foreground hover:text-foreground"
- }`}
- >
- {tab}
- </button>
- ))}
- <div className="flex-1" />
- {/* Preview / code toggle */}
- {[
- { key: "preview" as const, label: "preview" },
- { key: "generated-code" as const, label: "code" },
- ].map(({ key, label }) => (
- <button
- key={key}
- onClick={() => setMobileView(key)}
- className={`text-xs font-mono transition-colors shrink-0 ${
- mobileView === key
- ? "text-foreground"
- : "text-muted-foreground hover:text-foreground"
- }`}
- >
- {label}
- </button>
- ))}
- </div>
- {/* Main content area */}
- <div className="flex-1 min-h-0 overflow-auto">
- {mobileView === "catalog" ? (
- <div className="h-full flex flex-col text-sm">
- <div className="flex items-center gap-3 px-3 h-9 border-b border-border">
- {(
- [
- {
- key: "components",
- label: `components (${catalogData.components.length})`,
- },
- {
- key: "actions",
- label: `actions (${catalogData.actions.length})`,
- },
- ] as const
- ).map(({ key, label }) => (
- <button
- key={key}
- onClick={() => setCatalogSection(key)}
- className={`text-xs font-mono transition-colors ${
- catalogSection === key
- ? "text-foreground"
- : "text-muted-foreground hover:text-foreground"
- }`}
- >
- {label}
- </button>
- ))}
- </div>
- <div className="flex-1 overflow-auto p-3">
- {catalogSection === "components" ? (
- <div className="space-y-3">
- {catalogData.components.map((comp) => (
- <div
- key={comp.name}
- className="pb-3 border-b border-border last:border-b-0"
- >
- <div className="flex items-baseline gap-2 mb-1">
- <span className="font-mono font-medium text-foreground">
- {comp.name}
- </span>
- {comp.slots.length > 0 && (
- <span className="text-[10px] font-mono px-1.5 py-0.5 rounded bg-muted text-muted-foreground">
- slots: {comp.slots.join(", ")}
- </span>
- )}
- </div>
- {comp.description && (
- <p className="text-xs text-muted-foreground mb-2">
- {comp.description}
- </p>
- )}
- {comp.props.length > 0 && (
- <div className="flex flex-wrap gap-1 mb-1">
- {comp.props.map((p) => (
- <span
- key={p.name}
- className="text-[11px] font-mono px-1.5 py-0.5 rounded bg-green-500/10 text-green-700 dark:text-green-400"
- >
- {p.name}
- <span className="text-green-700/50 dark:text-green-400/50">
- : {p.type}
- </span>
- </span>
- ))}
- </div>
- )}
- {comp.events.length > 0 && (
- <div className="flex flex-wrap gap-1 mt-1.5">
- {comp.events.map((e) => (
- <span
- key={e}
- className="text-[11px] font-mono px-1.5 py-0.5 rounded bg-blue-500/10 text-blue-600 dark:text-blue-400"
- >
- on.{e}
- </span>
- ))}
- </div>
- )}
- </div>
- ))}
- </div>
- ) : (
- <div className="space-y-3">
- {catalogData.actions.map((action) => (
- <div
- key={action.name}
- className="pb-3 border-b border-border last:border-b-0"
- >
- <span className="font-mono font-medium text-foreground">
- {action.name}
- </span>
- {action.description && (
- <p className="text-xs text-muted-foreground mt-1 mb-2">
- {action.description}
- </p>
- )}
- {action.params.length > 0 && (
- <div className="flex flex-wrap gap-1">
- {action.params.map((p) => (
- <span
- key={p.name}
- className="text-[11px] font-mono px-1.5 py-0.5 rounded bg-green-500/10 text-green-700 dark:text-green-400"
- >
- {p.name}
- <span className="text-green-700/50 dark:text-green-400/50">
- : {p.type}
- </span>
- </span>
- ))}
- </div>
- )}
- </div>
- ))}
- </div>
- )}
- </div>
- </div>
- ) : mobileView === "stream" ? (
- currentRawLines.length > 0 ? (
- <CodeBlock
- code={currentRawLines.join("\n")}
- lang="json"
- fillHeight
- hideCopyButton
- />
- ) : (
- <div className="text-muted-foreground/50 p-3 text-sm font-mono">
- {isStreaming ? "streaming..." : "// waiting for generation"}
- </div>
- )
- ) : mobileView === "nested" ? (
- <CodeBlock
- code={nestedCode}
- lang="json"
- fillHeight
- hideCopyButton
- />
- ) : mobileView === "json" ? (
- <CodeBlock code={jsonCode} lang="json" fillHeight hideCopyButton />
- ) : mobileView === "preview" ? (
- currentTree && currentTree.root ? (
- <div className="w-full min-h-full flex items-center justify-center p-6">
- <PlaygroundRenderer
- spec={currentTree}
- data={currentTree.state}
- loading={isStreaming}
- />
- </div>
- ) : (
- <div className="h-full flex flex-col items-center justify-center text-center px-4">
- {isStreaming ? (
- <p className="text-sm text-muted-foreground/50">
- generating...
- </p>
- ) : (
- <>
- <p className="text-sm text-muted-foreground mb-4">
- Describe what you want to build, then iterate on it.
- </p>
- <div className="flex flex-wrap gap-2 justify-center">
- {EXAMPLE_PROMPTS.map((prompt) => (
- <button
- key={prompt}
- onMouseDown={(e) => {
- e.preventDefault();
- flushSync(() => setInputValue(prompt));
- mobileInputRef.current?.focus();
- mobileInputRef.current?.setSelectionRange(
- prompt.length,
- prompt.length,
- );
- }}
- className="text-xs px-2 py-1 rounded border border-border text-muted-foreground hover:text-foreground hover:border-foreground/30 transition-colors"
- >
- {prompt}
- </button>
- ))}
- </div>
- </>
- )}
- </div>
- )
- ) : (
- /* generated-code */
- <CodeBlock
- code={generatedCode}
- lang="tsx"
- fillHeight
- hideCopyButton
- />
- )}
- </div>
- {/* Prompt input pinned to bottom */}
- <div
- className="border-t border-border p-3 shrink-0 cursor-text"
- onMouseDown={(e) => {
- const target = e.target as HTMLElement;
- if (!target.closest("button") && target.tagName !== "TEXTAREA") {
- e.preventDefault();
- mobileInputRef.current?.focus();
- }
- }}
- >
- <textarea
- ref={mobileInputRef}
- value={inputValue}
- onChange={(e) => setInputValue(e.target.value)}
- onKeyDown={handleKeyDown}
- placeholder="Describe changes..."
- className="w-full bg-background text-base resize-none outline-none placeholder:text-muted-foreground/50"
- rows={2}
- />
- <div className="flex justify-between items-center mt-2">
- {versions.length > 0 ? (
- <button
- onClick={() => {
- setVersions([]);
- setSelectedVersionId(null);
- clear();
- }}
- className="text-xs text-muted-foreground hover:text-foreground transition-colors"
- >
- Clear
- </button>
- ) : (
- <div />
- )}
- {isStreaming ? (
- <button
- onClick={() => clear()}
- className="w-7 h-7 rounded-full bg-primary text-primary-foreground flex items-center justify-center hover:bg-primary/90 transition-colors"
- aria-label="Stop"
- >
- <svg
- width="14"
- height="14"
- viewBox="0 0 24 24"
- fill="currentColor"
- stroke="none"
- >
- <rect x="6" y="6" width="12" height="12" />
- </svg>
- </button>
- ) : (
- <button
- onClick={handleSubmit}
- disabled={!inputValue.trim()}
- className="w-7 h-7 rounded-full bg-primary text-primary-foreground flex items-center justify-center hover:bg-primary/90 transition-colors disabled:opacity-30"
- aria-label="Send"
- >
- <svg
- width="14"
- height="14"
- viewBox="0 0 24 24"
- fill="none"
- stroke="currentColor"
- strokeWidth="2"
- strokeLinecap="round"
- strokeLinejoin="round"
- >
- <path d="M5 12h14" />
- <path d="m12 5 7 7-7 7" />
- </svg>
- </button>
- )}
- </div>
- </div>
- {/* Versions sheet */}
- <Sheet open={versionsSheetOpen} onOpenChange={setVersionsSheetOpen}>
- <SheetContent>
- <SheetTitle className="text-sm font-mono mb-4">Versions</SheetTitle>
- <div className="flex-1 overflow-y-auto space-y-1">
- {versions.map((version, index) => (
- <button
- key={version.id}
- onClick={() => {
- setSelectedVersionId(version.id);
- setVersionsSheetOpen(false);
- }}
- className={`w-full text-left px-3 py-2 rounded text-sm transition-colors ${
- selectedVersionId === version.id
- ? "bg-muted text-foreground"
- : "text-muted-foreground hover:bg-muted/50 hover:text-foreground"
- }`}
- >
- <div className="flex items-center gap-2">
- <span className="text-xs font-mono text-muted-foreground/70 shrink-0">
- v{index + 1}
- </span>
- <span className="truncate flex-1">{version.prompt}</span>
- {version.status === "generating" && (
- <span className="text-xs text-muted-foreground shrink-0 animate-pulse">
- ...
- </span>
- )}
- {version.status === "error" && (
- <span className="text-xs text-red-500 shrink-0">
- failed
- </span>
- )}
- </div>
- {version.usage && (
- <div className="flex items-center gap-2 mt-1 ml-6">
- <span className="text-[10px] font-mono text-muted-foreground/60">
- {version.usage.totalTokens.toLocaleString()} tokens
- </span>
- </div>
- )}
- </button>
- ))}
- {versions.length === 0 && (
- <p className="text-sm text-muted-foreground px-3">
- No versions yet. Enter a prompt to get started.
- </p>
- )}
- </div>
- </SheetContent>
- </Sheet>
- </div>
- <Toaster position="bottom-right" />
- </div>
- );
- }
|