All files / app/services/counts counts-api.service.ts

100% Statements 13/13
100% Branches 0/0
100% Functions 3/3
100% Lines 11/11

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 243x 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;
                })
            );
    }
}