feat: support multiple barcode format hints#122
Open
DotHyphon wants to merge 1 commit into
Open
Conversation
087d8d1 to
1cbbe29
Compare
Add `hints?: CapacitorBarcodeScannerTypeHint[]` to CapacitorBarcodeScannerOptions as an additive companion to the existing single `hint`. When non-empty, `hints` takes precedence and pre-filters the decoder to that set of formats, both natively and on web (via html5-qrcode `formatsToSupport`). `ALL` (sentinel 17) anywhere in the list short-circuits to scan-all, matching the single-hint semantic. Bridge layers (Android/iOS/web) read `hints` and pass it through to the native libs alongside the legacy `hint` field. Backward compatible: existing callers passing only `hint` are unaffected. Note: this PR depends on the corresponding native lib changes: - OutSystems/OSBarcodeLib-Android (multi-hint support in OSBARCScanParameters) - OutSystems/OSBarcodeLib-iOS (multi-hint support in OSBARCScanParameters)
1cbbe29 to
53ffb6f
Compare
|
This feature would be very much appreciated! In our app we try scan products in the supermarket, but they use both ean 8 and 13. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
hints?: CapacitorBarcodeScannerTypeHint[]toCapacitorBarcodeScannerOptionsas an additive companion to the existing singlehint. When non-empty,hintstakes precedence and pre-filters the decoder to that set of formats.ALL(sentinel 17) anywhere in the list short-circuits to scan-all, matching the single-hint semantic.Bridge layers (Android/iOS/web) read
hintsand pass it through to the native libs alongside the legacyhintfield. Backward compatible: existing callers passing onlyhintare unaffected.