{"version":3,"sources":["../../web.ts"],"names":["AppWeb","handleVisibilityChange","data","isActive","document","hidden","notifyListeners","addEventListener","this","unimplemented","url"],"mappings":"uNAIaA,EAAO,kDAClB,mBAMI,OANJ,qBACE,gBA4BMC,uBAAyB,WAC/B,IAAMC,EAAO,CACXC,UAA8B,IAApBC,SAASC,QAGrB,EAAKC,gBAAgB,iBAAkBJ,GACnCE,SAASC,OACX,EAAKC,gBAAgB,QAAS,MAE9B,EAAKA,gBAAgB,SAAU,KAEnC,EAtCEF,SAASG,iBACP,mBACA,EAAKN,wBACL,GACA,CACJ,CAoBC,OApBA,oCAED,WACE,MAAMO,KAAKC,cAAc,0BAC3B,GAAC,sEAED,8FACQD,KAAKC,cAAc,2BAA0B,gDACpD,kDAJA,IAIA,2EAED,iHACS,CAAEC,IAAK,KAAI,2CACnB,kDAJA,IAIA,uEAED,iHACS,CAAEP,UAA8B,IAApBC,SAASC,SAAiB,2CAC9C,kDAJA,IAIA,0EAED,8FACQG,KAAKC,cAAc,2BAA0B,gDACpD,kDAJA,MAIA,EA5BiB,C,MAAQ,E","file":"static/js/7.27e756c8.chunk.js","sourcesContent":["import { WebPlugin } from '@capacitor/core';\n\nimport type { AppInfo, AppPlugin, AppLaunchUrl, AppState } from './definitions';\n\nexport class AppWeb extends WebPlugin implements AppPlugin {\n constructor() {\n super();\n document.addEventListener(\n 'visibilitychange',\n this.handleVisibilityChange,\n false,\n );\n }\n\n exitApp(): Promise {\n throw this.unimplemented('Not implemented on web.');\n }\n\n async getInfo(): Promise {\n throw this.unimplemented('Not implemented on web.');\n }\n\n async getLaunchUrl(): Promise {\n return { url: '' };\n }\n\n async getState(): Promise {\n return { isActive: document.hidden !== true };\n }\n\n async minimizeApp(): Promise {\n throw this.unimplemented('Not implemented on web.');\n }\n\n private handleVisibilityChange = () => {\n const data = {\n isActive: document.hidden !== true,\n };\n\n this.notifyListeners('appStateChange', data);\n if (document.hidden) {\n this.notifyListeners('pause', null);\n } else {\n this.notifyListeners('resume', null);\n }\n };\n}\n"],"sourceRoot":""}