]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-main/account/account.service.ts
Fix login form scrolling
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-main / account / account.service.ts
CommitLineData
db400f44 1import { Observable, ReplaySubject } from 'rxjs'
67ed6552 2import { catchError, map, tap } from 'rxjs/operators'
0626e7af 3import { HttpClient } from '@angular/common/http'
67ed6552
C
4import { Injectable } from '@angular/core'
5import { RestExtractor } from '@app/core'
6import { Account as ServerAccount } from '@shared/models'
7import { environment } from '../../../../environments/environment'
8import { Account } from './account.model'
0626e7af
C
9
10@Injectable()
11export class AccountService {
12 static BASE_ACCOUNT_URL = environment.apiUrl + '/api/v1/accounts/'
13
14 accountLoaded = new ReplaySubject<Account>(1)
15
16 constructor (
17 private authHttp: HttpClient,
db400f44 18 private restExtractor: RestExtractor
0626e7af
C
19 ) {}
20
d14a9532 21 getAccount (id: number | string): Observable<Account> {
0626e7af 22 return this.authHttp.get<ServerAccount>(AccountService.BASE_ACCOUNT_URL + id)
db400f44
C
23 .pipe(
24 map(accountHash => new Account(accountHash)),
25 tap(account => this.accountLoaded.next(account)),
26 catchError(res => this.restExtractor.handleError(res))
27 )
0626e7af
C
28 }
29}