Files
binome/src/registerServiceWorker.ts
2020-07-05 18:53:06 +02:00

42 lines
1.2 KiB
TypeScript

/* eslint-disable no-console */
import { register } from 'register-service-worker'
import { setNotificationInstance, notify } from './utils/notification'
if (process.env.NODE_ENV === 'production') {
register(`${process.env.BASE_URL}service-worker.js`, {
ready(sw) {
console.log('App is being served from cache by a service worker')
setNotificationInstance((title, options?) =>
sw.showNotification(title, options)
)
},
registered() {
console.log('Service worker has been registered.')
},
cached() {
console.log('Content has been cached for offline use.')
},
updatefound() {
console.log('New content is downloading.')
},
updated(sw) {
console.log('New content is available; please refresh.')
setNotificationInstance((title, options?) =>
sw.showNotification(title, options)
)
notify('Une nouvelle version est disponible !', {
body: `Fermer l'appli pour la mettre à jour.`
})
},
offline() {
console.log(
'No internet connection found. App is running in offline mode.'
)
},
error(error) {
console.error('Error during service worker registration:', error)
}
})
}