{"version":3,"file":"src_app_modules_login_login_module_ts.60181a2d0ac4da44.js","mappings":"0XAWO,MAAMA,EAGXC,YAAYC,EAA8BC,4BACxCC,KAAKC,KAAO,IAAIA,KAAWH,EAC7B,CAEOI,QAAWC,EAAeC,EAA+B,MAC9D,MAAMC,EAAU,IAAKL,KAAKM,mBAC1B,MAAa,SAATF,IAAiBC,EAAQE,aAAkB,QAExCP,KAAKC,KAAKO,IAAOR,KAAKS,aAAaN,EAAOO,YAAqBL,EACxE,CAEOM,KAAQR,EAAeS,GAC5B,OAAOZ,KAAKC,KAAKU,KAAQX,KAAKS,aAAaN,EAAOO,YAAqBE,EAAMZ,KAAKM,kBACpF,CAEOO,OAAUV,EAAeS,GAC9B,OAAOZ,KAAKC,KAAKU,KAAQX,KAAKS,aAAaN,EAAOO,YAAqBE,EAAMZ,KAAKM,kBACpF,CAEOQ,UAAaX,EAAeS,GACjC,OAAOZ,KAAKC,KAAKU,KAAQX,KAAKS,aAAaN,EAAOO,YAAqBE,EAAMZ,KAAKM,kBACpF,CAEOS,OAAUZ,EAAeS,GAC9B,OAAOZ,KAAKC,KAAKe,IAAOhB,KAAKS,aAAaN,EAAOO,YAAqBE,EAAMZ,KAAKM,kBACnF,CAEOW,OAAUd,GACf,OAAOH,KAAKC,KAAKgB,OAAUjB,KAAKS,aAAaN,EAAOO,YAAqBV,KAAKM,kBAChF,CAEQG,aAAaN,EAAee,GAClC,MAAO,GAAGA,KAAkBf,GAC9B,CAEQG,kBACN,MAAO,CACLa,QAAS,IAAIlB,KAAY,CAAE,eAAgBD,KAAKD,kBAAkBqB,sBAEtE,wCA1CWxB,GAAUyB,mDAAVzB,EAAU0B,QAAV1B,EAAU,qBAFT,mCCYP,IAAM2B,EAAN,cAA6BC,IAClC3B,YACY4B,EACHC,EACCC,EACAxB,EACAyB,GAERC,MAAMJ,GANIzB,WACHA,2BACCA,kBACAA,aACAA,kBAGV,CAEA8B,WACE9B,KAAK+B,UAAUC,YAAYC,eAAejC,KAC5C,CAEQ+B,UACN,OAAO/B,KAAK2B,WAAWzB,QAAa,QAAQgC,QAC1CC,KAAI,KACF,MAAMC,EACJpC,KAAKG,MAAMkC,SAASC,YAAYF,WAAWG,QAAQC,OAAOC,SAASC,OAAQ,KAAOC,SAEpF,IAAIC,EACAR,GAAWS,SAAS,OAEtBD,EADmB,IAAI3C,KAAW,CAAE6C,WAAYV,EAAUW,MAAM,KAAK,KAC5CvC,IAAI,kBAG/B,MAAMwC,EAAc,CAAEC,aAAc,IACpC,IAAIC,EAAeN,EAAc,QAAU,OAEvCA,OAC8BO,KAAWP,GAE/BQ,WACVF,EAAe,YAGjBF,EAAYC,aAAaI,cAAmBT,GAG9C5C,KAAK4B,YAAY0B,YAAYJ,GACzBd,EACFmB,aAAaC,QAAQ,YAAapB,GAElCmB,aAAaE,WAAW,aAG1BzD,KAAK0B,oBAAoBgC,UAAUR,EAAcF,EAAW,GAGlE,yCAlDWzB,GAAcF,mFAAdE,EAAcoC,uNCrB3BtC,iBACEA,yBACFA,qnBDmBaE,qUAAcqC,KAP1BC,QAOYtC,wCETb,MAAMuC,EAAiB,CACrB,CACEC,KAAM,GACNC,UAAWzC,EACX0C,KAAM,CAAE,CAACC,yBAAgCC,YAItC,SAASC,IACd,OAAOC,GACT,CAYO,MAAMC,2CAAW,0BAAXA,gCARTC,KACAC,KACAC,aAAqB,CAAEC,OAAQN,IAC/BO,IACAC,cAAsBd,KAAO","names":["ApiService","constructor","handler","appVersionService","this","http","getData","route","type","options","generateHeaders","responseType","get","composeRoute","environment","post","body","create","associate","update","put","delete","environmentUrl","headers","getCurrentVersion","core","factory","LoginComponent","component_abstract","cdr","oidcSecurityService","apiService","authService","super","ngOnInit","wakeApp","subscribe","untilDestroyed","pipe","tap","returnUrl","snapshot","queryParams","replace","window","location","origin","app_routes_const","idTokenHint","includes","fromString","split","authOptions","customParams","authConfigId","jwt_decode_esm","objectId","id_token_hint","setConfigId","localStorage","setItem","removeItem","authorize","selectors","__decorate","ngneat_until_destroy","routes","path","component","data","route_data","dashboard_view_type","playerFactory","lottie_default","LoginModule","common","progress_spinner","ngx_lottie","player","animation_module","router"],"sourceRoot":"webpack:///","sources":["./src/app/services/api.service.ts","./src/app/modules/login/login.component.ts","./src/app/modules/login/login.component.html","./src/app/modules/login/login.module.ts"],"sourcesContent":["import { HttpBackend, HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Observable } from 'rxjs';\n\nimport { AppVersionService } from '@app/services/app-version.service';\n\nimport { environment } from '../../environments/environment';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class ApiService {\n private http: HttpClient;\n\n constructor(handler: HttpBackend, private appVersionService: AppVersionService) {\n this.http = new HttpClient(handler);\n }\n\n public getData(route: string, type: 'json' | 'html' | null = null): Observable {\n const options = { ...this.generateHeaders() };\n if (type === 'html') options['responseType'] = 'text';\n\n return this.http.get(this.composeRoute(route, environment.apiUrl), options);\n }\n\n public post(route: string, body?: unknown): Observable {\n return this.http.post(this.composeRoute(route, environment.apiUrl), body, this.generateHeaders());\n }\n\n public create(route: string, body: unknown): Observable {\n return this.http.post(this.composeRoute(route, environment.apiUrl), body, this.generateHeaders());\n }\n\n public associate(route: string, body: unknown): Observable {\n return this.http.post(this.composeRoute(route, environment.apiUrl), body, this.generateHeaders());\n }\n\n public update(route: string, body: unknown): Observable {\n return this.http.put(this.composeRoute(route, environment.apiUrl), body, this.generateHeaders());\n }\n\n public delete(route: string): Observable {\n return this.http.delete(this.composeRoute(route, environment.apiUrl), this.generateHeaders());\n }\n\n private composeRoute(route: string, environmentUrl: string): string {\n return `${environmentUrl}/${route}`;\n }\n\n private generateHeaders() {\n return {\n headers: new HttpHeaders({ 'X-PU-VERSION': this.appVersionService.getCurrentVersion() }),\n };\n }\n}\n","import { HttpParams } from '@angular/common/http';\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, OnInit } from '@angular/core';\nimport { ActivatedRoute } from '@angular/router';\nimport { UntilDestroy } from '@ngneat/until-destroy';\nimport { AuthOptions, OidcSecurityService } from 'angular-auth-oidc-client';\nimport jwt_decode from 'jwt-decode';\nimport { Observable } from 'rxjs';\nimport { tap } from 'rxjs/operators';\n\nimport { ComponentAbstract } from '@app/components/abstract/component.abstract';\nimport { ApiService } from '@app/services/api.service';\nimport { AppRoutes } from '@shared/constants/app-routes.const';\nimport { AuthService } from '@shared/services/auth.service';\n\n@UntilDestroy()\n@Component({\n selector: 'app-login',\n templateUrl: './login.component.html',\n styleUrls: ['./login.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class LoginComponent extends ComponentAbstract implements OnInit {\n constructor(\n protected cdr: ChangeDetectorRef,\n public oidcSecurityService: OidcSecurityService,\n private apiService: ApiService,\n private route: ActivatedRoute,\n private authService: AuthService\n ) {\n super(cdr);\n }\n\n ngOnInit() {\n this.wakeApp().subscribe().untilDestroyed(this);\n }\n\n private wakeApp(): Observable {\n return this.apiService.getData('Wake').pipe(\n tap(() => {\n const returnUrl =\n this.route.snapshot.queryParams.returnUrl?.replace(window.location.origin, '') || AppRoutes.HOME;\n\n let idTokenHint: string;\n if (returnUrl?.includes('?')) {\n const httpParams = new HttpParams({ fromString: returnUrl.split('?')[1] });\n idTokenHint = httpParams.get('id_token_hint');\n }\n\n const authOptions = { customParams: {} } as AuthOptions;\n let authConfigId = idTokenHint ? 'email' : 'main';\n\n if (idTokenHint) {\n const jwtInfo: IdTokenJwtInfo = jwt_decode(idTokenHint);\n\n if (jwtInfo.objectId) {\n authConfigId = 'objectId';\n }\n\n authOptions.customParams['id_token_hint'] = idTokenHint;\n }\n\n this.authService.setConfigId(authConfigId);\n if (returnUrl) {\n localStorage.setItem('returnUrl', returnUrl);\n } else {\n localStorage.removeItem('returnUrl');\n }\n\n this.oidcSecurityService.authorize(authConfigId, authOptions);\n })\n );\n }\n}\n\nexport class IdTokenJwtInfo {\n nbf: number;\n exp: number;\n iat: number;\n iss: string;\n oid: string;\n objectId: string;\n}\n","
\n \n
\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { MatProgressSpinnerModule } from '@angular/material/progress-spinner';\nimport { RouterModule, Routes } from '@angular/router';\nimport player from 'lottie-web';\nimport { LottieModule } from 'ngx-lottie';\n\nimport { LoginComponent } from '@app/modules/login/login.component';\nimport { DashboardViewType } from '@shared/enums/dashboard-view-type';\nimport { RouteData } from '@shared/enums/route-data';\nimport { AnimationModule } from '@ui-components/components/animation/animation.module';\n\nconst routes: Routes = [\n {\n path: '',\n component: LoginComponent,\n data: { [RouteData.DASHBOARD_VIEW_TYPE]: DashboardViewType.NONE },\n },\n];\n\nexport function playerFactory() {\n return player;\n}\n@NgModule({\n declarations: [LoginComponent],\n imports: [\n CommonModule,\n MatProgressSpinnerModule,\n LottieModule.forRoot({ player: playerFactory }),\n AnimationModule,\n RouterModule.forChild(routes),\n ],\n exports: [LoginComponent],\n})\nexport class LoginModule {}\n"],"x_google_ignoreList":[]}