In my Vue app, a user's homepage depends on their role. To ensure that a user is shown the correct homepage, I use this navigation guard:
export default (to, from, next) => {
const authService = getAuthService()
if (to.path === '/') {
// if they've requested the home page, send them to
// different pages depending on their role
if (authService.isUser()) {
next({ name: 'events' })
} else if (authService.isAdmin()) {
next({ name: 'admin-events' })
} else {
next()
}
}
}
Then when a user successfully logs in, I redirect them to '/'
this.$router.push({path: '/'))
and the nav guard above redirects them to their role-specific homepage. However, redirecting twice in the course of a single navigation action is not allowed and causes the following error to appear in the console when the second redirection occurs (in the nav guard) `
Uncaught (in promise) Error: Redirected when going from
"/login"
to"/"
via a navigation guard.
Another case in my app where this happens is the 404 component that handles attempts to access non-existent routes, i.e.
- User attempts to access invalid route
- 404 component redirects back to
'/'
- Nav guard redirects to user-specific homepage, causing an error
Is there a way I can support these use cases without redirecting twice?
const authService = getAuthService()
into the following line=if (to.path === '/') {
; because ifto.path !== '/'
, getAuthService is not neccessary. – Sphinx