File size: 3,822 Bytes
c5dfbfe | 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 | // βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// TYPES - Education Platform for HuggingFace Spaces
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Session Types
export interface Session {
id: string;
name: string;
teacherId: string;
teacherName: string;
createdAt: string;
isActive: boolean;
currentSlide: number;
totalSlides: number;
slideUrls: string[];
whiteboardData: WhiteboardStroke[];
studentCount: number;
maxStudents: number;
}
// User Types
export interface User {
id: string;
name: string;
role: 'teacher' | 'student';
sessionId?: string;
joinedAt: string;
}
// Chat Types
export interface ChatMessage {
id: string;
sessionId: string;
userId: string;
userName: string;
message: string;
isTeacher: boolean;
timestamp: string;
}
// Poll Types
export interface Poll {
id: string;
sessionId: string;
question: string;
options: PollOption[];
correctAnswer?: string;
duration: number;
createdAt: string;
endsAt: string;
isActive: boolean;
results: Record<string, number>;
totalVotes: number;
votedStudents: string[];
}
export interface PollOption {
id: string;
text: string;
isCorrect?: boolean;
}
// Doubt Types
export interface Doubt {
id: string;
sessionId: string;
studentId: string;
studentName: string;
question: string;
image?: string;
slideNumber: number;
status: 'pending' | 'in_progress' | 'solved';
createdAt: string;
solvedAt?: string;
annotatedImage?: string;
teacherResponse?: string;
}
// Reaction Types
export interface Reaction {
sessionId: string;
emoji: string;
count: number;
lastUpdated: string;
}
export type ReactionType = 'π' | 'β€οΈ' | 'π' | 'π' | 'π' | 'π' | 'π₯';
// Whiteboard Types
export interface WhiteboardStroke {
id: string;
tool: 'pen' | 'eraser' | 'highlighter' | 'text' | 'arrow' | 'circle' | 'rectangle';
color: string;
lineWidth: number;
points: Point[];
text?: string;
slideNumber: number;
timestamp: string;
}
export interface Point {
x: number;
y: number;
}
// Slide Types
export interface Slide {
id: string;
sessionId: string;
slideNumber: number;
imageUrl: string;
annotations: WhiteboardStroke[];
createdAt: string;
}
// SSE Event Types
export type SSEEventType =
| 'connected'
| 'slide_change'
| 'whiteboard_draw'
| 'whiteboard_clear'
| 'new_poll'
| 'poll_update'
| 'poll_ended'
| 'chat_message'
| 'reaction'
| 'new_doubt'
| 'doubt_update'
| 'doubt_solved'
| 'student_joined'
| 'student_left'
| 'session_ended'
| 'presence_update';
export interface SSEEvent {
id: string;
event: SSEEventType;
data: any;
timestamp: string;
}
// Storage Types (HuggingFace CDN)
export interface StorageFile {
path: string;
url: string;
size: number;
contentType: string;
uploadedAt: string;
}
export interface SessionStorage {
sessionId: string;
slides: StorageFile[];
whiteboardSnapshots: StorageFile[];
doubts: StorageFile[];
chatHistory: ChatMessage[];
pollHistory: Poll[];
}
// API Request/Response Types
export interface ApiResponse<T = any> {
success: boolean;
data?: T;
error?: string;
message?: string;
}
// Presence Types
export interface PresenceUser {
id: string;
name: string;
role: 'teacher' | 'student';
lastSeen: string;
isOnline: boolean;
}
export interface PresenceUpdate {
sessionId: string;
onlineCount: number;
users: PresenceUser[];
}
|