{ "version": 3, "sources": ["src/app/services/unlocode.service.ts"], "sourcesContent": ["import { HttpClient, HttpErrorResponse, HttpHeaders } from '@angular/common/http';\nimport { Injectable, inject } from '@angular/core';\nimport { Observable, catchError, map, of } from 'rxjs';\n\nimport { UNLOCODE_API, UNLOCODE_KEY } from 'src/app/shared/app-token';\nimport { QueryUnlocodes } from 'src/app/types/query-unlocode';\nimport { PagedResponse } from '../types/paged-response';\nimport { Unlocode } from '../types/unlocode';\nimport { SharedService } from './shared.service';\n\n/**\n * Un/Locode service\n * @class UnlocodeService\n * @typedef {UnlocodeService}\n */\n@Injectable( {\n providedIn: 'root'\n} )\nexport class UnlocodeService {\n /** ignore in coverage */\n #apiUrl = inject( UNLOCODE_API );\n #apiKey = inject( UNLOCODE_KEY );\n #httpClient = inject( HttpClient );\n #sharedService = inject( SharedService );\n\n /**\n * get unlocode by id\n * @param id id of unlocode\n * @returns {object} json object with unlocode details\n */\n getUnlocodeById( id: string ): Observable {\n let headers = new HttpHeaders();\n headers = headers.set( 'Authorization', `${this.#apiKey}` );\n\n return this.#httpClient.get(\n `${this.#apiUrl}/unlocode/${id}`,\n { headers: headers }\n ).pipe(\n map( ( unlocode ) => unlocode ),\n catchError( ( err: any ) => {\n if ( err instanceof HttpErrorResponse ) {\n try {\n this.#sharedService.handleServerSideError( err );\n } catch ( e ) {\n console.log( 'A server error occurred', e );\n }\n }\n return of( err );\n } )\n );\n }\n\n /**\n * method to handle paginated and queried page requests on static data\n * @param {QueryUnlocodes} query query object\n * @returns {object} json object with paged results\n */\n getFilteredUnlocodes( query: QueryUnlocodes ) {\n let headers = new HttpHeaders();\n headers = headers.set( 'Authorization', `${this.#apiKey}` );\n\n const parameters = new URLSearchParams( { ...query } );\n\n return this.#httpClient\n .get(\n `${this.#apiUrl}/unlocode?${parameters}`,\n { headers: headers }\n ).pipe( map( ( result ) => result ) );\n }\n}\n"], "mappings": "uJAkBA,IAAaA,GAAe,IAAA,CAAtB,MAAOA,CAAe,CAExBC,GAAUC,EAAQC,CAAY,EAC9BC,GAAUF,EAAQG,CAAY,EAC9BC,GAAcJ,EAAQK,CAAU,EAChCC,GAAiBN,EAAQO,CAAa,EAOtCC,gBAAiBC,EAAU,CACvB,IAAIC,EAAU,IAAIC,EAClBD,OAAAA,EAAUA,EAAQE,IAAK,gBAAiB,GAAG,KAAKV,EAAO,EAAE,EAElD,KAAKE,GAAYS,IACpB,GAAG,KAAKd,EAAO,aAAaU,CAAE,GAC9B,CAAEC,QAASA,CAAO,CAAE,EACtBI,KACEC,EAAOC,GAAcA,CAAQ,EAC7BC,EAAcC,GAAa,CACvB,GAAKA,aAAeC,EAChB,GAAI,CACA,KAAKb,GAAec,sBAAuBF,CAAG,CAClD,OAAUG,EAAI,CACVC,QAAQC,IAAK,0BAA2BF,CAAC,CAC7C,CAEJ,OAAOG,EAAIN,CAAG,CAClB,CAAC,CAAE,CAEX,CAOAO,qBAAsBC,EAAqB,CACvC,IAAIhB,EAAU,IAAIC,EAClBD,EAAUA,EAAQE,IAAK,gBAAiB,GAAG,KAAKV,EAAO,EAAE,EAEzD,IAAMyB,EAAa,IAAIC,gBAAiBC,EAAA,GAAKH,EAAO,EAEpD,OAAO,KAAKtB,GACPS,IACG,GAAG,KAAKd,EAAO,aAAa4B,CAAU,GACtC,CAAEjB,QAASA,CAAO,CAAE,EACtBI,KAAMC,EAAOe,GAAYA,CAAM,CAAE,CAC3C,iDAlDShC,EAAe,CAAA,iCAAfA,EAAeiC,QAAfjC,EAAekC,UAAAC,WAFZ,MAAM,CAAA,CAAA,SAETnC,CAAe,GAAA", "names": ["UnlocodeService", "#apiUrl", "inject", "UNLOCODE_API", "#apiKey", "UNLOCODE_KEY", "#httpClient", "HttpClient", "#sharedService", "SharedService", "getUnlocodeById", "id", "headers", "HttpHeaders", "set", "get", "pipe", "map", "unlocode", "catchError", "err", "HttpErrorResponse", "handleServerSideError", "e", "console", "log", "of", "getFilteredUnlocodes", "query", "parameters", "URLSearchParams", "__spreadValues", "result", "factory", "\u0275fac", "providedIn"] }