Reputation: 85
I am currently developing an angular app using its router functionality. All routes seem to have been working well until I found out that after a successful login, the url path I've set it to, which is '/admin' will not be followed and the router instead defaults to a '/'. This is the code:
//login.component.ts
if (this.authService.getUserRole() == 'user' || 'agent') {
window.location.assign('/')
} else if (this.authService.getUserRole() == 'admin') {
window.location.assign('/admin')
}
//app.routing.ts
import {AdminComponent} from './admin-master/admin/admin.component;
import {HomeComponent} from './home/home.component;
const appRoutes: Routes = [
{path: '', component: HomeComponent, pathMatch: 'full'},
{path: 'admin', component: AdminComponent, canActivate: [AuthGuard], data: {permission:{only: ['admin']}}}
]
EDIT: (added auth.guard.ts)
//auth.guard.ts
import { Injectable } from '@angular/core';
import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, Router, UrlTree } from '@angular/router';
import { Observable } from 'rxjs';
import { AuthService } from './auth.service';
@Injectable({
providedIn: 'root'
})
export class AuthGuard implements CanActivate {
constructor(private authService: AuthService, private router: Router) {}
canActivate(
next: ActivatedRouteSnapshot,
state: RouterStateSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree {
const permission = next.data["permission"];
if(this.authService.isLoggedIn() &&
permission.only.includes(this.authService.getUserRole())) {
return true;
} else {
this.router.navigateByUrl('/logout');
}
}
}
The Problem:
Although a successful login has been done, the router will redirect a user to a blank url instead of the set URL I have provided specifically in the login.component.ts
folder.
Because it will redirect to an empty URL, elements from the home.component.html
will also display within my admin dashboard which I don't want to happen.
In conclusion, how do I route the following functions correctly? Am I doing something wrong? Thanks for the help!
Upvotes: 1
Views: 3292
Reputation: 85
In my app.routing.ts
file, I've observed that from the code below, removing {useHash: true}
would result in a correct URL redirect. This is due to the fact that adding {useHash: true}
adds an extra /#
to my url resulting in defaulting to a blank URL because it does not match any routes.
export const routing: ModuleWithProviders = RouterModule.forRoot(appRoutes, { useHash: true, enableTracing: true });
I've modified it instead to:
export const routing: ModuleWithProviders = RouterModule.forRoot(appRoutes);
NOTE: I've also removed enableTracing: true
just to clean up my console results.
Upvotes: 0
Reputation: 188
Are you sure you are navigating to the admin page ? Your code looks wrong I think.
if (this.authService.getUserRole() == 'user' || 'agent') {
window.location.assign('/')
} else if (this.authService.getUserRole() == 'admin') {
window.location.assign('/admin')
}
it should be like below otherwise the first one is always true because of || 'agent'
const role = this.authService.getUserRole();
if (role === 'user' || role === 'agent') {
window.location.assign('/')
} else if (role === 'admin') {
window.location.assign('/admin')
}
also I prefer ===
for value and type checking.
Upvotes: 0
Reputation: 336
You can use Router
instead of window.location.assign
to navigate into different URL's
Example:
import { Router} from '@angular/router';
/* Login Component */
constructor(private router: Router, private authService: AuthService) { }
navigate() {
if (this.authService.getUserRole() == 'user' || 'agent') {
this.router.navigateByUrl('/')
} else if (this.authService.getUserRole() == 'admin') {
this.router.navigateByUrl('/admin')
}
}
check the doc https://angular.io/api/router/Router
Upvotes: 1
Reputation: 66
Replace window.location.assign('/admin')
with
this.router.navigate([‘../admin’], {relativeTo: this.route});
router : Router route : ActivatedRoute
I hope this is what you want.
Upvotes: 0