File size: 13,635 Bytes
f56a29b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 |
import { useEffect, useRef, useCallback, memo } from 'react';
import { motion, AnimatePresence } from 'motion/react';
import type { ChatSession, ChatMessageMetadata } from '@/lib/types/chat';
import type { UIMessage } from 'ai';
import { cn } from '@/lib/utils';
import { useI18n } from '@/lib/hooks/use-i18n';
import { AvatarDisplay } from '@/components/ui/avatar-display';
import { CircleStop } from 'lucide-react';
import { InlineActionTag } from './inline-action-tag';
import { useUserProfileStore } from '@/lib/store/user-profile';
/** Extended message part type covering standard + custom action parts */
interface MessagePart {
type: string;
text?: string;
_partId?: string;
actionName?: string;
state?: string;
}
interface ChatSessionProps {
readonly session: ChatSession;
readonly isActive: boolean;
readonly isStreaming?: boolean;
readonly activeBubbleId?: string | null;
readonly onEndSession?: (sessionId: string) => void;
}
const AVATARS = {
teacher: '/avatars/teacher.png',
user: '/avatars/user.png',
};
/**
* MessageBubble — renders one message as a single chat bubble.
*
* Text is already paced by the StreamBuffer (30ms / 1 char) before it reaches
* React state. No UI-layer animation is needed — we render parts directly.
* Action badges only appear once the buffer's tick loop reaches them (after
* all preceding text is fully revealed).
*/
const MessageBubble = memo(function MessageBubble({
message,
isUser,
isTeacher,
isStreaming,
isLastMessage,
isActive,
}: {
message: UIMessage<ChatMessageMetadata>;
isUser: boolean;
isTeacher: boolean;
isStreaming: boolean;
isLastMessage: boolean;
isActive: boolean;
}) {
const parts: MessagePart[] = (message.parts || []) as MessagePart[];
const isLive = !!(isStreaming && isLastMessage);
// ── Determine renderable content ──
const hasContent = parts.some(
(p: MessagePart) => (p.type === 'text' && p.text) || p.type?.startsWith('action-'),
);
// Loading dots (between agent_start and first text_delta)
if (!hasContent && isActive && message.role === 'assistant') {
return (
<div className="flex gap-1.5 items-center py-1.5 px-1">
<span
className={cn(
'w-1.5 h-1.5 rounded-full animate-pulse',
isTeacher
? 'bg-purple-400/70 dark:bg-purple-500/70'
: 'bg-indigo-400/70 dark:bg-indigo-500/70',
)}
/>
<span
className={cn(
'w-1.5 h-1.5 rounded-full animate-pulse',
isTeacher
? 'bg-purple-400/70 dark:bg-purple-500/70'
: 'bg-indigo-400/70 dark:bg-indigo-500/70',
)}
style={{ animationDelay: '200ms' }}
/>
<span
className={cn(
'w-1.5 h-1.5 rounded-full animate-pulse',
isTeacher
? 'bg-purple-400/70 dark:bg-purple-500/70'
: 'bg-indigo-400/70 dark:bg-indigo-500/70',
)}
style={{ animationDelay: '400ms' }}
/>
</div>
);
}
if (!hasContent) return null;
const lastTextIdx = parts.reduce(
(acc: number, p: MessagePart, i: number) => (p.type === 'text' && p.text ? i : acc),
-1,
);
return (
<div
className={cn(
'inline-block px-2.5 py-1.5 rounded-xl text-[12px] leading-relaxed max-w-full text-left transition-shadow duration-300',
isUser
? 'bg-gradient-to-br from-purple-600 to-purple-700 dark:from-purple-500 dark:to-purple-600 text-white rounded-tr-sm shadow-sm shadow-purple-300/30 dark:shadow-purple-900/50 ring-1 ring-purple-500/20'
: isTeacher
? 'bg-white dark:bg-gray-800 text-gray-700 dark:text-gray-200 border border-gray-100 dark:border-gray-700 rounded-tl-sm shadow-sm'
: 'bg-indigo-50 dark:bg-indigo-900/20 text-indigo-900 dark:text-indigo-200 border border-indigo-100/50 dark:border-indigo-800/50 rounded-tl-sm',
)}
>
<span className="break-words">
{parts.map((part: MessagePart, i: number) => {
if (part.type === 'text' || part.type === 'step-start') {
const text = part.type === 'text' ? part.text : '';
if (!text) return null;
const isLast = i === lastTextIdx;
return (
<span key={`${message.id}-${i}`}>
{text}
{isLive && isLast && (
<span className="inline-block w-1.5 h-1.5 rounded-full bg-current opacity-50 animate-pulse ml-1 align-middle" />
)}
{message.metadata?.interrupted && isLast && !isLive && (
<span className="inline-block w-1.5 h-1.5 rounded-full bg-red-500 ml-1 align-middle" />
)}
</span>
);
}
if (part.type?.startsWith('action-')) {
return (
<InlineActionTag
key={`${message.id}-action-${i}`}
actionName={part.actionName || part.type.replace('action-', '')}
state={part.state || 'result'}
/>
);
}
return null;
})}
</span>
</div>
);
});
export function ChatSessionComponent({
session,
isActive,
isStreaming,
activeBubbleId,
onEndSession,
}: ChatSessionProps) {
const { t } = useI18n();
const userProfileAvatar = useUserProfileStore((s) => s.avatar);
const scrollContainerRef = useRef<HTMLDivElement>(null);
const bottomRef = useRef<HTMLDivElement>(null);
const activeBubbleRef = useRef<HTMLDivElement>(null);
const isDiscussion = session.type === 'discussion';
const isQA = session.type === 'qa';
const canEnd = (isDiscussion || isQA) && session.status === 'active';
const isEnded = session.status === 'completed' && (isDiscussion || isQA);
// Track whether user is at the bottom of the scroll container.
// When user scrolls up to read history, auto-scroll is suppressed.
const isAtBottomRef = useRef(true);
const handleScroll = useCallback(() => {
const el = scrollContainerRef.current;
if (!el) return;
isAtBottomRef.current = el.scrollHeight - el.scrollTop - el.clientHeight < 40;
}, []);
// Auto-scroll: smooth scroll when a NEW message arrives — always (new agent bubble should be visible)
const msgCount = session.messages.length;
useEffect(() => {
if (bottomRef.current) {
bottomRef.current.scrollIntoView({ behavior: 'smooth', block: 'end' });
isAtBottomRef.current = true;
}
}, [msgCount]);
// Auto-scroll: rAF-throttled instant scroll as text grows — only when user is at bottom
const scrollRaf = useRef(0);
useEffect(() => {
if (!isAtBottomRef.current) return;
cancelAnimationFrame(scrollRaf.current);
scrollRaf.current = requestAnimationFrame(() => {
const el = scrollContainerRef.current;
if (el) el.scrollTop = el.scrollHeight;
});
}, [session.messages]);
// Scroll to active bubble when it changes
useEffect(() => {
if (activeBubbleId && activeBubbleRef.current) {
activeBubbleRef.current.scrollIntoView({
behavior: 'smooth',
block: 'nearest',
});
isAtBottomRef.current = true;
}
}, [activeBubbleId]);
if (session.messages.length === 0 && !isActive) {
return (
<div className="h-20 flex items-center justify-center text-center px-2">
<p className="text-[10px] text-gray-400 dark:text-gray-500">{t('chat.noMessages')}</p>
</div>
);
}
// Button text based on session type
const endButtonText = isDiscussion ? t('chat.stopDiscussion') : t('chat.endQA');
return (
<div className="flex flex-col">
{/* Messages */}
<div
ref={scrollContainerRef}
onScroll={handleScroll}
className="space-y-1 overflow-y-auto scrollbar-hide"
>
{session.messages.map((message, msgIdx) => {
const isUser = message.metadata?.originalRole === 'user';
const isTeacher = message.metadata?.originalRole === 'teacher';
const avatar = isUser
? userProfileAvatar || AVATARS.user
: message.metadata?.senderAvatar || AVATARS.teacher;
const isActiveBubble = activeBubbleId === message.id;
const isLastMessage = msgIdx === session.messages.length - 1;
return (
<motion.div
key={message.id}
ref={isActiveBubble ? activeBubbleRef : undefined}
initial={{ opacity: 0, y: 4 }}
animate={
isActiveBubble
? {
opacity: 1,
y: 0,
boxShadow: [
'0 0 0 0 rgba(124, 58, 237, 0)',
'0 0 20px 0 rgba(124, 58, 237, 0.15)',
'0 0 8px 0 rgba(124, 58, 237, 0.08)',
],
}
: {
opacity: 1,
y: 0,
boxShadow: '0 0 0 0 rgba(124, 58, 237, 0)',
}
}
transition={
isActiveBubble
? {
boxShadow: {
duration: 2.5,
repeat: Infinity,
ease: 'easeInOut',
},
default: { duration: 0.3 },
}
: { duration: 0.3 }
}
className={cn(
'flex gap-2 px-1.5 py-1 rounded-lg border-l-[3px] border-l-transparent transition-[background-color,border-color] duration-300',
isUser && 'flex-row-reverse',
isActiveBubble &&
'border-l-violet-500 dark:border-l-violet-400 bg-violet-50/50 dark:bg-violet-900/20',
)}
>
{/* Mini Avatar */}
<div className="w-5 h-5 rounded-full overflow-hidden bg-gray-100 dark:bg-gray-800 shrink-0 mt-0.5 ring-1 ring-gray-200/50 dark:ring-gray-700/50">
<AvatarDisplay src={avatar} alt="avatar" className="text-xs" />
</div>
{/* Content */}
<div className={cn('flex-1 min-w-0', isUser && 'text-right')}>
<span
className={cn(
'text-[9px] font-bold uppercase tracking-wider block mb-0.5',
isUser
? 'text-purple-500 dark:text-purple-400'
: isTeacher
? 'text-purple-400 dark:text-purple-300'
: 'text-indigo-400 dark:text-indigo-300',
)}
>
{(() => {
const agentId = message.metadata?.agentId;
if (agentId) {
const i18nName = t(`settings.agentNames.${agentId}`);
if (i18nName !== `settings.agentNames.${agentId}`) return i18nName;
}
return message.metadata?.senderName || t('chat.unknown');
})()}
</span>
<MessageBubble
message={message}
isUser={isUser}
isTeacher={isTeacher}
isStreaming={!!isStreaming}
isLastMessage={isLastMessage}
isActive={isActive}
/>
</div>
</motion.div>
);
})}
{/* Session ended indicator */}
<AnimatePresence>
{isEnded && (
<motion.div
initial={{ opacity: 0, scaleX: 0 }}
animate={{ opacity: 1, scaleX: 1 }}
exit={{ opacity: 0, scaleX: 0 }}
transition={{ duration: 0.4, ease: [0.16, 1, 0.3, 1] }}
className="mx-3 mt-2 mb-1 flex items-center gap-2"
>
<div className="flex-1 h-px bg-gradient-to-r from-transparent via-gray-200 dark:via-gray-700 to-transparent" />
<span className="flex items-center gap-1 text-[9px] text-gray-400 dark:text-gray-500 font-medium">
<CircleStop className="w-2.5 h-2.5" />
{t('chat.ended')}
</span>
<div className="flex-1 h-px bg-gradient-to-r from-transparent via-gray-200 dark:via-gray-700 to-transparent" />
</motion.div>
)}
</AnimatePresence>
<div ref={bottomRef} />
</div>
{/* End Session Button (for Q&A and Discussion) */}
<AnimatePresence>
{canEnd && onEndSession && (
<motion.button
initial={{ opacity: 0, y: 5 }}
animate={{ opacity: 1, y: 0 }}
exit={{ opacity: 0, y: 5 }}
whileHover={{ scale: 1.02 }}
onClick={() => onEndSession(session.id)}
className="mt-2 mx-2 bg-red-50/80 dark:bg-red-900/20 backdrop-blur-md text-red-600 dark:text-red-400 border border-red-200/50 dark:border-red-800/50 px-3 py-1.5 rounded-full text-[11px] font-semibold flex items-center justify-center gap-1.5 transition-all shadow-sm hover:shadow-md"
>
<span className="relative flex h-2 w-2">
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-red-400 dark:bg-red-500 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-red-500 dark:bg-red-400"></span>
</span>
{endButtonText}
</motion.button>
)}
</AnimatePresence>
</div>
);
}
|