File
Methods
Private
fetchAccounts
|
fetchAccounts(customerId: string)
|
|
Parameters :
Name |
Type |
Optional |
customerId |
string
|
No
|
|
getBankAccounts
|
getBankAccounts(customerId: string)
|
|
Parameters :
Name |
Type |
Optional |
customerId |
string
|
No
|
|
Public
accounts$
|
Default value : this.source.asObservable()
|
|
Private
source
|
Default value : new BehaviorSubject<BankAccount[] | null>(null)
|
|
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
import { Observable } from 'rxjs/Observable';
import { tap, catchError, first } from 'rxjs/operators';
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { of } from 'rxjs/observable/of';
import { BankAccount } from '../../models';
import { CUSTOMER_API } from '../../app.constants';
@Injectable()
export class BankAccountService {
private accounts: BankAccount[];
private source = new BehaviorSubject<BankAccount[] | null>(null);
public accounts$ = this.source.asObservable();
constructor(private http: HttpClient) {}
clearCache() {
this.accounts = null;
this.source.next(this.accounts);
}
getBankAccounts(customerId: string) {
console.log('getting bank accounts');
if (this.accounts && this.accounts.length > 0) {
console.log('accounts cache hit!', this.accounts);
this.source.next(this.accounts);
return this.accounts$;
}
return this.fetchAccounts(customerId);
}
private fetchAccounts(customerId: string): Observable<BankAccount[]> {
console.log('fetching accounts from', CUSTOMER_API);
return this.http.get<BankAccount[]>(`${CUSTOMER_API}/${customerId}/accounts`).pipe(
first((accounts) => !!accounts),
tap((accounts) => {
if (accounts && accounts.length > 0) {
console.log('cached accounts', accounts);
this.accounts = accounts;
this.source.next(this.accounts);
}
}),
catchError((error) => {
console.log(error);
// todo handle error;
return of([] as BankAccount[]);
})
);
}
}