import { Injectable } from '@angular/core'; import { HttpClient, HttpResponse } from '@angular/common/http'; import { Observable } from 'rxjs'; 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 { IEPreguntaAbierta, getEPreguntaAbiertaIdentifier } from '../e-pregunta-abierta.model'; export type EntityResponseType = HttpResponse; export type EntityArrayResponseType = HttpResponse; @Injectable({ providedIn: 'root' }) export class EPreguntaAbiertaService { protected resourceUrl = this.applicationConfigService.getEndpointFor('api/e-pregunta-abiertas'); constructor(protected http: HttpClient, protected applicationConfigService: ApplicationConfigService) {} create(ePreguntaAbierta: IEPreguntaAbierta): Observable { return this.http.post(this.resourceUrl, ePreguntaAbierta, { observe: 'response' }); } update(ePreguntaAbierta: IEPreguntaAbierta): Observable { return this.http.put( `${this.resourceUrl}/${getEPreguntaAbiertaIdentifier(ePreguntaAbierta) as number}`, ePreguntaAbierta, { observe: 'response' } ); } partialUpdate(ePreguntaAbierta: IEPreguntaAbierta): Observable { return this.http.patch( `${this.resourceUrl}/${getEPreguntaAbiertaIdentifier(ePreguntaAbierta) as number}`, ePreguntaAbierta, { observe: 'response' } ); } find(id: number): Observable { return this.http.get(`${this.resourceUrl}/${id}`, { observe: 'response' }); } query(req?: any): Observable { const options = createRequestOption(req); return this.http.get(this.resourceUrl, { params: options, observe: 'response' }); } delete(id: number): Observable> { return this.http.delete(`${this.resourceUrl}/${id}`, { observe: 'response' }); } addEPreguntaAbiertaToCollectionIfMissing( ePreguntaAbiertaCollection: IEPreguntaAbierta[], ...ePreguntaAbiertasToCheck: (IEPreguntaAbierta | null | undefined)[] ): IEPreguntaAbierta[] { const ePreguntaAbiertas: IEPreguntaAbierta[] = ePreguntaAbiertasToCheck.filter(isPresent); if (ePreguntaAbiertas.length > 0) { const ePreguntaAbiertaCollectionIdentifiers = ePreguntaAbiertaCollection.map( ePreguntaAbiertaItem => getEPreguntaAbiertaIdentifier(ePreguntaAbiertaItem)! ); const ePreguntaAbiertasToAdd = ePreguntaAbiertas.filter(ePreguntaAbiertaItem => { const ePreguntaAbiertaIdentifier = getEPreguntaAbiertaIdentifier(ePreguntaAbiertaItem); if (ePreguntaAbiertaIdentifier == null || ePreguntaAbiertaCollectionIdentifiers.includes(ePreguntaAbiertaIdentifier)) { return false; } ePreguntaAbiertaCollectionIdentifiers.push(ePreguntaAbiertaIdentifier); return true; }); return [...ePreguntaAbiertasToAdd, ...ePreguntaAbiertaCollection]; } return ePreguntaAbiertaCollection; } }