blob: 57961985d135a536b3cd09c8e514569c3299ca29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<script setup lang="ts">
import { onBeforeMount, ref } from "vue";
const offlineReady = ref(false);
function onOfflineReady() {
offlineReady.value = true;
}
async function close() {
offlineReady.value = false;
}
onBeforeMount(async () => {
const { registerSW } = await import("virtual:pwa-register");
registerSW({
immediate: true,
onOfflineReady,
onRegistered() {
console.info("Service Worker registered");
},
onRegisterError(e) {
console.error("Service Worker registration error!", e);
},
});
});
</script>
<template>
<template v-if="offlineReady">
<div class="pwa-toast" role="alertdialog" aria-labelledby="pwa-message">
<div id="pwa-message" class="mb-3">App ready to work offline</div>
<button type="button" class="pwa-cancel" @click="close">Close</button>
</div>
</template>
</template>
<style>
.pwa-toast {
position: fixed;
right: 0;
bottom: 0;
margin: 16px;
padding: 12px;
border: 1px solid #8885;
border-radius: 4px;
z-index: 100;
text-align: left;
box-shadow: 3px 4px 5px 0 #8885;
background-color: white;
}
.pwa-toast #pwa-message {
margin-bottom: 8px;
}
.pwa-toast button {
border: 1px solid #8885;
outline: none;
margin-right: 5px;
border-radius: 2px;
padding: 3px 10px;
}
</style>
|