forked from el-angel/react-native-linea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLineaPro.js
80 lines (66 loc) · 1.99 KB
/
LineaPro.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
'use strict';
import { Linea } from './NativeBridges';
import { NativeEventEmitter } from 'react-native';
export default class LineaPro {
constructor() {
this.evt = new NativeEventEmitter(Linea);
}
// For setBarcodeScanMode
static MODE_MULTI_SCAN = Linea.BUTTON_DISABLED;
static MODE_SINGLE_SCAN = Linea.BUTTON_ENABLED;
static MODE_MOTION_DETECT = Linea.MODE_MOTION_DETECT;
static MODE_SINGLE_SCAN_RELEASE = Linea.MODE_SINGLE_SCAN_RELEASE;
static MODE_MULTI_SCAN_NO_DUPLICATES = Linea.MODE_MULTI_SCAN_NO_DUPLICATES;
// For setBarcodeScanButtonMode
static BUTTON_DISABLED = Linea.BUTTON_DISABLED;
static BUTTON_ENABLED = Linea.BUTTON_ENABLED;
initialize() {
Linea.initializeScanner();
}
setBarcodeScanMode(mode) {
Linea.setBarcodeScanMode(mode);
}
setBarcodeScanBeep(enabled) {
Linea.setBarcodeScanBeep(enabled);
}
setBarcodeScanButtonMode(mode) {
Linea.setBarcodeScanButtonMode(mode);
}
playSound(volume, beepData) {
Linea.playSound(volume, beepData);
}
addConnectionStateListener(callback) {
return this.evt.addListener('connectionState', (data) => {
if (data === "connected") {
callback(true);
}
else {
callback(false);
}
});
}
addDebugListener(callback) {
return this.evt.addListener('debug', (data) => {
console.log(data);
callback(data);
});
}
addRfCardListener(callback) {
return this.evt.addListener('rfcardInfo', (data) => {
callback(data);
});
}
addMagneticInfoListener(callback) {
return this.evt.addListener('magneticInfo', (data) => {
callback(data);
});
}
addBarcodeInfoListener(callback) {
return this.evt.addListener('barcodeInfo', (data) => {
callback(data);
});
}
scanRf() {
Linea.scanRfId();
}
}