forked from jpush/jpush-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
625 lines (571 loc) · 14 KB
/
index.js
File metadata and controls
625 lines (571 loc) · 14 KB
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
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
import {
DeviceEventEmitter,
NativeModules,
Platform
} 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
const receiveExtrasEvent = 'receiveExtras' // Android Only
export default class JPush {
/**
* 初始化JPush 必须先初始化才能执行其他操作
*/
static initPush () {
if (Platform.OS == "android") {
JPushModule.initPush()
} else {
JPush.setupPush()
}
}
/**
* 停止推送,调用该方法后将不再受到推送
*/
static stopPush () {
JPushModule.stopPush()
}
/**
* 恢复推送功能,停止推送后,可调用该方法重新获得推送能力
*/
static resumePush () {
if (Platform.OS == "android") {
JPushModule.resumePush()
} else {
JPush.setupPush()
}
}
/**
* Android Only
*/
static crashLogOFF () {
JPushModule.crashLogOFF()
}
/**
* Android Only
*/
static crashLogON () {
JPushModule.crashLogON()
}
/**
* Android Only
*
* @param {Function} cb
*/
static notifyJSDidLoad (cb) {
JPushModule.notifyJSDidLoad(resultCode => {
cb(resultCode)
})
}
/**
* 清除通知栏的所有通知
*/
static clearAllNotifications () {
if (Platform.OS == "android") {
JPushModule.clearAllNotifications()
} else {
JPush.setBadge(0,() => {})
}
}
/**
* 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 setLatestNotificationNumber (maxNumber) {
JPushModule.setLatestNotificationNumber(maxNumber)
}
/**
* Android Only
* @param {object} config = {"startTime": String, "endTime": String} // 例如:{startTime: "20:30", endTime: "8:30"}
*/
static setSilenceTime (config) {
JPushModule.setSilenceTime(config)
}
/**
* Android Only
* @param {object} config = {"days": Array, "startHour": Number, "endHour": Number}
* // 例如:{days: [0, 6], startHour: 8, endHour: 23} 表示星期天和星期六的上午 8 点到晚上 11 点都可以推送
*/
static setPushTime (config) {
JPushModule.setPushTime(config)
}
/**
* Android Only
*/
static jumpToPushActivity (activityName) {
JPushModule.jumpToPushActivity(activityName)
}
/**
* Android Only
*/
static jumpToPushActivityWithParams (activityName, map) {
JPushModule.jumpToPushActivityWithParams(activityName, map)
}
/**
* 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
* 点击推送启动应用的时候原生会将该 notification 缓存起来,该方法用于获取缓存 notification
* 注意:notification 可能是 remoteNotification 和 localNotification,两种推送字段不一样。
* 如果不是通过点击推送启动应用,比如点击应用 icon 直接启动应用,notification 会返回 undefine。
* @param {Function} cb = (notification) => {}
*/
static getLaunchAppNotification (cb) {
JPushModule.getLaunchAppNotification(cb)
}
/**
* @deprecated Since version 2.2.0, will deleted in 3.0.0.
* iOS Only
* 监听:应用没有启动的状态点击推送打开应用
* 注意:2.2.0 版本开始,提供了 getLaunchAppNotification
*
* @param {Function} cb = (notification) => {}
*/
static addOpenNotificationLaunchAppListener (cb) {
listeners[cb] = DeviceEventEmitter.addListener(
openNotificationLaunchAppEvent,
registrationId => {
cb(registrationId)
}
)
}
/**
* @deprecated Since version 2.2.0, will deleted in 3.0.0.
* 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
}
/**
* 监听:收到 Native 下发的 extra 事件
* @param {Function} cb = (map) => { }
* 返回 Object,属性和值在 Native 定义
*/
static addReceiveExtrasListener (cb) {
listeners[cb] = DeviceEventEmitter.addListener(receiveExtrasEvent, map => {
cb(map)
})
}
static removeReceiveExtrasListener (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 {Function} cb = (int) => { } // 返回应用 icon badge。
*/
static getBadge (cb) {
JPushModule.getApplicationIconBadge(badge => {
cb(badge)
})
}
/**
* iOS Only
* 设置本地推送
* @param {Number} 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
)
}
/**
* @typedef Notification
* @type {object}
* // Android Only
* @property {number} [buildId] - 通知样式:1 为基础样式,2 为自定义样式(需先调用 `setStyleCustom` 设置自定义样式)
* @property {number} [id] - 通知 id, 可用于取消通知
* @property {string} [title] - 通知标题
* @property {string} [content] - 通知内容
* @property {object} [extra] - extra 字段
* @property {number} [fireTime] - 通知触发时间(毫秒)
* // iOS Only
* @property {number} [badge] - 本地推送触发后应用角标值
* // iOS Only
* @property {string} [soundName] - 指定推送的音频文件
* // iOS 10+ Only
* @property {string} [subtitle] - 子标题
*/
/**
* @param {Notification} notification
*/
static sendLocalNotification (notification) {
JPushModule.sendLocalNotification(notification)
}
/**
* iOS Only
* 设置应用 Badge(小红点)
* @param {Int} badge
* @param {Function} cb = () => { } //
*/
static setBadge (badge, cb) {
JPushModule.setBadge(badge, value => {
cb(value)
})
}
}