aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEgor Kislitsyn <egor@kislitsyn.com>2018-12-13 00:03:50 +0700
committerEgor Kislitsyn <egor@kislitsyn.com>2018-12-13 00:03:50 +0700
commit02c0e15781fa0a499c736e710755e799bfaec77d (patch)
tree0defdd796fb4e42e0e228d912622a6bbcc67db89 /src
parentee70ec4c7efb49c08f0a76b6b2694c0e9910978c (diff)
add checkbox to disable web push
Diffstat (limited to 'src')
-rw-r--r--src/components/settings/settings.js5
-rw-r--r--src/components/settings/settings.vue12
-rw-r--r--src/i18n/en.json4
-rw-r--r--src/services/push/push.js4
-rw-r--r--src/sw.js38
5 files changed, 61 insertions, 2 deletions
diff --git a/src/components/settings/settings.js b/src/components/settings/settings.js
index 91a2014a..ca8543d1 100644
--- a/src/components/settings/settings.js
+++ b/src/components/settings/settings.js
@@ -45,6 +45,7 @@ const settings = {
scopeCopyLocal: user.scopeCopy,
scopeCopyDefault: this.$t('settings.values.' + instance.scopeCopy),
stopGifs: user.stopGifs,
+ webPushNotificationsLocal: user.webPushNotifications,
loopSilentAvailable:
// Firefox
Object.getOwnPropertyDescriptor(HTMLVideoElement.prototype, 'mozHasAudio') ||
@@ -134,6 +135,10 @@ const settings = {
},
stopGifs (value) {
this.$store.dispatch('setOption', { name: 'stopGifs', value })
+ },
+ webPushNotificationsLocal (value) {
+ this.$store.dispatch('setOption', { name: 'webPushNotifications', value })
+ if (value) this.$store.dispatch('registerPushNotifications')
}
}
}
diff --git a/src/components/settings/settings.vue b/src/components/settings/settings.vue
index de506e4d..871735fe 100644
--- a/src/components/settings/settings.vue
+++ b/src/components/settings/settings.vue
@@ -128,6 +128,18 @@
</li>
</ul>
</div>
+
+ <div class="setting-item">
+ <h2>{{$t('settings.notifications')}}</h2>
+ <ul class="setting-list">
+ <li>
+ <input type="checkbox" id="webPushNotifications" v-model="webPushNotificationsLocal">
+ <label for="webPushNotifications">
+ {{$t('settings.enable_web_push_notifications')}}
+ </label>
+ </li>
+ </ul>
+ </div>
</div>
<div :label="$t('settings.theme')" >
diff --git a/src/i18n/en.json b/src/i18n/en.json
index 8fd546ef..76224a03 100644
--- a/src/i18n/en.json
+++ b/src/i18n/en.json
@@ -175,7 +175,9 @@
"values": {
"false": "no",
"true": "yes"
- }
+ },
+ "notifications": "Notifications",
+ "enable_web_push_notifications": "Enable web push notifications"
},
"timeline": {
"collapse": "Collapse",
diff --git a/src/services/push/push.js b/src/services/push/push.js
index 4a03a73d..58017ed7 100644
--- a/src/services/push/push.js
+++ b/src/services/push/push.js
@@ -1,3 +1,5 @@
+import runtime from 'serviceworker-webpack-plugin/lib/runtime'
+
function urlBase64ToUint8Array (base64String) {
const padding = '='.repeat((4 - base64String.length % 4) % 4)
const base64 = (base64String + padding)
@@ -13,7 +15,7 @@ function isPushSupported () {
}
function registerServiceWorker () {
- return navigator.serviceWorker.register('/static/sw.js')
+ return runtime.register()
.catch((err) => console.error('Unable to register service worker.', err))
}
diff --git a/src/sw.js b/src/sw.js
new file mode 100644
index 00000000..6cecb3f3
--- /dev/null
+++ b/src/sw.js
@@ -0,0 +1,38 @@
+/* eslint-env serviceworker */
+
+import localForage from 'localforage'
+
+function isEnabled () {
+ return localForage.getItem('vuex-lz')
+ .then(data => data.config.webPushNotifications)
+}
+
+function getWindowClients () {
+ return clients.matchAll({ includeUncontrolled: true })
+ .then((clientList) => clientList.filter(({ type }) => type === 'window'))
+}
+
+self.addEventListener('push', (event) => {
+ if (event.data) {
+ event.waitUntil(isEnabled().then((isEnabled) => {
+ return isEnabled && getWindowClients().then((list) => {
+ const data = event.data.json()
+
+ if (list.length === 0) return self.registration.showNotification(data.title, data)
+ })
+ }))
+ }
+})
+
+self.addEventListener('notificationclick', (event) => {
+ event.notification.close()
+
+ event.waitUntil(getWindowClients().then((list) => {
+ for (var i = 0; i < list.length; i++) {
+ var client = list[i]
+ if (client.url === '/' && 'focus' in client) { return client.focus() }
+ }
+
+ if (clients.openWindow) return clients.openWindow('/')
+ }))
+})