{"version":3,"sources":["./src/app/pages/logout/logout.module.ts","./src/app/pages/logout/logout.page.ts","./src/app/pages/logout/logout.page.html"],"names":["routes","path","component","LogoutPage","loadingController","router","authService","observerService","spinner","this","isLoggedIn","then","presentSpinner","publish","revokeAccessToken","dismiss","clearSession","navigate","replaceUrl","catch","message","create","showBackdrop","present","LogoutPageModule","forChild"],"mappings":"oQAUA,MAAMA,EAAiB,CACrB,CACEC,KAAM,GACNC,UCDG,M,MAAMC,EAGT,YACYC,EACAC,EACAC,EACAC,GAHA,KAAAH,oBACA,KAAAC,SACA,KAAAC,cACA,KAAAC,kBANZ,KAAAC,QAAU,KASV,YAEA,kBACIC,KAAKH,YAAYI,aAAaC,KAAK,KAC/BF,KAAKG,eAAe,eAAeD,KAAK,KACpCF,KAAKF,gBAAgBM,QAAQ,aAAc,IAC3CJ,KAAKH,YAAYQ,oBAAoBH,KAAK,KACtCF,KAAKD,QAAQO,UACbN,KAAKH,YAAYU,eACjBP,KAAKJ,OAAOY,SAAS,CAAC,SAAU,CAAEC,YAAY,MAEjDC,MAAM,KACHV,KAAKD,QAAQO,UACbN,KAAKH,YAAYU,eACjBP,KAAKJ,OAAOY,SAAS,CAAC,SAAU,CAAEC,YAAY,UAGvDC,MAAM,KACLV,KAAKH,YAAYU,eACjBP,KAAKJ,OAAOY,SAAS,CAAC,SAAU,CAAEC,YAAY,MAIhD,eAAeE,G,kDACjBX,KAAKD,cAAgBC,KAAKL,kBAAkBiB,OAAO,CAC/CD,QAASA,EACTE,cAAc,UAEZb,KAAKD,QAAQe,a,6CAtCdpB,GAAU,0C,uBAAVA,EAAU,sECZvB,uB,sHDYO,KDeA,Y,MAAMqB,G,6CAAAA,I,uBAAAA,I,2BATF,CACP,IACA,IACA,IACA,IACA,IAAaC,SAASzB,O,GAInB","file":"65.1f7020e3b1090e55d175.js","sourcesContent":["import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { FormsModule } from '@angular/forms';\nimport { Routes, RouterModule } from '@angular/router';\nimport { FontAwesomeModule } from '@fortawesome/angular-fontawesome';\n\nimport { IonicModule } from '@ionic/angular';\n\nimport { LogoutPage } from './logout.page';\n\nconst routes: Routes = [\n {\n path: '',\n component: LogoutPage\n }\n];\n\n@NgModule({\n imports: [\n CommonModule,\n FormsModule,\n IonicModule,\n FontAwesomeModule,\n RouterModule.forChild(routes)\n ],\n declarations: [LogoutPage]\n})\nexport class LogoutPageModule {}\n","import { Component, OnInit } from '@angular/core';\nimport { LoadingController } from '@ionic/angular';\nimport { Router } from '@angular/router';\nimport { AuthService } from '../../services/auth.service';\nimport { ObserverService } from '../../services//observer.service';\n\n@Component({\n selector: 'app-logout',\n templateUrl: './logout.page.html',\n styleUrls: ['./logout.page.scss'],\n})\n\nexport class LogoutPage implements OnInit {\n spinner = null;\n\n constructor(\n private loadingController: LoadingController,\n private router: Router,\n private authService: AuthService,\n private observerService: ObserverService\n ) { }\n\n ngOnInit() { }\n\n ionViewDidEnter() {\n this.authService.isLoggedIn().then(() => {\n this.presentSpinner('Logging out').then(() => {\n this.observerService.publish('logged_out', {});\n this.authService.revokeAccessToken().then(() => {\n this.spinner.dismiss();\n this.authService.clearSession();\n this.router.navigate(['start'], { replaceUrl: true });\n })\n .catch(() => {\n this.spinner.dismiss();\n this.authService.clearSession();\n this.router.navigate(['start'], { replaceUrl: true });\n });\n });\n }).catch(() => {\n this.authService.clearSession();\n this.router.navigate(['start'], { replaceUrl: true });\n });\n }\n\n async presentSpinner(message) {\n this.spinner = await this.loadingController.create({\n message: message,\n showBackdrop: false,\n });\n await this.spinner.present();\n }\n\n}\n",""],"sourceRoot":"webpack:///"}