-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.js
executable file
·284 lines (199 loc) · 6.56 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
import { NativeModules, NativeEventEmitter, NetInfo, Platform } from 'react-native';
import invariant from 'invariant';
const RNCleverPush = NativeModules.CleverPush;
const eventBroadcastNames = [
'CleverPush-notificationReceived',
'CleverPush-notificationOpened',
'CleverPush-appBannerOpened',
'CleverPush-subscribed'
];
var CleverPushEventEmitter;
var _eventNames = ['received', 'opened', 'appBannerOpened', 'subscribed'];
var _notificationHandler = new Map();
var _notificationCache = new Map();
var _listeners = [];
if (RNCleverPush != null) {
CleverPushEventEmitter = new NativeEventEmitter(RNCleverPush);
for (var i = 0; i < eventBroadcastNames.length; i++) {
var eventBroadcastName = eventBroadcastNames[i];
var eventName = _eventNames[i];
_listeners[eventName] = handleEventBroadcast(eventName, eventBroadcastName)
}
}
function handleEventBroadcast(type, broadcast) {
return CleverPushEventEmitter.addListener(
broadcast, (notification) => {
var handler = _notificationHandler.get(type);
if (handler) {
handler(notification);
} else {
_notificationCache.set(type, notification);
}
}
);
}
function checkIfInitialized() {
return RNCleverPush != null;
}
export default class CleverPush {
static addEventListener(type, handler) {
if (!checkIfInitialized()) return;
invariant(
type === 'received' || type === 'opened' || type === 'subscribed' || type === 'appBannerOpened',
'CleverPush only supports `received`, `opened`, `appBannerOpened`, and `subscribed` events'
);
_notificationHandler.set(type, handler);
var cache = _notificationCache.get(type);
if (handler && cache) {
handler(cache);
_notificationCache.delete(type);
}
}
static removeEventListener(type, handler) {
if (!checkIfInitialized()) return;
invariant(
type === 'received' || type === 'opened' || type === 'subscribed' || type === 'appBannerOpened',
'CleverPush only supports `received`, `opened`, `appBannerOpened`, and `subscribed` events'
);
_notificationHandler.delete(type);
}
static clearListeners() {
if (!checkIfInitialized()) return;
for (var i = 0; i < _eventNames.length; i++) {
_listeners[_eventNames].remove();
}
}
static init(channelId, options) {
RNCleverPush.init(Object.assign({ channelId }, options));
}
static getAvailableTags(callback) {
if (!checkIfInitialized()) return;
RNCleverPush.getAvailableTags(callback);
}
static getAvailableTopics(callback) {
if (!checkIfInitialized()) return;
RNCleverPush.getAvailableTopics(callback);
}
static getAvailableAttributes(callback) {
if (!checkIfInitialized()) return;
RNCleverPush.getAvailableAttributes(callback);
}
static addSubscriptionTag(tagId) {
if (!checkIfInitialized()) return;
RNCleverPush.addSubscriptionTag(tagId);
}
static removeSubscriptionTag(tagId) {
if (!checkIfInitialized()) return;
RNCleverPush.removeSubscriptionTag(tagId);
}
static getSubscriptionTags(callback) {
if (!checkIfInitialized()) return;
RNCleverPush.getSubscriptionTags(callback);
}
static hasSubscriptionTag(tagId, callback) {
if (!checkIfInitialized()) return;
RNCleverPush.hasSubscriptionTag(tagId, callback);
}
static getSubscriptionTopics(callback) {
if (!checkIfInitialized()) return;
RNCleverPush.getSubscriptionTopics(callback);
}
static setSubscriptionTopics(topicIds) {
if (!checkIfInitialized()) return;
RNCleverPush.setSubscriptionTopics(topicIds);
}
static addSubscriptionTopic(topicId) {
if (!checkIfInitialized()) return;
RNCleverPush.addSubscriptionTopic(topicId);
}
static removeSubscriptionTopic(topicId) {
if (!checkIfInitialized()) return;
RNCleverPush.removeSubscriptionTopic(topicId);
}
static getSubscriptionAttributes(callback) {
if (!checkIfInitialized()) return;
RNCleverPush.getSubscriptionAttributes(callback);
}
static getSubscriptionAttribute(attributeId, callback) {
if (!checkIfInitialized()) return;
RNCleverPush.getSubscriptionAttribute(attributeId, callback);
}
static setSubscriptionAttribute(attributeId, value) {
if (!checkIfInitialized()) return;
RNCleverPush.setSubscriptionAttribute(attributeId, value);
}
static setSubscriptionLanguage(value) {
if (!checkIfInitialized()) return;
RNCleverPush.setSubscriptionLanguage(value);
}
static setSubscriptionCountry(value) {
if (!checkIfInitialized()) return;
RNCleverPush.setSubscriptionCountry(value);
}
static isSubscribed(callback) {
if (!checkIfInitialized()) return;
RNCleverPush.isSubscribed(callback);
}
static getSubscriptionId(callback) {
if (!checkIfInitialized()) return;
RNCleverPush.getSubscriptionId(callback);
}
static subscribe() {
if (!checkIfInitialized()) return;
RNCleverPush.subscribe();
}
static unsubscribe() {
if (!checkIfInitialized()) return;
RNCleverPush.unsubscribe();
}
static areNotificationsEnabled(callback) {
if (!checkIfInitialized()) return;
RNCleverPush.areNotificationsEnabled(callback);
}
static showTopicsDialog() {
if (!checkIfInitialized()) return;
RNCleverPush.showTopicsDialog();
}
static enableDevelopmentMode() {
if (!checkIfInitialized()) return;
RNCleverPush.enableDevelopmentMode();
}
static getNotifications(callback) {
if (!checkIfInitialized()) return;
return RNCleverPush.getNotifications(callback);
}
static showAppBanners(callback) {
if (!checkIfInitialized()) return;
RNCleverPush.showAppBanners(callback);
}
static requestLocationPermission() {
if (!checkIfInitialized()) return;
RNCleverPush.requestLocationPermission();
}
static trackPageView(url, params) {
if (!checkIfInitialized()) return;
RNCleverPush.trackPageView(url, params);
}
static trackEvent(url, properties) {
if (!checkIfInitialized()) return;
RNCleverPush.trackEvent(url, properties);
}
static setAutoResubscribe(autoResubscribe) {
if (!checkIfInitialized()) return;
RNCleverPush.setAutoResubscribe(autoResubscribe);
}
static setShowNotificationsInForeground(show) {
if (!checkIfInitialized()) return;
RNCleverPush.setShowNotificationsInForeground(show);
}
// iOS only
static setAutoClearBadge(autoClear) {
if (!checkIfInitialized()) return;
RNCleverPush.setAutoClearBadge(autoClear);
}
// iOS only
static setIncrementBadge(increment) {
if (!checkIfInitialized()) return;
RNCleverPush.setIncrementBadge(increment);
}
}