refactor: use nuxt plugin to provide pwa helpers globally (#604)

This commit is contained in:
Daniel Roe 2022-12-28 15:08:03 +01:00 committed by GitHub
parent 73cec49cf0
commit 726a581add
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 23 deletions

View file

@ -1,13 +1,9 @@
<script setup>
import { pwa } from '~/composables/pwa'
</script>
<template> <template>
<button <button
v-if="pwa.needRefresh" v-if="$pwa?.needRefresh"
bg="fade" relative rounded bg="fade" relative rounded
flex="~ gap-1 center" px3 py1 text-primary flex="~ gap-1 center" px3 py1 text-primary
@click="pwa.updateServiceWorker()" @click="$pwa.updateServiceWorker()"
> >
<div i-ri-download-cloud-2-line /> <div i-ri-download-cloud-2-line />
<h2 flex="~ gap-2" items-center> <h2 flex="~ gap-2" items-center>

View file

@ -1,10 +1,6 @@
<script setup>
import { pwa } from '~/composables/pwa'
</script>
<template> <template>
<div <div
v-if="pwa.needRefresh" v-if="$pwa?.needRefresh"
m-2 p5 bg="fade" relative m-2 p5 bg="fade" relative
rounded-lg of-hidden rounded-lg of-hidden
flex="~ col gap-3" flex="~ col gap-3"
@ -13,10 +9,10 @@ import { pwa } from '~/composables/pwa'
{{ $t('pwa.title') }} {{ $t('pwa.title') }}
</h2> </h2>
<div flex="~ gap-1"> <div flex="~ gap-1">
<button type="button" btn-solid px-4 py-1 text-center text-sm @click="pwa.updateServiceWorker()"> <button type="button" btn-solid px-4 py-1 text-center text-sm @click="$pwa.updateServiceWorker()">
{{ $t('pwa.update') }} {{ $t('pwa.update') }}
</button> </button>
<button type="button" btn-text filter-saturate-0 px-4 py-1 text-center text-sm @click="pwa.close()"> <button type="button" btn-text filter-saturate-0 px-4 py-1 text-center text-sm @click="$pwa.close()">
{{ $t('pwa.dismiss') }} {{ $t('pwa.dismiss') }}
</button> </button>
</div> </div>

View file

@ -3,7 +3,7 @@ import type { VitePWANuxtOptions } from '../modules/pwa/types'
const isPreview = process.env.PULL_REQUEST === 'true' const isPreview = process.env.PULL_REQUEST === 'true'
const pwa: VitePWANuxtOptions = { export const pwa: VitePWANuxtOptions = {
mode: isCI ? 'production' : 'development', mode: isCI ? 'production' : 'development',
// disable PWA only when in preview mode // disable PWA only when in preview mode
disable: /* temporarily test in CI isPreview || */ (isDevelopment && process.env.VITE_DEV_PWA !== 'true'), disable: /* temporarily test in CI isPreview || */ (isDevelopment && process.env.VITE_DEV_PWA !== 'true'),
@ -49,5 +49,3 @@ const pwa: VitePWANuxtOptions = {
type: 'module', type: 'module',
}, },
} }
export { pwa }

View file

@ -1,6 +1,6 @@
import { useRegisterSW } from 'virtual:pwa-register/vue' import { useRegisterSW } from 'virtual:pwa-register/vue'
export function usePWA() { export default defineNuxtPlugin(() => {
const online = useOnline() const online = useOnline()
const { const {
@ -34,10 +34,12 @@ export function usePWA() {
} }
return { return {
needRefresh, provide: {
updateServiceWorker, pwa: reactive({
close, needRefresh,
updateServiceWorker,
close,
}),
},
} }
} })
export const pwa = reactive(usePWA())