aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/static/sw.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/static/sw.js')
-rw-r--r--src/main/resources/static/sw.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/main/resources/static/sw.js b/src/main/resources/static/sw.js
new file mode 100644
index 00000000..48fe7787
--- /dev/null
+++ b/src/main/resources/static/sw.js
@@ -0,0 +1,29 @@
+/// <reference no-default-lib="true"/>
+/// <reference lib="esnext" />
+/// <reference lib="WebWorker" />
+
+var sw = /** @type {ServiceWorkerGlobalScope & typeof self} */ (self);
+sw.addEventListener('install', function() {
+ sw.skipWaiting();
+});
+sw.addEventListener('activate', function() {
+ sw.clients.claim();
+});
+sw.addEventListener('push', function(evt) {
+ if (evt.data) {
+ const data = evt.data.json();
+ console.log('Push', data);
+ if (data.body) {
+ sw.registration.showNotification(data.title, {
+ body: data.body,
+ icon: data.custom.message.user.avatar
+ });
+ }
+ }
+});
+sw.addEventListener('notificationclick', function(evt) {
+ evt.notification.close();
+ evt.waitUntil(
+ sw.clients.openWindow('https://juick.com/')
+ );
+});