barcode-detector-api-polyfill 1.0.11 → 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/barcode-detector-polyfill.min.js +1 -1
- package/browser/barcode-detector-polyfill.min.js.map +1 -1
- package/cjs/browser.d.ts +1 -0
- package/cjs/browser.js +7 -0
- package/cjs/browser.js.map +1 -0
- package/esm/BarcodeDetector.js +12 -16
- package/esm/BarcodeDetector.js.map +1 -1
- package/esm/browser.d.ts +1 -0
- package/esm/browser.js +5 -0
- package/esm/browser.js.map +1 -0
- package/esm/constants.js +33 -36
- package/esm/constants.js.map +1 -1
- package/esm/index.js +3 -6
- package/esm/index.js.map +1 -1
- package/esm/models/IBarcodeDetector.js +1 -2
- package/esm/models/ICornerPoint.js +1 -2
- package/esm/models/IDetectedBarcode.js +1 -2
- package/esm/models/WindowWithBarcodeDetector.js +1 -2
- package/esm/models/index.js +4 -20
- package/esm/models/index.js.map +1 -1
- package/package.json +1 -1
package/cjs/browser.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/cjs/browser.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const BarcodeDetector_1 = require("./BarcodeDetector");
|
|
4
|
+
if (!('BarcodeDetector' in window)) {
|
|
5
|
+
window.BarcodeDetector = BarcodeDetector_1.BarcodeDetector;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=browser.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browser.js","sourceRoot":"","sources":["../../src/browser.ts"],"names":[],"mappings":";;AACA,uDAAoD;AAEpD,IAAI,CAAC,CAAC,iBAAiB,IAAI,MAAM,CAAC,EAAE,CAAC;IAClC,MAAoC,CAAC,eAAe,GAAG,iCAAe,CAAC;AAC1E,CAAC"}
|
package/esm/BarcodeDetector.js
CHANGED
|
@@ -1,25 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
const library_1 = require("@zxing/library");
|
|
6
|
-
const constants_1 = require("./constants");
|
|
7
|
-
class BarcodeDetector {
|
|
1
|
+
import { BrowserMultiFormatReader } from '@zxing/browser';
|
|
2
|
+
import { DecodeHintType, NotFoundException } from '@zxing/library';
|
|
3
|
+
import { nativeToZxingFormat, zxingToNativeFormat } from './constants';
|
|
4
|
+
export class BarcodeDetector {
|
|
8
5
|
reader;
|
|
9
6
|
constructor(options) {
|
|
10
7
|
const hints = new Map([
|
|
11
|
-
[
|
|
8
|
+
[DecodeHintType.TRY_HARDER, true],
|
|
12
9
|
[
|
|
13
|
-
|
|
10
|
+
DecodeHintType.POSSIBLE_FORMATS,
|
|
14
11
|
options
|
|
15
|
-
? options.formats.map((f) =>
|
|
16
|
-
: Object.values(
|
|
12
|
+
? options.formats.map((f) => nativeToZxingFormat[f])
|
|
13
|
+
: Object.values(nativeToZxingFormat),
|
|
17
14
|
],
|
|
18
15
|
]);
|
|
19
|
-
this.reader = new
|
|
16
|
+
this.reader = new BrowserMultiFormatReader(hints);
|
|
20
17
|
}
|
|
21
18
|
static getSupportedFormats() {
|
|
22
|
-
return Promise.resolve(Object.values(
|
|
19
|
+
return Promise.resolve(Object.values(zxingToNativeFormat));
|
|
23
20
|
}
|
|
24
21
|
async detect(imageSource) {
|
|
25
22
|
try {
|
|
@@ -44,13 +41,13 @@ class BarcodeDetector {
|
|
|
44
41
|
}
|
|
45
42
|
return [{
|
|
46
43
|
rawValue: result.getText(),
|
|
47
|
-
format:
|
|
44
|
+
format: zxingToNativeFormat[result.getBarcodeFormat()],
|
|
48
45
|
boundingBox: new DOMRectReadOnly(), // TODO: think of a way to map this in a meaningful way
|
|
49
46
|
cornerPoints: result.getResultPoints().map((p) => ({ x: p.getX(), y: p.getY() })),
|
|
50
47
|
}];
|
|
51
48
|
}
|
|
52
49
|
catch (err) {
|
|
53
|
-
if (err && !(err instanceof
|
|
50
|
+
if (err && !(err instanceof NotFoundException)) {
|
|
54
51
|
throw err;
|
|
55
52
|
}
|
|
56
53
|
return [];
|
|
@@ -84,5 +81,4 @@ class BarcodeDetector {
|
|
|
84
81
|
return canvas;
|
|
85
82
|
}
|
|
86
83
|
}
|
|
87
|
-
exports.BarcodeDetector = BarcodeDetector;
|
|
88
84
|
//# sourceMappingURL=BarcodeDetector.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BarcodeDetector.js","sourceRoot":"","sources":["../../src/BarcodeDetector.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BarcodeDetector.js","sourceRoot":"","sources":["../../src/BarcodeDetector.ts"],"names":[],"mappings":"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"}
|
package/esm/browser.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/esm/browser.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browser.js","sourceRoot":"","sources":["../../src/browser.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEpD,IAAI,CAAC,CAAC,iBAAiB,IAAI,MAAM,CAAC,EAAE,CAAC;IAClC,MAAoC,CAAC,eAAe,GAAG,eAAe,CAAC;AAC1E,CAAC"}
|
package/esm/constants.js
CHANGED
|
@@ -1,40 +1,37 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.nativeToZxingFormat = exports.zxingToNativeFormat = void 0;
|
|
4
|
-
const library_1 = require("@zxing/library");
|
|
1
|
+
import { BarcodeFormat } from '@zxing/library';
|
|
5
2
|
// format names taken from https://developer.mozilla.org/en-US/docs/Web/API/Barcode_Detection_API#supported_barcode_formats
|
|
6
|
-
|
|
7
|
-
[
|
|
8
|
-
[
|
|
9
|
-
[
|
|
10
|
-
[
|
|
11
|
-
[
|
|
12
|
-
[
|
|
13
|
-
[
|
|
14
|
-
[
|
|
15
|
-
[
|
|
16
|
-
[
|
|
17
|
-
[
|
|
18
|
-
[
|
|
19
|
-
[
|
|
20
|
-
[
|
|
21
|
-
[
|
|
22
|
-
[
|
|
23
|
-
[
|
|
3
|
+
export const zxingToNativeFormat = {
|
|
4
|
+
[BarcodeFormat.AZTEC]: 'aztec',
|
|
5
|
+
[BarcodeFormat.CODABAR]: 'codabar',
|
|
6
|
+
[BarcodeFormat.CODE_39]: 'code_39',
|
|
7
|
+
[BarcodeFormat.CODE_93]: 'code_93',
|
|
8
|
+
[BarcodeFormat.CODE_128]: 'code_128',
|
|
9
|
+
[BarcodeFormat.DATA_MATRIX]: 'data_matrix',
|
|
10
|
+
[BarcodeFormat.EAN_8]: 'ean_8',
|
|
11
|
+
[BarcodeFormat.EAN_13]: 'ean_13',
|
|
12
|
+
[BarcodeFormat.ITF]: 'itf',
|
|
13
|
+
[BarcodeFormat.PDF_417]: 'pdf417',
|
|
14
|
+
[BarcodeFormat.QR_CODE]: 'qr_code',
|
|
15
|
+
[BarcodeFormat.UPC_A]: 'upc_a',
|
|
16
|
+
[BarcodeFormat.UPC_E]: 'upc_e',
|
|
17
|
+
[BarcodeFormat.UPC_EAN_EXTENSION]: 'unknown',
|
|
18
|
+
[BarcodeFormat.MAXICODE]: 'unknown',
|
|
19
|
+
[BarcodeFormat.RSS_14]: 'unknown',
|
|
20
|
+
[BarcodeFormat.RSS_EXPANDED]: 'unknown',
|
|
24
21
|
};
|
|
25
|
-
|
|
26
|
-
aztec:
|
|
27
|
-
codabar:
|
|
28
|
-
code_39:
|
|
29
|
-
code_93:
|
|
30
|
-
code_128:
|
|
31
|
-
data_matrix:
|
|
32
|
-
ean_8:
|
|
33
|
-
ean_13:
|
|
34
|
-
itf:
|
|
35
|
-
pdf417:
|
|
36
|
-
qr_code:
|
|
37
|
-
upc_a:
|
|
38
|
-
upc_e:
|
|
22
|
+
export const nativeToZxingFormat = {
|
|
23
|
+
aztec: BarcodeFormat.AZTEC,
|
|
24
|
+
codabar: BarcodeFormat.CODABAR,
|
|
25
|
+
code_39: BarcodeFormat.CODE_39,
|
|
26
|
+
code_93: BarcodeFormat.CODE_93,
|
|
27
|
+
code_128: BarcodeFormat.CODE_128,
|
|
28
|
+
data_matrix: BarcodeFormat.DATA_MATRIX,
|
|
29
|
+
ean_8: BarcodeFormat.EAN_8,
|
|
30
|
+
ean_13: BarcodeFormat.EAN_13,
|
|
31
|
+
itf: BarcodeFormat.ITF,
|
|
32
|
+
pdf417: BarcodeFormat.PDF_417,
|
|
33
|
+
qr_code: BarcodeFormat.QR_CODE,
|
|
34
|
+
upc_a: BarcodeFormat.UPC_A,
|
|
35
|
+
upc_e: BarcodeFormat.UPC_E,
|
|
39
36
|
};
|
|
40
37
|
//# sourceMappingURL=constants.js.map
|
package/esm/constants.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAE/C,2HAA2H;AAE3H,MAAM,CAAC,MAAM,mBAAmB,GAAkC;IAChE,CAAC,aAAa,CAAC,KAAK,CAAC,EAAE,OAAO;IAC9B,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE,SAAS;IAClC,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE,SAAS;IAClC,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE,SAAS;IAClC,CAAC,aAAa,CAAC,QAAQ,CAAC,EAAE,UAAU;IACpC,CAAC,aAAa,CAAC,WAAW,CAAC,EAAE,aAAa;IAC1C,CAAC,aAAa,CAAC,KAAK,CAAC,EAAE,OAAO;IAC9B,CAAC,aAAa,CAAC,MAAM,CAAC,EAAE,QAAQ;IAChC,CAAC,aAAa,CAAC,GAAG,CAAC,EAAE,KAAK;IAC1B,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE,QAAQ;IACjC,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE,SAAS;IAClC,CAAC,aAAa,CAAC,KAAK,CAAC,EAAE,OAAO;IAC9B,CAAC,aAAa,CAAC,KAAK,CAAC,EAAE,OAAO;IAC9B,CAAC,aAAa,CAAC,iBAAiB,CAAC,EAAE,SAAS;IAC5C,CAAC,aAAa,CAAC,QAAQ,CAAC,EAAE,SAAS;IACnC,CAAC,aAAa,CAAC,MAAM,CAAC,EAAE,SAAS;IACjC,CAAC,aAAa,CAAC,YAAY,CAAC,EAAE,SAAS;CACxC,CAAC;AAEF,MAAM,CAAC,MAAM,mBAAmB,GAAkC;IAChE,KAAK,EAAE,aAAa,CAAC,KAAK;IAC1B,OAAO,EAAE,aAAa,CAAC,OAAO;IAC9B,OAAO,EAAE,aAAa,CAAC,OAAO;IAC9B,OAAO,EAAE,aAAa,CAAC,OAAO;IAC9B,QAAQ,EAAE,aAAa,CAAC,QAAQ;IAChC,WAAW,EAAE,aAAa,CAAC,WAAW;IACtC,KAAK,EAAE,aAAa,CAAC,KAAK;IAC1B,MAAM,EAAE,aAAa,CAAC,MAAM;IAC5B,GAAG,EAAE,aAAa,CAAC,GAAG;IACtB,MAAM,EAAE,aAAa,CAAC,OAAO;IAC7B,OAAO,EAAE,aAAa,CAAC,OAAO;IAC9B,KAAK,EAAE,aAAa,CAAC,KAAK;IAC1B,KAAK,EAAE,aAAa,CAAC,KAAK;CAC3B,CAAC"}
|
package/esm/index.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const BarcodeDetector_1 = require("./BarcodeDetector");
|
|
5
|
-
Object.defineProperty(exports, "BarcodeDetector", { enumerable: true, get: function () { return BarcodeDetector_1.BarcodeDetector; } });
|
|
6
|
-
exports.default = BarcodeDetector_1.BarcodeDetector;
|
|
1
|
+
import { BarcodeDetector } from './BarcodeDetector';
|
|
2
|
+
export { BarcodeDetector };
|
|
3
|
+
export default BarcodeDetector;
|
|
7
4
|
//# sourceMappingURL=index.js.map
|
package/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAGpD,OAAO,EAAE,eAAe,EAAE,CAAC;AAC3B,eAAe,eAAe,CAAC"}
|
package/esm/models/index.js
CHANGED
|
@@ -1,21 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./ICornerPoint"), exports);
|
|
18
|
-
__exportStar(require("./IDetectedBarcode"), exports);
|
|
19
|
-
__exportStar(require("./IBarcodeDetector"), exports);
|
|
20
|
-
__exportStar(require("./WindowWithBarcodeDetector"), exports);
|
|
1
|
+
export * from './ICornerPoint';
|
|
2
|
+
export * from './IDetectedBarcode';
|
|
3
|
+
export * from './IBarcodeDetector';
|
|
4
|
+
export * from './WindowWithBarcodeDetector';
|
|
21
5
|
//# sourceMappingURL=index.js.map
|
package/esm/models/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,6BAA6B,CAAC"}
|