-
Notifications
You must be signed in to change notification settings - Fork 343
/
index.js
498 lines (451 loc) · 10.3 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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
import {
NativeModules,
Platform,
DeviceEventEmitter
} from 'react-native';
const JPushModule = NativeModules.JPushModule;
const listeners = {};
const receiveCustomMsgEvent = "receivePushMsg";
const receiveNotificationEvent = "receiveNotification";
const openNotificationEvent = "openNotification";
const connectionChangeEvent = "connectionChange";
const getRegistrationIdEvent = "getRegistrationId"; // Android Only
const openNotificationLaunchAppEvent = "openNotificationLaunchApp"; // iOS Only
const networkDidLogin = "networkDidLogin" // iOS Only
/**
* Logs message to console with the [JPush] prefix
* @param {string} message
*/
const log = (message) => {
console.log(`[JPush] ${message}`);
}
// is function
const isFunction = (fn) => typeof fn === 'function';
/**
* create a safe fn env
* @param {any} fn
* @param {any} success
* @param {any} error
*/
const safeCallback = (fn, success, error) => {
JPushModule[fn](function(params) {
log(params);
isFunction(success) && success(params)
}, function(error) {
log(error)
isFunction(error) && error(error)
})
}
export default class JPush {
/**
* Android Only
* 初始化JPush 必须先初始化才能执行其他操作
*/
static initPush() {
JPushModule.initPush();
}
/**
* Android Only
*/
static stopPush() {
JPushModule.stopPush();
}
/**
* Android Only
*/
static resumePush() {
JPushModule.resumePush();
}
/**
* Android Only
*
* @param {Function} cb
*/
static notifyJSDidLoad(cb) {
JPushModule.notifyJSDidLoad((resultCode) => {
cb(resultCode);
});
}
/**
* Android Only
*/
static clearAllNotifications() {
JPushModule.clearAllNotifications();
}
/**
* Android Only
*/
static clearNotificationById(id) {
JPushModule.clearNotificationById(id);
}
/**
* Android Only
*/
static getInfo(cb) {
JPushModule.getInfo((map) => {
cb(map);
});
}
/**
* 获取当前连接状态
* @param {Fucntion} cb = (Boolean) => {}
* 如果连接状态变更为已连接返回 true
* 如果连接状态变更为断开连接连接返回 false
*/
static getConnectionState(cb) {
JPushModule.getConnectionState((state) => {
cb(state);
});
}
/**
* 重新设置 Tag
*
* @param {Array} tags = [String]
* @param {Function} cb = (result) => { }
* 如果成功 result = {tags: [String]}
* 如果失败 result = {errorCode: Int}
*/
static setTags(tags, cb) {
JPushModule.setTags(tags, (result) => {
cb(result);
});
}
/**
* 在原有 tags 的基础上添加 tags
*
* @param {Array} tags = [String]
* @param {Function} cb = (result) => { }
* 如果成功 result = {tags: [String]}
* 如果失败 result = {errorCode: Int}
*/
static addTags(tags, cb) {
JPushModule.addTags(tags, (result) => {
cb(result);
});
}
/**
* 删除指定的 tags
*
* @param {Array} tags = [String]
* @param {Function} cb = (result) => { }
* 如果成功 result = {tags: [String]}
* 如果失败 result = {errorCode: Int}
*
*/
static deleteTags(tags, cb) {
JPushModule.deleteTags(tags, (result) => {
cb(result);
});
}
/**
* 清空所有 tags
*
* @param {Function} cb = (result) => { }
* 如果成功 result = {tags: [String]}
* 如果失败 result = {errorCode: Int}
*
*/
static cleanTags(cb) {
JPushModule.cleanTags((result) => {
cb(result);
});
}
/**
* 获取所有已有标签
*
* @param {Function} cb = (result) => { }
* 如果成功 result = {tags: [String]}
* 如果失败 result = {errorCode: Int}
*
*/
static getAllTags(cb) {
JPushModule.getAllTags((result) => {
cb(result);
});
}
/**
* 检查当前设备是否绑定该 tag
*
* @param {String} tag
* @param {Function} cb = (result) => { }
* 如果成功 result = {isBind: true}
* 如果失败 result = {errorCode: Int}
*
*/
static checkTagBindState(tag, cb) {
JPushModule.checkTagBindState(tag, (result) => {
cb(result);
});
}
/**
* 重置 alias
* @param {String} alias
* @param {Function} cb = (result) => { }
* 如果成功 result = {alias: String}
* 如果失败 result = {errorCode: Int}
*
*/
static setAlias(alias, cb) {
JPushModule.setAlias(alias, (result) => {
cb(result);
});
}
/**
* 删除原有 alias
*
* @param {Function} cb = (result) => { }
* 如果成功 result = {alias: String}
* 如果失败 result = {errorCode: Int}
*
*/
static deleteAlias(cb) {
JPushModule.deleteAlias((result) => {
cb(result);
});
}
/**
* 获取当前设备 alias
*
* @param {Function} cb = (result) => { }
* 如果成功 result = {alias: String}
* 如果失败 result = {errorCode: Int}
*
*/
static getAlias(cb) {
JPushModule.getAlias((map) => {
cb(map);
});
}
/**
* Android Only
*/
static setStyleBasic() {
JPushModule.setStyleBasic();
}
/**
* Android Only
*/
static setStyleCustom() {
JPushModule.setStyleCustom();
}
/**
* Android Only
*/
static jumpToPushActivity(activityName) {
JPushModule.jumpToPushActivity(activityName);
}
/**
* Android Only
*/
static finishActivity() {
JPushModule.finishActivity();
}
/**
* 监听:自定义消息后事件
* @param {Function} cb = (Object) => { }
*/
static addReceiveCustomMsgListener(cb) {
listeners[cb] = DeviceEventEmitter.addListener(receiveCustomMsgEvent,
(message) => {
cb(message);
});
}
/**
* 取消监听:自定义消息后事件
* @param {Function} cb = (Object) => { }
*/
static removeReceiveCustomMsgListener(cb) {
if (!listeners[cb]) {
return;
}
listeners[cb].remove();
listeners[cb] = null;
}
/**
* iOS Only
* 监听:应用没有启动的状态点击推送打开应用
* @param {Function} cb = (notification) => {}
*/
static addOpenNotificationLaunchAppListener(cb) {
listeners[cb] = DeviceEventEmitter.addListener(openNotificationLaunchAppEvent,
(registrationId) => {
cb(registrationId);
});
}
/**
* iOS Only
* 取消监听:应用没有启动的状态点击推送打开应用
* @param {Function} cb = () => {}
*/
static removeOpenNotificationLaunchAppEventListener(cb) {
if (!listeners[cb]) {
return;
}
listeners[cb].remove();
listeners[cb] = null;
}
/**
* iOS Only
*
* 监听:应用连接已登录
* @param {Function} cb = () => {}
*/
static addnetworkDidLoginListener(cb) {
listeners[cb] = DeviceEventEmitter.addListener(networkDidLogin,
(registrationId) => {
cb(registrationId);
});
}
/**
* iOS Only
*
* 取消监听:应用连接已登录
* @param {Function} cb = () => {}
*/
static removenetworkDidLoginListener(cb) {
if (!listeners[cb]) {
return;
}
listeners[cb].remove();
listeners[cb] = null;
}
/**
* 监听:接收推送事件
* @param {} cb = (Object)=> {}
*/
static addReceiveNotificationListener(cb) {
listeners[cb] = DeviceEventEmitter.addListener(receiveNotificationEvent,
(map) => {
cb(map);
});
}
/**
* 取消监听:接收推送事件
* @param {Function} cb = (Object)=> {}
*/
static removeReceiveNotificationListener(cb) {
if (!listeners[cb]) {
return;
}
listeners[cb].remove();
listeners[cb] = null;
}
/**
* 监听:点击推送事件
* @param {Function} cb = (Object)=> {}
*/
static addReceiveOpenNotificationListener(cb) {
listeners[cb] = DeviceEventEmitter.addListener(openNotificationEvent,
(message) => {
cb(message);
});
}
/**
* 取消监听:点击推送事件
* @param {Function} cb = (Object)=> {}
*/
static removeReceiveOpenNotificationListener(cb) {
if (!listeners[cb]) {
return;
}
listeners[cb].remove();
listeners[cb] = null;
}
/**
* Android Only
*
* If device register succeed, the server will return registrationId
*/
static addGetRegistrationIdListener(cb) {
listeners[cb] = DeviceEventEmitter.addListener(getRegistrationIdEvent,
(registrationId) => {
cb(registrationId);
});
}
/**
* Android Only
*/
static removeGetRegistrationIdListener(cb) {
if (!listeners[cb]) {
return;
}
listeners[cb].remove();
listeners[cb] = null;
}
/**
* 监听:连接状态变更
* @param {Function} cb = (Boolean) => { }
* 如果连接状态变更为已连接返回 true
* 如果连接状态变更为断开连接连接返回 false
*/
static addConnectionChangeListener(cb) {
listeners[cb] = DeviceEventEmitter.addListener(connectionChangeEvent,
(state) => {
cb(state);
});
}
/**
* 监听:连接状态变更
* @param {Function} cb = (Boolean) => { }
* 如果连接状态变更为已连接返回 true
* 如果连接状态变更为断开连接连接返回 false
*/
static removeConnectionChangeListener(cb) {
if (!listeners[cb]) {
return;
}
listeners[cb].remove();
listeners[cb] = null;
}
/**
* 获取 RegistrationId
* @param {Function} cb = (String) => { }
*/
static getRegistrationID(cb) {
JPushModule.getRegistrationID((id) => {
cb(id);
});
}
/**
* iOS Only
* 初始化 JPush SDK 代码,
* NOTE: 如果已经在原生 SDK 中添加初始化代码则无需再调用 (通过脚本配置,会自动在原生中添加初始化,无需额外调用)
*/
static setupPush() {
JPushModule.setupPush();
}
/**
* iOS Only
* @param {Function} cb = (String) => { } // 返回 appKey
*/
static getAppkeyWithcallback(cb) {
JPushModule.getAppkeyWithcallback((appkey) => {
cb(appkey);
});
}
/**
* iOS Only
* 设置本地推送
* @param {Date} date 触发本地推送的时间
* @param {String} textContain 推送消息体内容
* @param {Int} badge 本地推送触发后 应用 Badge(小红点)显示的数字
* @param {String} alertAction 弹框的按钮显示的内容(IOS 8默认为"打开", 其他默认为"启动")
* @param {String} notificationKey 本地推送标示符
* @param {Object} userInfo 推送的附加字段 选填
* @param {String} soundName 自定义通知声音,设置为 null 为默认声音
*/
static setLocalNotification(date, textContain, badge, alertAction, notificationKey, userInfo, soundName) {
JPushModule.setLocalNotification(date, textContain, badge, alertAction, notificationKey, userInfo, soundName);
}
/**
* iOS Only
* 设置应用 Badge(小红点)
* @param {Int} badge
* @param {Function} cb = () => { } //
*/
static setBadge(badge, cb) {
JPushModule.setBadge(badge, (value) => {
cb(value);
});
}
}