-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
122 lines (101 loc) · 2.74 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
import {
DeviceEventEmitter,
NativeModules,
Platform
} from 'react-native'
const Mipush = NativeModules.MiPush;
const listeners = {};
const MessageArrived = 'MessageArrived'; //接受到通知
const MessageClicked = 'MessageClicked'; //点击了通知
const MessageLocal = 'MessageLocal'; //本地通知
export default class MyPush{
static OnMessageArrived(callback) {
listeners[callback] = DeviceEventEmitter.addListener(
MessageArrived, result => {
callback(result)
})
}
static OnMessageClicked(callback) {
listeners[callback] = DeviceEventEmitter.addListener(
MessageClicked, result => {
callback(result)
})
}
static OnMessageLocal(callback){
listeners[callback] = DeviceEventEmitter.addListener(
MessageLocal, result => {
callback(result)
})
}
static removeListener(callback) {
if (!listeners[callback]) {
return
}
listeners[callback].remove()
listeners[callback] = null
}
//xiaomi -> regiter | huawei->init getToken()
static registerPush(channelname,channeldec,channelid){
return Mipush.registerPush(channelname,channeldec,channelid);
}
//xiaomi -> unregisterPush | huawei-> deltoken
static unregisterPush(){
return Mipush.unregisterPush();
}
//xiaomi
static enablePush(){
return Mipush.enablePush();
}
//xiaomi
static disablePush(){
return Mipush.disablePush();
}
//xiaomi
static setAlias(alias){
return Mipush.setAlias(alias);
}
//xiaomi
static unsetAlias(alias){
return Mipush.unsetAlias(alias);
}
//xiaomi
static pausePush(){
return Mipush.pausePush();
}
//xiaomi
static resumePush(){
return Mipush.resumePush();
}
//xiaomi
static getAllAlias(){
return Mipush.getAllAlias();
}
//xiaomi
static clearNotification(){
return Mipush.clearNotification();
}
//xiaomi
static getRegId(){
return Mipush.getRegId();
}
//获取手机厂商品牌
static getPhoneType(){
return Mipush.getPhoneType();
}
//获取华为token 需要上传给服务器
static getHuaweitoken(){
return Mipush.getHuaweitoken();
}
//发送本地推送
static sendLocalNotification(title,text,param){
return Mipush.sendLocalNotification(title,text,JSON.stringify(param));
}
//获取是否开启推送
static getisOpenNotification(){
return Mipush.isopenNotification();
}
//去设置app权限
static startSettingAppInfo(){
return Mipush.startSettingAppInfo();
}
}