{ "version": 3, "sources": ["src/app/location/location-info.service.ts"], "sourcesContent": ["import { Injectable } from '@angular/core';\r\nimport * as Rx from 'rxjs';\r\nimport { UserInfoService } from '../user/user-info.service';\r\nimport { ZipCodeAPIService } from './location-api.service';\r\n\r\nexport type TNewLocationType = \"zip\" | \"city\" | \"\";\r\nexport type TNewLocationStyle = \"opportunity\" | \"skillsgap\";\r\n\r\nexport interface INewLocation {\r\n\ttype: TNewLocationType,\r\n\tradius: number,\r\n\tloc: string\r\n}\r\n\r\nexport interface ILocationInfo {\r\n\tName: string,\r\n\tAbbr: string,\r\n\tZipCode: string,\r\n\tRadius: number,\r\n\tLat: string,\r\n\tLng: string\r\n}\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class LocationInfoService {\r\n\tprivate accountMonitor: Rx.Subscription;\r\n\tprivate defaultRadius: number = 50;\r\n\tprivate defaultLoc: ILocationInfo = {\r\n\t\tName: 'California',\r\n\t\tAbbr: 'CA',\r\n\t\tZipCode: '92123',\r\n\t\tRadius: this.defaultRadius,\r\n\t\tLat: \"\",\r\n\t\tLng: \"\"\r\n\t};\r\n\r\n\tconstructor(\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate zipCodeAPI: ZipCodeAPIService\r\n\t) {\r\n\t\t// bind function to allow getCurrentPosition calling back\r\n\t\tthis.convertGeoToZipCode = this.convertGeoToZipCode.bind(this);\r\n\t\tthis.cleanupGeo = this.cleanupGeo.bind(this);\r\n\t\tthis.getZipCodeByIP();\r\n\t\r\n\t\tthis.accountMonitor = this.userInfo.UserInfoTimestamp.subscribe({\r\n\t\t\tnext: () => {\r\n\t\t\t\tthis.setUserZipCode();\r\n\t\t\t},\r\n\t\t\terror: (err: any) => {\r\n\t\t\t\tconsole.log(err);\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\tngOnDestroy() {\r\n\t\tif (this.accountMonitor) {\r\n\t\t\tthis.accountMonitor.unsubscribe();\r\n\t\t}\r\n\t}\t\r\n\r\n\t//#region zip code by user\r\n\tprivate get zipCodeUser(): ILocationInfo {\r\n\t\treturn JSON.parse(sessionStorage.getItem('zipCodeUser'));\r\n\t}\r\n\tprivate set zipCodeUser(v: ILocationInfo) {\r\n\t\tif (v == null) {\r\n\t\t\tsessionStorage.removeItem(\"zipCodeUser\");\r\n\t\t}\r\n\t\telse {\r\n\t\t\tsessionStorage.setItem('zipCodeUser', JSON.stringify(v));\r\n\t\t}\r\n\t}\r\n\r\n\tprivate setUserZipCode(): void {\r\n\t\tif (this.userInfo.isAnonymous()) {\r\n\t\t\tthis.zipCodeUser = null;\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tlet zipCode = this.userInfo.getProfile().ZipCode.trim();\r\n\t\tif (zipCode === \"\") {\r\n\t\t\tthis.zipCodeUser = null;\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tthis.zipCodeAPI.getLocation(zipCode).subscribe({\r\n\t\t\tnext: (response:any) => {\r\n\t\t\t\tthis.zipCodeUser = {\r\n\t\t\t\t\tName: response.StateName,\r\n\t\t\t\t\tAbbr: response.StateCode,\r\n\t\t\t\t\tZipCode: zipCode,\r\n\t\t\t\t\tRadius: this.defaultRadius,\r\n\t\t\t\t\tLat: response.Latitude != null? response.Latitude.toString() : \"\",\r\n\t\t\t\t\tLng: response.Longitude != null? response.Longitude.toString() : \"\",\r\n\t\t\t\t};\r\n\t\t\t},\r\n\t\t\terror: (err:any) => {\r\n\t\t\t\tconsole.log(err);\r\n\t\t\t\tthis.zipCodeUser = {\r\n\t\t\t\t\tName: \"\",\r\n\t\t\t\t\tAbbr: \"\",\r\n\t\t\t\t\tZipCode: zipCode,\r\n\t\t\t\t\tRadius: this.defaultRadius,\r\n\t\t\t\t\tLat: \"\",\r\n\t\t\t\t\tLng: \"\"\r\n\t\t\t\t};\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\t//#endregion zip code by user\r\n\r\n\t//#region get zip code by geo\r\n\tprivate get zipCodeGeo(): ILocationInfo {\r\n\t\treturn JSON.parse(localStorage.getItem('zipCodeGeo'));\r\n\t}\r\n\tprivate set zipCodeGeo(v: ILocationInfo) {\r\n\t\tif (v == null) {\r\n\t\t\tlocalStorage.removeItem(\"zipCodeGeo\");\r\n\t\t}\r\n\t\telse {\r\n\t\t\tlocalStorage.setItem('zipCodeGeo', JSON.stringify(v));\r\n\t\t}\r\n\t}\r\n\t\r\n\tprivate getGoogleZipCodeByGeo(geo: any) {\r\n\t\tlet geocoder = new google.maps.Geocoder;\r\n\t\tlet latlng = { lat: parseFloat(geo.coords.latitude), lng: parseFloat(geo.coords.longitude) };\r\n\t\tgeocoder.geocode({ 'location': latlng }, (results, status) => {\r\n\t\t\tif (status === 'OK') {\r\n\t\t\t\ttry {\r\n\t\t\t\t\tif (results[0]) {\r\n\t\t\t\t\t\tvar addresses = results[0].address_components;\r\n\t\t\t\t\t\tvar name = '', abbr = '', zip = '';\r\n\t\t\t\t\t\tfor (var i = 0; i < addresses.length; i++) {\r\n\t\t\t\t\t\t\tif (addresses[i].types[0] === 'administrative_area_level_1') {\r\n\t\t\t\t\t\t\t\tname = addresses[i].long_name;\r\n\t\t\t\t\t\t\t\tabbr = addresses[i].short_name;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\telse if (addresses[i].types[0] === 'postal_code') {\r\n\t\t\t\t\t\t\t\tzip = addresses[i].short_name;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\tif (name !== '' && abbr !== '' && zip !== null) {\r\n\t\t\t\t\t\t\tthis.zipCodeGeo = {\r\n\t\t\t\t\t\t\t\tName: name,\r\n\t\t\t\t\t\t\t\tAbbr: abbr,\r\n\t\t\t\t\t\t\t\tZipCode: zip,\r\n\t\t\t\t\t\t\t\tRadius: this.defaultRadius,\r\n\t\t\t\t\t\t\t\tLat: geo.coords.latitude,\r\n\t\t\t\t\t\t\t\tLng: geo.coords.longitude\r\n\t\t\t\t\t\t\t};\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\telse {\r\n\t\t\t\t\t\t\tthis.zipCodeGeo = null;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\tcatch (ex) {\r\n\t\t\t\t\tconsole.log(\"Fail to get GEO\" + ex);\r\n\t\t\t\t\tthis.zipCodeGeo = null;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tconsole.log('Geocoder failed due to: ' + status);\r\n\t\t\t\tthis.zipCodeGeo = null;\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\tprivate convertGeoToZipCode(geo: any) {\r\n\t\tif (this.zipCodeGeo != null && this.zipCodeGeo.Lat === geo.coords.latitude && this.zipCodeGeo.Lng === geo.coords.longitude) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tthis.getGoogleZipCodeByGeo(geo);\r\n\t}\r\n\r\n\tprivate cleanupGeo(error: any) {\r\n\t\tswitch (error.code) {\r\n\t\t\tcase error.PERMISSION_DENIED:\r\n\t\t\t\tconsole.log(\"Location: User denied the request for Geolocation.\");\r\n\t\t\t\tbreak;\r\n\t\t\tcase error.POSITION_UNAVAILABLE:\r\n\t\t\t\tconsole.log(\"Location: information is unavailable.\");\r\n\t\t\t\tbreak;\r\n\t\t\tcase error.TIMEOUT:\r\n\t\t\t\tconsole.log(\"Location: The request to get user location timed out.\");\r\n\t\t\t\tbreak;\r\n\t\t\tcase error.UNKNOWN_ERROR:\r\n\t\t\t\tconsole.log(\"Location: An unknown error occurred.\");\r\n\t\t\t\tbreak;\r\n\t\t}\r\n\t\tthis.zipCodeGeo = null;\r\n\t}\r\n\r\n\tgetZipCodeByGeo() {\r\n\t\tif (window.location.protocol.toLowerCase().indexOf(\"https\") == 0) {\r\n\t\t\tif (navigator.geolocation) {\r\n\t\t\t\tnavigator.geolocation.getCurrentPosition(this.convertGeoToZipCode, this.cleanupGeo);\r\n\t\t\t}\r\n\t\t}\r\n\t};\r\n\t//#endregion get zip code by geo\r\n\r\n\t//#region zip code by ip\r\n\tprivate get zipCodeIp(): ILocationInfo {\r\n\t\treturn JSON.parse(localStorage.getItem('zipCodeIp'));\r\n\t}\r\n\tprivate set zipCodeIp(v: ILocationInfo) {\r\n\t\tif (v == null) {\r\n\t\t\tlocalStorage.removeItem(\"zipCodeIp\");\r\n\t\t}\r\n\t\telse {\r\n\t\t\tlocalStorage.setItem('zipCodeIp', JSON.stringify(v));\r\n\t\t}\r\n\t}\r\n\r\n\tprivate getZipCodeByIP() {\r\n\t\tthis.zipCodeAPI.getLocationByIP().subscribe({\r\n\t\t\tnext: (response) => {\r\n\t\t\t\tif (response != null) {\r\n\t\t\t\t\tthis.zipCodeIp = {\r\n\t\t\t\t\t\tName: response.StateName,\r\n\t\t\t\t\t\tAbbr: response.StateCode,\r\n\t\t\t\t\t\tZipCode: response.ZipCode,\r\n\t\t\t\t\t\tRadius: this.defaultRadius,\r\n\t\t\t\t\t\tLat: response.Latitude.toString(),\r\n\t\t\t\t\t\tLng: response.Longitude.toString()\r\n\t\t\t\t\t};\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\terror: (err) => {\r\n\t\t\t\tconsole.log(err);\r\n\t\t\t\tthis.zipCodeIp = null;\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\t//#endregion zip code by ip\r\n\r\n\tget(): ILocationInfo {\r\n\t\tif (this.zipCodeUser != null) {\r\n\t\t\treturn JSON.parse(JSON.stringify(this.zipCodeUser));\r\n\t\t}\r\n\t\telse if (this.zipCodeGeo != null) {\r\n\t\t\treturn JSON.parse(JSON.stringify(this.zipCodeGeo));\r\n\t\t}\r\n\t\telse if (this.zipCodeIp != null) {\r\n\t\t\treturn JSON.parse(JSON.stringify(this.zipCodeIp));\r\n\t\t}\r\n\t\telse {\r\n\t\t\treturn JSON.parse(JSON.stringify(this.defaultLoc));\r\n\t\t}\r\n\t}\r\n}\r\n\r\n\r\n"], "mappings": "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", "names": ["LocationInfoService", "constructor", "userInfo", "zipCodeAPI", "defaultRadius", "defaultLoc", "Name", "Abbr", "ZipCode", "Radius", "Lat", "Lng", "convertGeoToZipCode", "bind", "cleanupGeo", "getZipCodeByIP", "accountMonitor", "UserInfoTimestamp", "subscribe", "next", "setUserZipCode", "error", "err", "console", "log", "ngOnDestroy", "unsubscribe", "zipCodeUser", "JSON", "parse", "sessionStorage", "getItem", "v", "removeItem", "setItem", "stringify", "isAnonymous", "zipCode", "getProfile", "trim", "getLocation", "response", "StateName", "StateCode", "Latitude", "toString", "Longitude", "zipCodeGeo", "localStorage", "getGoogleZipCodeByGeo", "geo", "geocoder", "google", "maps", "Geocoder", "latlng", "lat", "parseFloat", "coords", "latitude", "lng", "longitude", "geocode", "results", "status", "addresses", "address_components", "name", "abbr", "zip", "i", "length", "types", "long_name", "short_name", "ex", "code", "PERMISSION_DENIED", "POSITION_UNAVAILABLE", "TIMEOUT", "UNKNOWN_ERROR", "getZipCodeByGeo", "window", "location", "protocol", "toLowerCase", "indexOf", "navigator", "geolocation", "getCurrentPosition", "zipCodeIp", "getLocationByIP", "get", "\u0275\u0275inject", "UserInfoService", "ZipCodeAPIService", "factory", "\u0275fac", "providedIn"] }