File size: 31,589 Bytes
78431ff | 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 | /**
* Batch Panel β multi-image queue, sequential processing, combined export
*
* Activated when the user selects/drops multiple images.
* Each item is processed using the existing upload + transcribe flow.
* Results are stored per-item and can be exported as combined TXT or CSV.
*/
import { state, emit, on, api, toast } from '../app.js';
const $ = id => document.getElementById(id);
// Batch state (separate from state.lines which tracks the current single image)
const batch = {
items: [], // { file, imageId, status, lines, filename }
running: false,
cancelled: false,
currentIndex: -1, // item currently shown in the viewer
processingIndex: -1, // item currently being transcribed (may differ when user navigates away)
userNavigated: false, // user manually navigated away from auto-advance
abortController: null,
};
export function initBatchPanel() {
// Hook into the file input to detect multiple files, PDFs, or second image.
// Use capture:true so this fires before image-viewer's bubble listener, letting us
// stopImmediatePropagation() and own the upload when batch-panel takes over.
const fileInput = $('file-input');
fileInput.addEventListener('change', e => {
const files = Array.from(fileInput.files);
const hasPdf = files.some(f => f.name.toLowerCase().endsWith('.pdf'));
// Intercept: multiple files, PDF, or single image when one is already loaded
if (files.length > 1 || hasPdf || (files.length === 1 && !hasPdf && state.imageId)) {
e.stopImmediatePropagation(); // prevent image-viewer from also uploading the PDF
handleMultipleFiles(files);
fileInput.value = '';
}
// Single non-PDF image with no existing image β handled by image-viewer.js
}, true); // capture:true β fires before image-viewer's non-capture listener
// Multiple XML selection from the Upload XML button
const xmlInput = $('xml-input');
xmlInput.addEventListener('change', e => {
if (xmlInput.files.length <= 1) return; // single XML β image-viewer handles normally
e.stopImmediatePropagation();
uploadXmlFiles(Array.from(xmlInput.files));
xmlInput.value = '';
}, true); // capture β fires before image-viewer's listener
// Drag-drop: intercept multiple images/PDFs or any drop when image already loaded
const uploadArea = $('upload-area');
uploadArea.addEventListener('drop', e => {
const files = Array.from(e.dataTransfer.files);
const xmlFiles = files.filter(f => f.name.toLowerCase().endsWith('.xml'));
const nonXml = files.filter(f => !f.name.toLowerCase().endsWith('.xml'));
const hasPdf = nonXml.some(f => f.name.toLowerCase().endsWith('.pdf'));
// Take over if: multiple images, a PDF, a second image on top of existing, or multiple XMLs
const takeBatch = nonXml.length > 1 || hasPdf || (nonXml.length === 1 && state.imageId);
const takeXml = xmlFiles.length > 1 || (xmlFiles.length === 1 && batch.items.length > 0);
if (takeBatch || takeXml) {
e.preventDefault();
e.stopImmediatePropagation();
if (nonXml.length > 0) handleMultipleFiles(nonXml);
if (xmlFiles.length > 0) uploadXmlFiles(xmlFiles);
}
}, true); // capture phase β fires before image-viewer's bubble handler
// PDF pages from single-PDF drop on image-viewer β add to batch
on('pdf-pages-ready', data => {
const existing = new Set(batch.items.map(i => i.filename));
for (const page of data.pages) {
if (!existing.has(page.filename)) {
batch.items.push({
file: null,
imageId: page.image_id,
status: 'pending',
lines: [],
filename: page.filename,
preUploaded: true,
});
existing.add(page.filename);
}
}
if (batch.items.length > 0) {
renderQueue();
// PDF pages are already uploaded β always preview the first one directly,
// bypassing the state.imageId guard in previewFirstBatchItem().
const first = batch.items[0];
if (first && first.preUploaded && first.imageId) {
batch.currentIndex = 0;
emit('batch-item-start', { imageId: first.imageId, filename: first.filename });
updateNavButtons();
}
}
});
$('btn-process-batch').addEventListener('click', processBatch);
$('btn-clear-batch').addEventListener('click', clearBatch);
$('btn-export-batch-txt').addEventListener('click', exportAllTxt);
$('btn-export-batch-csv').addEventListener('click', exportAllCsv);
$('btn-export-batch-txt-zip').addEventListener('click', exportAllTxtZip);
$('btn-export-batch-thinking-zip').addEventListener('click', exportAllThinkingZip);
$('btn-export-batch-xml').addEventListener('click', exportAllXml);
$('btn-nav-prev').addEventListener('click', () => navigate(-1));
$('btn-nav-next').addEventListener('click', () => navigate(+1));
// Persist PAGE XML and resume checkboxes across sessions
const usePageXmlEl = $('batch-use-pagexml');
const resumeEl = $('batch-resume');
const savedPageXml = localStorage.getItem('batch_use_pagexml');
const savedResume = localStorage.getItem('batch_resume');
if (savedPageXml !== null) usePageXmlEl.checked = savedPageXml === 'true';
if (savedResume !== null) resumeEl.checked = savedResume === 'true';
usePageXmlEl.addEventListener('change', () => localStorage.setItem('batch_use_pagexml', usePageXmlEl.checked));
resumeEl.addEventListener('change', () => localStorage.setItem('batch_resume', resumeEl.checked));
// Cancel during batch: abort current SSE + stop the queue loop
$('btn-cancel').addEventListener('click', () => {
if (!batch.running) return;
batch.cancelled = true;
batch.abortController?.abort();
}, { capture: true });
}
// ββ XML matching for batch ββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Match XML files to batch items by filename stem (e.g. page001.xml β page001.jpg)
async function uploadXmlFiles(xmlFiles) {
if (!xmlFiles.length) return;
const stem = name => name.replace(/\.[^/.]+$/, '').toLowerCase();
let matched = 0, deferred = 0, skipped = 0;
for (const xml of xmlFiles) {
const xmlStem = stem(xml.name);
const item = batch.items.find(it => stem(it.filename) === xmlStem);
if (!item) { skipped++; continue; }
if (item.imageId) {
// Already uploaded β send to server immediately
try {
const fd = new FormData();
fd.append('file', xml);
const resp = await fetch(`/api/image/${item.imageId}/xml`, { method: 'POST', body: fd });
if (!resp.ok) throw new Error((await resp.json()).detail);
item.xmlUploaded = true;
matched++;
} catch (err) {
toast(`XML ${xml.name}: ${err.message}`, 'error');
}
} else {
// Image not yet uploaded β store XML, send during processBatch
item.xmlFile = xml;
deferred++;
}
}
const parts = [];
if (matched > 0) parts.push(`${matched} uploaded`);
if (deferred > 0) parts.push(`${deferred} queued for batch`);
if (skipped > 0) parts.push(`${skipped} unmatched`);
toast(`XML files: ${parts.join(', ')}`, matched + deferred > 0 ? 'success' : 'error');
}
// ββ Queue management βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function handleMultipleFiles(files) {
// If a single image is already loaded (not yet in batch), add it first
if (batch.items.length === 0 && state.imageId) {
batch.items.push({
file: null,
imageId: state.imageId,
status: 'pending',
lines: state.lines.length ? state.lines : [],
filename: (state.imageInfo && state.imageInfo.filename) || 'current image',
preUploaded: true,
});
}
// Add new files (skip duplicates by name)
const existing = new Set(batch.items.map(i => i.filename));
const added = files.filter(f => !existing.has(f.name));
added.forEach(f => {
batch.items.push({ file: f, imageId: null, status: 'pending', lines: [], filename: f.name });
});
if (batch.items.length > 0) { renderQueue(); previewFirstBatchItem(); }
}
// Auto-preview all batch items (upload if needed), expanding PDFs into pages immediately
async function previewFirstBatchItem() {
if (batch.running) return;
let i = 0;
let safetyCounter = 0;
while (i < batch.items.length && safetyCounter < 100) {
safetyCounter++;
const item = batch.items[i];
if (item.preUploaded && item.imageId) {
i++;
continue;
}
if (item.file) {
try {
const fd = new FormData();
fd.append('file', item.file);
const resp = await fetch('/api/image/upload', { method: 'POST', body: fd });
if (!resp.ok) { i++; continue; }
const data = await resp.json();
if (data.is_pdf) {
const newItems = data.pages.map(p => ({
file: null, imageId: p.image_id, status: 'pending',
lines: [], filename: p.filename, preUploaded: true,
}));
batch.items.splice(i, 1, ...newItems);
renderQueue();
continue;
}
item.imageId = data.image_id;
item.preUploaded = true;
renderQueue();
if (i === 0 && !state.imageId) {
batch.currentIndex = 0;
emit('batch-item-start', { imageId: item.imageId, filename: item.filename });
updateNavButtons();
}
i++;
} catch (err) {
console.error('Error pre-uploading batch item:', err);
i++;
}
} else {
i++;
}
}
}
function clearBatch() {
if (batch.running) return;
batch.items = [];
batch.currentIndex = -1;
$('batch-queue-section').classList.add('hidden');
$('batch-export-row').classList.add('hidden');
updateNavButtons();
}
let _dragSrcIndex = null;
function renderQueue() {
const section = $('batch-queue-section');
const list = $('batch-list');
section.classList.remove('hidden');
list.innerHTML = '';
batch.items.forEach((item, i) => {
const row = document.createElement('div');
row.className = 'batch-item';
row.id = `batch-item-${i}`;
row.dataset.index = i;
// Drag handle
const handle = document.createElement('span');
handle.className = 'batch-drag-handle';
handle.textContent = 'β Ώ';
handle.title = 'Drag to reorder';
const name = document.createElement('span');
name.className = 'batch-item-name';
name.title = item.filename;
name.textContent = item.filename;
const status = document.createElement('span');
status.className = 'batch-status';
status.id = `batch-status-${i}`;
_setStatusEl(status, item.status, item.lines.length);
row.appendChild(handle);
row.appendChild(name);
row.appendChild(status);
// Click a done item to reload it, or a preUploaded pending item to load for manual transcription
const canPreview = item.status === 'done' || (item.preUploaded && item.imageId);
if (canPreview) {
row.style.cursor = 'pointer';
row.addEventListener('click', e => {
if (e.target === handle) return; // don't trigger on drag handle click
if (item.status === 'done') {
loadBatchItem(i);
} else {
// Load preUploaded pending page so user can manually segment/transcribe it
batch.currentIndex = i;
emit('batch-item-start', { imageId: item.imageId, filename: item.filename });
updateNavButtons();
}
});
}
// Drag-to-reorder (only when not running)
if (!batch.running) {
row.draggable = true;
row.addEventListener('dragstart', e => {
_dragSrcIndex = i;
e.dataTransfer.effectAllowed = 'move';
row.classList.add('batch-dragging');
});
row.addEventListener('dragend', () => {
row.classList.remove('batch-dragging');
list.querySelectorAll('.batch-item').forEach(r => r.classList.remove('batch-drag-over'));
});
row.addEventListener('dragover', e => {
e.preventDefault();
e.dataTransfer.dropEffect = 'move';
list.querySelectorAll('.batch-item').forEach(r => r.classList.remove('batch-drag-over'));
row.classList.add('batch-drag-over');
});
row.addEventListener('dragleave', () => row.classList.remove('batch-drag-over'));
row.addEventListener('drop', e => {
e.preventDefault();
row.classList.remove('batch-drag-over');
const destIndex = parseInt(row.dataset.index, 10);
if (_dragSrcIndex == null || _dragSrcIndex === destIndex) return;
// Reorder batch.items
const [moved] = batch.items.splice(_dragSrcIndex, 1);
batch.items.splice(destIndex, 0, moved);
// Fix currentIndex if it pointed to a moved item
if (batch.currentIndex === _dragSrcIndex) {
batch.currentIndex = destIndex;
} else if (_dragSrcIndex < destIndex) {
if (batch.currentIndex > _dragSrcIndex && batch.currentIndex <= destIndex) batch.currentIndex--;
} else {
if (batch.currentIndex >= destIndex && batch.currentIndex < _dragSrcIndex) batch.currentIndex++;
}
_dragSrcIndex = null;
renderQueue();
});
}
list.appendChild(row);
});
// Show export row if any item is done
const anyDone = batch.items.some(i => i.status === 'done');
$('batch-export-row').classList.toggle('hidden', !anyDone);
updateNavButtons();
}
function _setStatusEl(el, status, lineCount) {
el.className = 'batch-status';
if (status === 'pending') { el.textContent = 'pending'; }
else if (status === 'active'){ el.textContent = 'runningβ¦'; el.classList.add('active'); }
else if (status === 'done') { el.textContent = `β ${lineCount} lines`; el.classList.add('done'); }
else if (status === 'error') { el.textContent = 'error'; el.classList.add('error'); }
}
function updateItemStatus(index, status, lineCount = 0) {
batch.items[index].status = status;
const el = $(`batch-status-${index}`);
if (el) _setStatusEl(el, status, lineCount);
}
function updateOverallProgress(current = null, total = null) {
const el = $('batch-overall-progress');
if (current == null) {
el.classList.add('hidden');
el.textContent = '';
} else {
el.textContent = `${current} / ${total}`;
el.classList.remove('hidden');
}
}
function updateNavButtons() {
const done = batch.items.filter(i => i.status === 'done');
const hasBatch = done.length > 0;
const idx = batch.currentIndex;
// Allow navigation to done items even while batch is running
const prevDone = hasBatch && batch.items.slice(0, idx).some(i => i.status === 'done');
const nextDone = hasBatch && batch.items.slice(idx + 1).some(i => i.status === 'done');
$('btn-nav-prev').disabled = !prevDone;
$('btn-nav-next').disabled = !nextDone;
const label = $('batch-nav-label');
if (hasBatch && idx >= 0) {
const pos = done.indexOf(batch.items[idx]) + 1;
label.textContent = `${pos}/${done.length}`;
} else {
label.textContent = '';
}
}
function navigate(delta) {
const indices = batch.items
.map((item, i) => item.status === 'done' ? i : -1)
.filter(i => i >= 0);
if (indices.length < 2) return;
const cur = indices.indexOf(batch.currentIndex);
const next = indices[cur + delta];
if (next != null) loadBatchItem(next);
}
// ββ Processing βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
async function processBatch() {
if (batch.running || !state.engineLoaded) {
if (!state.engineLoaded) toast('Load an engine first', 'error');
return;
}
batch.running = true;
batch.cancelled = false;
batch.userNavigated = false; // reset: auto-advance viewer from scratch
$('btn-process-batch').disabled = true;
$('btn-cancel').classList.remove('hidden');
const segMethod = $('seg-method').value;
const segDevice = $('seg-device').value;
const maxColumns = parseInt($('seg-max-columns')?.value || '6', 10);
const splitWidth = parseFloat($('seg-split-width')?.value || '40') / 100;
const textDirection = $('seg-text-direction')?.value || 'horizontal-lr';
const usePageXml = $('batch-use-pagexml').checked;
const resume = $('batch-resume').checked;
const pending = batch.items.filter(i => resume ? i.status === 'pending' : i.status !== 'done').length;
let doneThisRun = 0;
updateOverallProgress(0, pending);
for (let i = 0; i < batch.items.length; i++) {
if (batch.cancelled) {
// Mark remaining pending items back to pending (they stay pending)
break;
}
const item = batch.items[i];
if (item.status === 'done') {
// Resume mode: skip done; non-resume mode: also skip done
continue;
}
batch.processingIndex = i;
updateItemStatus(i, 'active');
updateNavButtons();
try {
// 1. Upload image (skip if already uploaded, e.g. PDF page pre-rendered by server)
if (item.preUploaded && item.imageId) {
// Already registered server-side β no upload needed
} else {
const fd = new FormData();
fd.append('file', item.file);
const upResp = await fetch('/api/image/upload', { method: 'POST', body: fd });
if (!upResp.ok) throw new Error(`Upload failed: ${upResp.statusText}`);
const upData = await upResp.json();
// PDF uploaded directly: expand into sub-items and skip this placeholder
if (upData.is_pdf) {
const newItems = upData.pages.map(p => ({
file: null, imageId: p.image_id, status: 'pending',
lines: [], filename: p.filename, preUploaded: true,
}));
batch.items.splice(i + 1, 0, ...newItems);
updateItemStatus(i, 'done', 0);
renderQueue();
continue;
}
item.imageId = upData.image_id;
}
// Upload deferred XML if one was matched earlier
if (item.xmlFile && item.imageId) {
try {
const fd = new FormData();
fd.append('file', item.xmlFile);
await fetch(`/api/image/${item.imageId}/xml`, { method: 'POST', body: fd });
item.xmlUploaded = true;
} catch { /* non-fatal */ }
}
// Show in viewer β skip if user manually navigated to a different item
if (!batch.userNavigated) {
batch.currentIndex = i;
emit('batch-item-start', { imageId: item.imageId, filename: item.filename });
}
// 2. Transcribe via SSE (abortable)
batch.abortController = new AbortController();
const result = await transcribeSSE(
item.imageId, segMethod, segDevice, maxColumns, splitWidth, usePageXml, batch.abortController.signal, textDirection
);
item.lines = result.lines;
item.time_s = result.time_s;
item.token_usage = result.token_usage;
updateItemStatus(i, 'done', result.lines.length);
doneThisRun++;
updateOverallProgress(doneThisRun, pending);
// Fire sse-complete so the panel shows footer, column toggle, confidence filter, etc.
if (batch.currentIndex === i) {
emit('sse-complete', { lines: item.lines, total_time_s: item.time_s, engine: '(batch)', token_usage: item.token_usage });
}
} catch (err) {
if (err.name === 'AbortError' || batch.cancelled) {
updateItemStatus(i, 'pending');
} else {
updateItemStatus(i, 'error');
toast(`${item.filename}: ${err.message}`, 'error');
}
}
// Re-render to make done items clickable
renderQueue();
}
batch.running = false;
batch.processingIndex = -1;
batch.userNavigated = false;
batch.abortController = null;
$('btn-process-batch').disabled = false;
$('btn-cancel').classList.add('hidden');
$('batch-export-row').classList.remove('hidden');
updateOverallProgress(null);
updateNavButtons();
const doneCount = batch.items.filter(i => i.status === 'done').length;
if (batch.cancelled) {
toast(`Batch cancelled β ${doneCount} image(s) done`, 'info', 4000);
} else {
toast(`Batch complete: ${doneCount}/${batch.items.length} images`, 'success', 5000);
}
emit('batch-complete', { items: batch.items });
}
function _collectLiveOverrides() {
const overrides = {};
const form = document.getElementById('config-form');
if (!form) return overrides;
for (const el of form.querySelectorAll('[data-key]')) {
if (el.dataset.saveFor) continue;
if (el.dataset.passwordField) continue;
const key = el.dataset.key;
if (el.type === 'checkbox') overrides[key] = el.checked;
else if (el.type === 'number') overrides[key] = Number(el.value);
else overrides[key] = el.value;
}
return overrides;
}
function transcribeSSE(imageId, segMethod, segDevice, maxColumns, splitWidthFraction = 0.4, usePageXml = true, signal = null, textDirection = 'horizontal-lr') {
return new Promise((resolve, reject) => {
const lines = [];
let startTime = null;
let lastTokenUsage = null;
const body = JSON.stringify({
image_id: imageId, seg_method: segMethod,
seg_device: segDevice, max_columns: maxColumns,
split_width_fraction: splitWidthFraction,
text_direction: textDirection,
use_pagexml: usePageXml,
engine_config_overrides: _collectLiveOverrides(),
});
const finish = (cancelled = false) => {
const time_s = startTime ? Math.round((Date.now() - startTime) / 100) / 10 : 0;
resolve({ lines, time_s, token_usage: lastTokenUsage, cancelled });
};
fetch('/api/transcribe', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body,
signal,
}).then(resp => {
if (!resp.ok) return reject(new Error(resp.statusText));
const reader = resp.body.getReader();
const decoder = new TextDecoder();
let buf = '';
const pump = () => reader.read().then(({ done, value }) => {
if (done) { finish(); return; }
buf += decoder.decode(value, { stream: true });
const parts = buf.split('\n\n');
buf = parts.pop();
for (const chunk of parts) {
const evLine = chunk.split('\n').find(l => l.startsWith('event:'));
const dataLine = chunk.split('\n').find(l => l.startsWith('data:'));
if (!evLine || !dataLine) continue;
const event = evLine.slice(7).trim();
const data = JSON.parse(dataLine.slice(5).trim());
if (event === 'progress') {
if (!startTime) startTime = Date.now();
if (data.token_usage) lastTokenUsage = data.token_usage;
lines.push(data.line);
// Only stream to panel when user is watching this item
if (batch.currentIndex === batch.processingIndex) emit('sse-progress', data);
} else if (event === 'segmentation') {
// Store bboxes/regions so loadBatchItem can restore them later
if (batch.items[batch.processingIndex]) {
batch.items[batch.processingIndex].bboxes = data.bboxes || [];
batch.items[batch.processingIndex].regions = data.regions || [];
}
if (batch.currentIndex === batch.processingIndex) emit('sse-segmentation', data);
} else if (event === 'complete') {
if (data.token_usage) lastTokenUsage = data.token_usage;
finish();
} else if (event === 'error') {
reject(new Error(data.message));
} else if (event === 'cancelled') {
finish(true);
}
}
pump();
}).catch(reject);
pump();
}).catch(reject);
});
}
// Load a completed batch item back into the viewer / results panel
function loadBatchItem(index) {
const item = batch.items[index];
if (item.status !== 'done') return;
batch.currentIndex = index;
batch.userNavigated = true; // user left auto-advance mode
emit('batch-item-start', { imageId: item.imageId, filename: item.filename });
updateNavButtons();
// Restore segmentation data so line-click highlighting works.
// batch-item-start clears currentBboxes in the image viewer; re-populate them here.
const bboxes = item.bboxes || [];
const regions = item.regions || [];
emit('sse-segmentation', { num_lines: item.lines.length, bboxes, regions, source: 'batch-restore' });
// Re-populate state.lines so exports and confidence filter work
state.lines = item.lines.map((l, i) => ({ ...l, index: i }));
// Re-emit each line to rebuild the transcription panel
$('transcription-lines').innerHTML = '';
$('conf-filter-row').classList.add('hidden');
state.lines.forEach(l => emit('sse-progress', {
current: l.index + 1, total: state.lines.length, line: l
}));
emit('sse-complete', { lines: state.lines, total_time_s: item.time_s || 0, engine: '(batch)', token_usage: item.token_usage || null });
}
// ββ Export ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function exportAllTxt() {
const done = batch.items.filter(i => i.status === 'done');
if (!done.length) return;
const text = done.map(item =>
`=== ${item.filename} ===\n` + item.lines.map(l => l.text).join('\n')
).join('\n\n');
downloadFile('batch_transcription.txt', text, 'text/plain');
}
function exportAllCsv() {
const done = batch.items.filter(i => i.status === 'done');
if (!done.length) return;
const header = 'File,Line,Text,Confidence\n';
const rows = done.flatMap(item =>
item.lines.map(l => {
const conf = l.confidence != null ? l.confidence.toFixed(4) : '';
return `"${item.filename.replace(/"/g,'""')}",${l.index + 1},"${l.text.replace(/"/g,'""')}",${conf}`;
})
);
downloadFile('batch_transcription.csv', header + rows.join('\n'), 'text/csv');
}
async function exportAllThinkingZip() {
const done = batch.items.filter(i => i.status === 'done' && i.imageId);
if (!done.length) return;
try {
const resp = await fetch('/api/batch/export-thinking', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ image_ids: done.map(i => i.imageId) }),
});
if (!resp.ok) throw new Error(await resp.text());
const blob = await resp.blob();
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url; a.download = 'batch_thinking.zip'; a.click();
URL.revokeObjectURL(url);
} catch (err) {
toast(`Thinking export failed: ${err.message}`, 'error');
}
}
async function exportAllTxtZip() {
const done = batch.items.filter(i => i.status === 'done' && i.imageId);
if (!done.length) return;
try {
const resp = await fetch('/api/batch/export-txt', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ image_ids: done.map(i => i.imageId) }),
});
if (!resp.ok) throw new Error(await resp.text());
const blob = await resp.blob();
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url; a.download = 'batch_export_txt.zip'; a.click();
URL.revokeObjectURL(url);
} catch (err) {
toast(`TXT ZIP export failed: ${err.message}`, 'error');
}
}
async function exportAllXml() {
const done = batch.items.filter(i => i.status === 'done' && i.imageId);
if (!done.length) return;
try {
const resp = await fetch('/api/batch/export-xml', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ image_ids: done.map(i => i.imageId) }),
});
if (!resp.ok) throw new Error(await resp.text());
const blob = await resp.blob();
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url; a.download = 'batch_export.zip'; a.click();
URL.revokeObjectURL(url);
} catch (err) {
toast(`XML export failed: ${err.message}`, 'error');
}
}
function downloadFile(filename, content, mime) {
const blob = new Blob([content], { type: mime });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url; a.download = filename; a.click();
URL.revokeObjectURL(url);
}
|