All files / lib/services/static-data static-data-api.service.ts

100% Statements 5/5
100% Branches 0/0
100% Functions 2/2
100% Lines 5/5

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                  2x 1x   1x           1x 1x      
import { HttpClient } from '@angular/common/http';
import { inject, Injectable } from '@angular/core';
import { AppHttpHandlersService } from '@app/client-store-http-progress';
 
import { TDiagnosticData } from '../../diagnostics.interface';
 
@Injectable({
  providedIn: 'root',
})
export class AppStaticDataService {
  private readonly http = inject(HttpClient);
 
  private readonly handlers = inject(AppHttpHandlersService);
 
  /**
   * Gets serverstatic diagnostic data.
   */
  public staticData() {
    const endpoint = this.handlers.getEndpoint('diagnostics/static');
    return this.handlers.pipeHttpResponse<TDiagnosticData[]>(this.http.get<TDiagnosticData[]>(endpoint));
  }
}