"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 (
Scroll Status Where the reader can go scroll to based on current scroll position.
Scroll the transcript to see the footer update.
) } function Transcript() { return messages.map((message) => ( )) } function ScrollStateFooter() { const { start, end } = useMessageScrollerScrollable() const status = getScrollStatus({ start, end }) return ( {status} ) } 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." }