fix: installed pwa shortcuts (#2205)

This commit is contained in:
Joaquín Sánchez 2023-07-07 12:56:06 +02:00 committed by GitHub
parent cb109b49b8
commit a08d9d147c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 2 deletions

View file

@ -14,12 +14,27 @@ export default defineNuxtRouteMiddleware((to) => {
})
function handleAuth(to: RouteLocationNormalized) {
if (to.path === '/') {
// Installed PWA shortcut to notifications
if (to.query['notifications-pwa-shortcut'] !== undefined) {
if (currentUser.value)
return navigateTo('/notifications')
else
return navigateTo(`/${currentServer.value}/public/local`)
}
// Installed PWA shortcut to local
if (to.query['local-pwa-shortcut'] !== undefined)
return navigateTo(`/${currentServer.value}/public/local`)
}
if (!currentUser.value) {
if (to.path === '/home' && to.query['share-target'] !== undefined)
return navigateTo('/share-target')
else
return navigateTo(`/${currentServer.value}/public/local`)
}
if (to.path === '/')
return navigateTo('/home')
}