Files
overleaf-cep/libraries/ai/components/ai-elements/message.tsx
Mathias Jakobsen 8024fe2c58 [web] Add AI workbench to alpha users (#29417)
Co-authored-by: Alf Eaton <alf.eaton@overleaf.com>
GitOrigin-RevId: 79bb329932b1e6fcc88f648bca9cc4bee215cd41
2025-11-11 09:06:08 +00:00

59 lines
1.6 KiB
TypeScript

import { cn } from '../../utils'
import type { UIMessage } from 'ai'
import { cva, type VariantProps } from 'class-variance-authority'
import type { HTMLAttributes } from 'react'
export type MessageProps = HTMLAttributes<HTMLDivElement> & {
from: UIMessage['role']
}
export const Message = ({ className, from, ...props }: MessageProps) => (
<div
className={cn(
'group flex w-full items-end justify-end gap-2 py-4',
from === 'user' ? 'is-user' : 'is-assistant flex-row-reverse justify-end',
className
)}
{...props}
/>
)
const messageContentVariants = cva(
'is-user:dark flex flex-col gap-2 overflow-hidden rounded-lg text-sm',
{
variants: {
variant: {
contained: [
'max-w-[80%] px-4 py-3',
'group-[.is-user]:bg-primary group-[.is-user]:text-primary-foreground',
'group-[.is-assistant]:bg-secondary group-[.is-assistant]:text-foreground',
],
flat: [
'group-[.is-user]:max-w-[80%] group-[.is-user]:bg-secondary group-[.is-user]:px-4 group-[.is-user]:py-3 group-[.is-user]:text-foreground',
'group-[.is-assistant]:text-foreground',
],
},
},
defaultVariants: {
variant: 'contained',
},
}
)
export type MessageContentProps = HTMLAttributes<HTMLDivElement> &
VariantProps<typeof messageContentVariants>
export const MessageContent = ({
children,
className,
variant,
...props
}: MessageContentProps) => (
<div
className={cn(messageContentVariants({ variant, className }))}
{...props}
>
{children}
</div>
)