-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
81 lines (70 loc) · 2.24 KB
/
index.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 {NativeEventEmitter, NativeModules} from 'react-native';
const {RNBarometer} = NativeModules;
const BarometerEventEmitter = new NativeEventEmitter(RNBarometer);
let barometerSubscriptions = [];
let barometerUpdatesEnabled = false;
const Barometer = {
// Starts watching/observing of barometer/altitude
// The success function is called upon every change
watch: function(success) {
if (!barometerUpdatesEnabled) {
RNBarometer.startObserving();
barometerUpdatesEnabled = true;
}
const watchID = barometerSubscriptions.length;
barometerSubscriptions.push(BarometerEventEmitter.addListener('barometerUpdate', success));
return watchID;
},
// Stops all watching/observing of the passed in watch ID
clearWatch: function(watchID) {
const sub = barometerSubscriptions[watchID];
if (!sub) {
// Silently exit when the watchID is invalid or already cleared
return;
}
sub.remove(); // removes the listener
barometerSubscriptions[watchID] = undefined;
// check for any remaining watchers
let noWatchers = true;
for (let ii = 0; ii < barometerSubscriptions.length; ii++) {
if (barometerSubscriptions[ii]) {
noWatchers = false; // still valid watchers
}
}
if (noWatchers) {
RNBarometer.stopObserving();
barometerUpdatesEnabled = false;
}
},
// Stop all watching/observing
stopObserving: function() {
let ii = 0;
RNBarometer.stopObserving();
for (ii = 0; ii < barometerSubscriptions.length; ii++) {
const sub = barometerSubscriptions[ii];
if (sub) {
sub.remove();
}
}
barometerSubscriptions = [];
barometerUpdatesEnabled = false;
},
// Indicates if barometer updates are available on this device
isSupported: async function() {
return await RNBarometer.isSupported();
},
// Sets the interval between event samples
setInterval: function(interval) {
RNBarometer.setInterval(interval);
if(barometerUpdatesEnabled) {
RNBarometer.stopObserving();
RNBarometer.startObserving();
}
},
// Sets the local air pressure in hPA/Millibars
setLocalPressure: function(pressure) {
RNBarometer.setLocalPressure(pressure);
}
};
export default Barometer;