{"version":3,"file":"common.js","mappings":";;;;;;;;;;;;;;;AAC2E;;;AAKrE,MAAOE,eAAe;EAENC,IAAA;EAApBC,YAAoBD,IAAgB;IAAhB,KAAAA,IAAI,GAAJA,IAAI;EAAgB;EAEjCE,oBAAoBA,CAAA;IACzB,OAAO,IAAI,CAACF,IAAI,CAACG,GAAG,CAACC,MAAM,CAACC,QAAQ,CAACC,MAAM,GAAG,uBAAuB,CAAC;EACxE;EAEOC,iBAAiBA,CAACC,UAAkB;IACzC,OAAO,IAAI,CAACR,IAAI,CAACG,GAAG,CAACC,MAAM,CAACC,QAAQ,CAACC,MAAM,GAAG,uBAAuB,GAAGE,UAAU,CAAC;EACrF;EAEOC,qBAAqBA,CAACD,UAAkB;IAC7C,OAAO,IAAI,CAACR,IAAI,CAACG,GAAG,CAACC,MAAM,CAACC,QAAQ,CAACC,MAAM,GAAG,4BAA4B,GAAGE,UAAU,CAAC;EAC1F;EAEOE,kBAAkBA,CAACC,UAAe,EAAEC,QAAa;IACtD,IAAIC,OAAO,GAAG,IAAIhB,6DAAW,EAAE;IAC/BgB,OAAO,GAAGA,OAAO,CAACC,MAAM,CAAC,cAAc,EAAE,iCAAiC,CAAC;IAE3E,MAAMC,MAAM,GAAG,IAAIjB,4DAAU,EAAE,CAACkB,GAAG,CAAC,UAAU,EAAEJ,QAAQ,CAAC;IAEzD,OAAO,IAAI,CAACZ,IAAI,CAACG,GAAG,CAACC,MAAM,CAACC,QAAQ,CAACC,MAAM,GAAG,iBAAiB,GAAGK,UAAU,EAAE;MAAEE,OAAO;MAAEE;IAAM,CAAE,CAAC;EACpG;EAEOE,+BAA+BA,CAAA;IACpC,OAAO,IAAI,CAACjB,IAAI,CAACG,GAAG,CAACC,MAAM,CAACC,QAAQ,CAACC,MAAM,GAAG,gCAAgC,CAAC;EACjF;EAEOY,eAAeA,CAACC,IAAI,GAAG,KAAK;IAEjC,IAAIA,IAAI,KAAK,IAAI,EAAE;MACjB,OAAO,IAAI,CAACnB,IAAI,CAACG,GAAG,CAACC,MAAM,CAACC,QAAQ,CAACC,MAAM,GAAG,mCAAmC,CAAC;KACnF,MACI;MACH,OAAO,IAAI,CAACN,IAAI,CAACG,GAAG,CAACC,MAAM,CAACC,QAAQ,CAACC,MAAM,GAAG,oCAAoC,CAAC;;EAEvF;EAEOc,sBAAsBA,CAACD,IAAI,GAAG,KAAK;IACxC,IAAIA,IAAI,KAAK,IAAI,EAAE;MACjB,OAAO,IAAI,CAACnB,IAAI,CAACG,GAAG,CAACC,MAAM,CAACC,QAAQ,CAACC,MAAM,GAAG,2CAA2C,CAAC;KAC3F,MACI;MACH,OAAO,IAAI,CAACN,IAAI,CAACG,GAAG,CAACC,MAAM,CAACC,QAAQ,CAACC,MAAM,GAAG,4CAA4C,CAAC;;EAE/F;;qBA9CWP,eAAe,EAAAsB,sDAAA,CAAAE,4DAAA;EAAA;;WAAfxB,eAAe;IAAA0B,OAAA,EAAf1B,eAAe,CAAA2B,IAAA;IAAAC,UAAA,EAFd;EAAM","sources":["./src/app/shared/service/location.service.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\r\nimport { HttpClient, HttpHeaders, HttpParams } from '@angular/common/http';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class LocationService {\r\n\r\n constructor(private http: HttpClient) { }\r\n\r\n public GetLocationsByRegion() {\r\n return this.http.get(window.location.origin + '/api/locations/region');\r\n }\r\n\r\n public GetLocationsCount(countGroup: string) {\r\n return this.http.get(window.location.origin + '/api/locations/count/' + countGroup);\r\n }\r\n\r\n public GetLocationStateCount(countGroup: string) {\r\n return this.http.get(window.location.origin + '/api/locations/statecount/' + countGroup);\r\n }\r\n\r\n public GetLocationDetails(locationId: any, language: any) {\r\n let headers = new HttpHeaders();\r\n headers = headers.append('Content-Type', 'application/json; charset=utf-8');\r\n\r\n const params = new HttpParams().set('language', language);\r\n\r\n return this.http.get(window.location.origin + '/api/locations/' + locationId, { headers, params });\r\n }\r\n\r\n public GetLocationsWithActiveEquipment() {\r\n return this.http.get(window.location.origin + '/api/locations/activeequipment');\r\n }\r\n\r\n public GetLocationLang(lang = 'eng') {\r\n\r\n if (lang === 'es') {\r\n return this.http.get(window.location.origin + '/assets/language/location.es.json');\r\n }\r\n else {\r\n return this.http.get(window.location.origin + '/assets/language/location.eng.json');\r\n }\r\n }\r\n\r\n public GetLocationDetailsLang(lang = 'eng') {\r\n if (lang === 'es') {\r\n return this.http.get(window.location.origin + '/assets/language/location-details.es.json');\r\n }\r\n else {\r\n return this.http.get(window.location.origin + '/assets/language/location-details.eng.json');\r\n }\r\n }\r\n\r\n}\r\n"],"names":["HttpHeaders","HttpParams","LocationService","http","constructor","GetLocationsByRegion","get","window","location","origin","GetLocationsCount","countGroup","GetLocationStateCount","GetLocationDetails","locationId","language","headers","append","params","set","GetLocationsWithActiveEquipment","GetLocationLang","lang","GetLocationDetailsLang","i0","ɵɵinject","i1","HttpClient","factory","ɵfac","providedIn"],"sourceRoot":"webpack:///","x_google_ignoreList":[]}