Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 3x 3x 3x 3x 3x 3x 2x 2x 1x 1x 1x | import { environment } from '../../../environments/environment';
import { HttpClient } from '@angular/common/http';
import { Injectable, inject } from '@angular/core';
import { ApiResponse, HistoryCountsDto, assertIsDefined } from '@drevo-web/shared';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators';
@Injectable({ providedIn: 'root' })
export class CountsApiService {
private readonly apiUrl = environment.apiUrl;
private readonly http = inject(HttpClient);
getHistoryCounts(): Observable<HistoryCountsDto> {
return this.http
.get<ApiResponse<HistoryCountsDto>>(`${this.apiUrl}/api/counts`, { withCredentials: true })
.pipe(
map(response => {
assertIsDefined(response.data, 'Response data is undefined');
return response.data;
})
);
}
}
|