Page MenuHomePhabricator

D7286.diff
No OneTemporary

D7286.diff

diff --git a/desktop/src/push-notifications.js b/desktop/src/push-notifications.js
--- a/desktop/src/push-notifications.js
+++ b/desktop/src/push-notifications.js
@@ -18,28 +18,32 @@
return null;
}
+function showNewNotification(
+ payload: { +[string]: mixed },
+ handleClick: (threadID: string) => void,
+) {
+ if (
+ typeof payload.title !== 'string' ||
+ typeof payload.body !== 'string' ||
+ typeof payload.threadID !== 'string'
+ ) {
+ return;
+ }
+ const { title, body, threadID } = payload;
+ const notif = new Notification({
+ title,
+ body,
+ });
+ notif.on('click', () => handleClick(threadID));
+ notif.show();
+}
+
function listenForNotifications(handleClick: (threadID: string) => void) {
if (process.platform !== 'darwin') {
return;
}
pushNotifications.on('received-apns-notification', (event, userInfo) => {
- if (
- typeof userInfo.title !== 'string' ||
- typeof userInfo.body !== 'string' ||
- typeof userInfo.threadID !== 'string'
- ) {
- return;
- }
- const { title, body, threadID } = userInfo;
-
- const notif = new Notification({
- title,
- body,
- });
- notif.on('click', () => {
- handleClick(threadID);
- });
- notif.show();
+ showNewNotification(userInfo, handleClick);
});
}

File Metadata

Mime Type
text/plain
Expires
Mon, Dec 23, 5:11 AM (18 h, 31 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2693626
Default Alt Text
D7286.diff (1 KB)

Event Timeline