fix: prefer native BarcodeDetector, fall back to WASM ponyfill
All checks were successful
CI / update (push) Successful in 4m37s

Native BarcodeDetector works in Chrome/Android WebView over HTTPS.
Only load the ZXing WASM ponyfill when native API is unavailable or
doesn't support the needed formats.
This commit is contained in:
2026-04-05 12:35:38 +02:00
parent 3b0b1d08e4
commit c7b652bba4

View File

@@ -209,30 +209,40 @@
await videoEl.play();
scanDebug += ` | video: ${videoEl.videoWidth}x${videoEl.videoHeight}`;
// Import barcode-detector ponyfill with self-hosted WASM
scanDebug += ' | importing detector…';
let BarcodeDetector;
// Use native BarcodeDetector if available, else ponyfill with self-hosted WASM
scanDebug += ' | loading detector…';
let detector;
const formats = ['ean_13', 'ean_8', 'upc_a', 'upc_e', 'code_128'];
try {
const mod = await import('barcode-detector/ponyfill');
BarcodeDetector = mod.BarcodeDetector;
// Point ZXing WASM to our self-hosted copy in /static
mod.prepareZXingModule({
overrides: {
locateFile: (path, prefix) => {
if (path.endsWith('.wasm')) return '/fitness/zxing_reader.wasm';
return prefix + path;
},
},
});
scanDebug += ' OK';
} catch (importErr) {
scanDebug = `IMPORT ERROR: ${importErr?.message ?? importErr}`;
stopScan();
return;
if ('BarcodeDetector' in globalThis) {
const supported = await globalThis.BarcodeDetector.getSupportedFormats();
if (supported.includes('ean_13')) {
detector = new globalThis.BarcodeDetector({ formats });
scanDebug += ' native';
}
}
} catch {
// native not usable, fall through to ponyfill
}
if (!detector) {
try {
const mod = await import('barcode-detector/ponyfill');
mod.prepareZXingModule({
overrides: {
locateFile: (path, prefix) => {
if (path.endsWith('.wasm')) return '/fitness/zxing_reader.wasm';
return prefix + path;
},
},
});
detector = new mod.BarcodeDetector({ formats });
scanDebug += ' ponyfill';
} catch (importErr) {
scanDebug = `IMPORT ERROR: ${importErr?.message ?? importErr}`;
stopScan();
return;
}
}
const detector = new BarcodeDetector({ formats: ['ean_13', 'ean_8', 'upc_a', 'upc_e', 'code_128'] });
scanDebug += ' | detector created';
let scanCount = 0;