File size: 12,892 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 |
import { useImperativeHandle, forwardRef, useRef, useCallback, useState, useMemo } from 'react';
import type { SessionType } from '@/lib/types/chat';
import type { LectureNoteEntry } from '@/lib/types/chat';
import type { DiscussionRequest } from '@/components/roundtable';
import type { Action, SpeechAction, DiscussionAction } from '@/lib/types/action';
import { cn } from '@/lib/utils';
import { useI18n } from '@/lib/hooks/use-i18n';
import { useStageStore } from '@/lib/store';
import { PanelRightClose, BookOpen, MessageSquare } from 'lucide-react';
import { Tabs, TabsList, TabsTrigger, TabsContent } from '@/components/ui/tabs';
import { useChatSessions } from './use-chat-sessions';
import { SessionList } from './session-list';
import { LectureNotesView } from './lecture-notes-view';
interface ChatAreaProps {
className?: string;
width?: number;
onWidthChange?: (width: number) => void;
collapsed?: boolean;
onCollapseChange?: (collapsed: boolean) => void;
activeBubbleId?: string | null;
onActiveBubble?: (messageId: string | null) => void;
onLiveSpeech?: (text: string | null, agentId?: string | null) => void;
onSpeechProgress?: (ratio: number | null) => void;
onThinking?: (state: { stage: string; agentId?: string } | null) => void;
onCueUser?: (fromAgentId?: string, prompt?: string) => void;
onLiveSessionError?: () => void;
onStopSession?: () => void;
onSegmentSealed?: (
messageId: string,
partId: string,
fullText: string,
agentId: string | null,
) => void;
/** When provided and returns true, StreamBuffer holds on the current text item after reveal. */
shouldHoldAfterReveal?: () => { holding: boolean; segmentDone: number } | boolean;
currentSceneId?: string | null;
}
export interface ChatAreaRef {
createSession: (type: SessionType, title: string) => Promise<string>;
endSession: (sessionId: string) => Promise<void>;
endActiveSession: () => Promise<void>;
softPauseActiveSession: () => Promise<void>;
resumeActiveSession: () => Promise<void>;
sendMessage: (content: string) => Promise<void>;
startDiscussion: (request: DiscussionRequest) => Promise<void>;
startLecture: (sceneId: string) => Promise<string>;
addLectureMessage: (sessionId: string, action: Action, actionIndex: number) => void;
getIsStreaming: () => boolean;
getActiveSessionType: () => string | null;
getLectureMessageId: (sessionId: string) => string | null;
pauseBuffer: (sessionId: string) => void;
resumeBuffer: (sessionId: string) => void;
pauseActiveLiveBuffer: () => boolean;
resumeActiveLiveBuffer: () => void;
switchToTab: (tab: 'lecture' | 'chat') => void;
}
const DEFAULT_WIDTH = 340;
const MIN_WIDTH = 240;
const MAX_WIDTH = 560;
export const ChatArea = forwardRef<ChatAreaRef, ChatAreaProps>(
(
{
className,
width = DEFAULT_WIDTH,
onWidthChange,
collapsed = false,
onCollapseChange,
activeBubbleId,
onActiveBubble,
onLiveSpeech,
onSpeechProgress,
onThinking,
onCueUser,
onLiveSessionError,
onStopSession,
onSegmentSealed,
shouldHoldAfterReveal,
currentSceneId,
},
ref,
) => {
const { t } = useI18n();
const scenes = useStageStore((s) => s.scenes);
const {
sessions,
activeSessionType,
expandedSessionIds,
isStreaming,
createSession,
endSession,
endActiveSession,
softPauseActiveSession,
resumeActiveSession,
sendMessage,
startDiscussion,
startLecture,
addLectureMessage,
toggleSessionExpand,
getLectureMessageId,
pauseBuffer,
resumeBuffer,
pauseActiveLiveBuffer,
resumeActiveLiveBuffer,
} = useChatSessions({
onLiveSpeech,
onSpeechProgress,
onThinking,
onCueUser,
onActiveBubble,
onLiveSessionError,
onStopSession,
onSegmentSealed,
shouldHoldAfterReveal,
});
const [activeTab, setActiveTab] = useState<'lecture' | 'chat'>('lecture');
const isDraggingRef = useRef(false);
const [isDragging, setIsDragging] = useState(false);
const bottomRef = useRef<HTMLDivElement>(null);
// Derive lecture notes directly from scenes — updates reactively as scenes stream in
// Preserves action order so spotlight/laser badges appear inline between speech texts
const lectureNotes: LectureNoteEntry[] = useMemo(
() =>
scenes
.filter((scene) => scene.actions && scene.actions.length > 0)
.map((scene) => ({
sceneId: scene.id,
sceneTitle: scene.title,
sceneOrder: scene.order,
items: scene
.actions!.filter(
(a) =>
a.type === 'speech' ||
a.type === 'spotlight' ||
a.type === 'laser' ||
a.type === 'play_video' ||
a.type === 'discussion',
)
.map((a) => {
if (a.type === 'speech') {
return {
kind: 'speech' as const,
text: (a as SpeechAction).text,
};
}
return {
kind: 'action' as const,
type: a.type,
label: a.type === 'discussion' ? (a as DiscussionAction).topic : undefined,
};
}),
completedAt: scene.updatedAt || scene.createdAt || 0,
}))
.sort((a, b) => a.sceneOrder - b.sceneOrder),
[scenes],
);
// Filter out lecture sessions for the Chat tab
const chatSessions = useMemo(() => sessions.filter((s) => s.type !== 'lecture'), [sessions]);
// Whether there's an active discussion/QA session (for amber dot on Chat tab)
const hasActiveChatSession = useMemo(
() => chatSessions.some((s) => s.status === 'active'),
[chatSessions],
);
// Wrap endSession for QA/Discussion: also notify parent for engine cleanup
const handleEndSession = useCallback(
async (sessionId: string) => {
await endSession(sessionId);
onStopSession?.();
},
[endSession, onStopSession],
);
const switchToTab = useCallback((tab: 'lecture' | 'chat') => {
setActiveTab(tab);
}, []);
useImperativeHandle(ref, () => ({
createSession,
endSession,
endActiveSession,
softPauseActiveSession,
resumeActiveSession,
sendMessage,
startDiscussion,
startLecture,
addLectureMessage,
getIsStreaming: () => isStreaming,
getActiveSessionType: () => activeSessionType,
getLectureMessageId,
pauseBuffer,
resumeBuffer,
pauseActiveLiveBuffer,
resumeActiveLiveBuffer,
switchToTab,
}));
// Drag-to-resize
const handleDragStart = useCallback(
(e: React.MouseEvent) => {
e.preventDefault();
isDraggingRef.current = true;
setIsDragging(true);
const startX = e.clientX;
const startWidth = width;
const handleMouseMove = (me: MouseEvent) => {
const delta = startX - me.clientX;
const newWidth = Math.min(MAX_WIDTH, Math.max(MIN_WIDTH, startWidth + delta));
onWidthChange?.(newWidth);
};
const handleMouseUp = () => {
isDraggingRef.current = false;
setIsDragging(false);
document.removeEventListener('mousemove', handleMouseMove);
document.removeEventListener('mouseup', handleMouseUp);
document.body.style.cursor = '';
document.body.style.userSelect = '';
};
document.body.style.cursor = 'col-resize';
document.body.style.userSelect = 'none';
document.addEventListener('mousemove', handleMouseMove);
document.addEventListener('mouseup', handleMouseUp);
},
[width, onWidthChange],
);
const displayWidth = collapsed ? 0 : width;
return (
<div
style={{
width: displayWidth,
transition: isDragging ? 'none' : 'width 0.3s ease',
}}
className={cn(
'bg-white/80 dark:bg-gray-900/80 backdrop-blur-xl border-l border-gray-100 dark:border-gray-800 shadow-[-2px_0_24px_rgba(0,0,0,0.02)] flex flex-col shrink-0 z-20 relative overflow-visible',
className,
)}
>
{/* Drag handle */}
{!collapsed && (
<div
onMouseDown={handleDragStart}
className="absolute left-0 top-0 bottom-0 w-1.5 cursor-col-resize z-50 group hover:bg-purple-400/30 dark:hover:bg-purple-600/30 active:bg-purple-500/40 dark:active:bg-purple-500/40 transition-colors"
>
<div className="absolute left-0.5 top-1/2 -translate-y-1/2 w-0.5 h-8 rounded-full bg-gray-300 dark:bg-gray-600 group-hover:bg-purple-400 dark:group-hover:bg-purple-500 transition-colors" />
</div>
)}
<div className={cn('flex flex-col w-full h-full overflow-hidden', collapsed && 'hidden')}>
<Tabs
value={activeTab}
onValueChange={(v) => setActiveTab(v as 'lecture' | 'chat')}
className="flex flex-col h-full gap-0"
>
{/* Tab header row */}
<div className="h-10 flex items-center gap-1 shrink-0 mt-3 mb-1 px-3">
<TabsList variant="line" className="h-full flex-1 w-0">
<TabsTrigger value="lecture" className="text-xs gap-1 flex-1">
<BookOpen className="w-3.5 h-3.5" />
{t('chat.tabs.lecture')}
</TabsTrigger>
<TabsTrigger value="chat" className="text-xs gap-1 flex-1 relative">
<MessageSquare className="w-3.5 h-3.5" />
{t('chat.tabs.chat')}
{/* Amber pulse dot when there's an active chat session and user is on Notes tab */}
{hasActiveChatSession && activeTab === 'lecture' && (
<span className="absolute -top-0.5 -right-0.5 flex h-2 w-2">
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-amber-400 opacity-75" />
<span className="relative inline-flex rounded-full h-2 w-2 bg-amber-500" />
</span>
)}
</TabsTrigger>
</TabsList>
{onCollapseChange && (
<button
onClick={() => onCollapseChange(true)}
className="w-7 h-7 shrink-0 rounded-lg flex items-center justify-center bg-gray-100/80 dark:bg-gray-800/80 text-gray-500 dark:text-gray-400 ring-1 ring-black/[0.04] dark:ring-white/[0.06] hover:bg-gray-200/90 dark:hover:bg-gray-700/90 hover:text-gray-700 dark:hover:text-gray-200 active:scale-90 transition-all duration-200"
>
<PanelRightClose className="w-4 h-4" />
</button>
)}
</div>
{/* Notes Tab */}
<TabsContent value="lecture" className="flex-1 overflow-hidden flex flex-col">
<LectureNotesView notes={lectureNotes} currentSceneId={currentSceneId} />
</TabsContent>
{/* Chat Tab */}
<TabsContent value="chat" className="flex-1 overflow-hidden flex flex-col">
<div className="flex-1 overflow-y-auto overflow-x-hidden p-3 space-y-2 scrollbar-hide">
{chatSessions.length === 0 ? (
<div className="h-full flex flex-col items-center justify-center text-center p-6 opacity-50">
<div className="w-12 h-12 bg-gray-100 dark:bg-gray-800 rounded-full flex items-center justify-center mb-3 text-gray-300 dark:text-gray-600">
<MessageSquare className="w-6 h-6" />
</div>
<p className="text-xs font-medium text-gray-500 dark:text-gray-400">
{t('chat.noConversations')}
</p>
<p className="text-[10px] text-gray-400 dark:text-gray-500 mt-1">
{t('chat.startConversation')}
</p>
</div>
) : (
<>
<SessionList
sessions={chatSessions}
expandedSessionIds={expandedSessionIds}
isStreaming={isStreaming}
activeBubbleId={activeBubbleId}
onToggleExpand={toggleSessionExpand}
onEndSession={handleEndSession}
/>
<div ref={bottomRef} />
</>
)}
</div>
</TabsContent>
</Tabs>
</div>
</div>
);
},
);
ChatArea.displayName = 'ChatArea';
|