-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathUmengPush.js
More file actions
50 lines (41 loc) · 1.17 KB
/
UmengPush.js
File metadata and controls
50 lines (41 loc) · 1.17 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
'use strict';
import React, {
NativeModules,
DeviceEventEmitter, //android
NativeAppEventEmitter, //ios
Platform,
AppState,
} from 'react-native';
const UmengPushModule = NativeModules.UmengPush;
var receiveMessageSubscript, openMessageSubscription;
var UmengPush = {
getDeviceToken(handler: Function) {
UmengPushModule.getDeviceToken(handler);
},
didReceiveMessage(handler: Function) {
receiveMessageSubscript = this.addEventListener(UmengPushModule.DidReceiveMessage, message => {
//处于后台时,拦截收到的消息
if(AppState.currentState === 'background') {
return;
}
handler(message);
});
},
didOpenMessage(handler: Function) {
openMessageSubscription = this.addEventListener(UmengPushModule.DidOpenMessage, handler);
},
addEventListener(eventName: string, handler: Function) {
if(Platform.OS === 'android') {
return DeviceEventEmitter.addListener(eventName, (event) => {
handler(event);
});
}
else {
return NativeAppEventEmitter.addListener(
eventName, (userInfo) => {
handler(userInfo);
});
}
},
};
module.exports = UmengPush;