Spaces:
Sleeping
Sleeping
File size: 13,055 Bytes
a893a6b | 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 | console.log('π Pundit Feynman Script Loading... [v3.2]');
window.onerror = function (msg, url, lineNo, columnNo, error) {
alert(`JS Error: ${msg}\nLine: ${lineNo}\nCheck browser console!`);
return false;
};
// ββ DOM Refs ββ
const getEl = (id) => document.getElementById(id);
const dropZone = getEl('drop-zone');
const fileInput = getEl('file-input');
const uploadSection = getEl('upload-section');
const extractStatus = getEl('extract-status');
const extractLabel = getEl('extract-label');
const streamStatus = getEl('stream-status');
const doneSection = getEl('done-section');
const errorSection = getEl('error-section');
const errorText = getEl('error-text');
const downloadBtn = getEl('download-btn');
const resetBtn = getEl('reset-btn');
const errorResetBtn = getEl('error-reset-btn');
const codeOutput = getEl('code-output');
const codeViewer = getEl('code-viewer');
const codeBadge = getEl('code-badge');
const arxivInput = getEl('arxiv-input');
const arxivBtn = getEl('arxiv-btn');
const visualizeBtn = getEl('visualize-btn');
const imageFloat = getEl('image-float');
const imagePill = getEl('image-pill');
const floatHeader = getEl('float-header');
const floatImage = getEl('float-image');
const floatSpinner = getEl('float-spinner');
const floatDownload = getEl('float-download');
const floatMinimize = getEl('float-minimize');
const floatClose = getEl('float-close');
console.log('π¨ UI elements mapped. Visualize button:', !!visualizeBtn);
// Test backend connectivity
fetch('/api/ping').then(r => r.json()).then(d => console.log('π Backend connectivity:', d.status)).catch(e => console.error('β Backend UNREACHABLE:', e));
// ββ Visual Illustration State ββ
let currentJobId = null;
window._debugJobId = () => currentJobId; // Access via console: window._debugJobId()
// ββ State Manager ββ
function showSection(section) {
[uploadSection, extractStatus, streamStatus, doneSection, errorSection]
.forEach(el => el.classList.add('hidden'));
if (section) section.classList.remove('hidden');
}
// ββ Drag & Drop ββ
if (dropZone) {
dropZone.addEventListener('click', () => {
if (fileInput) fileInput.click();
});
dropZone.addEventListener('dragover', (e) => {
e.preventDefault();
dropZone.classList.add('drag-over');
});
dropZone.addEventListener('dragleave', () => dropZone.classList.remove('drag-over'));
dropZone.addEventListener('drop', (e) => {
e.preventDefault();
dropZone.classList.remove('drag-over');
if (e.dataTransfer.files.length > 0) handleUpload(e.dataTransfer.files[0]);
});
}
if (fileInput) {
fileInput.addEventListener('change', (e) => {
if (e.target.files.length > 0) handleUpload(e.target.files[0]);
});
}
// ββ arXiv URL Handler ββ
if (arxivBtn) {
arxivBtn.addEventListener('click', () => handleArxiv());
}
if (arxivInput) {
arxivInput.addEventListener('keydown', (e) => {
if (e.key === 'Enter') handleArxiv();
});
}
async function handleArxiv() {
const url = arxivInput.value.trim();
if (!url) return;
if (!url.includes('arxiv.org')) {
alert('Please enter a valid arXiv URL (e.g. https://arxiv.org/abs/2401.12345)');
return;
}
showSection(extractStatus);
extractLabel.textContent = 'Downloading & analyzing arXiv paperβ¦';
codeOutput.textContent = '// Downloading PDF from arXivβ¦';
codeBadge.textContent = 'extracting';
codeBadge.className = 'code-badge';
try {
const res = await fetch('/api/extract-arxiv', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ url })
});
if (!res.ok) {
const err = await res.json().catch(() => ({ detail: 'arXiv extraction failed' }));
throw new Error(err.detail || 'arXiv extraction failed');
}
const data = await res.json();
console.log('arXiv extraction complete:', data);
startStream(data.job_id);
} catch (err) {
showError(err.message);
}
}
// ββ Upload & Extract (Step 1) ββ
async function handleUpload(file) {
if (!file.name.toLowerCase().endsWith('.pdf')) {
alert('Please upload a PDF file.');
return;
}
// Show extraction spinner
showSection(extractStatus);
extractLabel.textContent = 'Uploading & analyzing paperβ¦';
codeOutput.textContent = '// Waiting for paper analysis to completeβ¦';
codeBadge.textContent = 'extracting';
codeBadge.className = 'code-badge';
const formData = new FormData();
formData.append('file', file);
try {
const res = await fetch('/api/extract', {
method: 'POST',
body: formData
});
if (!res.ok) {
const err = await res.json().catch(() => ({ detail: 'Extraction failed' }));
throw new Error(err.detail || 'Extraction failed');
}
const data = await res.json();
console.log('Extraction complete:', data);
// Hide visualize button from previous run if any
visualizeBtn.classList.add('hidden');
// Start streaming (Step 2)
startStream(data.job_id);
} catch (err) {
showError(err.message);
}
}
// ββ Live Streaming (Step 2) ββ
function startStream(jobId) {
currentJobId = jobId; // Store immediately
showSection(streamStatus);
codeOutput.textContent = '';
codeBadge.textContent = 'streaming';
codeBadge.className = 'code-badge streaming';
const source = new EventSource(`/api/generate_stream/${jobId}`);
let hasError = false;
source.onmessage = (event) => {
try {
const payload = JSON.parse(event.data);
if (payload.done) {
source.close();
if (payload.success) {
onStreamComplete(jobId);
} else {
// Pipeline finished but failed β show error state
showError('Pipeline failed to generate notebook. Check the code output panel for details.');
codeBadge.textContent = 'failed';
codeBadge.className = 'code-badge';
}
return;
}
if (payload.analysis_done) {
// Show visualize button early!
if (visualizeBtn) visualizeBtn.classList.remove('hidden');
return;
}
if (payload.text) {
// Check if it's an error message
if (payload.text.includes('β')) {
hasError = true;
}
codeOutput.textContent += payload.text;
// Auto-scroll to bottom
codeViewer.scrollTop = codeViewer.scrollHeight;
}
} catch (e) {
console.error('Parse error:', e);
}
};
source.onerror = (err) => {
console.error('SSE error:', err);
source.close();
showError('Stream connection lost. Please try again.');
};
}
function onStreamComplete(jobId) {
showSection(doneSection);
if (downloadBtn) {
downloadBtn.href = `/api/download/${jobId}`;
downloadBtn.download = "pundit_feynman_notebook.ipynb";
}
currentJobId = jobId; // Store for visualization
if (codeBadge) {
codeBadge.textContent = 'complete';
codeBadge.className = 'code-badge done';
}
}
// ββ Visual Illustration Logic ββ
if (visualizeBtn) {
visualizeBtn.addEventListener('click', async (e) => {
console.log('π±οΈ Visualize button CLICKED. Event object:', e);
if (!currentJobId) {
console.error('β Cannot visualize: currentJobId is null');
alert('Software Error: Job ID not captured yet. Please wait for analysis or refresh.');
return;
}
console.log('π¨ Requesting visualization for Job:', currentJobId);
// Disable button to prevent double-clicks
visualizeBtn.disabled = true;
const originalText = visualizeBtn.textContent;
visualizeBtn.textContent = 'π¨ Painting...';
// Show float UI
if (imageFloat) imageFloat.classList.remove('hidden');
if (imagePill) imagePill.classList.add('hidden');
if (floatImage) floatImage.classList.add('hidden');
if (floatSpinner) floatSpinner.classList.remove('hidden');
try {
const url = `/api/visualize/${currentJobId}`;
console.log('π Fetching:', url);
const res = await fetch(url, { method: 'POST' });
console.log('π₯ Response status:', res.status);
if (!res.ok) {
const errDetail = await res.json().catch(() => ({ detail: 'Network error' }));
throw new Error(errDetail.detail || `Server error ${res.status}`);
}
const data = await res.json();
console.log('πΌοΈ Image received! Length:', data.image.length);
if (floatImage) {
floatImage.src = data.image;
floatImage.classList.remove('hidden');
}
if (floatSpinner) floatSpinner.classList.add('hidden');
} catch (err) {
console.error('β Visualization flow error:', err);
alert(`Painting failed: ${err.message}`);
if (imageFloat) imageFloat.classList.add('hidden');
} finally {
visualizeBtn.disabled = false;
visualizeBtn.textContent = originalText;
console.log('π Visualize flow completed.');
}
});
}
// Drag Logic
let isDragging = false;
let startX, startY, initialX, initialY;
if (floatHeader && imageFloat) {
floatHeader.addEventListener('mousedown', (e) => {
isDragging = true;
startX = e.clientX;
startY = e.clientY;
initialX = imageFloat.offsetLeft;
initialY = imageFloat.offsetTop;
imageFloat.style.transition = 'none';
});
}
document.addEventListener('mousemove', (e) => {
if (!isDragging || !imageFloat) return;
const dx = e.clientX - startX;
const dy = e.clientY - startY;
imageFloat.style.left = (initialX + dx) + 'px';
imageFloat.style.top = (initialY + dy) + 'px';
imageFloat.style.bottom = 'auto'; // Remove fixed positioning
imageFloat.style.right = 'auto';
});
document.addEventListener('mouseup', () => {
isDragging = false;
if (imageFloat) imageFloat.style.transition = '';
});
// Minimize/Close/Download
if (floatMinimize && imageFloat && imagePill) {
floatMinimize.addEventListener('click', () => {
imageFloat.classList.add('hidden');
imagePill.classList.remove('hidden');
});
}
if (imagePill && imageFloat) {
imagePill.addEventListener('click', () => {
imageFloat.classList.remove('hidden');
imagePill.classList.add('hidden');
});
}
if (floatClose && imageFloat && imagePill) {
floatClose.addEventListener('click', () => {
imageFloat.classList.add('hidden');
imagePill.classList.add('hidden');
});
}
if (floatDownload && floatImage) {
floatDownload.addEventListener('click', () => {
if (!floatImage.src) return;
const link = document.createElement('a');
link.href = floatImage.src;
link.download = `pundit_feynman_illustration_${currentJobId}.png`;
link.click();
});
}
// ββ Error & Reset ββ
function showError(msg) {
showSection(errorSection);
if (errorText) errorText.textContent = msg;
if (codeBadge) {
codeBadge.textContent = 'error';
codeBadge.className = 'code-badge';
}
// Cleanup float on error β with null checks!
if (imageFloat) imageFloat.classList.add('hidden');
if (imagePill) imagePill.classList.add('hidden');
}
function resetUI() {
showSection(uploadSection);
if (fileInput) fileInput.value = '';
if (arxivInput) arxivInput.value = '';
if (codeOutput) codeOutput.textContent = '// Upload a paper to see the generated code hereβ¦';
if (codeBadge) {
codeBadge.textContent = 'waiting';
codeBadge.className = 'code-badge';
}
currentJobId = null;
if (visualizeBtn) visualizeBtn.classList.add('hidden');
// Cleanup float on reset
if (imageFloat) imageFloat.classList.add('hidden');
if (imagePill) imagePill.classList.add('hidden');
}
if (resetBtn) resetBtn.addEventListener('click', resetUI);
if (errorResetBtn) errorResetBtn.addEventListener('click', resetUI);
|