Add a new dashboard page.
This commit is contained in:
parent
89150e1164
commit
fd24b1898e
133 changed files with 17303 additions and 11112 deletions
5
webui/src-pwa/custom-service-worker.js
Normal file
5
webui/src-pwa/custom-service-worker.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
/*
|
||||
* This file (which will be your service worker)
|
||||
* is picked up by the build system ONLY if
|
||||
* quasar.conf > pwa > workboxPluginMode is set to "InjectManifest"
|
||||
*/
|
42
webui/src-pwa/register-service-worker.js
Normal file
42
webui/src-pwa/register-service-worker.js
Normal file
|
@ -0,0 +1,42 @@
|
|||
import { register } from 'register-service-worker'
|
||||
|
||||
// The ready(), registered(), cached(), updatefound() and updated()
|
||||
// events passes a ServiceWorkerRegistration instance in their arguments.
|
||||
// ServiceWorkerRegistration: https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration
|
||||
|
||||
register(process.env.SERVICE_WORKER_FILE, {
|
||||
// The registrationOptions object will be passed as the second argument
|
||||
// to ServiceWorkerContainer.register()
|
||||
// https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerContainer/register#Parameter
|
||||
|
||||
// registrationOptions: { scope: './' },
|
||||
|
||||
ready () {
|
||||
console.log('App is being served from cache by a service worker.')
|
||||
},
|
||||
|
||||
registered (registration) {
|
||||
console.log('Service worker has been registered.')
|
||||
},
|
||||
|
||||
cached (registration) {
|
||||
console.log('Content has been cached for offline use.')
|
||||
},
|
||||
|
||||
updatefound (registration) {
|
||||
console.log('New content is downloading.')
|
||||
},
|
||||
|
||||
updated (registration) {
|
||||
console.log('New content is available; please refresh.')
|
||||
window.location.reload()
|
||||
},
|
||||
|
||||
offline () {
|
||||
console.log('No internet connection found. App is running in offline mode.')
|
||||
},
|
||||
|
||||
error (err) {
|
||||
console.error('Error during service worker registration:', err)
|
||||
}
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue