-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathservice-worker.js
More file actions
46 lines (40 loc) · 1.26 KB
/
service-worker.js
File metadata and controls
46 lines (40 loc) · 1.26 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
self.addEventListener("push", (event) => {
message_object = JSON.parse(event.data.text());
let title = message_object.title;
let options = {
body: message_object.body,
tag: "push-simple-demo-notification-tag",
icon: message_object.icon,
link: message_object.link
}
const testDataObject = {
name: "waitUntil",
favorite_drink: "Fire Ball",
favorite_food: "Steak"
}
event.waitUntil(
self.registration.showNotification(title, options)
.then(postsendTestDataData(testDataObject))
)
});
self.addEventListener('notificationclick', function (event) {
event.notification.close();
console.log('self in click event Listener', self)
event.waitUntil(
clients.openWindow(event.currentTarget.message_object.link)
);
});
function postsendTestDataData(data) {
let domain;
const local = location.origin.includes("127");
local ? domain = "http://localhost:3000/" : "https://arcane-stream-87798.herokuapp.com/"
return fetch(`${domain}/test_data`, {
body: JSON.stringify(data), // must match 'Content-Type' header
method: 'POST',
headers: {
'user-agent': 'Mozilla/4.0 MDN Example',
'content-type': 'application/json'
},
})
.then(response => console.log(response)) // parses response to JSON
}