{"version":3,"file":"src_app_profile_profile_module_ts.js","mappings":";;;;;;;;;;;;;;;;;;AAAyC;AACc;AAEV;AAE7C,MAAM,MAAM,GAAW;IACrB;QACE,IAAI,EAAE,EAAE;QACR,SAAS,EAAE,sDAAW;KACvB;CACF,CAAC;IAMW,wBAAwB,SAAxB,wBAAwB;CAAG;AAA3B,wBAAwB;IAJpC,uDAAQ,CAAC;QACR,OAAO,EAAE,CAAC,kEAAqB,CAAC,MAAM,CAAC,CAAC;QACxC,OAAO,EAAE,CAAC,yDAAY,CAAC;KACxB,CAAC;GACW,wBAAwB,CAAG;AAAH;;;;;;;;;;;;;;;;;;;;;;;AChBI;AACM;AACF;AAEA;AAEuB;AAEvB;IAWhC,iBAAiB,SAAjB,iBAAiB;CAAG;AAApB,iBAAiB;IAT7B,uDAAQ,CAAC;QACR,OAAO,EAAE;YACP,yDAAY;YACZ,uDAAW;YACX,uDAAW;YACX,6EAAwB;SACzB;QACD,YAAY,EAAE,CAAC,sDAAW,CAAC;KAC5B,CAAC;GACW,iBAAiB,CAAG;AAAH;;;;;;;;;;;;;;;;;;;;;;;;ACnBoB;AAC4B;AACP;IAQ1D,WAAW,SAAX,WAAW;IAOxB,YAAmB,OAAuB,EACnC,UAA6B;QADjB,YAAO,GAAP,OAAO,CAAgB;QACnC,eAAU,GAAV,UAAU,CAAmB;QALpC,UAAK,GAAQ,EAAE,CAAC;IAKwB,CAAC;IAIzC,QAAQ;QACR,cAAc;QACZ,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC,SAAS;QACtC,MAAM;IACR,CAAC;IAGD,gBAAgB;IAGhB,CAAC;IAKK,YAAY,CAAC,CAAC;;YACpB,MAAM,IAAI,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,UAAU,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC,CAAC;YAEvD,IAAI,CAAC,UAAU,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,cAAc;YAC7D;;;;;gBAKI;YAEF,IAAG,CAAC,KAAK,IAAI,EAAC;gBACZ,IAAG,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,QAAQ,IAAI,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC,EAAC;oBACzE,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,GAAG,EAAC,IAAI,EAAC,IAAI,EAAC,IAAI,CAAC,CAAC;iBAC/C;;oBACI,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,CAAC;aACtC;QAEH,CAAC;KAAA;CAGA;;YAxDQ,8EAAc;YADd,qFAAiB;;AASb,WAAW;IALvB,wDAAS,CAAC;QACT,QAAQ,EAAE,aAAa;QACvB,oEAAkC;;KAEnC,CAAC;GACW,WAAW,CAgDvB;AAhDuB","sources":["./src/app/profile/profile-routing.module.ts","./src/app/profile/profile.module.ts","./src/app/profile/profile.page.ts"],"sourcesContent":["import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { ProfilePage } from './profile.page';\n\nconst routes: Routes = [\n {\n path: '',\n component: ProfilePage\n }\n];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class ProfilePageRoutingModule {}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { FormsModule } from '@angular/forms';\n\nimport { IonicModule } from '@ionic/angular';\n\nimport { ProfilePageRoutingModule } from './profile-routing.module';\n\nimport { ProfilePage } from './profile.page';\n\n@NgModule({\n imports: [\n CommonModule,\n FormsModule,\n IonicModule,\n ProfilePageRoutingModule\n ],\n declarations: [ProfilePage]\n})\nexport class ProfilePageModule {}\n","import { Component, OnInit } from '@angular/core';\nimport { AppserviceService } from '../_service/appservice/appservice.service';\nimport { ApiLinkService } from '../_service/api-link/api-link.service';\n\n\n@Component({\n selector: 'app-profile',\n templateUrl: './profile.page.html',\n styleUrls: ['./profile.page.scss'],\n})\nexport class ProfilePage implements OnInit {\n\n\nuInfo: any = [];\n\n\n\nconstructor(public apiLink: ApiLinkService,\npublic appService: AppserviceService) { }\n\n\n\nngOnInit() {\n//console.log(\n this.uInfo = this.appService.credsInfo\n //); \n}\n\n\nionViewWillEnter(){\n\n\n}\n\n\n\n\nasync updUserPrefs(x){\nawait new Promise(resolve => setTimeout(resolve, 100));\n\nthis.appService.updateUserProfile(this.uInfo); //profile info\n/*\n if(x === 'dl'){\n if(this.appService.credsInfo.deflanes) this.appService.getLanes();\n return;\n }\n */ \n\n if(x === 'as'){\n if(this.appService.credsInfo.autoSync && this.appService.apiItemsList[0]){\n this.appService.updateItems('i',null,null,null); \n } \n else this.appService.clearItemIntv();\n }\n\n}\n\n \n}\n"],"names":[],"sourceRoot":"webpack:///"}