Files
shadcn-ui/apps/v4/examples/base/message-scroller-scrollable.tsx
shadcn 18fcf0f766 feat: @shadcn/react (#11022)
* 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
2026-06-26 21:19:31 +04:00

104 lines
3.1 KiB
TypeScript

"use client"
import { MessageAnimated } from "@/components/message-animated"
import {
Card,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
} from "@/styles/base-rhea/ui/card"
import {
MessageScroller,
MessageScrollerButton,
MessageScrollerContent,
MessageScrollerProvider,
MessageScrollerViewport,
useMessageScrollerScrollable,
} from "@/styles/base-rhea/ui/message-scroller"
const messages = Array.from({ length: 12 }, (_, index) => ({
id: `scrollable-${index + 1}`,
role: index % 2 === 0 ? "user" : "assistant",
text:
index % 2 === 0
? `Review scroll checkpoint ${index + 1}.`
: `Checkpoint ${index + 1} is synced. The scrollable hook updates as the viewport moves.\n\nWhen the reader is at the first message, the footer should only point them down. Once they move into the middle of the transcript, it should explain that both directions are available.\n\nAt the latest message, the footer should switch again and only point them back up.`,
})) satisfies Array<{
id: string
role: "user" | "assistant"
text: string
}>
export function MessageScrollerScrollable() {
return (
<div className="mx-auto flex w-full max-w-sm flex-col gap-4">
<Card className="h-140 w-full gap-0 overflow-hidden">
<CardHeader className="gap-1 border-b">
<CardTitle>Scroll Status</CardTitle>
<CardDescription>
Where the reader can go scroll to based on current scroll position.
</CardDescription>
</CardHeader>
<MessageScrollerProvider defaultScrollPosition="start">
<CardContent className="flex-1 overflow-hidden p-0">
<MessageScroller>
<MessageScrollerViewport>
<MessageScrollerContent className="gap-4 p-(--card-spacing)">
<Transcript />
</MessageScrollerContent>
</MessageScrollerViewport>
<MessageScrollerButton />
</MessageScroller>
</CardContent>
<ScrollStateFooter />
</MessageScrollerProvider>
</Card>
<div className="px-0.5 text-center text-xs text-muted-foreground">
Scroll the transcript to see the footer update.
</div>
</div>
)
}
function Transcript() {
return messages.map((message) => (
<MessageAnimated
key={message.id}
message={message}
scrollAnchor={message.role === "user"}
userVariant="muted"
assistantVariant="ghost"
/>
))
}
function ScrollStateFooter() {
const { start, end } = useMessageScrollerScrollable()
const status = getScrollStatus({ start, end })
return (
<CardFooter className="justify-center border-t text-center text-sm text-muted-foreground">
{status}
</CardFooter>
)
}
function getScrollStatus({ start, end }: { start: boolean; end: boolean }) {
if (start && end) {
return "You can scroll both ways."
}
if (end) {
return "You are at the top. You can only scroll down."
}
if (start) {
return "You are at the bottom. You can only scroll up."
}
return "All messages fit in the viewport."
}