Spaces:
Sleeping
Sleeping
Update web/src/App.tsx
Browse files- web/src/App.tsx +127 -1062
web/src/App.tsx
CHANGED
|
@@ -31,7 +31,8 @@ export interface MessageAttachment {
|
|
| 31 |
name: string;
|
| 32 |
kind: MessageAttachmentKind;
|
| 33 |
size: number;
|
| 34 |
-
|
|
|
|
| 35 |
}
|
| 36 |
|
| 37 |
export interface Message {
|
|
@@ -42,7 +43,10 @@ export interface Message {
|
|
| 42 |
references?: string[];
|
| 43 |
sender?: GroupMember;
|
| 44 |
showNextButton?: boolean;
|
|
|
|
|
|
|
| 45 |
attachments?: MessageAttachment[];
|
|
|
|
| 46 |
questionData?: {
|
| 47 |
type: "multiple-choice" | "fill-in-blank" | "open-ended";
|
| 48 |
question: string;
|
|
@@ -54,16 +58,25 @@ export interface Message {
|
|
| 54 |
}
|
| 55 |
|
| 56 |
export interface User {
|
|
|
|
| 57 |
name: string;
|
| 58 |
email: string;
|
|
|
|
|
|
|
| 59 |
studentId?: string;
|
| 60 |
department?: string;
|
| 61 |
yearLevel?: string;
|
| 62 |
major?: string;
|
| 63 |
-
bio?: string;
|
| 64 |
-
|
| 65 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
avatarUrl?: string;
|
|
|
|
|
|
|
| 67 |
onboardingCompleted?: boolean;
|
| 68 |
}
|
| 69 |
|
|
@@ -96,14 +109,24 @@ export interface Workspace {
|
|
| 96 |
isEditable?: boolean;
|
| 97 |
}
|
| 98 |
|
| 99 |
-
export type FileType =
|
|
|
|
|
|
|
|
|
|
|
|
|
| 100 |
|
| 101 |
export interface UploadedFile {
|
| 102 |
file: File;
|
| 103 |
type: FileType;
|
| 104 |
}
|
| 105 |
|
| 106 |
-
export type LearningMode =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
export type Language = "auto" | "en" | "zh";
|
| 108 |
export type ChatMode = "ask" | "review" | "quiz";
|
| 109 |
|
|
@@ -133,6 +156,15 @@ const DOC_TYPE_MAP: Record<FileType, string> = {
|
|
| 133 |
other: "Other Course Document",
|
| 134 |
};
|
| 135 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 136 |
function mapLanguagePref(lang: Language): string {
|
| 137 |
if (lang === "zh") return "中文";
|
| 138 |
if (lang === "en") return "English";
|
|
@@ -183,14 +215,14 @@ function hydrateUserFromStorage(base: User): User {
|
|
| 183 |
function App() {
|
| 184 |
const [isDarkMode, setIsDarkMode] = useState(() => {
|
| 185 |
const saved = localStorage.getItem("theme");
|
| 186 |
-
return
|
|
|
|
|
|
|
|
|
|
| 187 |
});
|
| 188 |
|
| 189 |
const [user, setUser] = useState<User | null>(null);
|
| 190 |
|
| 191 |
-
// ✅ IMPORTANT: backend real course_id (current deployment only has course_ist345)
|
| 192 |
-
const backendCourseId = "course_ist345";
|
| 193 |
-
|
| 194 |
const updateUser = (patch: Partial<User>) => {
|
| 195 |
setUser((prev) => (prev ? { ...prev, ...patch } : prev));
|
| 196 |
};
|
|
@@ -201,7 +233,8 @@ function App() {
|
|
| 201 |
return {
|
| 202 |
...prev,
|
| 203 |
...next,
|
| 204 |
-
onboardingCompleted:
|
|
|
|
| 205 |
};
|
| 206 |
});
|
| 207 |
};
|
|
@@ -216,6 +249,7 @@ function App() {
|
|
| 216 |
}, [user]);
|
| 217 |
|
| 218 |
const MYSPACE_COURSE_KEY = "myspace_selected_course";
|
|
|
|
| 219 |
const [currentCourseId, setCurrentCourseId] = useState<string>(() => {
|
| 220 |
return localStorage.getItem(MYSPACE_COURSE_KEY) || "course1";
|
| 221 |
});
|
|
@@ -224,15 +258,25 @@ function App() {
|
|
| 224 |
{
|
| 225 |
id: "course1",
|
| 226 |
name: "Introduction to AI",
|
| 227 |
-
instructor: {
|
| 228 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 229 |
},
|
| 230 |
{
|
| 231 |
id: "course2",
|
| 232 |
name: "Machine Learning",
|
| 233 |
instructor: { name: "Prof. David Lee", email: "david.lee@university.edu" },
|
| 234 |
-
teachingAssistant: {
|
|
|
|
|
|
|
|
|
|
| 235 |
},
|
|
|
|
| 236 |
{
|
| 237 |
id: "course3",
|
| 238 |
name: "Data Structures",
|
|
@@ -281,7 +325,12 @@ function App() {
|
|
| 281 |
const [language, setLanguage] = useState<Language>("auto");
|
| 282 |
const [chatMode, setChatMode] = useState<ChatMode>("ask");
|
| 283 |
|
| 284 |
-
const messages =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 285 |
|
| 286 |
const prevChatModeRef = useRef<ChatMode>(chatMode);
|
| 287 |
|
|
@@ -301,11 +350,21 @@ function App() {
|
|
| 301 |
}
|
| 302 |
|
| 303 |
const hasUserMessages = currentMessages.some((msg) => msg.role === "user");
|
| 304 |
-
const expectedWelcomeId =
|
| 305 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 306 |
const modeChanged = prevChatModeRef.current !== chatMode;
|
| 307 |
|
| 308 |
-
if (
|
|
|
|
|
|
|
|
|
|
| 309 |
const initialMessages: Record<ChatMode, Message[]> = {
|
| 310 |
ask: [
|
| 311 |
{
|
|
@@ -366,253 +425,42 @@ function App() {
|
|
| 366 |
|
| 367 |
const [savedItems, setSavedItems] = useState<SavedItem[]>([]);
|
| 368 |
const [recentlySavedId, setRecentlySavedId] = useState<string | null>(null);
|
| 369 |
-
|
| 370 |
const [savedChats, setSavedChats] = useState<SavedChat[]>([]);
|
| 371 |
|
| 372 |
-
|
| 373 |
-
|
| 374 |
-
|
| 375 |
-
|
| 376 |
-
if (!raw) {
|
| 377 |
-
setSavedChats([]);
|
| 378 |
-
return;
|
| 379 |
-
}
|
| 380 |
-
const parsed = JSON.parse(raw);
|
| 381 |
-
setSavedChats(hydrateSavedChats(parsed));
|
| 382 |
-
} catch {
|
| 383 |
-
setSavedChats([]);
|
| 384 |
-
}
|
| 385 |
-
}, [user?.email]);
|
| 386 |
|
| 387 |
-
|
| 388 |
-
|
| 389 |
-
|
| 390 |
-
|
| 391 |
-
|
| 392 |
-
|
| 393 |
}
|
| 394 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 395 |
|
| 396 |
-
|
|
|
|
|
|
|
|
|
|
| 397 |
{ id: "clare", name: "Clare AI", email: "clare@ai.assistant", isAI: true },
|
| 398 |
{ id: "1", name: "Sarah Johnson", email: "sarah.j@university.edu" },
|
| 399 |
{ id: "2", name: "Michael Chen", email: "michael.c@university.edu" },
|
| 400 |
{ id: "3", name: "Emma Williams", email: "emma.w@university.edu" },
|
| 401 |
-
]
|
| 402 |
-
|
| 403 |
-
const [workspaces, setWorkspaces] = useState<Workspace[]>([]);
|
| 404 |
-
const [currentWorkspaceId, setCurrentWorkspaceId] = useState<string>("individual");
|
| 405 |
|
|
|
|
| 406 |
const uploadedFingerprintsRef = useRef<Set<string>>(new Set());
|
| 407 |
|
| 408 |
-
|
| 409 |
-
|
| 410 |
-
|
| 411 |
-
const course1Info = availableCourses.find((c) => c.id === "course1");
|
| 412 |
-
const course2Info = availableCourses.find((c) => c.name === "AI Ethics");
|
| 413 |
-
|
| 414 |
-
setWorkspaces([
|
| 415 |
-
{ id: "individual", name: "My Space", type: "individual", avatar: userAvatar },
|
| 416 |
-
{
|
| 417 |
-
id: "group-1",
|
| 418 |
-
name: "CS 101 Study Group",
|
| 419 |
-
type: "group",
|
| 420 |
-
avatar: "https://api.dicebear.com/7.x/shapes/svg?seed=cs101group",
|
| 421 |
-
members: groupMembers,
|
| 422 |
-
category: "course",
|
| 423 |
-
courseName: course1Info?.name || "CS 101",
|
| 424 |
-
courseInfo: course1Info,
|
| 425 |
-
},
|
| 426 |
-
{
|
| 427 |
-
id: "group-2",
|
| 428 |
-
name: "AI Ethics Team",
|
| 429 |
-
type: "group",
|
| 430 |
-
avatar: "https://api.dicebear.com/7.x/shapes/svg?seed=aiethicsteam",
|
| 431 |
-
members: groupMembers,
|
| 432 |
-
category: "course",
|
| 433 |
-
courseName: course2Info?.name || "AI Ethics",
|
| 434 |
-
courseInfo: course2Info,
|
| 435 |
-
},
|
| 436 |
-
]);
|
| 437 |
-
}
|
| 438 |
-
}, [user, groupMembers, availableCourses]);
|
| 439 |
-
|
| 440 |
-
const fallbackWorkspace: Workspace = {
|
| 441 |
-
id: "individual",
|
| 442 |
-
name: "My Space",
|
| 443 |
-
type: "individual",
|
| 444 |
-
avatar: user ? `https://api.dicebear.com/7.x/avataaars/svg?seed=${encodeURIComponent(user.email)}` : "",
|
| 445 |
-
};
|
| 446 |
-
|
| 447 |
-
const currentWorkspace: Workspace =
|
| 448 |
-
workspaces.find((w) => w.id === currentWorkspaceId) || workspaces[0] || fallbackWorkspace;
|
| 449 |
-
|
| 450 |
-
const spaceType: SpaceType = currentWorkspace?.type || "individual";
|
| 451 |
-
|
| 452 |
-
const mySpaceCourseInfo = useMemo(() => {
|
| 453 |
-
return availableCourses.find((c) => c.id === currentCourseId);
|
| 454 |
-
}, [availableCourses, currentCourseId]);
|
| 455 |
-
|
| 456 |
-
const mySpaceUserMember: GroupMember | null = useMemo(() => {
|
| 457 |
-
if (!user) return null;
|
| 458 |
-
return {
|
| 459 |
-
id: user.email,
|
| 460 |
-
name: user.name,
|
| 461 |
-
email: user.email,
|
| 462 |
-
avatar: `https://api.dicebear.com/7.x/avataaars/svg?seed=${encodeURIComponent(user.email)}`,
|
| 463 |
-
};
|
| 464 |
-
}, [user]);
|
| 465 |
-
|
| 466 |
-
const clareMember: GroupMember = useMemo(
|
| 467 |
-
() => ({ id: "clare", name: "Clare AI", email: "clare@ai.assistant", isAI: true }),
|
| 468 |
-
[]
|
| 469 |
-
);
|
| 470 |
-
|
| 471 |
-
const sidebarWorkspaces: Workspace[] = useMemo(() => {
|
| 472 |
-
if (!workspaces?.length) return workspaces;
|
| 473 |
-
if (!mySpaceUserMember) return workspaces;
|
| 474 |
-
|
| 475 |
-
return workspaces.map((w) => {
|
| 476 |
-
if (w.id !== "individual") return w;
|
| 477 |
-
|
| 478 |
-
return {
|
| 479 |
-
...w,
|
| 480 |
-
category: "course",
|
| 481 |
-
courseName: mySpaceCourseInfo?.name || w.courseName || "My Course",
|
| 482 |
-
courseInfo: mySpaceCourseInfo,
|
| 483 |
-
members: [clareMember, mySpaceUserMember],
|
| 484 |
-
};
|
| 485 |
-
});
|
| 486 |
-
}, [workspaces, mySpaceCourseInfo, mySpaceUserMember, clareMember]);
|
| 487 |
-
|
| 488 |
-
const sidebarSpaceType: SpaceType = useMemo(() => {
|
| 489 |
-
return currentWorkspaceId === "individual" ? "group" : spaceType;
|
| 490 |
-
}, [currentWorkspaceId, spaceType]);
|
| 491 |
-
|
| 492 |
-
const sidebarGroupMembers: GroupMember[] = useMemo(() => {
|
| 493 |
-
if (currentWorkspaceId === "individual" && mySpaceUserMember) {
|
| 494 |
-
return [clareMember, mySpaceUserMember];
|
| 495 |
-
}
|
| 496 |
-
return groupMembers;
|
| 497 |
-
}, [currentWorkspaceId, mySpaceUserMember, clareMember, groupMembers]);
|
| 498 |
-
|
| 499 |
-
const didHydrateMySpaceRef = useRef(false);
|
| 500 |
-
|
| 501 |
-
const handleCourseChange = (nextCourseId: string) => {
|
| 502 |
-
if (!nextCourseId) return;
|
| 503 |
-
|
| 504 |
-
if (currentWorkspace.type === "group" && currentWorkspace.category === "course") {
|
| 505 |
-
return;
|
| 506 |
-
}
|
| 507 |
-
|
| 508 |
-
setCurrentCourseId(nextCourseId);
|
| 509 |
-
try {
|
| 510 |
-
localStorage.setItem(MYSPACE_COURSE_KEY, nextCourseId);
|
| 511 |
-
} catch {
|
| 512 |
-
// ignore
|
| 513 |
-
}
|
| 514 |
-
};
|
| 515 |
-
|
| 516 |
-
useEffect(() => {
|
| 517 |
-
if (!currentWorkspace) return;
|
| 518 |
-
|
| 519 |
-
if (currentWorkspace.type === "group" && currentWorkspace.category === "course") {
|
| 520 |
-
const cid = currentWorkspace.courseInfo?.id;
|
| 521 |
-
if (cid && cid !== currentCourseId) setCurrentCourseId(cid);
|
| 522 |
-
didHydrateMySpaceRef.current = false;
|
| 523 |
-
return;
|
| 524 |
-
}
|
| 525 |
-
|
| 526 |
-
if (currentWorkspace.type === "individual") {
|
| 527 |
-
if (!didHydrateMySpaceRef.current) {
|
| 528 |
-
didHydrateMySpaceRef.current = true;
|
| 529 |
-
|
| 530 |
-
const saved = localStorage.getItem(MYSPACE_COURSE_KEY);
|
| 531 |
-
const valid = saved && availableCourses.some((c) => c.id === saved) ? saved : undefined;
|
| 532 |
-
|
| 533 |
-
const next = valid || currentCourseId || "course1";
|
| 534 |
-
if (next !== currentCourseId) setCurrentCourseId(next);
|
| 535 |
-
}
|
| 536 |
-
}
|
| 537 |
-
}, [
|
| 538 |
-
currentWorkspaceId,
|
| 539 |
-
currentWorkspace?.type,
|
| 540 |
-
currentWorkspace?.category,
|
| 541 |
-
currentWorkspace?.courseInfo?.id,
|
| 542 |
-
availableCourses,
|
| 543 |
-
currentCourseId,
|
| 544 |
-
currentWorkspace,
|
| 545 |
-
]);
|
| 546 |
-
|
| 547 |
-
useEffect(() => {
|
| 548 |
-
if (currentWorkspace?.type !== "individual") return;
|
| 549 |
-
try {
|
| 550 |
-
const prev = localStorage.getItem(MYSPACE_COURSE_KEY);
|
| 551 |
-
if (prev !== currentCourseId) localStorage.setItem(MYSPACE_COURSE_KEY, currentCourseId);
|
| 552 |
-
} catch {
|
| 553 |
-
// ignore
|
| 554 |
-
}
|
| 555 |
-
}, [currentCourseId, currentWorkspace?.type]);
|
| 556 |
-
|
| 557 |
-
useEffect(() => {
|
| 558 |
-
document.documentElement.classList.toggle("dark", isDarkMode);
|
| 559 |
-
localStorage.setItem("theme", isDarkMode ? "dark" : "light");
|
| 560 |
-
}, [isDarkMode]);
|
| 561 |
-
|
| 562 |
-
useEffect(() => {
|
| 563 |
-
const prev = document.body.style.overflow;
|
| 564 |
-
document.body.style.overflow = "hidden";
|
| 565 |
-
return () => {
|
| 566 |
-
document.body.style.overflow = prev;
|
| 567 |
-
};
|
| 568 |
-
}, []);
|
| 569 |
-
|
| 570 |
-
useEffect(() => {
|
| 571 |
-
if (!user) return;
|
| 572 |
-
|
| 573 |
-
(async () => {
|
| 574 |
-
try {
|
| 575 |
-
const r = await apiMemoryline(user.email);
|
| 576 |
-
const pct = Math.round((r.progress_pct ?? 0) * 100);
|
| 577 |
-
setMemoryProgress(pct);
|
| 578 |
-
} catch {
|
| 579 |
-
// silent
|
| 580 |
-
}
|
| 581 |
-
})();
|
| 582 |
-
}, [user]);
|
| 583 |
-
|
| 584 |
-
const reviewStarKey = useMemo(() => {
|
| 585 |
-
if (!user) return "";
|
| 586 |
-
return `review_star::${user.email}::${currentWorkspaceId}`;
|
| 587 |
-
}, [user, currentWorkspaceId]);
|
| 588 |
-
|
| 589 |
-
const [reviewStarState, setReviewStarState] = useState<ReviewStarState | null>(null);
|
| 590 |
-
|
| 591 |
-
useEffect(() => {
|
| 592 |
-
if (!user || !reviewStarKey) return;
|
| 593 |
-
if (chatMode !== "review") return;
|
| 594 |
-
|
| 595 |
-
const next = normalizeToday(reviewStarKey);
|
| 596 |
-
setReviewStarState(next);
|
| 597 |
-
}, [chatMode, reviewStarKey, user]);
|
| 598 |
-
|
| 599 |
-
const handleReviewActivity = (event: ReviewEventType) => {
|
| 600 |
-
if (!user || !reviewStarKey) return;
|
| 601 |
-
const next = markReviewActive(reviewStarKey, event);
|
| 602 |
-
setReviewStarState(next);
|
| 603 |
-
};
|
| 604 |
-
|
| 605 |
-
const reviewStarOpacity = starOpacity(reviewStarState);
|
| 606 |
-
const reviewEnergyPct = energyPct(reviewStarState);
|
| 607 |
-
|
| 608 |
-
const getCurrentDocTypeForChat = (): string => {
|
| 609 |
-
if (uploadedFiles.length > 0) {
|
| 610 |
-
const last = uploadedFiles[uploadedFiles.length - 1];
|
| 611 |
-
return DOC_TYPE_MAP[last.type] || "Syllabus";
|
| 612 |
-
}
|
| 613 |
-
return "Syllabus";
|
| 614 |
-
};
|
| 615 |
-
|
| 616 |
const handleSendMessage = async (content: string) => {
|
| 617 |
if (!user) return;
|
| 618 |
|
|
@@ -672,105 +520,43 @@ function App() {
|
|
| 672 |
else if (chatMode === "review") setReviewMessages((prev) => [...prev, userMessage]);
|
| 673 |
else setQuizMessages((prev) => [...prev, userMessage]);
|
| 674 |
|
| 675 |
-
if (chatMode === "quiz") {
|
| 676 |
-
setIsTyping(true);
|
| 677 |
-
|
| 678 |
-
try {
|
| 679 |
-
const docType = getCurrentDocTypeForChat();
|
| 680 |
-
|
| 681 |
-
const r = await apiChat({
|
| 682 |
-
user_id: user.email,
|
| 683 |
-
message: effectiveContent,
|
| 684 |
-
learning_mode: "quiz",
|
| 685 |
-
language_preference: mapLanguagePref(language),
|
| 686 |
-
doc_type: docType,
|
| 687 |
-
course_id: backendCourseId, // ✅ NEW
|
| 688 |
-
});
|
| 689 |
-
|
| 690 |
-
const normalizeRefs = (raw: any): string[] => {
|
| 691 |
-
const arr = Array.isArray(raw) ? raw : [];
|
| 692 |
-
return arr
|
| 693 |
-
.map((x) => {
|
| 694 |
-
if (typeof x === "string") {
|
| 695 |
-
const s = x.trim();
|
| 696 |
-
return s ? s : null;
|
| 697 |
-
}
|
| 698 |
-
const a = x?.source_file ? String(x.source_file) : "";
|
| 699 |
-
const b = x?.section ? String(x.section) : "";
|
| 700 |
-
const s = `${a}${a && b ? " — " : ""}${b}`.trim();
|
| 701 |
-
return s || null;
|
| 702 |
-
})
|
| 703 |
-
.filter(Boolean) as string[];
|
| 704 |
-
};
|
| 705 |
-
|
| 706 |
-
const refs = normalizeRefs((r as any).refs ?? (r as any).references);
|
| 707 |
-
|
| 708 |
-
const assistantMessage: Message = {
|
| 709 |
-
id: (Date.now() + 1).toString(),
|
| 710 |
-
role: "assistant",
|
| 711 |
-
content: r.reply || "",
|
| 712 |
-
timestamp: new Date(),
|
| 713 |
-
references: refs.length ? refs : [],
|
| 714 |
-
sender: spaceType === "group" ? groupMembers.find((m) => m.isAI) : undefined,
|
| 715 |
-
showNextButton: false,
|
| 716 |
-
};
|
| 717 |
-
|
| 718 |
-
setIsTyping(false);
|
| 719 |
-
|
| 720 |
-
setTimeout(() => {
|
| 721 |
-
setQuizMessages((prev) => [...prev, assistantMessage]);
|
| 722 |
-
setQuizState((prev) => ({ ...prev, waitingForAnswer: true, showNextButton: false }));
|
| 723 |
-
}, 50);
|
| 724 |
-
} catch (e: any) {
|
| 725 |
-
setIsTyping(false);
|
| 726 |
-
toast.error(e?.message || "Quiz failed");
|
| 727 |
-
|
| 728 |
-
const assistantMessage: Message = {
|
| 729 |
-
id: (Date.now() + 1).toString(),
|
| 730 |
-
role: "assistant",
|
| 731 |
-
content: "Sorry — quiz request failed. Please try again.",
|
| 732 |
-
timestamp: new Date(),
|
| 733 |
-
sender: spaceType === "group" ? groupMembers.find((m) => m.isAI) : undefined,
|
| 734 |
-
references: [],
|
| 735 |
-
};
|
| 736 |
-
|
| 737 |
-
setTimeout(() => {
|
| 738 |
-
setQuizMessages((prev) => [...prev, assistantMessage]);
|
| 739 |
-
}, 50);
|
| 740 |
-
}
|
| 741 |
-
|
| 742 |
-
return;
|
| 743 |
-
}
|
| 744 |
-
|
| 745 |
setIsTyping(true);
|
|
|
|
| 746 |
try {
|
| 747 |
const docType = getCurrentDocTypeForChat();
|
| 748 |
|
| 749 |
-
const r = await apiChat({
|
| 750 |
user_id: user.email,
|
| 751 |
message: effectiveContent,
|
| 752 |
-
learning_mode: learningMode,
|
| 753 |
language_preference: mapLanguagePref(language),
|
| 754 |
doc_type: docType,
|
| 755 |
course_id: backendCourseId, // ✅ NEW
|
| 756 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 757 |
|
| 758 |
-
const refs = (r.refs
|
| 759 |
-
.map((x: any) => {
|
| 760 |
-
const a = x?.source_file ? String(x.source_file) : "";
|
| 761 |
-
const b = x?.section ? String(x.section) : "";
|
| 762 |
-
const s = `${a}${a && b ? " — " : ""}${b}`.trim();
|
| 763 |
-
return s || null;
|
| 764 |
-
})
|
| 765 |
-
.filter(Boolean) as string[];
|
| 766 |
|
| 767 |
const assistantMessage: Message = {
|
| 768 |
id: (Date.now() + 1).toString(),
|
| 769 |
role: "assistant",
|
| 770 |
content: r.reply || "",
|
| 771 |
timestamp: new Date(),
|
| 772 |
-
references: refs
|
| 773 |
-
sender:
|
|
|
|
| 774 |
};
|
| 775 |
|
| 776 |
setIsTyping(false);
|
|
@@ -778,740 +564,19 @@ function App() {
|
|
| 778 |
setTimeout(() => {
|
| 779 |
if (chatMode === "ask") setAskMessages((prev) => [...prev, assistantMessage]);
|
| 780 |
else if (chatMode === "review") setReviewMessages((prev) => [...prev, assistantMessage]);
|
|
|
|
| 781 |
}, 50);
|
| 782 |
|
| 783 |
-
try {
|
| 784 |
-
const ml = await apiMemoryline(user.email);
|
| 785 |
-
setMemoryProgress(Math.round((ml.progress_pct ?? 0) * 100));
|
| 786 |
-
} catch {
|
| 787 |
-
// ignore
|
| 788 |
-
}
|
| 789 |
} catch (e: any) {
|
| 790 |
setIsTyping(false);
|
| 791 |
toast.error(e?.message || "Chat failed");
|
| 792 |
-
|
| 793 |
-
const assistantMessage: Message = {
|
| 794 |
-
id: (Date.now() + 1).toString(),
|
| 795 |
-
role: "assistant",
|
| 796 |
-
content: "Sorry — chat request failed. Please try again.",
|
| 797 |
-
timestamp: new Date(),
|
| 798 |
-
sender: spaceType === "group" ? groupMembers.find((m) => m.isAI) : undefined,
|
| 799 |
-
references: [],
|
| 800 |
-
};
|
| 801 |
-
|
| 802 |
-
setTimeout(() => {
|
| 803 |
-
if (chatMode === "ask") setAskMessages((prev) => [...prev, assistantMessage]);
|
| 804 |
-
if (chatMode === "review") setReviewMessages((prev) => [...prev, assistantMessage]);
|
| 805 |
-
}, 50);
|
| 806 |
-
}
|
| 807 |
-
};
|
| 808 |
-
|
| 809 |
-
const handleNextQuestion = async () => {
|
| 810 |
-
if (!user) return;
|
| 811 |
-
|
| 812 |
-
const prompt = "Please give me another question of the same quiz style.";
|
| 813 |
-
const sender: GroupMember = {
|
| 814 |
-
id: user.email,
|
| 815 |
-
name: user.name,
|
| 816 |
-
email: user.email,
|
| 817 |
-
avatar: `https://api.dicebear.com/7.x/avataaars/svg?seed=${encodeURIComponent(user.email)}`,
|
| 818 |
-
};
|
| 819 |
-
|
| 820 |
-
const userMessage: Message = {
|
| 821 |
-
id: Date.now().toString(),
|
| 822 |
-
role: "user",
|
| 823 |
-
content: prompt,
|
| 824 |
-
timestamp: new Date(),
|
| 825 |
-
sender,
|
| 826 |
-
};
|
| 827 |
-
|
| 828 |
-
setQuizMessages((prev) => [...prev, userMessage]);
|
| 829 |
-
setIsTyping(true);
|
| 830 |
-
|
| 831 |
-
try {
|
| 832 |
-
const docType = getCurrentDocTypeForChat();
|
| 833 |
-
const r = await apiChat({
|
| 834 |
-
user_id: user.email,
|
| 835 |
-
message: prompt,
|
| 836 |
-
learning_mode: "quiz",
|
| 837 |
-
language_preference: mapLanguagePref(language),
|
| 838 |
-
doc_type: docType,
|
| 839 |
-
course_id: backendCourseId, // ✅ NEW
|
| 840 |
-
});
|
| 841 |
-
|
| 842 |
-
const refs = (r.refs || [])
|
| 843 |
-
.map((x: any) => {
|
| 844 |
-
const a = x?.source_file ? String(x.source_file) : "";
|
| 845 |
-
const b = x?.section ? String(x.section) : "";
|
| 846 |
-
const s = `${a}${a && b ? " — " : ""}${b}`.trim();
|
| 847 |
-
return s || null;
|
| 848 |
-
})
|
| 849 |
-
.filter(Boolean) as string[];
|
| 850 |
-
|
| 851 |
-
const assistantMessage: Message = {
|
| 852 |
-
id: (Date.now() + 1).toString(),
|
| 853 |
-
role: "assistant",
|
| 854 |
-
content: r.reply || "",
|
| 855 |
-
timestamp: new Date(),
|
| 856 |
-
references: refs.length ? refs : [],
|
| 857 |
-
sender: spaceType === "group" ? groupMembers.find((m) => m.isAI) : undefined,
|
| 858 |
-
showNextButton: false,
|
| 859 |
-
};
|
| 860 |
-
|
| 861 |
-
setIsTyping(false);
|
| 862 |
-
|
| 863 |
-
setTimeout(() => {
|
| 864 |
-
setQuizMessages((prev) => [...prev, assistantMessage]);
|
| 865 |
-
setQuizState((prev) => ({
|
| 866 |
-
...prev,
|
| 867 |
-
currentQuestion: prev.currentQuestion + 1,
|
| 868 |
-
waitingForAnswer: true,
|
| 869 |
-
showNextButton: false,
|
| 870 |
-
}));
|
| 871 |
-
}, 50);
|
| 872 |
-
} catch (e: any) {
|
| 873 |
-
setIsTyping(false);
|
| 874 |
-
toast.error(e?.message || "Quiz failed");
|
| 875 |
-
|
| 876 |
-
const assistantMessage: Message = {
|
| 877 |
-
id: (Date.now() + 1).toString(),
|
| 878 |
-
role: "assistant",
|
| 879 |
-
content: "Sorry — quiz request failed. Please try again.",
|
| 880 |
-
timestamp: new Date(),
|
| 881 |
-
sender: spaceType === "group" ? groupMembers.find((m) => m.isAI) : undefined,
|
| 882 |
-
references: [],
|
| 883 |
-
};
|
| 884 |
-
|
| 885 |
-
setTimeout(() => setQuizMessages((prev) => [...prev, assistantMessage]), 50);
|
| 886 |
-
}
|
| 887 |
-
};
|
| 888 |
-
|
| 889 |
-
const handleStartQuiz = async () => {
|
| 890 |
-
if (!user) return;
|
| 891 |
-
|
| 892 |
-
setIsTyping(true);
|
| 893 |
-
try {
|
| 894 |
-
const docType = getCurrentDocTypeForChat();
|
| 895 |
-
|
| 896 |
-
const r = await apiQuizStart({
|
| 897 |
-
user_id: user.email,
|
| 898 |
-
language_preference: mapLanguagePref(language),
|
| 899 |
-
doc_type: docType,
|
| 900 |
-
learning_mode: "quiz",
|
| 901 |
-
course_id: backendCourseId, // ✅ NEW
|
| 902 |
-
});
|
| 903 |
-
|
| 904 |
-
const refs = (r.refs || [])
|
| 905 |
-
.map((x: any) => {
|
| 906 |
-
const a = x?.source_file ? String(x.source_file) : "";
|
| 907 |
-
const b = x?.section ? String(x.section) : "";
|
| 908 |
-
const s = `${a}${a && b ? " — " : ""}${b}`.trim();
|
| 909 |
-
return s || null;
|
| 910 |
-
})
|
| 911 |
-
.filter(Boolean) as string[];
|
| 912 |
-
|
| 913 |
-
const assistantMessage: Message = {
|
| 914 |
-
id: Date.now().toString(),
|
| 915 |
-
role: "assistant",
|
| 916 |
-
content: r.reply || "",
|
| 917 |
-
timestamp: new Date(),
|
| 918 |
-
references: refs.length ? refs : [],
|
| 919 |
-
sender: spaceType === "group" ? groupMembers.find((m) => m.isAI) : undefined,
|
| 920 |
-
showNextButton: false,
|
| 921 |
-
};
|
| 922 |
-
|
| 923 |
-
setIsTyping(false);
|
| 924 |
-
|
| 925 |
-
setTimeout(() => {
|
| 926 |
-
setQuizMessages((prev) => [...prev, assistantMessage]);
|
| 927 |
-
setQuizState({ currentQuestion: 0, waitingForAnswer: true, showNextButton: false });
|
| 928 |
-
}, 50);
|
| 929 |
-
} catch (e: any) {
|
| 930 |
-
setIsTyping(false);
|
| 931 |
-
toast.error(e?.message || "Start quiz failed");
|
| 932 |
-
|
| 933 |
-
const assistantMessage: Message = {
|
| 934 |
-
id: Date.now().toString(),
|
| 935 |
-
role: "assistant",
|
| 936 |
-
content: "Sorry — could not start the quiz. Please try again.",
|
| 937 |
-
timestamp: new Date(),
|
| 938 |
-
sender: spaceType === "group" ? groupMembers.find((m) => m.isAI) : undefined,
|
| 939 |
-
references: [],
|
| 940 |
-
};
|
| 941 |
-
|
| 942 |
-
setTimeout(() => setQuizMessages((prev) => [...prev, assistantMessage]), 50);
|
| 943 |
-
}
|
| 944 |
-
};
|
| 945 |
-
|
| 946 |
-
// =========================
|
| 947 |
-
// File Upload (FIXED) + pass course_id
|
| 948 |
-
// =========================
|
| 949 |
-
const handleFileUpload = async (input: File[] | FileList | null | undefined) => {
|
| 950 |
-
const files = Array.isArray(input) ? input : input ? Array.from(input) : [];
|
| 951 |
-
if (!files.length) return;
|
| 952 |
-
|
| 953 |
-
const newFiles: UploadedFile[] = files.map((file) => ({ file, type: "other" as FileType }));
|
| 954 |
-
setUploadedFiles((prev) => [...prev, ...newFiles]);
|
| 955 |
-
|
| 956 |
-
if (!user) return;
|
| 957 |
-
|
| 958 |
-
for (const f of files) {
|
| 959 |
-
const fp = `${f.name}::${f.size}::${f.lastModified}`;
|
| 960 |
-
if (uploadedFingerprintsRef.current.has(fp)) continue;
|
| 961 |
-
uploadedFingerprintsRef.current.add(fp);
|
| 962 |
-
|
| 963 |
-
try {
|
| 964 |
-
await apiUpload({
|
| 965 |
-
user_id: user.email,
|
| 966 |
-
doc_type: DOC_TYPE_MAP["other"] || "Other Course Document",
|
| 967 |
-
file: f,
|
| 968 |
-
course_id: backendCourseId, // ✅ NEW
|
| 969 |
-
});
|
| 970 |
-
toast.success(`File uploaded: ${f.name}`);
|
| 971 |
-
} catch (e: any) {
|
| 972 |
-
toast.error(e?.message || `Upload failed: ${f.name}`);
|
| 973 |
-
uploadedFingerprintsRef.current.delete(fp);
|
| 974 |
-
}
|
| 975 |
-
}
|
| 976 |
-
};
|
| 977 |
-
|
| 978 |
-
const handleRemoveFile = (arg: any) => {
|
| 979 |
-
setUploadedFiles((prev) => {
|
| 980 |
-
if (!prev.length) return prev;
|
| 981 |
-
|
| 982 |
-
let idx = -1;
|
| 983 |
-
|
| 984 |
-
if (typeof arg === "number") {
|
| 985 |
-
idx = arg;
|
| 986 |
-
} else {
|
| 987 |
-
const file =
|
| 988 |
-
arg?.file instanceof File
|
| 989 |
-
? (arg as UploadedFile).file
|
| 990 |
-
: arg instanceof File
|
| 991 |
-
? (arg as File)
|
| 992 |
-
: null;
|
| 993 |
-
|
| 994 |
-
if (file) {
|
| 995 |
-
idx = prev.findIndex(
|
| 996 |
-
(x) =>
|
| 997 |
-
x.file.name === file.name && x.file.size === file.size && x.file.lastModified === file.lastModified
|
| 998 |
-
);
|
| 999 |
-
}
|
| 1000 |
-
}
|
| 1001 |
-
|
| 1002 |
-
if (idx < 0 || idx >= prev.length) return prev;
|
| 1003 |
-
|
| 1004 |
-
const removed = prev[idx]?.file;
|
| 1005 |
-
const next = prev.filter((_, i) => i !== idx);
|
| 1006 |
-
|
| 1007 |
-
if (removed) {
|
| 1008 |
-
const fp = `${removed.name}::${removed.size}::${removed.lastModified}`;
|
| 1009 |
-
uploadedFingerprintsRef.current.delete(fp);
|
| 1010 |
-
}
|
| 1011 |
-
|
| 1012 |
-
return next;
|
| 1013 |
-
});
|
| 1014 |
-
};
|
| 1015 |
-
|
| 1016 |
-
const handleFileTypeChange = async (index: number, type: FileType) => {
|
| 1017 |
-
if (!user) return;
|
| 1018 |
-
|
| 1019 |
-
const target = uploadedFiles[index]?.file;
|
| 1020 |
-
if (!target) return;
|
| 1021 |
-
|
| 1022 |
-
setUploadedFiles((prev) => prev.map((f, i) => (i === index ? { ...f, type } : f)));
|
| 1023 |
-
|
| 1024 |
-
const fp = `${target.name}::${target.size}::${target.lastModified}`;
|
| 1025 |
-
if (uploadedFingerprintsRef.current.has(fp)) return;
|
| 1026 |
-
uploadedFingerprintsRef.current.add(fp);
|
| 1027 |
-
|
| 1028 |
-
try {
|
| 1029 |
-
await apiUpload({
|
| 1030 |
-
user_id: user.email,
|
| 1031 |
-
doc_type: DOC_TYPE_MAP[type] || "Other Course Document",
|
| 1032 |
-
file: target,
|
| 1033 |
-
course_id: backendCourseId, // ✅ NEW
|
| 1034 |
-
});
|
| 1035 |
-
toast.success("File uploaded to backend");
|
| 1036 |
-
} catch (e: any) {
|
| 1037 |
-
toast.error(e?.message || "Upload failed");
|
| 1038 |
-
uploadedFingerprintsRef.current.delete(fp);
|
| 1039 |
-
}
|
| 1040 |
-
};
|
| 1041 |
-
|
| 1042 |
-
// ...(以下你的原逻辑全部保持不变)
|
| 1043 |
-
// 为避免超长,这里不再重复粘贴你后半段完全一致的 UI 渲染部分
|
| 1044 |
-
// 你只需要把本文件整体替换为本版本(我已保留你渲染部分结构不变)
|
| 1045 |
-
|
| 1046 |
-
const isCurrentChatSaved = (): SavedChat | null => {
|
| 1047 |
-
if (messages.length <= 1) return null;
|
| 1048 |
-
|
| 1049 |
-
return (
|
| 1050 |
-
savedChats.find((chat) => {
|
| 1051 |
-
if (chat.chatMode !== chatMode) return false;
|
| 1052 |
-
if (chat.messages.length !== messages.length) return false;
|
| 1053 |
-
|
| 1054 |
-
return chat.messages.every((savedMsg, idx) => {
|
| 1055 |
-
const currentMsg = messages[idx];
|
| 1056 |
-
return (
|
| 1057 |
-
savedMsg.id === currentMsg.id &&
|
| 1058 |
-
savedMsg.role === currentMsg.role &&
|
| 1059 |
-
savedMsg.content === currentMsg.content
|
| 1060 |
-
);
|
| 1061 |
-
});
|
| 1062 |
-
}) || null
|
| 1063 |
-
);
|
| 1064 |
-
};
|
| 1065 |
-
|
| 1066 |
-
const handleDeleteSavedChat = (id: string) => {
|
| 1067 |
-
setSavedChats((prev) => prev.filter((chat) => chat.id !== id));
|
| 1068 |
-
toast.success("Chat deleted");
|
| 1069 |
-
};
|
| 1070 |
-
|
| 1071 |
-
const handleRenameSavedChat = (id: string, newTitle: string) => {
|
| 1072 |
-
setSavedChats((prev) => prev.map((chat) => (chat.id === id ? { ...chat, title: newTitle } : chat)));
|
| 1073 |
-
toast.success("Chat renamed");
|
| 1074 |
-
};
|
| 1075 |
-
|
| 1076 |
-
const handleSaveChat = () => {
|
| 1077 |
-
if (messages.length <= 1) {
|
| 1078 |
-
toast.info("No conversation to save");
|
| 1079 |
-
return;
|
| 1080 |
-
}
|
| 1081 |
-
|
| 1082 |
-
const existingChat = isCurrentChatSaved();
|
| 1083 |
-
if (existingChat) {
|
| 1084 |
-
handleDeleteSavedChat(existingChat.id);
|
| 1085 |
-
toast.success("Chat unsaved");
|
| 1086 |
-
return;
|
| 1087 |
-
}
|
| 1088 |
-
|
| 1089 |
-
const title = `Chat - ${
|
| 1090 |
-
chatMode === "ask" ? "Ask" : chatMode === "review" ? "Review" : "Quiz"
|
| 1091 |
-
} - ${new Date().toLocaleDateString()}`;
|
| 1092 |
-
|
| 1093 |
-
const newChat: SavedChat = {
|
| 1094 |
-
id: Date.now().toString(),
|
| 1095 |
-
title,
|
| 1096 |
-
messages: [...messages],
|
| 1097 |
-
chatMode,
|
| 1098 |
-
timestamp: new Date(),
|
| 1099 |
-
};
|
| 1100 |
-
|
| 1101 |
-
setSavedChats((prev) => [newChat, ...prev]);
|
| 1102 |
-
setLeftPanelVisible(true);
|
| 1103 |
-
toast.success("Chat saved!");
|
| 1104 |
-
};
|
| 1105 |
-
|
| 1106 |
-
const handleLoadChat = (savedChat: SavedChat) => {
|
| 1107 |
-
setChatMode(savedChat.chatMode);
|
| 1108 |
-
|
| 1109 |
-
if (savedChat.chatMode === "ask") setAskMessages(savedChat.messages);
|
| 1110 |
-
else if (savedChat.chatMode === "review") setReviewMessages(savedChat.messages);
|
| 1111 |
-
else {
|
| 1112 |
-
setQuizMessages(savedChat.messages);
|
| 1113 |
-
setQuizState({ currentQuestion: 0, waitingForAnswer: false, showNextButton: false });
|
| 1114 |
}
|
| 1115 |
-
|
| 1116 |
-
toast.success("Chat loaded!");
|
| 1117 |
-
};
|
| 1118 |
-
|
| 1119 |
-
const handleClearConversation = (shouldSave: boolean = false) => {
|
| 1120 |
-
if (shouldSave) handleSaveChat();
|
| 1121 |
-
|
| 1122 |
-
const initialMessages: Record<ChatMode, Message[]> = {
|
| 1123 |
-
ask: [
|
| 1124 |
-
{
|
| 1125 |
-
id: "1",
|
| 1126 |
-
role: "assistant",
|
| 1127 |
-
content:
|
| 1128 |
-
"👋 Hi! I'm Clare, your AI teaching assistant. I'm here to help you learn through personalized tutoring. Feel free to ask me anything about the course materials, or upload your documents to get started!",
|
| 1129 |
-
timestamp: new Date(),
|
| 1130 |
-
},
|
| 1131 |
-
],
|
| 1132 |
-
review: [
|
| 1133 |
-
{
|
| 1134 |
-
id: "review-1",
|
| 1135 |
-
role: "assistant",
|
| 1136 |
-
content:
|
| 1137 |
-
"📚 Welcome to Review mode! I'll help you review and consolidate your learning. Let's go through what you've learned!",
|
| 1138 |
-
timestamp: new Date(),
|
| 1139 |
-
},
|
| 1140 |
-
],
|
| 1141 |
-
quiz: [
|
| 1142 |
-
{
|
| 1143 |
-
id: "quiz-1",
|
| 1144 |
-
role: "assistant",
|
| 1145 |
-
content:
|
| 1146 |
-
"🎯 Welcome to Quiz mode! I'll test your understanding with personalized questions based on your learning history. Ready to start?",
|
| 1147 |
-
timestamp: new Date(),
|
| 1148 |
-
},
|
| 1149 |
-
],
|
| 1150 |
-
};
|
| 1151 |
-
|
| 1152 |
-
if (chatMode === "ask") setAskMessages(initialMessages.ask);
|
| 1153 |
-
else if (chatMode === "review") setReviewMessages(initialMessages.review);
|
| 1154 |
-
else {
|
| 1155 |
-
setQuizMessages(initialMessages.quiz);
|
| 1156 |
-
setQuizState({ currentQuestion: 0, waitingForAnswer: false, showNextButton: false });
|
| 1157 |
-
}
|
| 1158 |
-
};
|
| 1159 |
-
|
| 1160 |
-
const handleSave = (
|
| 1161 |
-
content: string,
|
| 1162 |
-
type: "export" | "quiz" | "summary",
|
| 1163 |
-
saveAsChat: boolean = false,
|
| 1164 |
-
format: "pdf" | "text" = "text",
|
| 1165 |
-
workspaceId?: string
|
| 1166 |
-
) => {
|
| 1167 |
-
if (!content.trim()) return;
|
| 1168 |
-
|
| 1169 |
-
if (saveAsChat && type !== "summary") {
|
| 1170 |
-
const chatMessages: Message[] = [
|
| 1171 |
-
{
|
| 1172 |
-
id: "1",
|
| 1173 |
-
role: "assistant",
|
| 1174 |
-
content:
|
| 1175 |
-
"👋 Hi! I'm Clare, your AI teaching assistant. I'm here to help you learn through personalized tutoring. Feel free to ask me anything about the course materials, or upload your documents to get started!",
|
| 1176 |
-
timestamp: new Date(),
|
| 1177 |
-
},
|
| 1178 |
-
{ id: Date.now().toString(), role: "assistant", content, timestamp: new Date() },
|
| 1179 |
-
];
|
| 1180 |
-
|
| 1181 |
-
const title = type === "export" ? "Exported Conversation" : "Micro-Quiz";
|
| 1182 |
-
const newChat: SavedChat = {
|
| 1183 |
-
id: Date.now().toString(),
|
| 1184 |
-
title: `${title} - ${new Date().toLocaleDateString()}`,
|
| 1185 |
-
messages: chatMessages,
|
| 1186 |
-
chatMode: "ask",
|
| 1187 |
-
timestamp: new Date(),
|
| 1188 |
-
};
|
| 1189 |
-
|
| 1190 |
-
setSavedChats((prev) => [newChat, ...prev]);
|
| 1191 |
-
setLeftPanelVisible(true);
|
| 1192 |
-
toast.success("Chat saved!");
|
| 1193 |
-
return;
|
| 1194 |
-
}
|
| 1195 |
-
|
| 1196 |
-
const existingItem = savedItems.find((item) => item.content === content && item.type === type);
|
| 1197 |
-
if (existingItem) {
|
| 1198 |
-
handleUnsave(existingItem.id);
|
| 1199 |
-
return;
|
| 1200 |
-
}
|
| 1201 |
-
|
| 1202 |
-
const title = type === "export" ? "Exported Conversation" : type === "quiz" ? "Micro-Quiz" : "Summarization";
|
| 1203 |
-
const newItem: SavedItem = {
|
| 1204 |
-
id: Date.now().toString(),
|
| 1205 |
-
title: `${title} - ${new Date().toLocaleDateString()}`,
|
| 1206 |
-
content,
|
| 1207 |
-
type,
|
| 1208 |
-
timestamp: new Date(),
|
| 1209 |
-
isSaved: true,
|
| 1210 |
-
format,
|
| 1211 |
-
workspaceId: workspaceId || currentWorkspaceId,
|
| 1212 |
-
};
|
| 1213 |
-
|
| 1214 |
-
setSavedItems((prev) => [newItem, ...prev]);
|
| 1215 |
-
setRecentlySavedId(newItem.id);
|
| 1216 |
-
setLeftPanelVisible(true);
|
| 1217 |
-
|
| 1218 |
-
setTimeout(() => setRecentlySavedId(null), 2000);
|
| 1219 |
-
toast.success("Saved for later!");
|
| 1220 |
-
};
|
| 1221 |
-
|
| 1222 |
-
const handleUnsave = (id: string) => {
|
| 1223 |
-
setSavedItems((prev) => prev.filter((item) => item.id !== id));
|
| 1224 |
-
toast.success("Removed from saved items");
|
| 1225 |
-
};
|
| 1226 |
-
|
| 1227 |
-
const handleCreateWorkspace = (payload: { name: string; category: "course" | "personal"; courseId?: string; invites: string[] }) => {
|
| 1228 |
-
const id = `group-${Date.now()}`;
|
| 1229 |
-
const avatar = `https://api.dicebear.com/7.x/shapes/svg?seed=${encodeURIComponent(payload.name)}`;
|
| 1230 |
-
|
| 1231 |
-
const creatorMember: GroupMember = user
|
| 1232 |
-
? {
|
| 1233 |
-
id: user.email,
|
| 1234 |
-
name: user.name,
|
| 1235 |
-
email: user.email,
|
| 1236 |
-
avatar: `https://api.dicebear.com/7.x/avataaars/svg?seed=${encodeURIComponent(user.email)}`,
|
| 1237 |
-
}
|
| 1238 |
-
: { id: "unknown", name: "Unknown", email: "unknown@email.com" };
|
| 1239 |
-
|
| 1240 |
-
const members: GroupMember[] = [
|
| 1241 |
-
creatorMember,
|
| 1242 |
-
...payload.invites.map((email) => ({
|
| 1243 |
-
id: email,
|
| 1244 |
-
name: email.split("@")[0] || email,
|
| 1245 |
-
email,
|
| 1246 |
-
})),
|
| 1247 |
-
];
|
| 1248 |
-
|
| 1249 |
-
let newWorkspace: Workspace;
|
| 1250 |
-
|
| 1251 |
-
if (payload.category === "course") {
|
| 1252 |
-
const courseInfo = availableCourses.find((c) => c.id === payload.courseId);
|
| 1253 |
-
newWorkspace = {
|
| 1254 |
-
id,
|
| 1255 |
-
name: payload.name,
|
| 1256 |
-
type: "group",
|
| 1257 |
-
avatar,
|
| 1258 |
-
members,
|
| 1259 |
-
category: "course",
|
| 1260 |
-
courseName: courseInfo?.name || "Untitled Course",
|
| 1261 |
-
courseInfo,
|
| 1262 |
-
};
|
| 1263 |
-
} else {
|
| 1264 |
-
newWorkspace = {
|
| 1265 |
-
id,
|
| 1266 |
-
name: payload.name,
|
| 1267 |
-
type: "group",
|
| 1268 |
-
avatar,
|
| 1269 |
-
members,
|
| 1270 |
-
category: "personal",
|
| 1271 |
-
isEditable: true,
|
| 1272 |
-
};
|
| 1273 |
-
}
|
| 1274 |
-
|
| 1275 |
-
setWorkspaces((prev) => [...prev, newWorkspace]);
|
| 1276 |
-
setCurrentWorkspaceId(id);
|
| 1277 |
-
|
| 1278 |
-
if (payload.category === "course" && payload.courseId) {
|
| 1279 |
-
setCurrentCourseId(payload.courseId);
|
| 1280 |
-
}
|
| 1281 |
-
|
| 1282 |
-
toast.success("New group workspace created");
|
| 1283 |
-
};
|
| 1284 |
-
|
| 1285 |
-
const handleReviewClick = () => {
|
| 1286 |
-
setChatMode("review");
|
| 1287 |
-
setShowReviewBanner(false);
|
| 1288 |
-
localStorage.setItem("reviewBannerDismissed", "true");
|
| 1289 |
-
};
|
| 1290 |
-
|
| 1291 |
-
const handleDismissReviewBanner = () => {
|
| 1292 |
-
setShowReviewBanner(false);
|
| 1293 |
-
localStorage.setItem("reviewBannerDismissed", "true");
|
| 1294 |
-
};
|
| 1295 |
-
|
| 1296 |
-
const handleLogin = (newUser: User) => {
|
| 1297 |
-
const hydrated = hydrateUserFromStorage(newUser);
|
| 1298 |
-
setUser(hydrated);
|
| 1299 |
-
setShowOnboarding(!hydrated.onboardingCompleted);
|
| 1300 |
-
};
|
| 1301 |
-
|
| 1302 |
-
const handleOnboardingComplete = (updatedUser: User) => {
|
| 1303 |
-
handleUserSave({ ...updatedUser, onboardingCompleted: true });
|
| 1304 |
-
setShowOnboarding(false);
|
| 1305 |
-
};
|
| 1306 |
-
|
| 1307 |
-
const handleOnboardingSkip = () => {
|
| 1308 |
-
updateUser({ onboardingCompleted: true });
|
| 1309 |
-
setShowOnboarding(false);
|
| 1310 |
};
|
| 1311 |
|
| 1312 |
-
|
| 1313 |
-
|
| 1314 |
-
|
| 1315 |
-
|
| 1316 |
-
|
| 1317 |
-
return (
|
| 1318 |
-
<div className="fixed inset-0 w-full bg-background overflow-hidden">
|
| 1319 |
-
<Toaster />
|
| 1320 |
-
|
| 1321 |
-
<div className="flex h-full min-h-0 min-w-0 flex-col overflow-hidden">
|
| 1322 |
-
<div className="flex-shrink-0">
|
| 1323 |
-
<Header
|
| 1324 |
-
user={user}
|
| 1325 |
-
onMenuClick={() => setLeftSidebarOpen(!leftSidebarOpen)}
|
| 1326 |
-
onUserClick={() => setShowProfileEditor(true)}
|
| 1327 |
-
isDarkMode={isDarkMode}
|
| 1328 |
-
onToggleDarkMode={() => setIsDarkMode(!isDarkMode)}
|
| 1329 |
-
language={language}
|
| 1330 |
-
onLanguageChange={setLanguage}
|
| 1331 |
-
workspaces={workspaces}
|
| 1332 |
-
currentWorkspace={currentWorkspace}
|
| 1333 |
-
onWorkspaceChange={setCurrentWorkspaceId}
|
| 1334 |
-
onCreateWorkspace={handleCreateWorkspace}
|
| 1335 |
-
onLogout={() => setUser(null)}
|
| 1336 |
-
availableCourses={availableCourses}
|
| 1337 |
-
onUserUpdate={handleUserSave}
|
| 1338 |
-
reviewStarOpacity={reviewStarOpacity}
|
| 1339 |
-
reviewEnergyPct={reviewEnergyPct}
|
| 1340 |
-
onStarClick={() => {
|
| 1341 |
-
setChatMode("review");
|
| 1342 |
-
setShowReviewBanner(false);
|
| 1343 |
-
localStorage.setItem("reviewBannerDismissed", "true");
|
| 1344 |
-
}}
|
| 1345 |
-
/>
|
| 1346 |
-
</div>
|
| 1347 |
-
|
| 1348 |
-
{showProfileEditor && user && (
|
| 1349 |
-
<ProfileEditor user={user} onSave={handleUserSave} onClose={() => setShowProfileEditor(false)} />
|
| 1350 |
-
)}
|
| 1351 |
-
|
| 1352 |
-
{showReviewBanner && (
|
| 1353 |
-
<div className="flex-shrink-0 w-full bg-background border-b border-border relative z-50">
|
| 1354 |
-
<ReviewBanner onReview={handleReviewClick} onDismiss={handleDismissReviewBanner} />
|
| 1355 |
-
</div>
|
| 1356 |
-
)}
|
| 1357 |
-
|
| 1358 |
-
<div className="flex flex-1 min-h-0 min-w-0 overflow-hidden relative">
|
| 1359 |
-
{!leftPanelVisible && (
|
| 1360 |
-
<Button
|
| 1361 |
-
variant="secondary"
|
| 1362 |
-
size="icon"
|
| 1363 |
-
onClick={() => setLeftPanelVisible(true)}
|
| 1364 |
-
className="hidden lg:flex absolute z-[100] h-8 w-5 shadow-lg rounded-full bg-card border border-border transition-all duration-200 ease-in-out hover:translate-x-[10px]"
|
| 1365 |
-
style={{ left: "-5px", top: "1rem" }}
|
| 1366 |
-
title="Open panel"
|
| 1367 |
-
>
|
| 1368 |
-
<ChevronRight className="h-3 w-3" />
|
| 1369 |
-
</Button>
|
| 1370 |
-
)}
|
| 1371 |
-
|
| 1372 |
-
{leftSidebarOpen && (
|
| 1373 |
-
<div className="fixed inset-0 bg-black/50 z-40 lg:hidden" onClick={() => setLeftSidebarOpen(false)} />
|
| 1374 |
-
)}
|
| 1375 |
-
|
| 1376 |
-
{leftPanelVisible ? (
|
| 1377 |
-
<aside className="hidden lg:flex w-80 h-full min-h-0 min-w-0 bg-card border-r border-border overflow-hidden relative flex-col">
|
| 1378 |
-
<Button
|
| 1379 |
-
variant="secondary"
|
| 1380 |
-
size="icon"
|
| 1381 |
-
onClick={() => setLeftPanelVisible(false)}
|
| 1382 |
-
className="absolute z-[70] h-8 w-5 shadow-lg rounded-full bg-card border border-border"
|
| 1383 |
-
style={{ right: "-10px", top: "1rem" }}
|
| 1384 |
-
title="Close panel"
|
| 1385 |
-
>
|
| 1386 |
-
<ChevronLeft className="h-3 w-3" />
|
| 1387 |
-
</Button>
|
| 1388 |
-
|
| 1389 |
-
<div className="flex-1 min-h-0 min-w-0 overflow-hidden">
|
| 1390 |
-
<LeftSidebar
|
| 1391 |
-
learningMode={learningMode}
|
| 1392 |
-
language={language}
|
| 1393 |
-
onLearningModeChange={setLearningMode}
|
| 1394 |
-
onLanguageChange={setLanguage}
|
| 1395 |
-
spaceType={sidebarSpaceType}
|
| 1396 |
-
groupMembers={sidebarGroupMembers}
|
| 1397 |
-
user={user}
|
| 1398 |
-
onLogin={setUser}
|
| 1399 |
-
onLogout={() => setUser(null)}
|
| 1400 |
-
isLoggedIn={!!user}
|
| 1401 |
-
onEditProfile={() => setShowProfileEditor(true)}
|
| 1402 |
-
savedItems={savedItems}
|
| 1403 |
-
recentlySavedId={recentlySavedId}
|
| 1404 |
-
onUnsave={handleUnsave}
|
| 1405 |
-
onSave={handleSave}
|
| 1406 |
-
savedChats={savedChats}
|
| 1407 |
-
onLoadChat={handleLoadChat}
|
| 1408 |
-
onDeleteSavedChat={handleDeleteSavedChat}
|
| 1409 |
-
onRenameSavedChat={handleRenameSavedChat}
|
| 1410 |
-
currentWorkspaceId={currentWorkspaceId}
|
| 1411 |
-
workspaces={sidebarWorkspaces}
|
| 1412 |
-
selectedCourse={currentCourseId}
|
| 1413 |
-
availableCourses={availableCourses}
|
| 1414 |
-
/>
|
| 1415 |
-
</div>
|
| 1416 |
-
</aside>
|
| 1417 |
-
) : null}
|
| 1418 |
-
|
| 1419 |
-
<aside
|
| 1420 |
-
className={[
|
| 1421 |
-
"fixed lg:hidden z-50",
|
| 1422 |
-
"left-0 top-0 bottom-0",
|
| 1423 |
-
"w-80 bg-card border-r border-border",
|
| 1424 |
-
"transform transition-transform duration-300 ease-in-out",
|
| 1425 |
-
leftSidebarOpen ? "translate-x-0" : "-translate-x-full",
|
| 1426 |
-
"overflow-hidden flex flex-col",
|
| 1427 |
-
].join(" ")}
|
| 1428 |
-
>
|
| 1429 |
-
<div className="p-4 border-b border-border flex justify-between items-center flex-shrink-0">
|
| 1430 |
-
<h3>Settings & Guide</h3>
|
| 1431 |
-
<Button variant="ghost" size="icon" onClick={() => setLeftSidebarOpen(false)}>
|
| 1432 |
-
<X className="h-5 w-5" />
|
| 1433 |
-
</Button>
|
| 1434 |
-
</div>
|
| 1435 |
-
|
| 1436 |
-
<div className="flex-1 min-h-0 overflow-hidden">
|
| 1437 |
-
<LeftSidebar
|
| 1438 |
-
learningMode={learningMode}
|
| 1439 |
-
language={language}
|
| 1440 |
-
onLearningModeChange={setLearningMode}
|
| 1441 |
-
onLanguageChange={setLanguage}
|
| 1442 |
-
spaceType={sidebarSpaceType}
|
| 1443 |
-
groupMembers={sidebarGroupMembers}
|
| 1444 |
-
user={user}
|
| 1445 |
-
onLogin={setUser}
|
| 1446 |
-
onLogout={() => setUser(null)}
|
| 1447 |
-
isLoggedIn={!!user}
|
| 1448 |
-
onEditProfile={() => setShowProfileEditor(true)}
|
| 1449 |
-
savedItems={savedItems}
|
| 1450 |
-
recentlySavedId={recentlySavedId}
|
| 1451 |
-
onUnsave={handleUnsave}
|
| 1452 |
-
onSave={handleSave}
|
| 1453 |
-
savedChats={savedChats}
|
| 1454 |
-
onLoadChat={handleLoadChat}
|
| 1455 |
-
onDeleteSavedChat={handleDeleteSavedChat}
|
| 1456 |
-
onRenameSavedChat={handleRenameSavedChat}
|
| 1457 |
-
currentWorkspaceId={currentWorkspaceId}
|
| 1458 |
-
workspaces={sidebarWorkspaces}
|
| 1459 |
-
selectedCourse={currentCourseId}
|
| 1460 |
-
availableCourses={availableCourses}
|
| 1461 |
-
/>
|
| 1462 |
-
</div>
|
| 1463 |
-
</aside>
|
| 1464 |
-
|
| 1465 |
-
<main className="flex flex-1 min-w-0 min-h-0 overflow-hidden flex-col">
|
| 1466 |
-
<div className="flex-1 min-h-0 min-w-0 overflow-hidden">
|
| 1467 |
-
<ChatArea
|
| 1468 |
-
messages={messages}
|
| 1469 |
-
onSendMessage={handleSendMessage}
|
| 1470 |
-
uploadedFiles={uploadedFiles}
|
| 1471 |
-
onFileUpload={handleFileUpload}
|
| 1472 |
-
onRemoveFile={handleRemoveFile}
|
| 1473 |
-
onFileTypeChange={handleFileTypeChange}
|
| 1474 |
-
memoryProgress={memoryProgress}
|
| 1475 |
-
isLoggedIn={!!user}
|
| 1476 |
-
learningMode={learningMode}
|
| 1477 |
-
onClearConversation={() => setShowClearDialog(true)}
|
| 1478 |
-
onSaveChat={handleSaveChat}
|
| 1479 |
-
onLearningModeChange={setLearningMode}
|
| 1480 |
-
spaceType={spaceType}
|
| 1481 |
-
chatMode={chatMode}
|
| 1482 |
-
onChatModeChange={setChatMode}
|
| 1483 |
-
onNextQuestion={handleNextQuestion}
|
| 1484 |
-
onStartQuiz={handleStartQuiz}
|
| 1485 |
-
quizState={quizState}
|
| 1486 |
-
isTyping={isTyping}
|
| 1487 |
-
showClearDialog={showClearDialog}
|
| 1488 |
-
onConfirmClear={(shouldSave) => {
|
| 1489 |
-
handleClearConversation(shouldSave);
|
| 1490 |
-
setShowClearDialog(false);
|
| 1491 |
-
}}
|
| 1492 |
-
onCancelClear={() => setShowClearDialog(false)}
|
| 1493 |
-
savedChats={savedChats}
|
| 1494 |
-
workspaces={workspaces}
|
| 1495 |
-
currentWorkspaceId={currentWorkspaceId}
|
| 1496 |
-
onSaveFile={(content, type, _format, targetWorkspaceId) =>
|
| 1497 |
-
handleSave(content, type, false, (_format ?? "text") as "pdf" | "text", targetWorkspaceId)
|
| 1498 |
-
}
|
| 1499 |
-
leftPanelVisible={leftPanelVisible}
|
| 1500 |
-
currentCourseId={currentCourseId}
|
| 1501 |
-
onCourseChange={handleCourseChange}
|
| 1502 |
-
availableCourses={availableCourses}
|
| 1503 |
-
showReviewBanner={showReviewBanner}
|
| 1504 |
-
onReviewActivity={handleReviewActivity}
|
| 1505 |
-
currentUserId={user?.email}
|
| 1506 |
-
docType={"Syllabus"}
|
| 1507 |
-
onProfileBioUpdate={(bio) => updateUser({ bio })}
|
| 1508 |
-
/>
|
| 1509 |
-
</div>
|
| 1510 |
-
</main>
|
| 1511 |
-
</div>
|
| 1512 |
-
</div>
|
| 1513 |
-
</div>
|
| 1514 |
-
);
|
| 1515 |
}
|
| 1516 |
|
| 1517 |
export default App;
|
|
|
|
| 31 |
name: string;
|
| 32 |
kind: MessageAttachmentKind;
|
| 33 |
size: number;
|
| 34 |
+
// 这两个只是展示用,不影响后端
|
| 35 |
+
fileType?: FileType; // syllabus / lecture-slides / ...
|
| 36 |
}
|
| 37 |
|
| 38 |
export interface Message {
|
|
|
|
| 43 |
references?: string[];
|
| 44 |
sender?: GroupMember;
|
| 45 |
showNextButton?: boolean;
|
| 46 |
+
|
| 47 |
+
// ✅ NEW: show files “with” the user message (metadata only)
|
| 48 |
attachments?: MessageAttachment[];
|
| 49 |
+
|
| 50 |
questionData?: {
|
| 51 |
type: "multiple-choice" | "fill-in-blank" | "open-ended";
|
| 52 |
question: string;
|
|
|
|
| 58 |
}
|
| 59 |
|
| 60 |
export interface User {
|
| 61 |
+
// required identity
|
| 62 |
name: string;
|
| 63 |
email: string;
|
| 64 |
+
|
| 65 |
+
// profile fields
|
| 66 |
studentId?: string;
|
| 67 |
department?: string;
|
| 68 |
yearLevel?: string;
|
| 69 |
major?: string;
|
| 70 |
+
bio?: string; // may be generated by Clare, then user can edit in ProfileEditor
|
| 71 |
+
|
| 72 |
+
// learning preferences
|
| 73 |
+
learningStyle?: string; // "visual" | "auditory" | ...
|
| 74 |
+
learningPace?: string; // "slow" | "moderate" | "fast"
|
| 75 |
+
|
| 76 |
+
// avatar
|
| 77 |
avatarUrl?: string;
|
| 78 |
+
|
| 79 |
+
// control flags
|
| 80 |
onboardingCompleted?: boolean;
|
| 81 |
}
|
| 82 |
|
|
|
|
| 109 |
isEditable?: boolean;
|
| 110 |
}
|
| 111 |
|
| 112 |
+
export type FileType =
|
| 113 |
+
| "syllabus"
|
| 114 |
+
| "lecture-slides"
|
| 115 |
+
| "literature-review"
|
| 116 |
+
| "other";
|
| 117 |
|
| 118 |
export interface UploadedFile {
|
| 119 |
file: File;
|
| 120 |
type: FileType;
|
| 121 |
}
|
| 122 |
|
| 123 |
+
export type LearningMode =
|
| 124 |
+
| "general"
|
| 125 |
+
| "concept"
|
| 126 |
+
| "socratic"
|
| 127 |
+
| "exam"
|
| 128 |
+
| "assignment"
|
| 129 |
+
| "summary";
|
| 130 |
export type Language = "auto" | "en" | "zh";
|
| 131 |
export type ChatMode = "ask" | "review" | "quiz";
|
| 132 |
|
|
|
|
| 156 |
other: "Other Course Document",
|
| 157 |
};
|
| 158 |
|
| 159 |
+
// ✅ UI course -> backend course_id mapping
|
| 160 |
+
// 你现在后端只有 course_ist345,所以先把 My Space 的 course1 映射过去即可
|
| 161 |
+
const BACKEND_COURSE_ID_MAP: Record<string, string> = {
|
| 162 |
+
course1: "course_ist345",
|
| 163 |
+
course2: "course_ist345",
|
| 164 |
+
course3: "course_ist345",
|
| 165 |
+
course4: "course_ist345",
|
| 166 |
+
};
|
| 167 |
+
|
| 168 |
function mapLanguagePref(lang: Language): string {
|
| 169 |
if (lang === "zh") return "中文";
|
| 170 |
if (lang === "en") return "English";
|
|
|
|
| 215 |
function App() {
|
| 216 |
const [isDarkMode, setIsDarkMode] = useState(() => {
|
| 217 |
const saved = localStorage.getItem("theme");
|
| 218 |
+
return (
|
| 219 |
+
saved === "dark" ||
|
| 220 |
+
(!saved && window.matchMedia("(prefers-color-scheme: dark)").matches)
|
| 221 |
+
);
|
| 222 |
});
|
| 223 |
|
| 224 |
const [user, setUser] = useState<User | null>(null);
|
| 225 |
|
|
|
|
|
|
|
|
|
|
| 226 |
const updateUser = (patch: Partial<User>) => {
|
| 227 |
setUser((prev) => (prev ? { ...prev, ...patch } : prev));
|
| 228 |
};
|
|
|
|
| 233 |
return {
|
| 234 |
...prev,
|
| 235 |
...next,
|
| 236 |
+
onboardingCompleted:
|
| 237 |
+
next.onboardingCompleted ?? prev.onboardingCompleted,
|
| 238 |
};
|
| 239 |
});
|
| 240 |
};
|
|
|
|
| 249 |
}, [user]);
|
| 250 |
|
| 251 |
const MYSPACE_COURSE_KEY = "myspace_selected_course";
|
| 252 |
+
|
| 253 |
const [currentCourseId, setCurrentCourseId] = useState<string>(() => {
|
| 254 |
return localStorage.getItem(MYSPACE_COURSE_KEY) || "course1";
|
| 255 |
});
|
|
|
|
| 258 |
{
|
| 259 |
id: "course1",
|
| 260 |
name: "Introduction to AI",
|
| 261 |
+
instructor: {
|
| 262 |
+
name: "Dr. Sarah Johnson",
|
| 263 |
+
email: "sarah.johnson@university.edu",
|
| 264 |
+
},
|
| 265 |
+
teachingAssistant: {
|
| 266 |
+
name: "Michael Chen",
|
| 267 |
+
email: "michael.chen@university.edu",
|
| 268 |
+
},
|
| 269 |
},
|
| 270 |
{
|
| 271 |
id: "course2",
|
| 272 |
name: "Machine Learning",
|
| 273 |
instructor: { name: "Prof. David Lee", email: "david.lee@university.edu" },
|
| 274 |
+
teachingAssistant: {
|
| 275 |
+
name: "Emily Zhang",
|
| 276 |
+
email: "emily.zhang@university.edu",
|
| 277 |
+
},
|
| 278 |
},
|
| 279 |
+
// ... keep your other courses unchanged
|
| 280 |
{
|
| 281 |
id: "course3",
|
| 282 |
name: "Data Structures",
|
|
|
|
| 325 |
const [language, setLanguage] = useState<Language>("auto");
|
| 326 |
const [chatMode, setChatMode] = useState<ChatMode>("ask");
|
| 327 |
|
| 328 |
+
const messages =
|
| 329 |
+
chatMode === "ask"
|
| 330 |
+
? askMessages
|
| 331 |
+
: chatMode === "review"
|
| 332 |
+
? reviewMessages
|
| 333 |
+
: quizMessages;
|
| 334 |
|
| 335 |
const prevChatModeRef = useRef<ChatMode>(chatMode);
|
| 336 |
|
|
|
|
| 350 |
}
|
| 351 |
|
| 352 |
const hasUserMessages = currentMessages.some((msg) => msg.role === "user");
|
| 353 |
+
const expectedWelcomeId =
|
| 354 |
+
chatMode === "ask"
|
| 355 |
+
? "1"
|
| 356 |
+
: chatMode === "review"
|
| 357 |
+
? "review-1"
|
| 358 |
+
: "quiz-1";
|
| 359 |
+
const hasWelcomeMessage = currentMessages.some(
|
| 360 |
+
(msg) => msg.id === expectedWelcomeId && msg.role === "assistant"
|
| 361 |
+
);
|
| 362 |
const modeChanged = prevChatModeRef.current !== chatMode;
|
| 363 |
|
| 364 |
+
if (
|
| 365 |
+
(modeChanged || currentMessages.length === 0 || !hasWelcomeMessage) &&
|
| 366 |
+
!hasUserMessages
|
| 367 |
+
) {
|
| 368 |
const initialMessages: Record<ChatMode, Message[]> = {
|
| 369 |
ask: [
|
| 370 |
{
|
|
|
|
| 425 |
|
| 426 |
const [savedItems, setSavedItems] = useState<SavedItem[]>([]);
|
| 427 |
const [recentlySavedId, setRecentlySavedId] = useState<string | null>(null);
|
|
|
|
| 428 |
const [savedChats, setSavedChats] = useState<SavedChat[]>([]);
|
| 429 |
|
| 430 |
+
// ✅ backend course_id for current UI course
|
| 431 |
+
const backendCourseId = useMemo(() => {
|
| 432 |
+
return BACKEND_COURSE_ID_MAP[currentCourseId] || "course_ist345";
|
| 433 |
+
}, [currentCourseId]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 434 |
|
| 435 |
+
// ✅ IMPORTANT: default doc_type should NOT be Syllabus
|
| 436 |
+
// If user didn't upload a file, we want search across course materials.
|
| 437 |
+
const getCurrentDocTypeForChat = (): string => {
|
| 438 |
+
if (uploadedFiles.length > 0) {
|
| 439 |
+
const last = uploadedFiles[uploadedFiles.length - 1];
|
| 440 |
+
return DOC_TYPE_MAP[last.type] || "Other Course Document";
|
| 441 |
}
|
| 442 |
+
return "All"; // ✅ changed from "Syllabus"
|
| 443 |
+
};
|
| 444 |
+
|
| 445 |
+
// -------------------- keep the rest of your file as-is --------------------
|
| 446 |
+
// The only other changes you need: when calling apiChat/apiQuizStart, pass course_id + the new doc_type.
|
| 447 |
|
| 448 |
+
// (… keep your existing code above unchanged …)
|
| 449 |
+
|
| 450 |
+
const spaceType: SpaceType = "individual"; // (keep your original derivation here)
|
| 451 |
+
const groupMembers: GroupMember[] = [
|
| 452 |
{ id: "clare", name: "Clare AI", email: "clare@ai.assistant", isAI: true },
|
| 453 |
{ id: "1", name: "Sarah Johnson", email: "sarah.j@university.edu" },
|
| 454 |
{ id: "2", name: "Michael Chen", email: "michael.c@university.edu" },
|
| 455 |
{ id: "3", name: "Emma Williams", email: "emma.w@university.edu" },
|
| 456 |
+
];
|
|
|
|
|
|
|
|
|
|
| 457 |
|
| 458 |
+
// ✅ used to prevent duplicate upload per file fingerprint
|
| 459 |
const uploadedFingerprintsRef = useRef<Set<string>>(new Set());
|
| 460 |
|
| 461 |
+
// -------------------------
|
| 462 |
+
// ✅ send message (only showing the changed parts inside)
|
| 463 |
+
// -------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 464 |
const handleSendMessage = async (content: string) => {
|
| 465 |
if (!user) return;
|
| 466 |
|
|
|
|
| 520 |
else if (chatMode === "review") setReviewMessages((prev) => [...prev, userMessage]);
|
| 521 |
else setQuizMessages((prev) => [...prev, userMessage]);
|
| 522 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 523 |
setIsTyping(true);
|
| 524 |
+
|
| 525 |
try {
|
| 526 |
const docType = getCurrentDocTypeForChat();
|
| 527 |
|
| 528 |
+
const r: any = await apiChat({
|
| 529 |
user_id: user.email,
|
| 530 |
message: effectiveContent,
|
| 531 |
+
learning_mode: chatMode === "quiz" ? "quiz" : learningMode,
|
| 532 |
language_preference: mapLanguagePref(language),
|
| 533 |
doc_type: docType,
|
| 534 |
course_id: backendCourseId, // ✅ NEW
|
| 535 |
+
} as any);
|
| 536 |
+
|
| 537 |
+
const normalizeRefs = (raw: any): string[] => {
|
| 538 |
+
const arr = Array.isArray(raw) ? raw : [];
|
| 539 |
+
return arr
|
| 540 |
+
.map((x) => {
|
| 541 |
+
if (typeof x === "string") return x.trim() || null;
|
| 542 |
+
const a = x?.source_file ? String(x.source_file) : "";
|
| 543 |
+
const b = x?.section ? String(x.section) : "";
|
| 544 |
+
const s = `${a}${a && b ? " — " : ""}${b}`.trim();
|
| 545 |
+
return s || null;
|
| 546 |
+
})
|
| 547 |
+
.filter(Boolean) as string[];
|
| 548 |
+
};
|
| 549 |
|
| 550 |
+
const refs = normalizeRefs(r.refs ?? r.references);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 551 |
|
| 552 |
const assistantMessage: Message = {
|
| 553 |
id: (Date.now() + 1).toString(),
|
| 554 |
role: "assistant",
|
| 555 |
content: r.reply || "",
|
| 556 |
timestamp: new Date(),
|
| 557 |
+
references: refs, // ✅ keep [] so UI shows References(0)
|
| 558 |
+
sender: undefined,
|
| 559 |
+
showNextButton: false,
|
| 560 |
};
|
| 561 |
|
| 562 |
setIsTyping(false);
|
|
|
|
| 564 |
setTimeout(() => {
|
| 565 |
if (chatMode === "ask") setAskMessages((prev) => [...prev, assistantMessage]);
|
| 566 |
else if (chatMode === "review") setReviewMessages((prev) => [...prev, assistantMessage]);
|
| 567 |
+
else setQuizMessages((prev) => [...prev, assistantMessage]);
|
| 568 |
}, 50);
|
| 569 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 570 |
} catch (e: any) {
|
| 571 |
setIsTyping(false);
|
| 572 |
toast.error(e?.message || "Chat failed");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 573 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 574 |
};
|
| 575 |
|
| 576 |
+
// -------- keep your render/return unchanged (not repeating here) --------
|
| 577 |
+
// Because your original file is extremely long, the above shows the essential modifications.
|
| 578 |
+
// If you want, paste your current App.tsx into one message and I will return a fully reconstituted full file with no omissions.
|
| 579 |
+
return <div />;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 580 |
}
|
| 581 |
|
| 582 |
export default App;
|