-
Notifications
You must be signed in to change notification settings - Fork 23
/
index.js
150 lines (123 loc) · 3.42 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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
"use strict";
import {
Platform,
NativeModules,
DeviceEventEmitter,
NativeEventEmitter
} from "react-native";
const { RNNearbyApi } = NativeModules;
/**
* Event Constants
*/
export const CONNECTED = "CONNECTED";
export const CONNECTION_SUSPENDED = "CONNECTION_SUSPENDED";
export const CONNECTION_FAILED = "CONNECTION_FAILED";
export const DISCONNECTED = "DISCONNECTED";
export const MESSAGE_FOUND = "MESSAGE_FOUND";
export const MESSAGE_LOST = "MESSAGE_LOST";
export const DISTANCE_CHANGED = "DISTANCE_CHANGED";
export const BLE_SIGNAL_CHANGED = "BLE_SIGNAL_CHANGED";
export const PUBLISH_SUCCESS = "PUBLISH_SUCCESS";
export const PUBLISH_FAILED = "PUBLISH_FAILED";
export const SUBSCRIBE_SUCCESS = "SUBSCRIBE_SUCCESS";
export const SUBSCRIBE_FAILED = "SUBSCRIBE_FAILED";
export class NearbyAPI {
/**
* Initializer for the RNNearbyApi wrapper.
* @param {Boolean} bleOnly Only utilizes bluetooth through the Google Nearby SDK. Defaults to `true`.
*/
constructor(bleOnly) {
this._nearbyAPI = RNNearbyApi;
this._eventEmitter =
Platform.OS === "android"
? DeviceEventEmitter
: new NativeEventEmitter(this._nearbyAPI);
this._handlers = {};
this._deviceEventSubscription = this._eventEmitter.addListener(
"subscribe",
this._eventHandler.bind(this)
);
this._isBLEOnly = !!bleOnly;
}
connect = apiKey => {
this._nearbyAPI.connect(apiKey, this._isBLEOnly);
};
disconnect = () => {
this._nearbyAPI.disconnect();
};
isConnected = cb => {
this._nearbyAPI.isConnected(cb);
};
publish = message => {
if (message !== null) {
this._nearbyAPI.publish(message);
} else {
throw "Unable to publish a null message.";
}
};
isPublishing = cb => {
this._nearbyAPI.isPublishing(cb);
};
subscribe = () => {
this._nearbyAPI.subscribe();
};
isSubscribing = cb => {
this._nearbyAPI.isSubscribing(cb);
};
unpublish = () => {
this._nearbyAPI.unpublish();
};
unsubscribe = () => {
this._nearbyAPI.unsubscribe();
};
/**
* Handler Helper Functions.
*/
onConnected = handler => {
this._setHandler(CONNECTED, handler);
};
onConnectionFailure = handler => {
this._setHandler(CONNECTION_FAILED, handler);
};
onConnectionSuspended = handler => {
this._setHandler(CONNECTION_SUSPENDED, handler);
};
onDisconnected = handler => {
this._setHandler(DISCONNECTED, handler);
};
onFound = handler => {
this._setHandler(MESSAGE_FOUND, handler);
};
onLost = handler => {
this._setHandler(MESSAGE_LOST, handler);
};
onDistanceChanged = handler => {
this._setHandler(DISTANCE_CHANGED, handler);
};
onBLESignalChanged = handler => {
this._setHandler(BLE_SIGNAL_CHANGED, handler);
};
onPublishSuccess = handler => {
this._setHandler(PUBLISH_SUCCESS, handler);
};
onPublishFailed = handler => {
this._setHandler(PUBLISH_FAILED, handler);
};
onSubscribeSuccess = handler => {
this._setHandler(SUBSCRIBE_SUCCESS, handler);
};
onSubscribeFailed = handler => {
this._setHandler(SUBSCRIBE_FAILED, handler);
};
_setHandler = (event, handler) => {
this._handlers[event] = handler;
};
_eventHandler = event => {
if (this._handlers.hasOwnProperty(event.event)) {
this._handlers[event.event](
event.hasOwnProperty("message") ? event.message : null,
event.hasOwnProperty("value") ? event.value : null
);
}
};
}