import { Injectable } from '@angular/core'; import { HttpClient, HttpResponse } from '@angular/common/http'; import { Observable } from 'rxjs'; import { map } from 'rxjs/operators'; import * as dayjs from 'dayjs'; import { isPresent } from 'app/core/util/operators'; import { ApplicationConfigService } from 'app/core/config/application-config.service'; import { createRequestOption } from 'app/core/request/request-util'; import { IFactura, getFacturaIdentifier } from '../factura.model'; export type EntityResponseType = HttpResponse; export type EntityArrayResponseType = HttpResponse; @Injectable({ providedIn: 'root' }) export class FacturaService { protected resourceUrl = this.applicationConfigService.getEndpointFor('api/facturas'); constructor(protected http: HttpClient, protected applicationConfigService: ApplicationConfigService) {} create(factura: IFactura): Observable { debugger; const copy = this.convertDateFromClient(factura); return this.http .post(this.resourceUrl, copy, { observe: 'response' }) .pipe(map((res: EntityResponseType) => this.convertDateFromServer(res))); } update(factura: IFactura): Observable { const copy = this.convertDateFromClient(factura); return this.http .put(`${this.resourceUrl}/${getFacturaIdentifier(factura) as number}`, copy, { observe: 'response' }) .pipe(map((res: EntityResponseType) => this.convertDateFromServer(res))); } partialUpdate(factura: IFactura): Observable { const copy = this.convertDateFromClient(factura); return this.http .patch(`${this.resourceUrl}/${getFacturaIdentifier(factura) as number}`, copy, { observe: 'response' }) .pipe(map((res: EntityResponseType) => this.convertDateFromServer(res))); } find(id: number): Observable { return this.http .get(`${this.resourceUrl}/${id}`, { observe: 'response' }) .pipe(map((res: EntityResponseType) => this.convertDateFromServer(res))); } query(req?: any): Observable { const options = createRequestOption(req); return this.http .get(this.resourceUrl, { params: options, observe: 'response' }) .pipe(map((res: EntityArrayResponseType) => this.convertDateArrayFromServer(res))); } delete(id: number): Observable> { return this.http.delete(`${this.resourceUrl}/${id}`, { observe: 'response' }); } addFacturaToCollectionIfMissing(facturaCollection: IFactura[], ...facturasToCheck: (IFactura | null | undefined)[]): IFactura[] { const facturas: IFactura[] = facturasToCheck.filter(isPresent); if (facturas.length > 0) { const facturaCollectionIdentifiers = facturaCollection.map(facturaItem => getFacturaIdentifier(facturaItem)!); const facturasToAdd = facturas.filter(facturaItem => { const facturaIdentifier = getFacturaIdentifier(facturaItem); if (facturaIdentifier == null || facturaCollectionIdentifiers.includes(facturaIdentifier)) { return false; } facturaCollectionIdentifiers.push(facturaIdentifier); return true; }); return [...facturasToAdd, ...facturaCollection]; } return facturaCollection; } protected convertDateFromClient(factura: IFactura): IFactura { return Object.assign({}, factura, { fecha: factura.fecha?.isValid() ? factura.fecha.toJSON() : undefined, }); } protected convertDateFromServer(res: EntityResponseType): EntityResponseType { if (res.body) { res.body.fecha = res.body.fecha ? dayjs(res.body.fecha) : undefined; } return res; } protected convertDateArrayFromServer(res: EntityArrayResponseType): EntityArrayResponseType { if (res.body) { res.body.forEach((factura: IFactura) => { factura.fecha = factura.fecha ? dayjs(factura.fecha) : undefined; }); } return res; } }