'use client' import { type ComponentProps, useCallback } from 'react' import { ArrowDownIcon } from 'lucide-react' import { useTranslation } from 'react-i18next' import { StickToBottom, useStickToBottomContext } from 'use-stick-to-bottom' import { cn } from '@/lib/utils' import { Button } from '@/components/ui/button' export type ConversationProps = ComponentProps export const Conversation = ({ className, ...props }: ConversationProps) => ( ) export type ConversationContentProps = ComponentProps< typeof StickToBottom.Content > export const ConversationContent = ({ className, ...props }: ConversationContentProps) => ( ) export type ConversationEmptyStateProps = ComponentProps<'div'> & { title?: string description?: string icon?: React.ReactNode } export const ConversationEmptyState = ({ className, title, description, icon, children, ...props }: ConversationEmptyStateProps) => { const { t } = useTranslation() const resolvedTitle = title ?? t('No messages yet') const resolvedDescription = description ?? t('Start a conversation to see messages here') return (
{children ?? ( <> {icon &&
{icon}
}

{resolvedTitle}

{resolvedDescription && (

{resolvedDescription}

)}
)}
) } export type ConversationScrollButtonProps = ComponentProps export const ConversationScrollButton = ({ className, ...props }: ConversationScrollButtonProps) => { const { isAtBottom, scrollToBottom } = useStickToBottomContext() const handleScrollToBottom = useCallback(() => { scrollToBottom() }, [scrollToBottom]) return ( !isAtBottom && ( ) ) }