import { HttpClient, HttpHeaders } from '@angular/common/http'; import { Injectable } from '@angular/core'; import { Observable } from 'rxjs/internal/Observable'; import { catchError } from 'rxjs/operators'; import { CaseSource } from '../core/case-source'; import { ErrorLoggerService } from '../core/error-logger.service'; const httpOptions = { headers: new HttpHeaders({ 'Content-Type': 'application/json' }), }; const url = '/api/case-sources'; const serviceName = 'CaseSourceService'; @Injectable({ providedIn: 'root', }) export class CaseSourceService { constructor(private http: HttpClient, private log: ErrorLoggerService) {} get(id: string | null): Observable { const getUrl: string = id === null ? url : `${url}/${id}`; return this.http .get(getUrl) .pipe(catchError(this.log.handleError(serviceName, `get id=${id}`))) as Observable; } list(): Observable { return this.http .get(`${url}/list`) .pipe(catchError(this.log.handleError(serviceName, 'list'))) as Observable; } save(caseSource: CaseSource): Observable { return this.http .post(url, caseSource, httpOptions) .pipe(catchError(this.log.handleError(serviceName, 'save'))) as Observable; } update(caseSource: CaseSource): Observable { return this.http .put(`${url}/${caseSource.id}`, caseSource, httpOptions) .pipe(catchError(this.log.handleError(serviceName, 'update'))) as Observable; } saveOrUpdate(caseSource: CaseSource): Observable { if (!caseSource.id) { return this.save(caseSource); } return this.update(caseSource); } delete(id: string): Observable { return this.http .delete(`${url}/${id}`, httpOptions) .pipe(catchError(this.log.handleError(serviceName, 'delete'))) as Observable; } }