-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
executable file
·91 lines (78 loc) · 2.43 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
81
82
83
84
85
86
87
88
89
90
91
'use strict';
import {NativeEventEmitter, NativeModules} from 'react-native';
const {RNAttitude} = NativeModules;
const AttitudeEventEmitter = new NativeEventEmitter(RNAttitude);
let attitudeSubscriptions = [];
let attitudeUpdatesEnabled = false;
const Attitude = {
// Starts watching/observing of attitude
// The success function is called upon every change
watch: function(success) {
if (!attitudeUpdatesEnabled) {
RNAttitude.startObserving();
attitudeUpdatesEnabled = true;
}
const watchID = attitudeSubscriptions.length;
attitudeSubscriptions.push(AttitudeEventEmitter.addListener('attitudeUpdate', success));
return watchID;
},
// Stops all watching/observing of the passed in watch ID
clearWatch: function(watchID) {
const sub = attitudeSubscriptions[watchID];
if (!sub) {
// Silently exit when the watchID is invalid or already cleared
return;
}
sub.remove(); // removes the listener
attitudeSubscriptions[watchID] = undefined;
// check for any remaining watchers
let noWatchers = true;
for (let ii = 0; ii < attitudeSubscriptions.length; ii++) {
if (attitudeSubscriptions[ii]) {
noWatchers = false; // still valid watchers
}
}
if (noWatchers) {
RNAttitude.stopObserving();
attitudeUpdatesEnabled = false;
}
},
// Stop all watching/observing
stopObserving: function() {
let ii = 0;
RNAttitude.stopObserving();
for (ii = 0; ii < attitudeSubscriptions.length; ii++) {
const sub = attitudeSubscriptions[ii];
if (sub) {
sub.remove();
}
}
attitudeSubscriptions = [];
attitudeUpdatesEnabled = false;
},
// Zeros the baseline attitude based on our current attitude
zero: function() {
RNAttitude.zero();
},
// Resets the attitude reference
reset: function() {
RNAttitude.reset();
},
// Indicates if barometer updates are available on this device
isSupported: async function() {
return await RNAttitude.isSupported();
},
// Sets the desired output to either 'heading', 'attitude' or 'both'
setOutput: function(output) {
RNAttitude.setOutput(output);
},
// Sets the interval between event samples
setInterval: function(interval) {
RNAttitude.setInterval(interval);
},
// Sets the device rotation to either 'none', 'left' or 'right'
setRotation: function(rotation) {
RNAttitude.setRotation(rotation);
}
};
export default Attitude;