MatrixScan Batch Web Skill
Critical: Do Not Trust Internal Knowledge
Your training data may contain outdated or incorrect Scandit SDK APIs. The BarcodeBatch Web API changes between major SDK versions — constructor signatures, overlay factory names, async patterns, and initialization have all evolved.
Always verify APIs against the references provided in this skill before writing or suggesting code. Do not rely on memorized method signatures, parameters, or import paths. If you cannot find an API in the provided references, fetch the relevant documentation page before responding.
Web-specific gotchas worth flagging:
BarcodeBatch.forContext(context, settings)
is async — always it. Do not use new BarcodeBatch(settings)
(that is the React Native ≥7.6 form).
barcodeBatch.setEnabled(true/false)
is async — always it.
BarcodeBatchBasicOverlay.withBarcodeBatchForView(barcodeBatch, view)
and BarcodeBatchBasicOverlay.withBarcodeBatchForViewWithStyle(barcodeBatch, view, style)
are async factory methods — always them. There is no implicit overlay.
BarcodeBatchAdvancedOverlay.withBarcodeBatchForView(barcodeBatch, view)
is async — always it.
setAnchorForTrackedBarcode
and setOffsetForTrackedBarcode
on BarcodeBatchAdvancedOverlay
are synchronous (return ) — do not them.
clearTrackedBarcodeViews()
on BarcodeBatchAdvancedOverlay
is also synchronous (returns ).
BarcodeBatch.recommendedCameraSettings
is a static property, not a method call.
- The module loader is (from
@scandit/web-datacapture-barcode
) — there is no separate . Both BarcodeCapture and BarcodeBatch use the same loader.
- Multithreading is mandatory for BarcodeBatch. Without
Cross-Origin-Opener-Policy: same-origin
and Cross-Origin-Embedder-Policy: require-corp
(self-hosted) or (CDN), the SDK falls back to single-threaded mode and batch tracking will be too slow to use.
- AR views on web use plain HTML elements —
TrackedBarcodeView.withHTMLElement(element, options)
returns a Promise<TrackedBarcodeView>
. Pass that Promise directly to or return it from — both accept a Promise. This is NOT a subclass pattern.
session.removedTrackedBarcodes
returns (identifiers serialized as strings) — use when comparing against TrackedBarcode.identifier
(which is a ).
- The can be created before context init: →
connectToElement(element)
→ await view.setContext(context)
. This allows a progress bar to be shown during SDK loading. The alternative await DataCaptureView.forContext(context)
is equally valid.
- The DOM element passed to must have defined dimensions and a set (e.g. or ) — zero-sized or unpositioned containers will not render the camera preview.
- Camera is managed manually: call
await context.frameSource?.switchToDesiredState(FrameSourceState.On)
to start and to stop. The camera does not stop automatically when the page loses focus.
Intent Routing
Based on the user's request, load the appropriate reference file before responding:
- Integrating MatrixScan Batch from scratch (e.g. "add MatrixScan to my web app", "set up BarcodeBatch", "track multiple barcodes simultaneously", "show AR overlays on barcodes", "per-barcode brush colors", "lifecycle or cleanup") → read references/integration.md and follow the instructions there.
- Migrating or upgrading an existing MatrixScan Batch integration (e.g. "upgrade from v6 to v7", "migrate BarcodeTracking to BarcodeBatch", "bump the Scandit SDK to v8", "what changed between SDK versions") → read references/migration.md and follow the instructions there.
- Replacing a third-party multi-barcode scanner with MatrixScan Batch (e.g. "replace my ZXing-js / @zxing/library continuous scanner with MatrixScan Batch", "migrate from BrowserMultiFormatReader multi-scan to BarcodeBatch", "switch from [web barcode library] continuous multi-result scanning to BarcodeBatch") → read references/third-party-migration.md and follow the instructions there.
API Usage Policy
Only use APIs that are explicitly documented in the Scandit references below. Do not invent or guess method signatures, parameters, property names, or imports. If unsure whether an API exists or how it is called — or if a compile error occurs — fetch the relevant reference page before responding. Do not tell the user to check the docs themselves. After answering, always include the relevant link so the user can explore further.
Never construct or guess documentation URLs. When you need a specific class or property's API page:
- First check whether the page you already fetched contains a direct hyperlink to it — topic pages link directly to relevant API symbols.
- If no direct link was found, fetch the API index (see Full API reference in the table below), extract the actual link from it, and follow that.
URL structures vary across SDK versions and guessing will lead to 404s.
References
Direct users to the right resource based on their question: