{"version":3,"sources":["webpack:///src/C:/BuildAgent/work/709799f7b218f10/src/pages/patients/patients-dashboard/recertifications-due.ts","webpack:///./src/pages/patients/patients-dashboard/recertifications-due.html"],"names":["RecertificationsDue","patientsService","router","toastrService","bindingEngine","selectedBranches","isLoading","isError","isAuthorized","recertificationDueCount","loadingCount","scheduleReportsRoutes","hasPermission","this","_patientsService","_router","_toastrService","_bindingEngine","initSubscriptions","getRecertificationDueData","_locationSubscription","collectionObserver","subscribe","getRecertificationsDueCount","response","reverse","status","selectedStatusId","params","statuses","toString","locationIds","queryString","navigate","error","title","message","url","window","open","recertName","toLocaleLowerCase","includes","dispose","defaultBinding","toView","module","exports"],"mappings":"8/CAmBaA,EAAb,WAgBI,WACIC,EACAC,EACAC,EACAC,I,4FAA4B,SAlBzB,KAAAC,iBAA6B,GAM7B,KAAAC,WAAqB,EACrB,KAAAC,SAAmB,EACnB,KAAAC,cAAwB,EACxB,KAAAC,wBAAsD,GACtD,KAAAC,aAAuB,EACvB,KAAAC,sBAAuC,wBACvC,KAAAC,eAAyB,EAQ5BC,KAAKC,iBAAmBb,EACxBY,KAAKE,QAAUb,EACfW,KAAKG,eAAiBb,EACtBU,KAAKI,eAAiBb,CACzB,C,UA1BL,O,EAAA,E,EAAA,kC,kJA8BQ,OADAS,KAAKK,oB,SACCL,KAAKM,4B,+CACd,GA/BL,0CAiC4B,WACpBN,KAAKO,sBAAwBP,KAAKI,eAAeI,mBAAmBR,KAAKR,kBAAkBiB,WAAU,WACjG,EAAKH,2BACR,GACJ,GArCL,kD,wJA4C2B,O,SAHfN,KAAKN,SAAU,EACfM,KAAKL,cAAe,EACpBK,KAAKP,WAAY,E,SACIO,KAAKC,iBAAiBS,4BAA4BV,KAAKR,kB,OAAxEmB,E,OACJX,KAAKJ,wBAA0Be,EAASC,U,kDAExCZ,KAAKN,SAAU,EACE,MAAb,KAAEmB,SACFb,KAAKL,cAAe,G,yBAGxBK,KAAKP,WAAY,E,4EAExB,GAtDL,gDAwDqCqB,GAC7B,GAAIA,EAAkB,CAClB,IAAIC,EAAuC,CACvCC,SAAU,CAACF,EAAiBG,YAC5BC,YAAalB,KAAKR,kBAElB2B,EAAc,2BAAiBJ,GACnCf,KAAKE,QAAQkB,SAAb,yDAAwED,GAC3E,MACGnB,KAAKG,eAAekB,MAAM,CACtBC,MAAO,QACPC,QAAS,gEAGpB,GAtEL,iDAyEQ,IAAIR,EAAS,CACTG,YAAalB,KAAKR,kBAElB2B,EAAc,2BAAiBJ,GAC/BS,EAAM,kDAAH,OAAqDL,GAC5DM,OAAOC,KAAKF,EACf,GA/EL,8BAiFmBG,GAGX,OAFAA,EAAaA,EAAWC,qBAETC,SAAS,YACb,SACAF,EAAWE,SAAS,WACpB,UAGJ,SACV,GA3FL,iC,MA8FkC,QAA1B,EAAA7B,KAAKO,6BAAqB,SAAEuB,SAC/B,I,8BA/FL,KAEI,GADC,mBAAS,CAAEC,eAAgB,cAAYC,S,+DAD/B7C,EAAmB,GAF/B,aACA,wBAAc,wB,uBAkByB,mB,OAAA,IAAf,sCAAe,SAClB,mBADkB,OAClB,IAAN,oBAAM,SACc,mBADd,OACc,IAAb,kCAAa,SACA,mBADA,OACA,IAAb,kCAAa,YApBvBA,E,8ECnBb8C,EAAOC,QAAU,8pE","file":"chunk.f3db204fd39e65524720.js","sourcesContent":["import {\r\n bindable,\r\n bindingMode,\r\n BindingEngine,\r\n Disposable,\r\n autoinject,\r\n buildQueryString,\r\n customElement\r\n} from \"aurelia-framework\";\r\nimport { Router, RouteConfig } from \"aurelia-router\";\r\n\r\nimport { IRecertificationDueCount } from \"../../../interfaces/i-get-patient\";\r\nimport { IGetRecertificationsDueQuery } from \"../../../interfaces/i-recertifications-due\";\r\nimport { PatientsService } from \"../../../services/patient-service\";\r\nimport { ToastrService } from \"../../../services/toastr-service\";\r\nimport { scheduleReportsRoutes } from \"../../reports/schedule-reports/schedule-reports-routes\";\r\n\r\n@autoinject\r\n@customElement(\"recertifications-due\")\r\nexport class RecertificationsDue {\r\n @bindable({ defaultBinding: bindingMode.toView })\r\n public selectedBranches: string[] = [];\r\n private _locationSubscription: Disposable;\r\n private _bindingEngine: BindingEngine;\r\n private _patientsService: PatientsService;\r\n private _router: Router;\r\n private _toastrService: ToastrService;\r\n public isLoading: boolean = false;\r\n public isError: boolean = false;\r\n public isAuthorized: boolean = true;\r\n public recertificationDueCount: IRecertificationDueCount[] = [];\r\n public loadingCount: number = 3;\r\n public scheduleReportsRoutes: RouteConfig[] = scheduleReportsRoutes;\r\n public hasPermission: boolean = false;\r\n\r\n public constructor(\r\n patientsService: PatientsService,\r\n router: Router,\r\n toastrService: ToastrService,\r\n bindingEngine: BindingEngine\r\n ) {\r\n this._patientsService = patientsService;\r\n this._router = router;\r\n this._toastrService = toastrService;\r\n this._bindingEngine = bindingEngine;\r\n }\r\n\r\n public async attached() {\r\n this.initSubscriptions();\r\n await this.getRecertificationDueData();\r\n }\r\n\r\n public initSubscriptions() {\r\n this._locationSubscription = this._bindingEngine.collectionObserver(this.selectedBranches).subscribe(() => {\r\n this.getRecertificationDueData();\r\n });\r\n }\r\n\r\n public async getRecertificationDueData() {\r\n try {\r\n this.isError = false;\r\n this.isAuthorized = true;\r\n this.isLoading = true;\r\n let response = await this._patientsService.getRecertificationsDueCount(this.selectedBranches);\r\n this.recertificationDueCount = response.reverse();\r\n } catch (e) {\r\n this.isError = true;\r\n if (e.status === 403) {\r\n this.isAuthorized = false;\r\n }\r\n } finally {\r\n this.isLoading = false;\r\n }\r\n }\r\n\r\n public navigateToRecertDueReport(selectedStatusId: string) {\r\n if (selectedStatusId) {\r\n let params: IGetRecertificationsDueQuery = {\r\n statuses: [selectedStatusId.toString()],\r\n locationIds: this.selectedBranches\r\n };\r\n let queryString = buildQueryString(params);\r\n this._router.navigate(`/reports/schedule-reports/recertifications-due?${queryString}`);\r\n } else {\r\n this._toastrService.error({\r\n title: \"Error\",\r\n message: \"There was a problem while redirecting you. Please report it.\"\r\n });\r\n }\r\n }\r\n\r\n public navigateToViewReportLink() {\r\n let params = {\r\n locationIds: this.selectedBranches\r\n };\r\n let queryString = buildQueryString(params);\r\n let url = `/reports/schedule-reports/recertifications-due?${queryString}`;\r\n window.open(url);\r\n }\r\n\r\n public getType(recertName: string) {\r\n recertName = recertName.toLocaleLowerCase();\r\n\r\n if (recertName.includes(\"past due\")) {\r\n return \"danger\";\r\n } else if (recertName.includes(\"at risk\")) {\r\n return \"warning\";\r\n }\r\n\r\n return \"primary\";\r\n }\r\n\r\n public detached() {\r\n this._locationSubscription?.dispose();\r\n }\r\n}\r\n","module.exports = \"\\r\\n\";"],"sourceRoot":""}