I'm quite new at angular and I'm trying to verify my authentication token by using angular-jwt on Angular 6.The purpose of verifying the token would be to allow different buttons when the user logs and show a different set of buttons when they log out.
This is my authService.
import { JwtHelperService } from '@auth0/angular-jwt';
constructor(private http:HttpClient, public jwtHelper:JwtHelperService)
{}
loggedIn()
{
console.log(this.jwtHelper.isTokenExpired(this.authtoken));
}
And this is bit of my HTML code
<a *ngIf="!authService.loggedIn()" [routerLink]="['/login']"><button class.....
<a *ngIf="!authService.loggedIn()" [routerLink]="['/register']"><button class.....
<a *ngIf="authService.loggedIn()" [routerLink]="['/profile']"><button class....
<a *ngIf="authService.loggedIn()" [routerLink]="['/profile']"><button class.....
Now my problem is before I login it logs on the console correctly as true, but after I login and go to the profile page the buttons won't change cause it still logs true and then logs false again.
I think it's due to using the token getter function in the app module but I'm not sure how else to implement it.
My app module component:
....
imports: [BrowserModule,
[JwtModule.forRoot({
config: {tokenGetter:tokenGetter,whitelistedDomains['localhost:3000']}
})]
providers: [AuthService,JwtHelperService]
})
export function tokenGetter() {
return localStorage.getItem('access_token');
}
I am also currently new to Angular Js Framework and started learning via older versions. So my fix for this code was I called external function named
loadToken()
which loaded myAuth Token
If it was found so my function returnedfalse
else it returnedtrue
.Below is the code I have tried:
Further in the HTML code: