-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.android.js
49 lines (46 loc) · 1.22 KB
/
index.android.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
import { NativeModules, DeviceEventEmitter } from 'react-native'
const { RNFingerprintIdentify } = NativeModules
export default {
initFingerPrintIdentify: () => {
return new Promise((resolve, reject) => {
RNFingerprintIdentify.initFingerPrintIdentify().then((result) => {
if (result.error) {
return reject(result.error)
}
resolve(true)
})
})
},
isSensorAvailable: () => {
return new Promise((resolve, reject) => {
RNFingerprintIdentify.isSensorAvailable().then((result) => {
if (result.error) {
return reject(result.error)
}
resolve(true)
})
})
},
startIdentify: async (cb) => {
if (typeof cb === "function") {
DeviceEventEmitter.addListener('FINGERPRINT_IDENTIFY_STATUS', cb)
}
let err
try {
await RNFingerprintIdentify.startIdentify()
} catch (ex) {
err = ex
} finally {
if (err) {
console.log(err)
}
}
},
dismiss: () => {
DeviceEventEmitter.removeAllListeners("FINGERPRINT_IDENTIFY_STATUS")
},
cancelIdentify: () => {
DeviceEventEmitter.removeAllListeners("FINGERPRINT_IDENTIFY_STATUS")
return RNFingerprintIdentify.cancelIdentify()
}
}