import type { Meta, StoryObj } from "@storybook/react-vite"; import { IssueChatUxLab } from "@/pages/IssueChatUxLab"; import { InviteUxLab } from "@/pages/InviteUxLab"; import { RunTranscriptUxLab } from "@/pages/RunTranscriptUxLab"; import { SystemNoticeUxLab } from "@/pages/SystemNoticeUxLab"; function StoryFrame({ children }: { children: React.ReactNode }) { return (
{children}
); } const meta = { title: "UX Labs/Converted Test Pages", parameters: { docs: { description: { component: "The former in-app UX test routes are represented here as Storybook stories so fixture-backed review surfaces stay out of production routing.", }, }, }, } satisfies Meta; export default meta; type Story = StoryObj; export const IssueChatReviewSurface: Story = { name: "Issue Chat Review Surface", render: () => ( ), parameters: { docs: { description: { story: "Exercises assistant-ui issue chat states: timeline events, live run stream, queued message, feedback controls, submitting bubble, empty state, and disabled composer.", }, }, }, }; export const RunTranscriptFixtures: Story = { name: "Run Transcript Fixtures", render: () => ( ), parameters: { docs: { description: { story: "Exercises run transcript presentation across the run detail page, issue live widget, and dashboard card density.", }, }, }, }; export const SystemNoticeTreatment: Story = { name: "System Notice Treatment", render: () => ( ), parameters: { docs: { description: { story: "Renders the first-class system notice (PAP-3525 plan): warning, danger, and neutral tones in collapsed and expanded states, an in-thread hierarchy comparison against user and agent bubbles, and a before/after replacement of the current nested user-bubble + warning-callout pattern.", }, }, }, }; export const InviteAndAccessFlow: Story = { name: "Invite And Access Flow", render: () => ( ), parameters: { docs: { description: { story: "Exercises invitation and access UX states with fixture-backed role choices, landing frames, history, and failure treatments.", }, }, }, };