Spaces:
Sleeping
Sleeping
File size: 7,954 Bytes
a6d0aac | 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 | /**
* Leaderboard API Client
* Communicates with FastAPI backend (Redis primary, HF Space fallback)
* Supports near real-time polling for live updates
*/
export class HFLeaderboardAPI {
constructor(baseUrl = '') {
// HF Space URL (used as fallback and for GitHub Pages hosting)
const HF_LEADERBOARD_SPACE = 'https://milwright-cloze-leaderboard.hf.space';
// For local development, use local server
// For production (Railway), use same origin (backend serves frontend)
// For GitHub Pages, fall back to HF Space
const isLocalDev = window.location.hostname === 'localhost' ||
window.location.hostname === '127.0.0.1';
const isGitHubPages = window.location.hostname.includes('github.io');
if (baseUrl) {
this.baseUrl = baseUrl;
} else if (isLocalDev) {
this.baseUrl = window.location.origin;
} else if (isGitHubPages) {
this.baseUrl = HF_LEADERBOARD_SPACE;
} else {
// Railway or other hosting: use same origin (FastAPI serves both)
this.baseUrl = window.location.origin;
}
// Polling state
this.pollInterval = null;
this.pollIntervalMs = 5000; // 5 seconds default
this.listeners = new Set();
this.lastLeaderboard = null;
}
/**
* Start polling for leaderboard updates
* @param {number} intervalMs - Polling interval in milliseconds (default: 5000)
*/
startPolling(intervalMs = 5000) {
if (this.pollInterval) {
return;
}
this.pollIntervalMs = intervalMs;
// Initial fetch
this._pollOnce();
// Set up interval
this.pollInterval = setInterval(() => {
this._pollOnce();
}, intervalMs);
}
/**
* Stop polling for updates
*/
stopPolling() {
if (this.pollInterval) {
clearInterval(this.pollInterval);
this.pollInterval = null;
}
}
/**
* Check if polling is currently active
* @returns {boolean}
*/
isPolling() {
return this.pollInterval !== null;
}
/**
* Subscribe to leaderboard updates
* @param {Function} callback - Called with leaderboard data when updates occur
* @returns {Function} Unsubscribe function
*/
onUpdate(callback) {
this.listeners.add(callback);
// If we have cached data, call immediately
if (this.lastLeaderboard) {
callback(this.lastLeaderboard);
}
// Return unsubscribe function
return () => {
this.listeners.delete(callback);
};
}
/**
* Internal: Fetch leaderboard and notify listeners if changed
*/
async _pollOnce() {
try {
const leaderboard = await this.getLeaderboard();
// Check if data changed (simple JSON comparison)
const newData = JSON.stringify(leaderboard);
const oldData = JSON.stringify(this.lastLeaderboard);
if (newData !== oldData) {
this.lastLeaderboard = leaderboard;
this._notifyListeners(leaderboard);
}
} catch (error) {
// Silent fail for polling - don't spam console
console.debug('β±οΈ Leaderboard: Poll failed (will retry)', error.message);
}
}
/**
* Internal: Notify all listeners of leaderboard update
*/
_notifyListeners(leaderboard) {
for (const callback of this.listeners) {
try {
callback(leaderboard);
} catch (error) {
console.error('β±οΈ Leaderboard: Listener error', error);
}
}
}
/**
* Get leaderboard from backend
* @returns {Promise<Array>} Array of leaderboard entries
*/
async getLeaderboard() {
try {
const response = await fetch(`${this.baseUrl}/api/leaderboard`, {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
});
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`);
}
const data = await response.json();
if (data.success) {
console.debug('π₯ Leaderboard API: Retrieved', {
entries: data.leaderboard.length,
message: data.message
});
return data.leaderboard;
} else {
throw new Error(data.message || 'Failed to retrieve leaderboard');
}
} catch (error) {
console.error('β Leaderboard API: Error fetching:', error);
throw error;
}
}
/**
* Add new entry to leaderboard
* @param {Object} entry - Leaderboard entry {initials, level, round, passagesPassed, date}
* @returns {Promise<Object>} Response object
*/
async addEntry(entry) {
try {
const response = await fetch(`${this.baseUrl}/api/leaderboard/add`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(entry)
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({ detail: response.statusText }));
throw new Error(`HTTP ${response.status}: ${errorData.detail || response.statusText}`);
}
const data = await response.json();
console.log('β
Leaderboard API: Entry added', {
initials: entry.initials,
level: entry.level,
message: data.message
});
// Trigger immediate poll to refresh data
if (this.pollInterval) {
this._pollOnce();
}
return data;
} catch (error) {
console.error('β Leaderboard API: Error adding entry:', error);
throw error;
}
}
/**
* Update entire leaderboard
* @param {Array} entries - Array of leaderboard entries
* @returns {Promise<Object>} Response object
*/
async updateLeaderboard(entries) {
try {
const response = await fetch(`${this.baseUrl}/api/leaderboard/update`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(entries)
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({ detail: response.statusText }));
throw new Error(`HTTP ${response.status}: ${errorData.detail || response.statusText}`);
}
const data = await response.json();
console.log('β
Leaderboard API: Updated', {
entries: entries.length,
message: data.message
});
// Trigger immediate poll to refresh data
if (this.pollInterval) {
this._pollOnce();
}
return data;
} catch (error) {
console.error('β Leaderboard API: Error updating:', error);
throw error;
}
}
/**
* Clear all leaderboard data (admin function)
* @returns {Promise<Object>} Response object
*/
async clearLeaderboard() {
try {
const response = await fetch(`${this.baseUrl}/api/leaderboard/clear`, {
method: 'DELETE',
headers: {
'Content-Type': 'application/json'
}
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({ detail: response.statusText }));
throw new Error(`HTTP ${response.status}: ${errorData.detail || response.statusText}`);
}
const data = await response.json();
console.log('β
Leaderboard API: Cleared', {
message: data.message
});
// Trigger immediate poll to refresh data
if (this.pollInterval) {
this._pollOnce();
}
return data;
} catch (error) {
console.error('β Leaderboard API: Error clearing:', error);
throw error;
}
}
/**
* Check if backend is available
* @returns {Promise<boolean>} True if backend is reachable
*/
async isAvailable() {
try {
const response = await fetch(`${this.baseUrl}/api/leaderboard`, {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
});
return response.ok;
} catch (error) {
console.warn('β οΈ Leaderboard API: Backend not available, will use localStorage fallback');
return false;
}
}
}
|