Add barcode-detector-api-polyfill dependency and update environment variable declarations in SvelteKit project
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
import type { IDetectedBarcode, IBarcodeDetector } from './models';
|
||||
export declare class BarcodeDetector implements IBarcodeDetector {
|
||||
private reader;
|
||||
constructor(options?: {
|
||||
formats: string[];
|
||||
});
|
||||
static getSupportedFormats(): Promise<string[]>;
|
||||
detect(imageSource: ImageBitmapSource): Promise<IDetectedBarcode[]>;
|
||||
private blobToImage;
|
||||
private imageDataSourceToCanvas;
|
||||
}
|
||||
+87
@@ -0,0 +1,87 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.BarcodeDetector = void 0;
|
||||
const browser_1 = require("@zxing/browser");
|
||||
const library_1 = require("@zxing/library");
|
||||
const constants_1 = require("./constants");
|
||||
class BarcodeDetector {
|
||||
constructor(options) {
|
||||
const hints = new Map([
|
||||
[library_1.DecodeHintType.TRY_HARDER, true],
|
||||
[
|
||||
library_1.DecodeHintType.POSSIBLE_FORMATS,
|
||||
options
|
||||
? options.formats.map((f) => constants_1.nativeToZxingFormat[f])
|
||||
: Object.values(constants_1.nativeToZxingFormat),
|
||||
],
|
||||
]);
|
||||
this.reader = new browser_1.BrowserMultiFormatReader(hints);
|
||||
}
|
||||
static getSupportedFormats() {
|
||||
return Promise.resolve(Object.values(constants_1.zxingToNativeFormat));
|
||||
}
|
||||
async detect(imageSource) {
|
||||
try {
|
||||
let result;
|
||||
if (imageSource instanceof HTMLVideoElement || imageSource instanceof HTMLImageElement) {
|
||||
result = await this.reader.scanOneResult(imageSource, false);
|
||||
}
|
||||
else if (imageSource instanceof HTMLCanvasElement) {
|
||||
result = this.reader.decodeFromCanvas(imageSource);
|
||||
}
|
||||
else if (imageSource instanceof Blob) {
|
||||
const image = await this.blobToImage(imageSource);
|
||||
result = await this.reader.scanOneResult(image, false);
|
||||
}
|
||||
else if (imageSource instanceof ImageBitmap
|
||||
|| imageSource instanceof ImageData
|
||||
|| imageSource instanceof VideoFrame) {
|
||||
result = this.reader.decodeFromCanvas(this.imageDataSourceToCanvas(imageSource));
|
||||
}
|
||||
else {
|
||||
throw new TypeError('Image source is not supported');
|
||||
}
|
||||
return [{
|
||||
rawValue: result.getText(),
|
||||
format: constants_1.zxingToNativeFormat[result.getBarcodeFormat()],
|
||||
boundingBox: new DOMRectReadOnly(), // TODO: think of a way to map this in a meaningful way
|
||||
cornerPoints: result.getResultPoints().map((p) => ({ x: p.getX(), y: p.getY() })),
|
||||
}];
|
||||
}
|
||||
catch (err) {
|
||||
if (err && !(err instanceof library_1.NotFoundException)) {
|
||||
throw err;
|
||||
}
|
||||
return [];
|
||||
}
|
||||
}
|
||||
async blobToImage(blob) {
|
||||
return new Promise((resolve, reject) => {
|
||||
const imageObjUrl = URL.createObjectURL(blob);
|
||||
const image = new Image();
|
||||
image.onload = () => {
|
||||
URL.revokeObjectURL(imageObjUrl);
|
||||
resolve(image);
|
||||
};
|
||||
image.onerror = () => reject();
|
||||
image.src = imageObjUrl;
|
||||
});
|
||||
}
|
||||
imageDataSourceToCanvas(source) {
|
||||
const canvas = document.createElement('canvas');
|
||||
const ctx = canvas.getContext('2d');
|
||||
const width = source instanceof VideoFrame ? source.displayWidth : source.width;
|
||||
const height = source instanceof VideoFrame ? source.displayHeight : source.height;
|
||||
if (ctx) {
|
||||
if (source instanceof ImageData) {
|
||||
ctx.putImageData(source, width, height);
|
||||
}
|
||||
else {
|
||||
ctx.drawImage(source, width, height);
|
||||
}
|
||||
}
|
||||
return canvas;
|
||||
}
|
||||
}
|
||||
exports.BarcodeDetector = BarcodeDetector;
|
||||
//# sourceMappingURL=BarcodeDetector.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"BarcodeDetector.js","sourceRoot":"","sources":["../../src/BarcodeDetector.ts"],"names":[],"mappings":"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"}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const BarcodeDetector_1 = require("./BarcodeDetector");
|
||||
if (!('BarcodeDetector' in window)) {
|
||||
window.BarcodeDetector = BarcodeDetector_1.BarcodeDetector;
|
||||
}
|
||||
//# sourceMappingURL=browser.js.map
|
||||
+1
@@ -0,0 +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"}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import { BarcodeFormat } from '@zxing/library';
|
||||
export declare const zxingToNativeFormat: Record<BarcodeFormat, string>;
|
||||
export declare const nativeToZxingFormat: Record<string, BarcodeFormat>;
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.nativeToZxingFormat = exports.zxingToNativeFormat = void 0;
|
||||
const library_1 = require("@zxing/library");
|
||||
// format names taken from https://developer.mozilla.org/en-US/docs/Web/API/Barcode_Detection_API#supported_barcode_formats
|
||||
exports.zxingToNativeFormat = {
|
||||
[library_1.BarcodeFormat.AZTEC]: 'aztec',
|
||||
[library_1.BarcodeFormat.CODABAR]: 'codabar',
|
||||
[library_1.BarcodeFormat.CODE_39]: 'code_39',
|
||||
[library_1.BarcodeFormat.CODE_93]: 'code_93',
|
||||
[library_1.BarcodeFormat.CODE_128]: 'code_128',
|
||||
[library_1.BarcodeFormat.DATA_MATRIX]: 'data_matrix',
|
||||
[library_1.BarcodeFormat.EAN_8]: 'ean_8',
|
||||
[library_1.BarcodeFormat.EAN_13]: 'ean_13',
|
||||
[library_1.BarcodeFormat.ITF]: 'itf',
|
||||
[library_1.BarcodeFormat.PDF_417]: 'pdf417',
|
||||
[library_1.BarcodeFormat.QR_CODE]: 'qr_code',
|
||||
[library_1.BarcodeFormat.UPC_A]: 'upc_a',
|
||||
[library_1.BarcodeFormat.UPC_E]: 'upc_e',
|
||||
[library_1.BarcodeFormat.UPC_EAN_EXTENSION]: 'unknown',
|
||||
[library_1.BarcodeFormat.MAXICODE]: 'unknown',
|
||||
[library_1.BarcodeFormat.RSS_14]: 'unknown',
|
||||
[library_1.BarcodeFormat.RSS_EXPANDED]: 'unknown',
|
||||
};
|
||||
exports.nativeToZxingFormat = {
|
||||
aztec: library_1.BarcodeFormat.AZTEC,
|
||||
codabar: library_1.BarcodeFormat.CODABAR,
|
||||
code_39: library_1.BarcodeFormat.CODE_39,
|
||||
code_93: library_1.BarcodeFormat.CODE_93,
|
||||
code_128: library_1.BarcodeFormat.CODE_128,
|
||||
data_matrix: library_1.BarcodeFormat.DATA_MATRIX,
|
||||
ean_8: library_1.BarcodeFormat.EAN_8,
|
||||
ean_13: library_1.BarcodeFormat.EAN_13,
|
||||
itf: library_1.BarcodeFormat.ITF,
|
||||
pdf417: library_1.BarcodeFormat.PDF_417,
|
||||
qr_code: library_1.BarcodeFormat.QR_CODE,
|
||||
upc_a: library_1.BarcodeFormat.UPC_A,
|
||||
upc_e: library_1.BarcodeFormat.UPC_E,
|
||||
};
|
||||
//# sourceMappingURL=constants.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":";;;AAAA,4CAA+C;AAE/C,2HAA2H;AAE9G,QAAA,mBAAmB,GAAkC;IAChE,CAAC,uBAAa,CAAC,KAAK,CAAC,EAAE,OAAO;IAC9B,CAAC,uBAAa,CAAC,OAAO,CAAC,EAAE,SAAS;IAClC,CAAC,uBAAa,CAAC,OAAO,CAAC,EAAE,SAAS;IAClC,CAAC,uBAAa,CAAC,OAAO,CAAC,EAAE,SAAS;IAClC,CAAC,uBAAa,CAAC,QAAQ,CAAC,EAAE,UAAU;IACpC,CAAC,uBAAa,CAAC,WAAW,CAAC,EAAE,aAAa;IAC1C,CAAC,uBAAa,CAAC,KAAK,CAAC,EAAE,OAAO;IAC9B,CAAC,uBAAa,CAAC,MAAM,CAAC,EAAE,QAAQ;IAChC,CAAC,uBAAa,CAAC,GAAG,CAAC,EAAE,KAAK;IAC1B,CAAC,uBAAa,CAAC,OAAO,CAAC,EAAE,QAAQ;IACjC,CAAC,uBAAa,CAAC,OAAO,CAAC,EAAE,SAAS;IAClC,CAAC,uBAAa,CAAC,KAAK,CAAC,EAAE,OAAO;IAC9B,CAAC,uBAAa,CAAC,KAAK,CAAC,EAAE,OAAO;IAC9B,CAAC,uBAAa,CAAC,iBAAiB,CAAC,EAAE,SAAS;IAC5C,CAAC,uBAAa,CAAC,QAAQ,CAAC,EAAE,SAAS;IACnC,CAAC,uBAAa,CAAC,MAAM,CAAC,EAAE,SAAS;IACjC,CAAC,uBAAa,CAAC,YAAY,CAAC,EAAE,SAAS;CACxC,CAAC;AAEW,QAAA,mBAAmB,GAAkC;IAChE,KAAK,EAAE,uBAAa,CAAC,KAAK;IAC1B,OAAO,EAAE,uBAAa,CAAC,OAAO;IAC9B,OAAO,EAAE,uBAAa,CAAC,OAAO;IAC9B,OAAO,EAAE,uBAAa,CAAC,OAAO;IAC9B,QAAQ,EAAE,uBAAa,CAAC,QAAQ;IAChC,WAAW,EAAE,uBAAa,CAAC,WAAW;IACtC,KAAK,EAAE,uBAAa,CAAC,KAAK;IAC1B,MAAM,EAAE,uBAAa,CAAC,MAAM;IAC5B,GAAG,EAAE,uBAAa,CAAC,GAAG;IACtB,MAAM,EAAE,uBAAa,CAAC,OAAO;IAC7B,OAAO,EAAE,uBAAa,CAAC,OAAO;IAC9B,KAAK,EAAE,uBAAa,CAAC,KAAK;IAC1B,KAAK,EAAE,uBAAa,CAAC,KAAK;CAC3B,CAAC"}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
import { BarcodeDetector } from './BarcodeDetector';
|
||||
export type * from './models';
|
||||
export { BarcodeDetector };
|
||||
export default BarcodeDetector;
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.BarcodeDetector = void 0;
|
||||
const BarcodeDetector_1 = require("./BarcodeDetector");
|
||||
Object.defineProperty(exports, "BarcodeDetector", { enumerable: true, get: function () { return BarcodeDetector_1.BarcodeDetector; } });
|
||||
exports.default = BarcodeDetector_1.BarcodeDetector;
|
||||
//# sourceMappingURL=index.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;AAAA,uDAAoD;AAG3C,gGAHA,iCAAe,OAGA;AACxB,kBAAe,iCAAe,CAAC"}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
import { IDetectedBarcode } from './IDetectedBarcode';
|
||||
export interface IBarcodeDetector {
|
||||
detect(image: ImageBitmapSource): Promise<IDetectedBarcode[]>;
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=IBarcodeDetector.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"IBarcodeDetector.js","sourceRoot":"","sources":["../../../src/models/IBarcodeDetector.ts"],"names":[],"mappings":""}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export interface ICornerPoint {
|
||||
x: number;
|
||||
y: number;
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=ICornerPoint.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"ICornerPoint.js","sourceRoot":"","sources":["../../../src/models/ICornerPoint.ts"],"names":[],"mappings":""}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
import { ICornerPoint } from './ICornerPoint';
|
||||
export interface IDetectedBarcode {
|
||||
boundingBox: DOMRectReadOnly;
|
||||
cornerPoints: ICornerPoint[];
|
||||
format: string;
|
||||
rawValue: string;
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=IDetectedBarcode.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"IDetectedBarcode.js","sourceRoot":"","sources":["../../../src/models/IDetectedBarcode.ts"],"names":[],"mappings":""}
|
||||
Generated
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
import { IBarcodeDetector } from './IBarcodeDetector';
|
||||
export type WindowWithBarcodeDetector = Window & typeof globalThis & {
|
||||
BarcodeDetector: {
|
||||
prototype: IBarcodeDetector;
|
||||
new (): IBarcodeDetector;
|
||||
getSupportedFormats(): Promise<string[]>;
|
||||
};
|
||||
};
|
||||
Generated
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=WindowWithBarcodeDetector.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"WindowWithBarcodeDetector.js","sourceRoot":"","sources":["../../../src/models/WindowWithBarcodeDetector.ts"],"names":[],"mappings":""}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export * from './ICornerPoint';
|
||||
export * from './IDetectedBarcode';
|
||||
export * from './IBarcodeDetector';
|
||||
export * from './WindowWithBarcodeDetector';
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("./ICornerPoint"), exports);
|
||||
__exportStar(require("./IDetectedBarcode"), exports);
|
||||
__exportStar(require("./IBarcodeDetector"), exports);
|
||||
__exportStar(require("./WindowWithBarcodeDetector"), exports);
|
||||
//# sourceMappingURL=index.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA+B;AAC/B,qDAAmC;AACnC,qDAAmC;AACnC,8DAA4C"}
|
||||
Reference in New Issue
Block a user