mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-10 05:46:31 +10:00
54 lines
1.5 KiB
JavaScript
54 lines
1.5 KiB
JavaScript
/* global SW_BASE_URL, SW_ENABLED, GA_ID, ga, SW_UPDATE_POPUP */
|
|
|
|
import Vue from 'vue'
|
|
import { register } from 'register-service-worker'
|
|
import SWUpdateEvent from './SWUpdateEvent'
|
|
import event from './event'
|
|
|
|
if (SW_UPDATE_POPUP) {
|
|
Vue.component('SWUpdatePopup', () => import('./SWUpdatePopup.vue'))
|
|
}
|
|
|
|
export default ({ router, isServer }) => {
|
|
// Register service worker
|
|
router.onReady(() => {
|
|
if (process.env.NODE_ENV === 'production'
|
|
&& !isServer
|
|
&& SW_ENABLED) {
|
|
register(`${SW_BASE_URL}service-worker.js`, {
|
|
registrationOptions: {},
|
|
ready () {
|
|
console.log('[vuepress:sw] Service worker is active.')
|
|
event.$emit('sw-ready')
|
|
},
|
|
|
|
cached (registration) {
|
|
console.log('[vuepress:sw] Content has been cached for offline use.')
|
|
event.$emit('sw-cached', new SWUpdateEvent(registration))
|
|
},
|
|
|
|
updated (registration) {
|
|
console.log('[vuepress:sw] Content updated.')
|
|
event.$emit('sw-updated', new SWUpdateEvent(registration))
|
|
},
|
|
|
|
offline () {
|
|
console.log('[vuepress:sw] No internet connection found. App is running in offline mode.')
|
|
event.$emit('sw-offline')
|
|
},
|
|
|
|
error (err) {
|
|
console.error('[vuepress:sw] Error during service worker registration:', err)
|
|
event.$emit('sw-error', err)
|
|
if (GA_ID) {
|
|
ga('send', 'exception', {
|
|
exDescription: err.message,
|
|
exFatal: false
|
|
})
|
|
}
|
|
}
|
|
})
|
|
}
|
|
})
|
|
}
|