@microblink/blinkid-ux-manager
v8001.0.0
Published
BlinkID UX Manager provides user feedback based on the blinkid process results.
Readme
@microblink/blinkid-ux-manager
This package provides user experience management and feedback UI for the BlinkID browser SDK. It parses results from @microblink/blinkid-core and guides the user through the scanning process, controlling @microblink/camera-manager as needed.
Features
- Smart UI State Management: Provides both headless and UI components for user feedback during scanning
- Camera Integration: Integrates with BlinkID Core and Camera Manager
- Haptic Feedback: Built-in haptic feedback support for enhanced user experience on mobile devices
- Document Filtering: Advanced document class filtering capabilities
- Timeout Management: Configurable scanning timeouts with automatic state management
- Progress Callbacks: Live progress snapshots for debug overlays and custom tooling
- Localization Support: Multi-language support with customizable strings
- Explicit Teardown:
destroy()method for deterministic resource cleanup - UI State Inspection:
uiStateKey(stabilized, visible state) andmappedUiStateKey(latest raw candidate before stabilization) getters
Overview
- Provides both headless and UI components for user feedback during scanning.
- Integrates with BlinkID Core and Camera Manager.
- Includes haptic feedback system for mobile devices.
- Used by
@microblink/blinkidand can be used directly for custom UI integrations.
Browser Support
This package supports these browser versions and newer:
- Chrome / Chromium 96 (desktop and Android)
- Edge 96
- Opera 84
- Firefox 132 (desktop)
- Safari 16.4 (macOS)
- iOS Safari 16.4
This package depends on @microblink/camera-manager and @microblink/blinkid-core.
For the full SDK with camera capture, see @microblink/blinkid.
Firefox for Android is not supported for camera-based scanning because camera device discovery and permission handling are unreliable there; see Bugzilla 1611998.
Migration from v7 to v8000
For breaking changes and upgrade steps, see the BlinkID v8000 migration guide.
Installation
Install from npm using your preferred package manager:
npm install @microblink/blinkid-ux-manager
# or
yarn add @microblink/blinkid-ux-manager
# or
pnpm add @microblink/blinkid-ux-managerHaptic Feedback
The UX Manager includes a comprehensive haptic feedback system that provides tactile responses during the document scanning process. This feature is primarily designed for Android devices using Chrome browser, where it works reliably to enhance the scanning experience.
Haptic Feedback Types
| Event | Duration | Type | Description | | ------------------ | -------- | ----- | --------------------------------------------- | | First Side Success | 100ms | Short | When the first side of an ID card is captured | | Final Success | 300ms | Long | When document scanning is completed | | Error States | 100ms | Short | Quality issues (blur, glare, positioning) | | Error Dialogs | 300ms | Long | Timeout or critical errors | | Flashlight Toggle | 100ms | Short | When camera flashlight is activated | | Warning States | 100ms | Short | During sensing phases (with 1s cooldown) |
Haptic Feedback Usage
import {
createBlinkIdUxManager,
HapticFeedbackManager,
} from "@microblink/blinkid-ux-manager";
// Create UX Manager (haptic feedback enabled by default)
const uxManager = await createBlinkIdUxManager(cameraManager, scanningSession);
// Check if haptic feedback is supported
if (uxManager.isHapticFeedbackSupported()) {
console.log("Device supports haptic feedback");
}
// Enable/disable haptic feedback
uxManager.setHapticFeedbackEnabled(true); // Enable
uxManager.setHapticFeedbackEnabled(false); // Disable
// Access haptic manager directly for manual control
const hapticManager = uxManager.getHapticFeedbackManager();
hapticManager.triggerShort(); // 100ms vibration for short feedback
hapticManager.triggerLong(); // 300ms vibration for long feedback
hapticManager.stop(); // Stop all vibrationBrowser Compatibility
⚠️ Important: Haptic feedback uses the Web Vibration API, which has limited browser support:
| Browser | Support | | ------------------- | ---------------- | | Chrome for Android | ✅ Supported | | Firefox for Android | ✅ Supported | | Safari (iOS) | ❌ Not supported | | Desktop browsers | ❌ Not supported |
The API is designed primarily for Android devices using Chrome, where it works reliably. On unsupported platforms isHapticFeedbackSupported() returns false and vibration calls are silently ignored.
Usage
You can use @microblink/blinkid-ux-manager directly in your project for advanced or custom integrations. For most use cases, use @microblink/blinkid for a simpler setup.
Creating the UX Manager
Use the async createBlinkIdUxManager factory — direct constructor instantiation is not supported:
import { createBlinkIdUxManager } from "@microblink/blinkid-ux-manager";
const uxManager = await createBlinkIdUxManager(cameraManager, scanningSession);
// When done, release resources explicitly
uxManager.destroy();Configuring Scan Timeouts
BlinkID uses three timeout windows during capture:
inactivityTimeoutMsrestarts when the stabilized BlinkID UI state changesscanStepTimeoutMslimits the total active capture time for the current scan steppartiallySupportedBarcodeResolveTimeoutMsresolves a barcode step after BlinkID reports a barcode whose parsing is not supported
When the stabilized UI state is PROCESSING_BARCODE (the visible "scan the
barcode" step), BlinkID suppresses the inactivity timeout and starts that
barcode step with a fresh scanStepTimeoutMs window.
You can override them when creating the manager:
const uxManager = await createBlinkIdUxManager(cameraManager, scanningSession, {
timeoutConfiguration: {
inactivityTimeoutMs: 15000,
scanStepTimeoutMs: 90000,
partiallySupportedBarcodeResolveTimeoutMs: 8000,
},
});Set any timeout to null to disable it:
const uxManager = await createBlinkIdUxManager(cameraManager, scanningSession, {
timeoutConfiguration: {
inactivityTimeoutMs: null,
scanStepTimeoutMs: 90000,
partiallySupportedBarcodeResolveTimeoutMs: null,
},
});You can also inspect or update the active configuration later:
uxManager.getTimeoutConfiguration();
uxManager.setTimeoutConfiguration({
inactivityTimeoutMs: 20000,
});Observing Processed Frames
Use addOnFrameProcessCallback to inspect each processed frame before a final
result is available or to drive custom scan-step behavior from your own logic.
The callback uses the exported BlinkIdFrameProcessCallback type:
export type BlinkIdFrameProcessCallback = (
frameResult: BlinkIdProcessResult,
advanceToNextStep: () => Promise<void>,
triggerStepTimeout: () => void,
getLastFrame: () => ArrayBuffer,
) => void;Callback parameters:
frameResult- theBlinkIdProcessResultfor the current frame. It contains input image analysis and result completeness data for that frame, but it is not the finalBlinkIdScanningResult.advanceToNextStep- manually advances the session to the next required scan step. Use this when your custom frame-level logic decides that the active side or barcode step is complete. This can also finish the scan whenframeResultalready contains all data your integration needs, even if the default flow would keep waiting for a barcode or another optional step that the user cannot capture reliably.triggerStepTimeout- immediately triggers the scan-step timeout path for the active step. Use this when custom validation decides the current step should fail or stop waiting for more frames.getLastFrame- returns the rawArrayBufferfor the frame that producedframeResult, useful for QA overlays, diagnostics, or custom capture tooling.
const removeOnFrameProcess = uxManager.addOnFrameProcessCallback(
(frameResult, advanceToNextStep, triggerStepTimeout, getLastFrame) => {
if (hasAllRequiredData(frameResult)) {
void advanceToNextStep();
return;
}
if (shouldStopStep(frameResult)) {
triggerStepTimeout();
return;
}
const lastFrame = getLastFrame();
console.debug("Last processed frame bytes:", lastFrame.byteLength);
},
);
// Later, to stop receiving updates:
removeOnFrameProcess();Observing Progress
Use addOnProgressCallback to receive live BlinkID progress snapshots from the
manager's internal RAF loop, capped at 30 FPS. This is useful for QA overlays,
debug tooling, or custom telemetry.
const removeOnProgress = uxManager.addOnProgressCallback((progress) => {
console.log(progress.uiStateKey);
console.log(progress.inactivity.remainingMs);
console.log(progress.perSide.remainingMs);
console.log(progress.partiallySupportedBarcodeResolve.remainingMs);
});
// Later, to stop receiving updates:
removeOnProgress();Each progress payload includes:
uiStateKey- current stabilized UI statemappedUiStateKey- latest raw candidate state before stabilizationinactivity- configured, remaining, and status data for the inactivity timerperSide- configured, remaining, and status data for the scan-step timerpartiallySupportedBarcodeResolve- configured, remaining, and status data for the partially supported barcode resolve timerplaybackState- current camera playback stateisTimingActiveScanStep- whether BlinkID is currently timing an active scan step
Inspecting UI State
Two getters provide visibility into the current UI state:
uxManager.uiStateKey— the stabilized, visible state key (what the UI shows)uxManager.mappedUiStateKey— the latest raw candidate key from the detector before stabilization (useful for debugging)
Note: Starting in v7.7.0, the manager automatically advances through intermediate transition states after
PAGE_CAPTURED(e.g.PAGE_CAPTURED → FLIP_CARD → INTRO_BACK_PAGEfor two-sided IDs). Integrations that depend on exact UI-state key sequences should account for these chained transitions.
Configuring Help Tooltip Delays
Tooltip delays can be configured via FeedbackUiOptions when creating the feedback UI:
createBlinkIdFeedbackUi(uxManager, cameraUi, {
showHelpTooltipTimeout: 15000, // ms before tooltip appears
});Deprecated: The
setHelpTooltipShowDelayandsetHelpTooltipHideDelaymethods onBlinkIdUxManagerare deprecated. Prefer configuring delays throughFeedbackUiOptionsinstead.
See the example apps in the apps/examples directory in the GitHub repository for full usage details.
Development
To build the package locally:
Install dependencies in the monorepo root:
pnpm installBuild the package:
pnpm buildRun tests:
pnpm test
The output files will be available in the dist/ and types/ directories.
Internationalization
You can customize UI strings when creating the feedback UI. The canonical key shape is defined by src/ui/locales/en.ts; LocalizationStrings in src/ui/LocalizationContext.tsx follows that object.
v8000 breaking change: nested localization keys
Older releases used flat top-level keys (for example scan_the_barcode, help_modal_title_1). Current releases use a nested object. Overrides in feedbackUiOptions.localizationStrings (or the third argument to createBlinkIdFeedbackUi) must use the new paths; flat keys are no longer read. If you overrode flat keys in 7.x, use the Flat key migration (pre-v8000 → current) table in the v8000 package CHANGELOG.md (from the major release changeset) for the old-key to new-path mapping.
Example override with nested keys:
createBlinkIdFeedbackUi(uxManager, cameraUi, {
localizationStrings: {
feedback_messages: {
scan_the_barcode: "Please scan the barcode",
},
timeout_modal: {
title: "Scan did not finish",
},
},
});Structure overview
Top-level groups in en.ts:
feedback_messages— short live feedback strings (blur, glare, scan-this-side hints, success ARIA labels).help_button—aria_label,tooltipfor the help entry point.help_modal— shared chrome (aria,back_btn,next_btn,done_btn,done_btn_aria) plus three flow groups (full_document,document_with_barcode,barcode_only). Each group has step objectsvisibility,lighting,blurwithtitle,title_desktop,details,details_desktopas applicable, andcamera_lenswith desktop-onlytitle_desktop/details_desktopwhere used.onboarding_modal— sharedaria,btnplus the same three groups (full_document,document_with_barcode,barcode_only) withtitle,title_desktop,details,details_desktop.error_modal—cancel_btn,retry_btnfor error flows that expose those actions.document_filtered_modal,document_not_recognized_modal—titleanddetailsfor document filtering / unsupported UI.timeout_modal—titleanddetailsfor scan timeout / failure messaging.sdk_aria— ARIA label for the scanning screen region.
Extraction mode and which help/onboarding group is used
BlinkIdExtractionMode (see src/core/extractionMode.ts) drives which subtree under help_modal and onboarding_modal is shown. The mapping matches helpModalContentByExtractionMode and onboardingModalContentByExtractionMode:
| Extraction mode | help_modal / onboarding_modal group |
| ----------------------- | --------------------------------------- |
| full-document | full_document |
| document-with-barcode | document_with_barcode |
| document-with-mrz | document_with_mrz |
| barcode-only | barcode_only |
The document-with-mrz mode is selected for single-side scanning when document
capture is enabled and mrzModule.presenceMandatory is true. It provides
MRZ-specific help, onboarding, illustrations, and scanning guidance.
Feedback strings that depend on extraction mode (for example front, barcode,
or MRZ side) are selected in code via
src/ui/feedbackMessages.ts; new keys include
scan_the_barcode_side, scan_the_mrz_side, and keep_still (used for the
desktop blur path as a shorter “keep still” hint).
English copy changes (not just nesting)
- Several
feedback_messagesstrings now say “a document” instead of “the document” where the copy is generic. - New dedicated copy for barcode-only, document + barcode, and
document + MRZ paths under
help_modal.barcode_only,help_modal.document_with_barcode,help_modal.document_with_mrz, and the matchingonboarding_modalgroups. - New feedback keys:
scan_the_barcode_side,scan_the_mrz_side,keep_still.
Other locales
Every file under src/ui/locales/ follows the same nested structure as en.ts. If you maintain a fork or partial override, diff your strings against en.ts to pick up new keys and renamed paths.
Provided Translations
- ak.ts
- am.ts
- ar.ts
- bn.ts
- cs.ts
- da.ts
- de.ts
- el.ts
- en.ts
- en_GB.ts
- es.ts
- es_MX.ts
- fa-latn.ts
- fi.ts
- fil.ts
- fr.ts
- fr_CA.ts
- ha.ts
- he.ts
- hi.ts
- hr.ts
- hu.ts
- id.ts
- is.ts
- it.ts
- ja.ts
- ka_GE.ts
- kk.ts
- km_KH.ts
- ko.ts
- lv.ts
- ms.ts
- ne.ts
- nl.ts
- no.ts
- pl.ts
- ps_AF.ts
- pt.ts
- pt_BR.ts
- ro.ts
- ru.ts
- si.ts
- sk.ts
- sl.ts
- sr.ts
- sv.ts
- sw.ts
- th.ts
- tr.ts
- uk.ts
- ur.ts
- uz.ts
- vi.ts
- yo.ts
- zh_CN.ts
- zh_TW.ts
You can import any of these files directly or use them as a starting point for your own localization.
