mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 06:28:37 +00:00
* feat(@shadcn/react): add message-scroller package Add the @shadcn/react headless primitives package with MessageScroller scroll anchoring, streaming follow, history prepend, and jump-to-message behavior. Includes geometry helpers, use-render utility, and unit, browser, and perf tests. * feat(registry): add chat components Add MessageScroller, Message, Bubble, Attachment, and Marker registry sources for base and radix, style variants, preview-03 chat blocks, and registry index wiring. * feat(v4): integrate chat components into docs site Wire chat components into the v4 app with docs routes, example preview pages, message part renderers, markdown support, registry build updates, and supporting lib utilities. * feat(examples): add chat component demos Add base and radix example demos for MessageScroller, Message, Bubble, Attachment, Marker, scroll-fade, and shimmer. * docs: add chat component documentation Add component and utility docs for the chat component set, update docs navigation, and add the June 2026 chat components changelog entry. * chore: regenerate registry JSON output Rebuild public registry artifacts for all style variants with the new chat components. * chore(release): add @shadcn/react publish and CI pipeline Add Changesets prerelease workflow, browser test job, RELEASING docs, and monorepo wiring for publishing @shadcn/react independently from the shadcn CLI. * docs: fix display of component preview on mobile * fix * fix * docs: add message scroller docs * style: format * fix
186 lines
7.3 KiB
TypeScript
186 lines
7.3 KiB
TypeScript
"use client"
|
|
|
|
import { createChat, getMessageText } from "@/lib/ai"
|
|
import { Bubble, BubbleContent } from "@/styles/base-rhea/ui/bubble"
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/styles/base-rhea/ui/card"
|
|
import {
|
|
HoverCard,
|
|
HoverCardContent,
|
|
HoverCardTrigger,
|
|
} from "@/styles/base-rhea/ui/hover-card"
|
|
import { Message, MessageContent } from "@/styles/base-rhea/ui/message"
|
|
import {
|
|
MessageScroller,
|
|
MessageScrollerButton,
|
|
MessageScrollerContent,
|
|
MessageScrollerItem,
|
|
MessageScrollerProvider,
|
|
MessageScrollerViewport,
|
|
useMessageScroller,
|
|
useMessageScrollerVisibility,
|
|
} from "@/styles/base-rhea/ui/message-scroller"
|
|
|
|
const chat = createChat()
|
|
.user("Review the incident handoff and tell me what to read first.", {
|
|
id: "vis-brief",
|
|
})
|
|
.assistant(
|
|
"Start with the summary and the impact section. The regression affected the upload queue, but the recovery path completed for every queued job."
|
|
)
|
|
.user("What was the customer impact?", {
|
|
id: "vis-impact",
|
|
})
|
|
.assistant(
|
|
"Impact was limited to delayed processing.\n\nNo records were dropped, and the reconciliation worker confirmed each retry batch. Support saw confusion from two customers, but there were no checkout or billing errors."
|
|
)
|
|
.user("What actions are open?", {
|
|
id: "vis-actions",
|
|
})
|
|
.assistant(
|
|
"Keep the retry window enabled until the next deploy, then add a queue-depth alert as the long-term fix.\n\nThe alert should fire on sustained queue growth, not a single short spike."
|
|
)
|
|
.user("Give me the follow-up checklist.", {
|
|
id: "vis-checklist",
|
|
})
|
|
.assistant(
|
|
"After that, compare the queue recovery graph with the deploy timeline so the handoff shows exactly when processing returned to baseline. That makes it easier for support and engineering to answer the same customer questions without re-reading the whole incident thread.\n\nI would also add a short owner note beside each follow-up item. The checklist is small, but ownership keeps the retry-window decision, alert tuning, and support macro from drifting into separate follow-up conversations.\n\nKeep the retry window enabled until the next deploy, then add a queue-depth alert as the long-term fix.\n\nThe alert should fire on sustained queue growth, not a single short spike."
|
|
)
|
|
|
|
const messages = chat.get()
|
|
const userMessages = messages.filter((message) => message.role === "user")
|
|
|
|
export function MessageScrollerVisibility() {
|
|
return (
|
|
<MessageScrollerProvider scrollMargin={12}>
|
|
<div className="relative flex flex-col gap-4">
|
|
<div className="relative mx-auto w-full max-w-sm">
|
|
<Card className="h-140 w-full gap-0">
|
|
<CardHeader className="gap-1 border-b">
|
|
<CardTitle>Transcript Outline</CardTitle>
|
|
<CardDescription>
|
|
Track the current anchored turn.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="flex-1 overflow-hidden p-0">
|
|
<MessageScroller>
|
|
<MessageScrollerViewport>
|
|
<MessageScrollerContent className="p-(--card-spacing)">
|
|
{messages.map((message) => {
|
|
const isUserMessage = message.role === "user"
|
|
const text = getMessageText(message)
|
|
|
|
return (
|
|
<MessageScrollerItem
|
|
key={message.id}
|
|
messageId={message.id}
|
|
scrollAnchor={isUserMessage}
|
|
>
|
|
<Message align={isUserMessage ? "end" : "start"}>
|
|
<MessageContent>
|
|
<Bubble
|
|
variant={isUserMessage ? "muted" : "ghost"}
|
|
>
|
|
<BubbleContent className="space-y-2">
|
|
{text
|
|
.split(/\n\s*\n/)
|
|
.map((paragraph) => paragraph.trim())
|
|
.filter(Boolean)
|
|
.map((paragraph, index) => (
|
|
<p
|
|
key={index}
|
|
className="whitespace-pre-wrap"
|
|
>
|
|
{paragraph}
|
|
</p>
|
|
))}
|
|
</BubbleContent>
|
|
</Bubble>
|
|
</MessageContent>
|
|
</Message>
|
|
</MessageScrollerItem>
|
|
)
|
|
})}
|
|
</MessageScrollerContent>
|
|
</MessageScrollerViewport>
|
|
<MessageScrollerButton />
|
|
</MessageScroller>
|
|
</CardContent>
|
|
</Card>
|
|
<div className="absolute top-1/2 -right-12 -translate-y-1/2">
|
|
<TranscriptOutline />
|
|
</div>
|
|
</div>
|
|
<div className="mx-auto max-w-sm px-0.5 text-center text-xs text-muted-foreground">
|
|
Open the outline to jump between anchored turns as you read.
|
|
</div>
|
|
</div>
|
|
</MessageScrollerProvider>
|
|
)
|
|
}
|
|
|
|
function TranscriptOutline() {
|
|
const { scrollToMessage } = useMessageScroller()
|
|
const { currentAnchorId } = useMessageScrollerVisibility()
|
|
|
|
return (
|
|
<HoverCard>
|
|
<HoverCardTrigger
|
|
render={
|
|
<button
|
|
type="button"
|
|
aria-label="Open transcript outline"
|
|
className="flex h-9 w-9 flex-col items-center justify-center gap-1 rounded-md transition-colors outline-none focus-visible:ring-3 focus-visible:ring-ring/50"
|
|
/>
|
|
}
|
|
>
|
|
{userMessages.map((message) => (
|
|
<span
|
|
key={message.id}
|
|
data-current={message.id === currentAnchorId}
|
|
className="h-0.5 w-4 rounded-full bg-muted-foreground/40 data-[current=true]:bg-foreground"
|
|
/>
|
|
))}
|
|
</HoverCardTrigger>
|
|
<HoverCardContent
|
|
align="center"
|
|
side="left"
|
|
sideOffset={-28}
|
|
className="flex w-64 flex-col gap-1 rounded-2xl p-1"
|
|
>
|
|
{userMessages.map((message) => (
|
|
<button
|
|
key={message.id}
|
|
type="button"
|
|
aria-current={
|
|
currentAnchorId === message.id ? "location" : undefined
|
|
}
|
|
className="flex min-h-7 items-center rounded-xl px-2 py-1.5 text-left text-sm transition-colors outline-none hover:bg-accent hover:text-accent-foreground focus-visible:bg-accent focus-visible:text-accent-foreground aria-current:bg-accent aria-current:text-accent-foreground"
|
|
onClick={() =>
|
|
scrollToMessage(message.id, {
|
|
align: "start",
|
|
behavior: "smooth",
|
|
})
|
|
}
|
|
>
|
|
<span className="line-clamp-1 min-w-0">
|
|
{getTrimmedMessageText(message)}
|
|
</span>
|
|
</button>
|
|
))}
|
|
</HoverCardContent>
|
|
</HoverCard>
|
|
)
|
|
}
|
|
|
|
function getTrimmedMessageText(message: (typeof userMessages)[number]) {
|
|
const text = getMessageText(message)
|
|
|
|
return text.length > 42 ? `${text.slice(0, 39)}...` : text
|
|
}
|