Matthew Raymer
1 year ago
2 changed files with 5190 additions and 0 deletions
@ -0,0 +1,33 @@ |
|||||
|
const notifications = require("./safari-notifications.js"); |
||||
|
|
||||
|
|
||||
|
self.addEventListener("push", function (event) { |
||||
|
let payload; |
||||
|
if (event.data) { |
||||
|
payload = JSON.parse(event.data.text()); |
||||
|
} |
||||
|
|
||||
|
const title = payload ? payload.title : "Custom Title"; |
||||
|
const options = { |
||||
|
body: payload ? payload.body : "Custom body text", |
||||
|
icon: payload ? payload.icon : "icon.png", |
||||
|
badge: payload ? payload.badge : "badge.png", |
||||
|
}; |
||||
|
|
||||
|
event.waitUntil(self.registration.showNotification(title, options)); |
||||
|
}); |
||||
|
|
||||
|
|
||||
|
self.addEventListener("message", function (event) { |
||||
|
const data = event.data; |
||||
|
|
||||
|
const result = notifications.getNotificationCount() |
||||
|
|
||||
|
switch (data.command) { |
||||
|
case "account": |
||||
|
break; |
||||
|
|
||||
|
default: |
||||
|
console.log("Unknown command:", data.command); |
||||
|
} |
||||
|
}); |
File diff suppressed because it is too large
Loading…
Reference in new issue