File size: 49,163 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 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 |
import { useState, useEffect, useRef, useMemo, useCallback } from 'react';
import { useStageStore } from '@/lib/store';
import { PENDING_SCENE_ID } from '@/lib/store/stage';
import { useCanvasStore } from '@/lib/store/canvas';
import { useSettingsStore } from '@/lib/store/settings';
import { useI18n } from '@/lib/hooks/use-i18n';
import { SceneSidebar } from './stage/scene-sidebar';
import { Header } from './header';
import { CanvasArea } from '@/components/canvas/canvas-area';
import { Roundtable } from '@/components/roundtable';
import { PlaybackEngine, computePlaybackView } from '@/lib/playback';
import type { EngineMode, TriggerEvent, Effect } from '@/lib/playback';
import { ActionEngine } from '@/lib/action/engine';
import { createAudioPlayer } from '@/lib/utils/audio-player';
import { useDiscussionTTS } from '@/lib/hooks/use-discussion-tts';
import { useWidgetIframeStore } from '@/lib/store/widget-iframe';
import type { AudioIndicatorState } from '@/components/roundtable/audio-indicator';
import type { Action, DiscussionAction, SpeechAction } from '@/lib/types/action';
import { cn } from '@/lib/utils';
// Playback state persistence removed β refresh always starts from the beginning
import { ChatArea, type ChatAreaRef } from '@/components/chat/chat-area';
import { agentsToParticipants, useAgentRegistry } from '@/lib/orchestration/registry/store';
import type { AgentConfig } from '@/lib/orchestration/registry/types';
import {
AlertDialog,
AlertDialogContent,
AlertDialogTitle,
AlertDialogFooter,
AlertDialogAction,
AlertDialogCancel,
} from '@/components/ui/alert-dialog';
import { AlertTriangle } from 'lucide-react';
import { VisuallyHidden } from 'radix-ui';
/**
* Stage Component
*
* The main container for the classroom/course.
* Combines sidebar (scene navigation) and content area (scene viewer).
* Supports two modes: autonomous and playback.
*/
export function Stage({
onRetryOutline,
}: {
onRetryOutline?: (outlineId: string) => Promise<void>;
}) {
const { t } = useI18n();
const {
mode,
getCurrentScene,
scenes,
currentSceneId,
setCurrentSceneId,
generatingOutlines,
outlines,
} = useStageStore();
const failedOutlines = useStageStore.use.failedOutlines();
const currentScene = getCurrentScene();
// Layout state from settings store (persisted via localStorage)
const sidebarCollapsed = useSettingsStore((s) => s.sidebarCollapsed);
const setSidebarCollapsed = useSettingsStore((s) => s.setSidebarCollapsed);
const chatAreaWidth = useSettingsStore((s) => s.chatAreaWidth);
const setChatAreaWidth = useSettingsStore((s) => s.setChatAreaWidth);
const chatAreaCollapsed = useSettingsStore((s) => s.chatAreaCollapsed);
const setChatAreaCollapsed = useSettingsStore((s) => s.setChatAreaCollapsed);
const setTTSMuted = useSettingsStore((s) => s.setTTSMuted);
const setTTSVolume = useSettingsStore((s) => s.setTTSVolume);
// PlaybackEngine state
const [engineMode, setEngineMode] = useState<EngineMode>('idle');
const [playbackCompleted, setPlaybackCompleted] = useState(false); // Distinguishes "never played" idle from "finished" idle
const [lectureSpeech, setLectureSpeech] = useState<string | null>(null); // From PlaybackEngine (lecture)
const [liveSpeech, setLiveSpeech] = useState<string | null>(null); // From buffer (discussion/QA)
const [speechProgress, setSpeechProgress] = useState<number | null>(null); // StreamBuffer reveal progress (0β1)
const [discussionTrigger, setDiscussionTrigger] = useState<TriggerEvent | null>(null);
// Speaking agent tracking (Issue 2)
const [speakingAgentId, setSpeakingAgentId] = useState<string | null>(null);
// Thinking state (Issue 5)
const [thinkingState, setThinkingState] = useState<{
stage: string;
agentId?: string;
} | null>(null);
// Cue user state (Issue 7)
const [isCueUser, setIsCueUser] = useState(false);
// End flash state (Issue 3)
const [showEndFlash, setShowEndFlash] = useState(false);
const [endFlashSessionType, setEndFlashSessionType] = useState<'qa' | 'discussion'>('discussion');
// Streaming state for stop button (Issue 1)
const [chatIsStreaming, setChatIsStreaming] = useState(false);
const [chatSessionType, setChatSessionType] = useState<string | null>(null);
// Topic pending state: session is soft-paused, bubble stays visible, waiting for user input
const [isTopicPending, setIsTopicPending] = useState(false);
// Active bubble ID for playback highlight in chat area (Issue 8)
const [activeBubbleId, setActiveBubbleId] = useState<string | null>(null);
// Scene switch confirmation dialog state
const [pendingSceneId, setPendingSceneId] = useState<string | null>(null);
const [isPresenting, setIsPresenting] = useState(false);
const [controlsVisible, setControlsVisible] = useState(true);
const [isPresentationInteractionActive, setIsPresentationInteractionActive] = useState(false);
// Whiteboard state (from canvas store so AI tools can open it)
const whiteboardOpen = useCanvasStore.use.whiteboardOpen();
const setWhiteboardOpen = useCanvasStore.use.setWhiteboardOpen();
// Selected agents from settings store (Zustand)
const selectedAgentIds = useSettingsStore((s) => s.selectedAgentIds);
const ttsMuted = useSettingsStore((s) => s.ttsMuted);
const ttsEnabled = useSettingsStore((s) => s.ttsEnabled);
// Generate participants from selected agents
const participants = useMemo(
() => agentsToParticipants(selectedAgentIds, t),
[selectedAgentIds, t],
);
// Resolved AgentConfig array for hooks that need full agent objects
// Subscribe to the agents record so voiceConfig changes trigger re-resolution
const agentsRecord = useAgentRegistry((s) => s.agents);
const selectedAgents = useMemo(
() => selectedAgentIds.map((id) => agentsRecord[id]).filter((a): a is AgentConfig => a != null),
[agentsRecord, selectedAgentIds],
);
// Discussion TTS: audio indicator state
const [audioIndicatorState, setAudioIndicatorState] = useState<AudioIndicatorState>('idle');
const [audioAgentId, setAudioAgentId] = useState<string | null>(null);
const discussionTTS = useDiscussionTTS({
enabled: ttsEnabled && !ttsMuted,
agents: selectedAgents,
onAudioStateChange: (agentId, state) => {
setAudioAgentId(agentId);
setAudioIndicatorState(state);
},
});
// Pick a student agent for discussion trigger (prioritize student > non-teacher > fallback)
const pickStudentAgent = useCallback((): string => {
const registry = useAgentRegistry.getState();
const agents = selectedAgentIds
.map((id) => registry.getAgent(id))
.filter((a): a is AgentConfig => a != null);
const students = agents.filter((a) => a.role === 'student');
if (students.length > 0) {
return students[Math.floor(Math.random() * students.length)].id;
}
const nonTeachers = agents.filter((a) => a.role !== 'teacher');
if (nonTeachers.length > 0) {
return nonTeachers[Math.floor(Math.random() * nonTeachers.length)].id;
}
return agents[0]?.id || 'default-1';
}, [selectedAgentIds]);
const engineRef = useRef<PlaybackEngine | null>(null);
const audioPlayerRef = useRef(createAudioPlayer());
const chatAreaRef = useRef<ChatAreaRef>(null);
const lectureSessionIdRef = useRef<string | null>(null);
const lectureActionCounterRef = useRef(0);
const discussionAbortRef = useRef<AbortController | null>(null);
const presentationIdleTimerRef = useRef<ReturnType<typeof setTimeout> | null>(null);
const stageRef = useRef<HTMLDivElement>(null);
// Guard to prevent double flash when manual stop triggers onDiscussionEnd
const manualStopRef = useRef(false);
// Monotonic counter incremented on each scene switch β used to discard stale SSE callbacks
const sceneEpochRef = useRef(0);
// When true, the next engine init will auto-start playback (for auto-play scene advance)
const autoStartRef = useRef(false);
// Discussion buffer-level pause state (distinct from soft-pause which aborts SSE)
const [isDiscussionPaused, setIsDiscussionPaused] = useState(false);
/**
* Resume a soft-paused topic: re-call /chat with existing session messages.
* The director picks the next agent to continue.
*/
const doResumeTopic = useCallback(async () => {
// Clear old bubble immediately β no lingering on interrupted text
setIsTopicPending(false);
setLiveSpeech(null);
setSpeakingAgentId(null);
setThinkingState({ stage: 'director' });
setChatIsStreaming(true);
// Transition engine back to live β onInputActivate paused it when soft-pausing,
// so we must explicitly resume to keep engine mode in sync with the chat loop.
engineRef.current?.resume();
// Fire new chat round β SSE events will drive thinking β agent_start β speech
await chatAreaRef.current?.resumeActiveSession();
}, []);
/** Reset all live/discussion state (shared by doSessionCleanup & onDiscussionEnd) */
const resetLiveState = useCallback(() => {
setLiveSpeech(null);
setSpeakingAgentId(null);
setSpeechProgress(null);
setThinkingState(null);
setIsCueUser(false);
setIsTopicPending(false);
setChatIsStreaming(false);
setChatSessionType(null);
setIsDiscussionPaused(false);
}, []);
/** Full scene reset (scene switch) β resetLiveState + lecture/visual state */
const resetSceneState = useCallback(() => {
resetLiveState();
setPlaybackCompleted(false);
setLectureSpeech(null);
setSpeechProgress(null);
setShowEndFlash(false);
setActiveBubbleId(null);
setDiscussionTrigger(null);
}, [resetLiveState]);
/** Request failure should exit live discussion UI without hard-closing the session. */
const handleLiveSessionError = useCallback(() => {
engineRef.current?.handleDiscussionError();
resetLiveState();
setActiveBubbleId(null);
}, [resetLiveState]);
/**
* Unified session cleanup β called by both roundtable stop button and chat area end button.
* Handles: engine transition, flash, roundtable state clearing.
*/
const doSessionCleanup = useCallback(() => {
const activeType = chatSessionType;
// Engine cleanup β guard to avoid double flash from onDiscussionEnd
manualStopRef.current = true;
engineRef.current?.handleEndDiscussion();
manualStopRef.current = false;
// Show end flash with correct session type
if (activeType === 'qa' || activeType === 'discussion') {
setEndFlashSessionType(activeType);
setShowEndFlash(true);
setTimeout(() => setShowEndFlash(false), 1800);
}
// Stop any in-flight discussion TTS audio
discussionTTS.cleanup();
resetLiveState();
}, [chatSessionType, resetLiveState, discussionTTS]);
// Shared stop-discussion handler (used by both Roundtable and Canvas toolbar)
const handleStopDiscussion = useCallback(async () => {
await chatAreaRef.current?.endActiveSession();
doSessionCleanup();
}, [doSessionCleanup]);
const clearPresentationIdleTimer = useCallback(() => {
if (presentationIdleTimerRef.current) {
clearTimeout(presentationIdleTimerRef.current);
presentationIdleTimerRef.current = null;
}
}, []);
const resetPresentationIdleTimer = useCallback(() => {
setControlsVisible(true);
clearPresentationIdleTimer();
if (isPresenting && !isPresentationInteractionActive) {
presentationIdleTimerRef.current = setTimeout(() => {
setControlsVisible(false);
}, 3000);
}
}, [clearPresentationIdleTimer, isPresenting, isPresentationInteractionActive]);
const togglePresentation = useCallback(async () => {
const stageElement = stageRef.current;
if (!stageElement) return;
try {
if (document.fullscreenElement === stageElement) {
// Unlock Escape key before exiting fullscreen
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(navigator as any).keyboard?.unlock?.();
await document.exitFullscreen();
return;
}
setControlsVisible(true);
await stageElement.requestFullscreen();
// Lock Escape key so it doesn't auto-exit fullscreen (#255)
// Escape is handled manually in our keydown handler instead
// eslint-disable-next-line @typescript-eslint/no-explicit-any
await (navigator as any).keyboard?.lock?.(['Escape']).catch(() => {});
setSidebarCollapsed(true);
setChatAreaCollapsed(true);
} catch {
// Firefox may deny fullscreen from certain keyboard events (e.g. F11)
console.warn('[Presentation] Fullscreen request denied β browser policy');
}
}, [setChatAreaCollapsed, setSidebarCollapsed]);
useEffect(() => {
const onFullscreenChange = () => {
const active = document.fullscreenElement === stageRef.current;
setIsPresenting(active);
if (!active) {
// Ensure keyboard unlock on any fullscreen exit
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(navigator as any).keyboard?.unlock?.();
setControlsVisible(true);
clearPresentationIdleTimer();
}
};
document.addEventListener('fullscreenchange', onFullscreenChange);
return () => document.removeEventListener('fullscreenchange', onFullscreenChange);
}, [clearPresentationIdleTimer]);
useEffect(() => {
if (!isPresenting) {
setControlsVisible(true);
clearPresentationIdleTimer();
return;
}
const handleActivity = () => {
resetPresentationIdleTimer();
};
window.addEventListener('mousemove', handleActivity);
window.addEventListener('mousedown', handleActivity);
window.addEventListener('touchstart', handleActivity);
if (isPresentationInteractionActive) {
setControlsVisible(true);
clearPresentationIdleTimer();
} else {
resetPresentationIdleTimer();
}
return () => {
window.removeEventListener('mousemove', handleActivity);
window.removeEventListener('mousedown', handleActivity);
window.removeEventListener('touchstart', handleActivity);
clearPresentationIdleTimer();
};
}, [
clearPresentationIdleTimer,
isPresenting,
isPresentationInteractionActive,
resetPresentationIdleTimer,
]);
// Initialize playback engine when scene changes
useEffect(() => {
// Bump epoch so any stale SSE callbacks from the previous scene are discarded
sceneEpochRef.current++;
// End any active QA/discussion session β this synchronously aborts the SSE
// stream inside use-chat-sessions (abortControllerRef.abort()), preventing
// stale onLiveSpeech callbacks from leaking into the new scene.
chatAreaRef.current?.endActiveSession();
// Also abort the engine-level discussion controller
if (discussionAbortRef.current) {
discussionAbortRef.current.abort();
discussionAbortRef.current = null;
}
// Stop any in-flight discussion TTS audio on scene switch
discussionTTS.cleanup();
// Reset all roundtable/live state so scenes are fully isolated
resetSceneState();
if (!currentScene || !currentScene.actions || currentScene.actions.length === 0) {
engineRef.current = null;
setEngineMode('idle');
return;
}
// Stop previous engine
if (engineRef.current) {
engineRef.current.stop();
}
// Get widget iframe messaging callback for interactive scenes (keyed by sceneId)
const widgetSendMessage = useWidgetIframeStore.getState().getSendMessage(currentScene.id);
// Create ActionEngine for playback (with audioPlayer for TTS and widget messaging)
const actionEngine = new ActionEngine(useStageStore, audioPlayerRef.current, widgetSendMessage);
// Create new PlaybackEngine
const engine = new PlaybackEngine([currentScene], actionEngine, audioPlayerRef.current, {
onModeChange: (mode) => {
setEngineMode(mode);
},
onSceneChange: (_sceneId) => {
// Scene change handled by engine
},
onSpeechStart: (text) => {
setLectureSpeech(text);
// Add to lecture session with incrementing index for dedup
// Chat area pacing is handled by the StreamBuffer (onTextReveal)
if (lectureSessionIdRef.current) {
const idx = lectureActionCounterRef.current++;
const speechId = `speech-${Date.now()}`;
chatAreaRef.current?.addLectureMessage(
lectureSessionIdRef.current,
{ id: speechId, type: 'speech', text } as Action,
idx,
);
// Track active bubble for highlight (Issue 8)
const msgId = chatAreaRef.current?.getLectureMessageId(lectureSessionIdRef.current!);
if (msgId) setActiveBubbleId(msgId);
}
},
onSpeechEnd: () => {
// Don't clear lectureSpeech β let it persist until the next
// onSpeechStart replaces it or the scene transitions.
// Clearing here causes fallback to idleText (first sentence).
setActiveBubbleId(null);
},
onEffectFire: (effect: Effect) => {
// Add to lecture session with incrementing index
if (
lectureSessionIdRef.current &&
(effect.kind === 'spotlight' || effect.kind === 'laser')
) {
const idx = lectureActionCounterRef.current++;
chatAreaRef.current?.addLectureMessage(
lectureSessionIdRef.current,
{
id: `${effect.kind}-${Date.now()}`,
type: effect.kind,
elementId: effect.targetId,
} as Action,
idx,
);
}
},
onProactiveShow: (trigger) => {
if (!trigger.agentId) {
// Mutate in-place so engine.currentTrigger also gets the agentId
// (confirmDiscussion reads agentId from the same object reference)
trigger.agentId = pickStudentAgent();
}
setDiscussionTrigger(trigger);
},
onProactiveHide: () => {
setDiscussionTrigger(null);
},
onDiscussionConfirmed: (topic, prompt, agentId) => {
// Start SSE discussion via ChatArea
handleDiscussionSSE(topic, prompt, agentId);
},
onDiscussionEnd: () => {
// Abort any active SSE
if (discussionAbortRef.current) {
discussionAbortRef.current.abort();
discussionAbortRef.current = null;
}
setDiscussionTrigger(null);
// Stop any in-flight discussion TTS audio
discussionTTS.cleanup();
// Clear roundtable state (idempotent β may already be cleared by doSessionCleanup)
resetLiveState();
// Only show flash for engine-initiated ends (not manual stop β that's handled by doSessionCleanup)
if (!manualStopRef.current) {
setEndFlashSessionType('discussion');
setShowEndFlash(true);
setTimeout(() => setShowEndFlash(false), 1800);
}
// If all actions are exhausted (discussion was the last action), mark
// playback as completed so the bubble shows reset instead of play.
if (engineRef.current?.isExhausted()) {
setPlaybackCompleted(true);
}
},
onUserInterrupt: (text) => {
// User interrupted β start a discussion via chat
chatAreaRef.current?.sendMessage(text);
},
isAgentSelected: (agentId) => {
const ids = useSettingsStore.getState().selectedAgentIds;
return ids.includes(agentId);
},
getPlaybackSpeed: () => useSettingsStore.getState().playbackSpeed || 1,
onComplete: () => {
// lectureSpeech intentionally NOT cleared β last sentence stays visible
// until scene transition (auto-play) or user restarts. Scene change
// effect handles the reset.
setPlaybackCompleted(true);
// End lecture session on playback complete
if (lectureSessionIdRef.current) {
chatAreaRef.current?.endSession(lectureSessionIdRef.current);
lectureSessionIdRef.current = null;
}
// Auto-play: advance to next scene after a short pause
const { autoPlayLecture } = useSettingsStore.getState();
if (autoPlayLecture) {
setTimeout(() => {
const stageState = useStageStore.getState();
if (!useSettingsStore.getState().autoPlayLecture) return;
const allScenes = stageState.scenes;
const curId = stageState.currentSceneId;
const idx = allScenes.findIndex((s) => s.id === curId);
if (idx >= 0 && idx < allScenes.length - 1) {
const currentScene = allScenes[idx];
if (
currentScene.type === 'quiz' ||
currentScene.type === 'interactive' ||
currentScene.type === 'pbl'
) {
return;
}
autoStartRef.current = true;
stageState.setCurrentSceneId(allScenes[idx + 1].id);
} else if (idx === allScenes.length - 1 && stageState.generatingOutlines.length > 0) {
// Last scene exhausted but next is still generating β go to pending page
const currentScene = allScenes[idx];
if (
currentScene.type === 'quiz' ||
currentScene.type === 'interactive' ||
currentScene.type === 'pbl'
) {
return;
}
autoStartRef.current = true;
stageState.setCurrentSceneId(PENDING_SCENE_ID);
}
}, 1500);
}
},
});
engineRef.current = engine;
// Auto-start if triggered by auto-play scene advance
if (autoStartRef.current) {
autoStartRef.current = false;
(async () => {
if (currentScene && chatAreaRef.current) {
const sessionId = await chatAreaRef.current.startLecture(currentScene.id);
lectureSessionIdRef.current = sessionId;
lectureActionCounterRef.current = 0;
}
engine.start();
})();
} else {
// Load saved playback state and restore position (but never auto-play).
}
// eslint-disable-next-line react-hooks/exhaustive-deps -- Only re-run when scene changes, functions are stable refs
}, [currentScene]);
// Cleanup on unmount
useEffect(() => {
const audioPlayer = audioPlayerRef.current;
const chatArea = chatAreaRef.current;
return () => {
if (engineRef.current) {
engineRef.current.stop();
}
audioPlayer.destroy();
if (discussionAbortRef.current) {
discussionAbortRef.current.abort();
}
discussionTTS.cleanup();
chatArea?.endActiveSession();
clearPresentationIdleTimer();
};
// eslint-disable-next-line react-hooks/exhaustive-deps -- unmount-only cleanup, clearPresentationIdleTimer is stable
}, []);
// Sync mute state from settings store to audioPlayer
useEffect(() => {
audioPlayerRef.current.setMuted(ttsMuted);
}, [ttsMuted]);
// Sync volume from settings store to audioPlayer
const ttsVolume = useSettingsStore((s) => s.ttsVolume);
useEffect(() => {
if (!ttsMuted) {
audioPlayerRef.current.setVolume(ttsVolume);
}
}, [ttsVolume, ttsMuted]);
// Sync playback speed to audio player (for live-updating current audio)
const playbackSpeed = useSettingsStore((s) => s.playbackSpeed);
useEffect(() => {
audioPlayerRef.current.setPlaybackRate(playbackSpeed);
}, [playbackSpeed]);
/**
* Handle discussion SSE β POST /api/chat and push events to engine
*/
const handleDiscussionSSE = useCallback(
async (topic: string, prompt?: string, agentId?: string) => {
// Start discussion display in ChatArea (lecture speech is preserved independently)
chatAreaRef.current?.startDiscussion({
topic,
prompt,
agentId: agentId || 'default-1',
});
// Auto-switch to chat tab when discussion starts
chatAreaRef.current?.switchToTab('chat');
// Immediately mark streaming for synchronized stop button
setChatIsStreaming(true);
setChatSessionType('discussion');
// Optimistic thinking: show thinking dots immediately (same as onMessageSend)
setThinkingState({ stage: 'director' });
},
[],
);
// First speech text for idle display (extracted here for playbackView)
const firstSpeechText = useMemo(
() => currentScene?.actions?.find((a): a is SpeechAction => a.type === 'speech')?.text ?? null,
[currentScene],
);
// Whether the speaking agent is a student (for bubble role derivation)
const speakingStudentFlag = useMemo(() => {
if (!speakingAgentId) return false;
const agent = useAgentRegistry.getState().getAgent(speakingAgentId);
return agent?.role !== 'teacher';
}, [speakingAgentId]);
// Centralised derived playback view
const playbackView = useMemo(
() =>
computePlaybackView({
engineMode,
lectureSpeech,
liveSpeech,
speakingAgentId,
thinkingState,
isCueUser,
isTopicPending,
chatIsStreaming,
discussionTrigger,
playbackCompleted,
idleText: firstSpeechText,
speakingStudent: speakingStudentFlag,
sessionType: chatSessionType,
}),
[
engineMode,
lectureSpeech,
liveSpeech,
speakingAgentId,
thinkingState,
isCueUser,
isTopicPending,
chatIsStreaming,
discussionTrigger,
playbackCompleted,
firstSpeechText,
speakingStudentFlag,
chatSessionType,
],
);
const isTopicActive = playbackView.isTopicActive;
/**
* Gated scene switch β if a topic is active, show AlertDialog before switching.
* Returns true if the switch was immediate, false if gated (dialog shown).
*/
const gatedSceneSwitch = useCallback(
(targetSceneId: string): boolean => {
if (targetSceneId === currentSceneId) return false;
if (isTopicActive) {
setPendingSceneId(targetSceneId);
return false;
}
setCurrentSceneId(targetSceneId);
return true;
},
[currentSceneId, isTopicActive, setCurrentSceneId],
);
/** User confirmed scene switch via AlertDialog */
const confirmSceneSwitch = useCallback(() => {
if (!pendingSceneId) return;
chatAreaRef.current?.endActiveSession();
doSessionCleanup();
setCurrentSceneId(pendingSceneId);
setPendingSceneId(null);
}, [pendingSceneId, setCurrentSceneId, doSessionCleanup]);
/** User cancelled scene switch via AlertDialog */
const cancelSceneSwitch = useCallback(() => {
setPendingSceneId(null);
}, []);
// play/pause toggle
const handlePlayPause = useCallback(async () => {
const engine = engineRef.current;
if (!engine) return;
const mode = engine.getMode();
if (mode === 'playing' || mode === 'live') {
engine.pause();
// Pause lecture buffer so text stops immediately
if (lectureSessionIdRef.current) {
chatAreaRef.current?.pauseBuffer(lectureSessionIdRef.current);
}
} else if (mode === 'paused') {
engine.resume();
// Resume lecture buffer
if (lectureSessionIdRef.current) {
chatAreaRef.current?.resumeBuffer(lectureSessionIdRef.current);
}
} else {
const wasCompleted = playbackCompleted;
setPlaybackCompleted(false);
// Starting playback - create/reuse lecture session
if (currentScene && chatAreaRef.current) {
const sessionId = await chatAreaRef.current.startLecture(currentScene.id);
lectureSessionIdRef.current = sessionId;
}
if (wasCompleted) {
// Restart from beginning (user clicked restart after completion)
lectureActionCounterRef.current = 0;
engine.start();
} else {
// Continue from current position (e.g. after discussion end)
engine.continuePlayback();
}
}
}, [playbackCompleted, currentScene]);
// get scene information
const isPendingScene = currentSceneId === PENDING_SCENE_ID;
const hasNextPending = generatingOutlines.length > 0;
// True when every outline has materialized into a scene and nothing is
// currently generating β signals the classroom has finished and the user
// can see a completion page. Comparing scenes.length === outlines.length
// (rather than just `scenes.length > 0`) means a partial generation with
// some failed outlines does not falsely trigger completion.
const isCourseComplete =
outlines.length > 0 && scenes.length === outlines.length && generatingOutlines.length === 0;
const canAdvanceToPendingSlot = hasNextPending || isCourseComplete;
// previous scene (gated)
const handlePreviousScene = useCallback(() => {
if (isPendingScene) {
// From pending page β go to last real scene
if (scenes.length > 0) {
gatedSceneSwitch(scenes[scenes.length - 1].id);
}
return;
}
const currentIndex = scenes.findIndex((s) => s.id === currentSceneId);
if (currentIndex > 0) {
gatedSceneSwitch(scenes[currentIndex - 1].id);
}
}, [currentSceneId, gatedSceneSwitch, isPendingScene, scenes]);
// next scene (gated)
const handleNextScene = useCallback(() => {
if (isPendingScene) return; // Already on pending, nowhere to go
const currentIndex = scenes.findIndex((s) => s.id === currentSceneId);
if (currentIndex < scenes.length - 1) {
gatedSceneSwitch(scenes[currentIndex + 1].id);
} else if (canAdvanceToPendingSlot) {
// On last real scene β advance to pending slot (generating or completion page)
setCurrentSceneId(PENDING_SCENE_ID);
}
}, [
currentSceneId,
gatedSceneSwitch,
canAdvanceToPendingSlot,
isPendingScene,
scenes,
setCurrentSceneId,
]);
const currentSceneIndex = isPendingScene
? scenes.length
: scenes.findIndex((s) => s.id === currentSceneId);
const totalScenesCount = scenes.length + (canAdvanceToPendingSlot ? 1 : 0);
// get action information
const totalActions = currentScene?.actions?.length || 0;
// whiteboard toggle
const handleWhiteboardToggle = () => {
setWhiteboardOpen(!whiteboardOpen);
};
const isPresentationShortcutTarget = useCallback((target: EventTarget | null) => {
if (!(target instanceof HTMLElement)) return false;
if (target.isContentEditable || target.closest('[contenteditable="true"]')) {
return true;
}
return (
target.closest(
['input', 'textarea', 'select', '[role="slider"]', 'input[type="range"]'].join(', '),
) !== null
);
}, []);
useEffect(() => {
const onKeyDown = (event: KeyboardEvent) => {
if (event.defaultPrevented) return;
// Let modifier-key combos (Ctrl+C, Ctrl+S, etc.) pass through to the browser
if (event.ctrlKey || event.metaKey || event.altKey) return;
if (
isPresentationShortcutTarget(event.target) ||
isPresentationShortcutTarget(document.activeElement)
) {
return;
}
switch (event.key) {
case 'ArrowLeft':
if (!isPresenting) return;
event.preventDefault();
handlePreviousScene();
resetPresentationIdleTimer();
break;
case 'ArrowRight':
if (!isPresenting) return;
event.preventDefault();
handleNextScene();
resetPresentationIdleTimer();
break;
case ' ':
case 'Spacebar':
// During active QA/discussion, Roundtable owns Space for
// buffer-level pause/resume β don't also fire engine play/pause.
if (chatSessionType === 'qa' || chatSessionType === 'discussion') break;
event.preventDefault();
handlePlayPause();
break;
case 'Escape':
// With keyboard.lock(), Escape no longer auto-exits fullscreen.
// If panels are open, roundtable handles Escape (close panels).
// If no panels are open, manually exit fullscreen.
if (isPresenting && !isPresentationInteractionActive) {
event.preventDefault();
togglePresentation();
}
break;
case 'ArrowUp':
event.preventDefault();
setTTSVolume(ttsVolume + 0.1);
break;
case 'ArrowDown':
event.preventDefault();
setTTSVolume(ttsVolume - 0.1);
break;
case 'm':
case 'M':
event.preventDefault();
setTTSMuted(!ttsMuted);
break;
case 's':
case 'S':
event.preventDefault();
setSidebarCollapsed(!sidebarCollapsed);
break;
case 'c':
case 'C':
event.preventDefault();
setChatAreaCollapsed(!chatAreaCollapsed);
break;
default:
break;
}
};
window.addEventListener('keydown', onKeyDown);
return () => window.removeEventListener('keydown', onKeyDown);
}, [
chatSessionType,
chatAreaCollapsed,
handleNextScene,
handlePlayPause,
handlePreviousScene,
isPresenting,
isPresentationInteractionActive,
isPresentationShortcutTarget,
resetPresentationIdleTimer,
setChatAreaCollapsed,
setSidebarCollapsed,
setTTSMuted,
setTTSVolume,
sidebarCollapsed,
togglePresentation,
ttsMuted,
ttsVolume,
]);
// Intercept F11 to use our presentation fullscreen instead of browser fullscreen
// This way ESC can exit fullscreen (browser F11 fullscreen requires F11 to exit)
useEffect(() => {
const onF11 = (event: KeyboardEvent) => {
if (event.key === 'F11') {
event.preventDefault();
togglePresentation();
}
};
window.addEventListener('keydown', onF11);
return () => window.removeEventListener('keydown', onF11);
}, [togglePresentation]);
// Map engine mode to the CanvasArea's expected engine state
const canvasEngineState = (() => {
switch (engineMode) {
case 'playing':
case 'live':
return 'playing';
case 'paused':
return 'paused';
default:
return 'idle';
}
})();
// Build discussion request for Roundtable ProactiveCard from trigger
const discussionRequest: DiscussionAction | null = discussionTrigger
? {
type: 'discussion',
id: discussionTrigger.id,
topic: discussionTrigger.question,
prompt: discussionTrigger.prompt,
agentId: discussionTrigger.agentId || 'default-1',
}
: null;
// Calculate scene viewer height (subtract Header's 80px height)
const sceneViewerHeight = (() => {
const headerHeight = isPresenting ? 0 : 80; // Header h-20 = 80px
const roundtableHeight = mode === 'playback' && !isPresenting ? 192 : 0;
return `calc(100% - ${headerHeight + roundtableHeight}px)`;
})();
return (
<div
ref={stageRef}
className={cn(
'flex-1 flex overflow-hidden bg-gray-50 dark:bg-gray-900',
isPresenting && !controlsVisible && 'cursor-none',
)}
>
{/* Scene Sidebar */}
<SceneSidebar
collapsed={sidebarCollapsed}
onCollapseChange={setSidebarCollapsed}
onSceneSelect={gatedSceneSwitch}
onRetryOutline={onRetryOutline}
isCourseComplete={isCourseComplete}
/>
{/* Main Content Area */}
<div className="flex-1 flex flex-col overflow-hidden min-w-0 relative">
{/* Header */}
{!isPresenting && (
<Header
currentSceneTitle={
currentScene?.title ||
(isCourseComplete && isPendingScene ? t('stage.courseComplete') : '')
}
/>
)}
{/* Canvas Area */}
<div
className="overflow-hidden relative flex-1 min-h-0 isolate"
style={{
height: sceneViewerHeight,
}}
suppressHydrationWarning
>
<CanvasArea
currentScene={currentScene}
currentSceneIndex={currentSceneIndex}
scenesCount={totalScenesCount}
mode={mode}
engineState={canvasEngineState}
isLiveSession={
chatIsStreaming || isTopicPending || engineMode === 'live' || !!chatSessionType
}
whiteboardOpen={whiteboardOpen}
sidebarCollapsed={sidebarCollapsed}
chatCollapsed={chatAreaCollapsed}
onToggleSidebar={() => setSidebarCollapsed(!sidebarCollapsed)}
onToggleChat={() => setChatAreaCollapsed(!chatAreaCollapsed)}
onPrevSlide={handlePreviousScene}
onNextSlide={handleNextScene}
onPlayPause={handlePlayPause}
onWhiteboardClose={handleWhiteboardToggle}
isPresenting={isPresenting}
onTogglePresentation={togglePresentation}
showStopDiscussion={
engineMode === 'live' ||
(chatIsStreaming && (chatSessionType === 'qa' || chatSessionType === 'discussion'))
}
onStopDiscussion={handleStopDiscussion}
hideToolbar={mode === 'playback' || (isPresenting && !controlsVisible)}
isPendingScene={isPendingScene}
isCourseComplete={isCourseComplete}
isGenerationFailed={
isPendingScene && failedOutlines.some((f) => f.id === generatingOutlines[0]?.id)
}
onRetryGeneration={
onRetryOutline && generatingOutlines[0]
? () => onRetryOutline(generatingOutlines[0].id)
: undefined
}
/>
</div>
{/* Roundtable Area */}
{mode === 'playback' && (
<div
className={cn(
'transition-opacity duration-300',
!isPresenting && 'shrink-0',
isPresenting && 'absolute inset-x-0 bottom-0 z-20',
)}
>
<Roundtable
mode={mode}
initialParticipants={participants}
playbackView={playbackView}
currentSpeech={liveSpeech}
lectureSpeech={lectureSpeech}
idleText={firstSpeechText}
playbackCompleted={playbackCompleted}
discussionRequest={discussionRequest}
engineMode={engineMode}
isStreaming={chatIsStreaming}
audioIndicatorState={audioIndicatorState}
audioAgentId={audioAgentId}
sessionType={
chatSessionType === 'qa'
? 'qa'
: chatSessionType === 'discussion'
? 'discussion'
: undefined
}
speakingAgentId={speakingAgentId}
speechProgress={speechProgress}
showEndFlash={showEndFlash}
endFlashSessionType={endFlashSessionType}
thinkingState={thinkingState}
isCueUser={isCueUser}
isTopicPending={isTopicPending}
onMessageSend={async (msg) => {
// Always clear Level-1 pause state β the closure may hold a stale
// isDiscussionPaused value (e.g. voice input's onTranscription callback
// captures onMessageSend before React re-renders with the updated state).
setIsDiscussionPaused(false);
// Clear the sticky livePausedRef so the next agent-loop buffer
// starts unpaused. (pauseActiveLiveBuffer sets a ref that new
// buffers inherit β must be cleared before sendMessage creates one.)
chatAreaRef.current?.resumeActiveLiveBuffer();
// Flush any buffered / in-flight TTS audio from the previous
// agent turn so it doesn't leak into the next round.
discussionTTS.cleanup();
// Clear soft-paused state β user is continuing the topic
if (isTopicPending) {
setIsTopicPending(false);
setLiveSpeech(null);
setSpeakingAgentId(null);
}
// User interrupts during playback β handleUserInterrupt triggers
// onUserInterrupt callback which already calls sendMessage, so skip
// the direct sendMessage below to avoid sending twice.
// Include 'paused' because onInputActivate pauses the engine before
// the user finishes typing β without this the interrupt position
// would never be saved and resuming after QA skips to the next sentence.
if (
engineRef.current &&
(engineMode === 'playing' || engineMode === 'live' || engineMode === 'paused')
) {
engineRef.current.handleUserInterrupt(msg);
} else {
chatAreaRef.current?.sendMessage(msg);
}
// Auto-switch to chat tab when user sends a message
chatAreaRef.current?.switchToTab('chat');
setIsCueUser(false);
// Immediately mark streaming for synchronized stop button
setChatIsStreaming(true);
setChatSessionType(chatSessionType || 'qa');
// Optimistic thinking: show thinking dots immediately so there's
// no blank gap between userMessage expiry and the SSE thinking event.
// The real SSE event will overwrite this with the same or updated value.
setThinkingState({ stage: 'director' });
}}
onDiscussionStart={() => {
// User clicks "Join" on ProactiveCard
engineRef.current?.confirmDiscussion();
}}
onDiscussionSkip={() => {
// User clicks "Skip" on ProactiveCard
engineRef.current?.skipDiscussion();
}}
onStopDiscussion={handleStopDiscussion}
onInputActivate={() => {
// Level-1 pause: freeze buffer tick + TTS audio while SSE keeps buffering.
// User resumes manually via Space / pause button after closing the input.
// No isDiscussionPaused guard β always attempt to pause the buffer.
// The return value ensures UI state stays in sync with buffer state.
if (chatSessionType === 'qa' || chatSessionType === 'discussion') {
const paused = chatAreaRef.current?.pauseActiveLiveBuffer();
if (paused) {
discussionTTS.pause();
setIsDiscussionPaused(true);
}
}
// Also pause playback engine
if (engineRef.current && (engineMode === 'playing' || engineMode === 'live')) {
engineRef.current.pause();
}
}}
onResumeTopic={doResumeTopic}
onPlayPause={handlePlayPause}
isDiscussionPaused={isDiscussionPaused}
onDiscussionPause={() => {
const paused = chatAreaRef.current?.pauseActiveLiveBuffer();
if (paused) {
discussionTTS.pause();
setIsDiscussionPaused(true);
}
}}
onDiscussionResume={() => {
chatAreaRef.current?.resumeActiveLiveBuffer();
discussionTTS.resume();
setIsDiscussionPaused(false);
}}
totalActions={totalActions}
currentActionIndex={0}
currentSceneIndex={currentSceneIndex}
scenesCount={totalScenesCount}
whiteboardOpen={whiteboardOpen}
sidebarCollapsed={sidebarCollapsed}
chatCollapsed={chatAreaCollapsed}
onToggleSidebar={() => setSidebarCollapsed(!sidebarCollapsed)}
onToggleChat={() => setChatAreaCollapsed(!chatAreaCollapsed)}
onPrevSlide={handlePreviousScene}
onNextSlide={handleNextScene}
onWhiteboardClose={handleWhiteboardToggle}
isPresenting={isPresenting}
controlsVisible={controlsVisible}
onTogglePresentation={togglePresentation}
onPresentationInteractionChange={setIsPresentationInteractionActive}
fullscreenContainerRef={stageRef}
/>
</div>
)}
</div>
{/* Chat Area */}
<ChatArea
ref={chatAreaRef}
width={chatAreaWidth}
onWidthChange={setChatAreaWidth}
collapsed={chatAreaCollapsed}
onCollapseChange={setChatAreaCollapsed}
activeBubbleId={activeBubbleId}
onActiveBubble={(id) => setActiveBubbleId(id)}
currentSceneId={currentSceneId}
onLiveSpeech={(text, agentId) => {
// Capture epoch at call time β discard if scene has changed since
const epoch = sceneEpochRef.current;
// Use queueMicrotask to let any pending scene-switch reset settle first
queueMicrotask(() => {
if (sceneEpochRef.current !== epoch) return; // stale β scene changed
setLiveSpeech(text);
if (agentId !== undefined) {
setSpeakingAgentId(agentId);
}
if (text !== null || agentId) {
setChatIsStreaming(true);
setChatSessionType(chatAreaRef.current?.getActiveSessionType?.() ?? null);
setIsTopicPending(false);
} else if (text === null && agentId === null) {
setChatIsStreaming(false);
// Don't clear chatSessionType here β it's needed by the stop
// button when director cues user (cue_user β done β liveSpeech null).
// It gets properly cleared in doSessionCleanup and scene change.
}
});
}}
onSpeechProgress={(ratio) => {
const epoch = sceneEpochRef.current;
queueMicrotask(() => {
if (sceneEpochRef.current !== epoch) return;
setSpeechProgress(ratio);
});
}}
onThinking={(state) => {
const epoch = sceneEpochRef.current;
queueMicrotask(() => {
if (sceneEpochRef.current !== epoch) return;
setThinkingState(state);
});
}}
onCueUser={(_fromAgentId, _prompt) => {
setIsCueUser(true);
}}
onLiveSessionError={handleLiveSessionError}
onStopSession={doSessionCleanup}
onSegmentSealed={discussionTTS.handleSegmentSealed}
shouldHoldAfterReveal={discussionTTS.shouldHold}
/>
{/* Scene switch confirmation dialog */}
<AlertDialog
open={!!pendingSceneId}
onOpenChange={(open) => {
if (!open) cancelSceneSwitch();
}}
>
<AlertDialogContent
container={isPresenting ? stageRef.current : undefined}
className="max-w-sm rounded-2xl p-0 overflow-hidden border-0 shadow-[0_25px_60px_-12px_rgba(0,0,0,0.15)] dark:shadow-[0_25px_60px_-12px_rgba(0,0,0,0.5)]"
>
<VisuallyHidden.Root>
<AlertDialogTitle>{t('stage.confirmSwitchTitle')}</AlertDialogTitle>
</VisuallyHidden.Root>
{/* Top accent bar */}
<div className="h-1 bg-gradient-to-r from-amber-400 via-orange-400 to-red-400" />
<div className="px-6 pt-5 pb-2 flex flex-col items-center text-center">
{/* Icon */}
<div className="w-12 h-12 rounded-full bg-amber-50 dark:bg-amber-900/20 flex items-center justify-center mb-4 ring-1 ring-amber-200/50 dark:ring-amber-700/30">
<AlertTriangle className="w-6 h-6 text-amber-500 dark:text-amber-400" />
</div>
{/* Title */}
<h3 className="text-base font-bold text-gray-900 dark:text-gray-100 mb-1.5">
{t('stage.confirmSwitchTitle')}
</h3>
{/* Description */}
<p className="text-sm text-gray-500 dark:text-gray-400 leading-relaxed">
{t('stage.confirmSwitchMessage')}
</p>
</div>
<AlertDialogFooter className="px-6 pb-5 pt-3 flex-row gap-3">
<AlertDialogCancel onClick={cancelSceneSwitch} className="flex-1 rounded-xl">
{t('common.cancel')}
</AlertDialogCancel>
<AlertDialogAction
onClick={confirmSceneSwitch}
className="flex-1 rounded-xl bg-gradient-to-r from-amber-500 to-orange-500 hover:from-amber-600 hover:to-orange-600 text-white border-0 shadow-md shadow-amber-200/50 dark:shadow-amber-900/30"
>
{t('common.confirm')}
</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
</div>
);
}
|