forked from Benjamin-Dobell/react-native-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.android.js
86 lines (68 loc) · 2.78 KB
/
index.android.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
import {NativeModules, DeviceEventEmitter} from "react-native";
import NotificationAndroid from "./notification";
const RNNotifications = NativeModules.WixRNNotifications;
let notificationReceivedListener;
let notificationOpenedListener;
let registrationTokenUpdateListener;
export const EVENT_OPENED = "com.wix.reactnativenotifications.notificationOpened";
export const EVENT_RECEIVED = "com.wix.reactnativenotifications.notificationReceived";
export const EVENT_REGISTERED = "com.wix.reactnativenotifications.remoteNotificationsRegistered";
export class NotificationsAndroid {
static setNotificationOpenedListener(listener) {
notificationOpenedListener = DeviceEventEmitter.addListener(EVENT_OPENED, (notification) => listener(new NotificationAndroid(notification)));
}
static clearNotificationOpenedListener() {
if (notificationOpenedListener) {
notificationOpenedListener.remove();
notificationOpenedListener = null;
}
}
static setNotificationReceivedListener(listener) {
notificationReceivedListener = DeviceEventEmitter.addListener(EVENT_RECEIVED, (notification) => listener(new NotificationAndroid(notification)));
}
static clearNotificationReceivedListener() {
if (notificationReceivedListener) {
notificationReceivedListener.remove();
notificationReceivedListener = null;
}
}
static setRegistrationTokenUpdateListener(listener) {
NotificationsAndroid.clearRegistrationTokenUpdateListener();
registrationTokenUpdateListener = DeviceEventEmitter.addListener(EVENT_REGISTERED, listener);
}
static clearRegistrationTokenUpdateListener() {
if (registrationTokenUpdateListener) {
registrationTokenUpdateListener.remove();
registrationTokenUpdateListener = null;
}
}
static refreshToken() {
RNNotifications.refreshToken();
}
static invalidateToken() {
RNNotifications.invalidateToken();
}
static localNotification(notification, id) {
const notificationProperties = notification instanceof NotificationAndroid ? notification.properties : notification;
if (!id && id !== 0) {
id = notificationProperties.tag ? 0 : Math.random() * 100000000 | 0; // Bitwise-OR forces value onto a 32bit limit
}
RNNotifications.postLocalNotification(notificationProperties, id);
return id;
}
static cancelLocalNotification(id, tag) {
RNNotifications.cancelLocalNotification(id, tag);
}
static cancelAllLocalNotifications() {
RNNotifications.cancelAllLocalNotifications();
}
static getInitialNotification() {
return RNNotifications.getInitialNotification()
.then((rawNotification) => {
return rawNotification ? new NotificationAndroid(rawNotification) : undefined;
});
}
static consumeBackgroundQueue() {
RNNotifications.consumeBackgroundQueue();
}
}