fix: sign-out and empty content (#1654)
parent
6e7ac24821
commit
f7a8d471a6
|
@ -1,3 +1,5 @@
|
|||
import type { RouteLocationNormalized } from 'vue-router'
|
||||
|
||||
export default defineNuxtRouteMiddleware((to) => {
|
||||
if (process.server)
|
||||
return
|
||||
|
@ -5,14 +7,19 @@ export default defineNuxtRouteMiddleware((to) => {
|
|||
if (to.path === '/signin/callback')
|
||||
return
|
||||
|
||||
onHydrated(() => {
|
||||
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')
|
||||
})
|
||||
if (isHydrated.value)
|
||||
return handleAuth(to)
|
||||
|
||||
onHydrated(() => handleAuth(to))
|
||||
})
|
||||
|
||||
function handleAuth(to: RouteLocationNormalized) {
|
||||
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')
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue