-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpreload-example.js
135 lines (113 loc) · 2.91 KB
/
preload-example.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
const root = document.getElementById('root');
let selectedPreset = undefined;
let anyline;
let mirrored = false;
const DEFAULT_PRESET = {
value: 'barcode'
};
async function preload(preset = DEFAULT_PRESET) {
try {
selectedPreset = preset;
anyline = window.anylinejs.init({
preload: true,
config: {
id: 'Any',
cancelOnResult: true,
},
preset: preset.value,
license: demoLicense,
element: root,
debugAnyline: true,
enableCaching: false,
anylinePath: '../anylinejs',
});
anyline.onResult = (result) => {
console.log('Result: ', result);
alert(JSON.stringify(result.result, null, 2));
};
await appendCameraSwitcher(anyline);
await anyline.preload();
} catch (e) {
alert(e.message);
console.error(e);
}
}
async function startScanning() {
await anyline.startScanning().catch((e) => alert(e.message));
}
function mirrorCamera() {
if (!anyline) return;
const newState = !mirrored;
anyline.camera.mirrorStream(newState);
mirrored = newState;
}
function reappendCamera() {
if (!anyline) return;
anyline.camera.reappend();
}
async function appendCameraSwitcher(anyline) {
if (document.getElementById('cameraSwitcher')) return;
const stream = await navigator.mediaDevices.getUserMedia({
video: {},
audio: false,
});
stream.getTracks().forEach((track) => {
stream.removeTrack(track);
track.stop();
});
const devices = (await navigator.mediaDevices.enumerateDevices()) || [];
renderSelect({
options: devices
.filter((m) => m.kind === 'videoinput')
.map((camera) => ({
text: camera.label,
value: camera.deviceId,
}))
.reduce((acc, camera) => [...acc, camera], [{ text: 'switch cam' }]),
onSelect: (deviceId) => deviceId && anyline.camera.setCamera(deviceId),
});
}
function renderSelect({ options, onSelect }) {
let parent = document.getElementsByClassName('toolbar')[0];
//Create and append select list
const selectEl = document.createElement('select');
selectEl.id = 'cameraSwitcher';
parent.appendChild(selectEl);
options.forEach((option) => {
const optionEl = document.createElement('option');
optionEl.value = option.value;
optionEl.text = option.text;
selectEl.appendChild(optionEl);
});
selectEl.onchange = (e) => onSelect(e.target.value);
}
function remountAnylineJS() {
anyline.stopScanning();
anyline.dispose();
mountAnylineJS(selectedPreset);
}
async function enableFlash() {
if (!anyline) return;
try {
await anyline.camera.activateFlash(true);
} catch (e) {
alert(e.message);
}
}
async function disableFlash() {
if (!anyline) return;
try {
await anyline.camera.activateFlash(false);
} catch (e) {
alert(e.message);
}
}
async function refocus() {
if (!anyline) return;
try {
await anyline.camera.refocus();
} catch (e) {
alert(e.message);
}
}
preload();