Implements Automatic Profile Image Reload

Automatically reloads image after Add Profile Image operation
This commit is contained in:
2023-08-29 02:17:49 -03:00
parent dadf15e0a0
commit e33f49f7ec

View File

@@ -46,6 +46,10 @@ export class AuthService {
} }
refresh(): void {
this.validateUser(this.refreshAccessToken());
}
autoLogin(): void { autoLogin(): void {
this.validateUser(this.validateSession()); this.validateUser(this.validateSession());
} }
@@ -68,7 +72,11 @@ export class AuthService {
(response: Observable<any>) => { (response: Observable<any>) => {
response.subscribe({ response.subscribe({
next: (response: any) => { next: (response: any) => {
this.processProfilePicture().subscribe(); this.processProfilePicture().subscribe(
() => {
this.refresh();
}
);
} }
}); });
} }
@@ -146,11 +154,11 @@ export class AuthService {
} }
private refreshAccessToken() { private refreshAccessToken() {
return firstValueFrom(this.http.post( return this.http.post<User>(
this.BACKEND_PATH + "/user/login/refresh", this.BACKEND_PATH + "/user/login/refresh",
this.userAuthenticated.refreshToken, this.userAuthenticated.refreshToken,
{ withCredentials: true } { withCredentials: true }
)); );
} }
private validateSession(): Observable<User> { private validateSession(): Observable<User> {