ui: improve pwa prompt

main
Anthony Fu 2022-12-23 19:05:48 +01:00
parent 41568b2c2d
commit 589cf463bd
5 changed files with 17 additions and 29 deletions

View File

@ -13,5 +13,4 @@ const key = computed(() => `${currentUser.value?.server ?? currentServer.value}:
<NuxtPage v-if="isMastoInitialised" />
</NuxtLayout>
<AriaAnnouncer />
<PWAPrompt />
</template>

View File

@ -11,33 +11,21 @@ const { close, needRefresh, updateServiceWorker } = usePWA()
role="alertdialog"
aria-labelledby="pwa-toast-title"
aria-describedby="pwa-toast-description"
animate animate-back-in-up md:animate-back-in-right
z11
fixed
bottom-14 md:bottom-0 right-0
m-2 p-4 w-100 max-w-fit
bg-base border="~ base"
rounded
text-left
shadow
flex="~ gap-4"
m-2 p5 bg="fade" relative
rounded-lg of-hidden
flex="~ col gap-3"
>
<img src="/logo.svg" w-12 h-12 height="10" width="10" ma alt="logo">
<div>
<h2 id="pwa-toast-title" sr-only>
{{ $t('pwa.title') }}
</h2>
<div id="pwa-toast-message">
{{ $t('pwa.message') }}
</div>
<div mt2 flex="~ gap-4">
<button type="button" btn-solid px-4 py-1 text-center text-sm @click="updateServiceWorker()">
{{ $t('pwa.reload') }}
</button>
<button type="button" btn-outline filter-saturate-0 px-4 py-1 text-center text-sm @click="close">
{{ $t('pwa.dismiss') }}
</button>
</div>
<h2 id="pwa-toast-title" flex="~ gap-2" items-center>
{{ $t('pwa.title') }}
</h2>
<div flex="~ gap-1">
<button type="button" btn-solid px-4 py-1 text-center text-sm @click="updateServiceWorker()">
{{ $t('pwa.update') }}
</button>
<button type="button" btn-text filter-saturate-0 px-4 py-1 text-center text-sm @click="close()">
{{ $t('pwa.dismiss') }}
</button>
</div>
<div i-ri-arrow-down-circle-line absolute text-8em bottom--10 right--10 text-primary op10 />
</div>
</template>

View File

@ -56,5 +56,4 @@ const reload = async () => {
</MainContent>
</NuxtLayout>
<AriaAnnouncer />
<PWAPrompt />
</template>

View File

@ -53,6 +53,7 @@
<slot name="right">
<SearchWidget />
<div flex-auto />
<PWAPrompt />
<NavFooter />
</slot>
</div>

View File

@ -209,7 +209,8 @@
"dismiss": "Dismiss",
"message": "@:pwa.title{','} click on the @:pwa.reload button to update.",
"reload": "Reload",
"title": "New Elk update available"
"title": "New Elk update available!",
"update": "Update"
},
"search": {
"search_desc": "Search for people & hashtags"