{ "version": 3, "sources": ["src/app/notification/notification-api.service.ts", "src/app/notification/notification.service.ts"], "sourcesContent": ["import { Injectable } from '@angular/core';\r\nimport { HttpClient } from '@angular/common/http';\r\nimport * as Rx from 'rxjs';\r\nimport { AppSettingService } from '../app.service';\r\nimport { UserInfoService } from '../user/user-info.service';\r\n\r\nexport interface INotification {\r\n\tNotificationPersonId: string,\r\n\tNotificationId: string,\r\n\tNotification: string,\r\n\tTypeId: string,\r\n\tType: string,\r\n\tNotificationTime: string,\r\n\tActionUrl: string,\r\n\tCommentPostId: string,\r\n\tJobPostId: string,\r\n\tCareerId: string,\r\n\tImageIcon: string,\r\n\tUsername: string,\r\n\tMinutesAgo: number,\r\n\tAge: string\r\n}\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class NotificationAPIService {\r\n\tconstructor(\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate http: HttpClient\r\n\t) { }\r\n\r\n\tprivate url = AppSettingService.appConfig.JourneyAPIUrl + \"Notification\";\r\n\r\n\tgetNotifications(limit: number, offset: number): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"?limit=\" + limit.toString() + \"&offset=\" + offset.toString(),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tdeleteNotification(notificationPersonId: string): Rx.Observable {\r\n\t\treturn this.http.delete(\r\n\t\t\tthis.url + \"/\" + encodeURIComponent(notificationPersonId),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tdeleteMultipleNotifications(notificationPersonIDs: any): Rx.Observable {\r\n\t\treturn this.http.post(\r\n\t\t\tthis.url ,\r\n\t\t\tnotificationPersonIDs,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t} \r\n}\r\n\r\n", "import { Injectable } from '@angular/core';\r\nimport * as Rx from 'rxjs';\r\nimport { tap, map } from 'rxjs/operators';\r\nimport { NotificationAPIService, INotification } from './notification-api.service';\r\nimport { UserInfoService } from '../user/user-info.service';\r\n\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class NotificationService {\r\n\tnotificationChanged: any = new Rx.BehaviorSubject(null);\r\n\tprivate notificationTotal: number = 0;\r\n\tprivate notificationInterval: any = null;\r\n\tprivate downloading: boolean = false;\r\n\tnotifications: INotification[] = [];\r\n\r\n\tconstructor(\r\n\t\tprivate notificationAPI: NotificationAPIService,\r\n\t\tprivate userInfo: UserInfoService\r\n\t) {\r\n\t\tlocalStorage.setItem(\"NotificationTotal\", \"0\");\r\n\t\t// check notificaiton immediatly\r\n\t\tthis.checkNotification();\r\n\t\tthis.watchAccountChange();\r\n\t\t// check notification every 3 minute\r\n\t\tthis.notificationInterval = window.setInterval(() => {\r\n\t\t\tthis.checkNotification();\r\n\t\t}, 180000);\r\n\t}\r\n\r\n\tngOnDestroy() {\r\n\t\tif (this.notificationInterval != null) {\r\n\t\t\twindow.clearInterval(this.notificationInterval);\r\n\t\t}\r\n\t\tif (this.accountWatcher) {\r\n\t\t\tthis.accountWatcher.unsubscribe();\r\n\t\t}\r\n\t}\r\n\t\r\n\tprivate accountWatcher: Rx.Subscription = null;\r\n\tprivate watchAccountChange(): void {\r\n\t\t//watch account change\r\n\t\tthis.accountWatcher = this.userInfo.UserInfoTimestamp.subscribe({\r\n\t\t\tnext: () => {\r\n\t\t\t\t// if account changed, update notification immediatly\r\n\t\t\t\tthis.checkNotification();\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\tpublic updateNotification(): void {\r\n\t\tlocalStorage.setItem(\"NotificationTotal\", this.notificationTotal.toString());\r\n\t\tlet v:number = this.notificationChanged.getValue();\r\n\t\tthis.notificationChanged.next((v == null? 0 : v) + 1);\r\n\t}\r\n\r\n\tprivate checkNotification() {\r\n\t\tif (this.downloading) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tthis.downloading = true;\r\n\t\tif (this.userInfo.isAnonymous()) {\r\n\t\t\tthis.notificationTotal = 0;\r\n\t\t\tthis.updateNotification();\r\n\t\t\tthis.downloading = false;\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.notificationAPI.getNotifications(1, 0).subscribe({\r\n\t\t\t\tnext: (response) => {\r\n\t\t\t\t\tthis.notificationTotal = response.length;\r\n\t\t\t\t\tthis.updateNotification();\r\n\t\t\t\t\tthis.downloading = false;\r\n\t\t\t\t},\r\n\t\t\t\terror: (err) => {\r\n\t\t\t\t\tconsole.log(err);\r\n\t\t\t\t\tthis.downloading = false;\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t}\r\n\r\n\tpublic downloadNotifications(): Rx.Observable {\r\n\t\tthis.notifications = [];\r\n\t\treturn this.notificationAPI\r\n\t\t\t.getNotifications(100, 0)\r\n\t\t\t.pipe(\r\n\t\t\t\tmap(\r\n\t\t\t\t\t(response) => {\r\n\t\t\t\t\t\tthis.notifications = response;\r\n\t\t\t\t\t\treturn true;\r\n\t\t\t\t\t}\r\n\t\t\t\t)\r\n\t\t\t);\r\n\t}\r\n\r\n\tpublic deleteJobPost(jobPostId: string): Rx.Observable {\r\n\t\tlet j: INotification = this.notifications.find(x => x.JobPostId == jobPostId);\r\n\t\tif (j != undefined && j != null) {\r\n\t\t\treturn this.notificationAPI\r\n\t\t\t\t.deleteNotification(j.NotificationPersonId)\r\n\t\t\t\t.pipe(tap(() => { this.checkNotification(); }));\r\n\t\t}\r\n\t\telse {\r\n\t\t\treturn null;\r\n\t\t}\r\n\t}\r\n}\r\n"], "mappings": "8FA0BA,IAAaA,GAAsB,IAAA,CAA7B,MAAOA,CAAsB,CAClCC,YACSC,EACAC,EAAgB,CADhB,KAAAD,SAAAA,EACA,KAAAC,KAAAA,EAGD,KAAAC,IAAMC,EAAkBC,UAAUC,cAAgB,cAFtD,CAIJC,iBAAiBC,EAAeC,EAAc,CAC7C,OAAO,KAAKP,KAAKQ,IAChB,KAAKP,IAAM,UAAYK,EAAMG,SAAQ,EAAK,WAAaF,EAAOE,SAAQ,EACtE,CACCC,gBAAiB,GACjBC,QAAS,CAAE,cAAiB,KAAKZ,SAASa,WAAW,EAAK,CAAC,EAC3D,CAEH,CAEAC,mBAAmBC,EAA4B,CAC9C,OAAO,KAAKd,KAAKe,OAChB,KAAKd,IAAM,IAAMe,mBAAmBF,CAAoB,EACxD,CACCJ,gBAAiB,GACjBC,QAAS,CAAE,cAAiB,KAAKZ,SAASa,WAAW,EAAK,CAAC,EAC3D,CAEH,CAEAK,4BAA4BC,EAA0B,CACrD,OAAO,KAAKlB,KAAKmB,KAChB,KAAKlB,IACLiB,EACA,CACCR,gBAAiB,GACjBC,QAAS,CAAE,cAAiB,KAAKZ,SAASa,WAAW,EAAK,CAAC,EAC3D,CAEH,iDArCYf,GAAsBuB,EAAAC,CAAA,EAAAD,EAAAE,CAAA,CAAA,CAAA,CAAA,iCAAtBzB,EAAsB0B,QAAtB1B,EAAsB2B,UAAAC,WAFtB,MAAM,CAAA,CAAA,SAEN5B,CAAsB,GAAA,EChBnC,IAAa6B,GAAmB,IAAA,CAA1B,MAAOA,CAAmB,CAO/BC,YACSC,EACAC,EAAyB,CADzB,KAAAD,gBAAAA,EACA,KAAAC,SAAAA,EART,KAAAC,oBAA2B,IAAOC,EAAwB,IAAI,EACtD,KAAAC,kBAA4B,EAC5B,KAAAC,qBAA4B,KAC5B,KAAAC,YAAuB,GAC/B,KAAAC,cAAiC,CAAA,EAyBzB,KAAAC,eAAkC,KAnBzCC,aAAaC,QAAQ,oBAAqB,GAAG,EAE7C,KAAKC,kBAAiB,EACtB,KAAKC,mBAAkB,EAEvB,KAAKP,qBAAuBQ,OAAOC,YAAY,IAAK,CACnD,KAAKH,kBAAiB,CACvB,EAAG,IAAM,CACV,CAEAI,aAAW,CACN,KAAKV,sBAAwB,MAChCQ,OAAOG,cAAc,KAAKX,oBAAoB,EAE3C,KAAKG,gBACR,KAAKA,eAAeS,YAAW,CAEjC,CAGQL,oBAAkB,CAEzB,KAAKJ,eAAiB,KAAKP,SAASiB,kBAAkBC,UAAU,CAC/DC,KAAMA,IAAK,CAEV,KAAKT,kBAAiB,CACvB,EACAU,MAAQC,GAAY,CACnBC,QAAQC,IAAIF,CAAG,CAChB,EACA,CACF,CAEOG,oBAAkB,CACxBhB,aAAaC,QAAQ,oBAAqB,KAAKN,kBAAkBsB,SAAQ,CAAE,EAC3E,IAAIC,EAAW,KAAKzB,oBAAoB0B,SAAQ,EAChD,KAAK1B,oBAAoBkB,MAAMO,GAAW,GAAS,CAAC,CACrD,CAEQhB,mBAAiB,CACpB,KAAKL,cAGT,KAAKA,YAAc,GACf,KAAKL,SAAS4B,YAAW,GAC5B,KAAKzB,kBAAoB,EACzB,KAAKqB,mBAAkB,EACvB,KAAKnB,YAAc,IAGnB,KAAKN,gBAAgB8B,iBAAiB,EAAG,CAAC,EAAEX,UAAU,CACrDC,KAAOW,GAAY,CAClB,KAAK3B,kBAAoB2B,EAASC,OAClC,KAAKP,mBAAkB,EACvB,KAAKnB,YAAc,EACpB,EACAe,MAAQC,GAAO,CACdC,QAAQC,IAAIF,CAAG,EACf,KAAKhB,YAAc,EACpB,EACA,EAEH,CAEO2B,uBAAqB,CAC3B,YAAK1B,cAAgB,CAAA,EACd,KAAKP,gBACV8B,iBAAiB,IAAK,CAAC,EACvBI,KACAC,EACEJ,IACA,KAAKxB,cAAgBwB,EACd,GACP,CACD,CAEJ,CAEOK,cAAcC,EAAiB,CACrC,IAAIC,EAAmB,KAAK/B,cAAcgC,KAAKC,GAAKA,EAAEC,WAAaJ,CAAS,EAC5E,OAAIC,GAAKI,MAAaJ,GAAK,KACnB,KAAKtC,gBACV2C,mBAAmBL,EAAEM,oBAAoB,EACzCV,KAAKW,EAAI,IAAK,CAAG,KAAKlC,kBAAiB,CAAI,CAAC,CAAC,EAGxC,IAET,iDAnGYb,GAAmBgD,EAAAC,CAAA,EAAAD,EAAAE,CAAA,CAAA,CAAA,CAAA,iCAAnBlD,EAAmBmD,QAAnBnD,EAAmBoD,UAAAC,WAFnB,MAAM,CAAA,CAAA,SAENrD,CAAmB,GAAA", "names": ["NotificationAPIService", "constructor", "userInfo", "http", "url", "AppSettingService", "appConfig", "JourneyAPIUrl", "getNotifications", "limit", "offset", "get", "toString", "withCredentials", "headers", "authHeader", "deleteNotification", "notificationPersonId", "delete", "encodeURIComponent", "deleteMultipleNotifications", "notificationPersonIDs", "post", "\u0275\u0275inject", "UserInfoService", "HttpClient", "factory", "\u0275fac", "providedIn", "NotificationService", "constructor", "notificationAPI", "userInfo", "notificationChanged", "BehaviorSubject", "notificationTotal", "notificationInterval", "downloading", "notifications", "accountWatcher", "localStorage", "setItem", "checkNotification", "watchAccountChange", "window", "setInterval", "ngOnDestroy", "clearInterval", "unsubscribe", "UserInfoTimestamp", "subscribe", "next", "error", "err", "console", "log", "updateNotification", "toString", "v", "getValue", "isAnonymous", "getNotifications", "response", "length", "downloadNotifications", "pipe", "map", "deleteJobPost", "jobPostId", "j", "find", "x", "JobPostId", "undefined", "deleteNotification", "NotificationPersonId", "tap", "\u0275\u0275inject", "NotificationAPIService", "UserInfoService", "factory", "\u0275fac", "providedIn"] }