{"version":3,"file":"chunk-ezqkhdhw.js","sources":["packages/vanilla/lib/features/html/src/html-bootstrap.service.ts","packages/vanilla/lib/features/html/src/html.feature.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\nimport { DeviceService, HtmlNode, NativeAppService, OnFeatureInit, Page, UserService, UserUpdateEvent } from '@frontend/vanilla/core';\nimport { filter } from 'rxjs/operators';\n\n@Injectable()\nexport class HtmlBootstrapService implements OnFeatureInit {\n constructor(\n private user: UserService,\n private htmlNode: HtmlNode,\n private page: Page,\n private deviceService: DeviceService,\n private nativeAppService: NativeAppService,\n ) {}\n\n onFeatureInit() {\n this.htmlNode.setAttribute('data-domain', this.page.domain);\n this.htmlNode.setCssClass(`th-${this.page.theme}`, true);\n this.htmlNode.setCssClass('item-path-enabled', this.page.itemPathDisplayModeEnabled);\n this.htmlNode.setCssClass('device-mobile', this.deviceService.isMobile);\n this.htmlNode.setCssClass('device-mobile-phone', this.deviceService.isMobilePhone);\n this.htmlNode.setCssClass('device-tablet', this.deviceService.isTablet);\n this.htmlNode.setCssClass('device-desktop', !this.deviceService.isMobile);\n this.htmlNode.setCssClass('device-touch', this.deviceService.isTouch);\n\n this.htmlNode.setCssClass('native-download-client-app', this.nativeAppService.isDownloadClientApp);\n this.htmlNode.setCssClass('native-download-client-wrapper', this.nativeAppService.isDownloadClientWrapper);\n this.htmlNode.setCssClass('native-app', this.nativeAppService.isNativeApp);\n this.htmlNode.setCssClass('native-wrapper', this.nativeAppService.isNativeWrapper && !this.nativeAppService.isNativeWrapperODR);\n this.htmlNode.setCssClass('native-wrapper-odr', this.nativeAppService.isNativeWrapperODR);\n\n if (!this.page.isSingleDomainApp) {\n this.htmlNode.setCssClass(`product-${this.page.product}`, true);\n }\n\n this.setCountryAttribute();\n this.setHtmlClass();\n\n this.user.events.pipe(filter((e): e is UserUpdateEvent => e instanceof UserUpdateEvent)).subscribe((e: UserUpdateEvent) => {\n const diff = e.diff;\n\n if (diff.has('workflowType') || diff.has('isAuthenticated')) {\n this.setHtmlClass();\n }\n\n if (diff.has('country') || diff.has('isAuthenticated')) {\n this.setCountryAttribute();\n }\n });\n }\n\n private setCountryAttribute() {\n if (this.user.isAuthenticated) {\n this.htmlNode.setAttribute('data-country', this.user.country);\n } else {\n this.htmlNode.setAttribute('data-country', null);\n }\n }\n\n private setHtmlClass() {\n const hasWorkflow = this.user.workflowType !== 0;\n\n this.htmlNode.setCssClass('has-workflow', hasWorkflow);\n this.htmlNode.setCssClass('unauthenticated', !this.user.isAuthenticated);\n this.htmlNode.setCssClass('authenticated', this.user.isAuthenticated);\n }\n}\n","import { runOnFeatureInit } from '@frontend/vanilla/core';\n\nimport { HtmlBootstrapService } from './html-bootstrap.service';\n\nexport function provide() {\n return [runOnFeatureInit(HtmlBootstrapService)];\n}\n"],"names":["HtmlBootstrapService","constructor","user","htmlNode","page","deviceService","nativeAppService","onFeatureInit","setAttribute","domain","setCssClass","theme","itemPathDisplayModeEnabled","isMobile","isMobilePhone","isTablet","isTouch","isDownloadClientApp","isDownloadClientWrapper","isNativeApp","isNativeWrapper","isNativeWrapperODR","isSingleDomainApp","product","setCountryAttribute","setHtmlClass","events","pipe","filter","e","UserUpdateEvent","subscribe","diff","has","isAuthenticated","country","hasWorkflow","workflowType","ɵɵinject","UserService","HtmlNode","Page","DeviceService","NativeAppService","o","factory","ɵfac","_HtmlBootstrapService","provide","runOnFeatureInit"],"mappings":"4GAMA,IAAaA,CAAoB,CAAA,CAAA,IAAA,CAA3B,IAAOA,EAAP,MAAOA,CAAoB,CAC7BC,WAAAA,CACYC,CACAC,CAAAA,CAAAA,CACAC,CACAC,CAAAA,CAAAA,CACAC,EAAkC,CAJlC,IAAA,CAAAJ,IAAAA,CAAAA,CAAAA,CACA,IAAAC,CAAAA,QAAAA,CAAAA,CACA,CAAA,IAAA,CAAAC,KAAAA,CACA,CAAA,IAAA,CAAAC,aAAAA,CAAAA,CAAAA,CACA,KAAAC,gBAAAA,CAAAA,EACT,CAEHC,aAAAA,EAAa,CACT,IAAKJ,CAAAA,QAAAA,CAASK,YAAa,CAAA,aAAA,CAAe,IAAKJ,CAAAA,IAAAA,CAAKK,MAAM,CAAA,CAC1D,KAAKN,QAASO,CAAAA,WAAAA,CAAY,CAAM,GAAA,EAAA,IAAA,CAAKN,IAAKO,CAAAA,KAAK,CAAI,CAAA,CAAA,CAAA,CAAI,EACvD,IAAKR,CAAAA,QAAAA,CAASO,WAAY,CAAA,mBAAA,CAAqB,IAAKN,CAAAA,IAAAA,CAAKQ,0BAA0B,CAAA,CACnF,KAAKT,QAASO,CAAAA,WAAAA,CAAY,eAAiB,CAAA,IAAA,CAAKL,cAAcQ,QAAQ,CAAA,CACtE,IAAKV,CAAAA,QAAAA,CAASO,YAAY,qBAAuB,CAAA,IAAA,CAAKL,aAAcS,CAAAA,aAAa,CACjF,CAAA,IAAA,CAAKX,QAASO,CAAAA,WAAAA,CAAY,gBAAiB,IAAKL,CAAAA,aAAAA,CAAcU,QAAQ,CAAA,CACtE,IAAKZ,CAAAA,QAAAA,CAASO,WAAY,CAAA,gBAAA,CAAkB,CAAC,IAAKL,CAAAA,aAAAA,CAAcQ,QAAQ,CAAA,CACxE,IAAKV,CAAAA,QAAAA,CAASO,WAAY,CAAA,cAAA,CAAgB,KAAKL,aAAcW,CAAAA,OAAO,CAEpE,CAAA,IAAA,CAAKb,SAASO,WAAY,CAAA,4BAAA,CAA8B,IAAKJ,CAAAA,gBAAAA,CAAiBW,mBAAmB,CACjG,CAAA,IAAA,CAAKd,QAASO,CAAAA,WAAAA,CAAY,gCAAkC,CAAA,IAAA,CAAKJ,gBAAiBY,CAAAA,uBAAuB,EACzG,IAAKf,CAAAA,QAAAA,CAASO,WAAY,CAAA,YAAA,CAAc,KAAKJ,gBAAiBa,CAAAA,WAAW,CACzE,CAAA,IAAA,CAAKhB,SAASO,WAAY,CAAA,gBAAA,CAAkB,IAAKJ,CAAAA,gBAAAA,CAAiBc,eAAmB,EAAA,CAAC,IAAKd,CAAAA,gBAAAA,CAAiBe,kBAAkB,CAC9H,CAAA,IAAA,CAAKlB,QAASO,CAAAA,WAAAA,CAAY,qBAAsB,IAAKJ,CAAAA,gBAAAA,CAAiBe,kBAAkB,CAAA,CAEnF,KAAKjB,IAAKkB,CAAAA,iBAAAA,EACX,IAAKnB,CAAAA,QAAAA,CAASO,WAAY,CAAA,CAAA,QAAA,EAAW,IAAKN,CAAAA,IAAAA,CAAKmB,OAAO,CAAI,CAAA,CAAA,CAAA,CAAI,CAGlE,CAAA,IAAA,CAAKC,mBAAmB,EAAA,CACxB,IAAKC,CAAAA,YAAAA,GAEL,IAAKvB,CAAAA,IAAAA,CAAKwB,MAAOC,CAAAA,IAAAA,CAAKC,EAAQC,CAAAA,CAAAA,EAA4BA,CAAaC,YAAAA,EAAe,CAAC,CAAEC,CAAAA,SAAAA,CAAWF,CAAsB,EAAA,CACtH,IAAMG,CAAOH,CAAAA,CAAAA,CAAEG,IAEXA,CAAAA,CAAAA,CAAAA,CAAKC,IAAI,cAAc,CAAA,EAAKD,CAAKC,CAAAA,GAAAA,CAAI,iBAAiB,CAAA,GACtD,IAAKR,CAAAA,YAAAA,IAGLO,CAAKC,CAAAA,GAAAA,CAAI,SAAS,CAAA,EAAKD,EAAKC,GAAI,CAAA,iBAAiB,CACjD,GAAA,IAAA,CAAKT,sBAEb,CAAC,EACL,CAEQA,mBAAmB,EAAA,CACnB,IAAKtB,CAAAA,IAAAA,CAAKgC,gBACV,IAAK/B,CAAAA,QAAAA,CAASK,YAAa,CAAA,cAAA,CAAgB,KAAKN,IAAKiC,CAAAA,OAAO,CAE5D,CAAA,IAAA,CAAKhC,SAASK,YAAa,CAAA,cAAA,CAAgB,IAAI,EAEvD,CAEQiB,YAAAA,EAAY,CAChB,IAAMW,EAAc,IAAKlC,CAAAA,IAAAA,CAAKmC,YAAiB,GAAA,CAAA,CAE/C,IAAKlC,CAAAA,QAAAA,CAASO,WAAY,CAAA,cAAA,CAAgB0B,CAAW,CACrD,CAAA,IAAA,CAAKjC,QAASO,CAAAA,WAAAA,CAAY,iBAAmB,CAAA,CAAC,IAAKR,CAAAA,IAAAA,CAAKgC,eAAe,CACvE,CAAA,IAAA,CAAK/B,QAASO,CAAAA,WAAAA,CAAY,gBAAiB,IAAKR,CAAAA,IAAAA,CAAKgC,eAAe,EACxE,yCA3DSlC,CAAoBsC,EAAAA,CAAAA,CAAAC,EAAA,CAAA,CAAAD,CAAAE,CAAAA,EAAA,CAAAF,CAAAA,CAAAA,CAAAG,CAAA,CAAAH,CAAAA,CAAAA,CAAAI,EAAA,CAAA,CAAAJ,EAAAK,EAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,UAAA,CAAAC,CAAA,CAAA,CAAA,KAAA,CAApB5C,EAAoB6C,OAApB7C,CAAAA,CAAAA,CAAoB8C,SAAA,CAAA,CAA3B,CAAA,IAAO9C,CAAP+C,CAAAA,CAAAA,CAAAA,OAAO/C,CAAoB,CAAA,GAAA,CCF3B,SAAUgD,CAAAA,EAAO,CACnB,OAAO,CAACC,EAAiBjD,CAAAA,CAAoB,CAAC,CAClD"}