Revize d2799ca5
Přidáno uživatelem Jakub Danek před více než 5 roky(ů)
webapp/src/app/services/util/profile.service.ts | ||
---|---|---|
1 | 1 |
import {Injectable} from '@angular/core'; |
2 |
import {UserService} from '../api/user.service'; |
|
3 | 2 |
import {UserProfile} from '../../models/user.model'; |
4 | 3 |
import {Observable, of} from 'rxjs'; |
4 |
import {UsersService} from "../api/users.service"; |
|
5 | 5 |
|
6 | 6 |
@Injectable({ |
7 | 7 |
providedIn: 'root' |
... | ... | |
9 | 9 |
export class ProfileService { |
10 | 10 |
private profile: UserProfile; |
11 | 11 |
|
12 |
constructor(private userService: UserService) {
|
|
12 |
constructor(private usersService: UsersService) {
|
|
13 | 13 |
|
14 | 14 |
} |
15 | 15 |
|
16 |
//hardcoded username for now, to be replaced after proper authentication is in place |
|
17 |
public currentUserValue = "testuser@yoso.fi"; |
|
18 |
|
|
16 | 19 |
/** |
17 | 20 |
* Returns logged user profile if the server responds |
18 | 21 |
* with valid profile otherwise observer returns error |
... | ... | |
28 | 31 |
} |
29 | 32 |
|
30 | 33 |
return new Observable<UserProfile>((obs) => { |
31 |
this.userService.getLoggedUserProfile() |
|
34 |
this.usersService.getLoggedUserProfile()
|
|
32 | 35 |
.subscribe((userProfile: UserProfile) => { |
33 | 36 |
this.profile = {...userProfile}; |
34 | 37 |
obs.next(this.profile); |
Také k dispozici: Unified diff
re #37 make UI compatible with new User controller API