{"version":3,"file":"chunk-nz993udr.js","sources":["packages/vanilla/lib/features/header/src/header.service.ts"],"sourcesContent":["import { Injectable, Type, WritableSignal, computed, signal } from '@angular/core';\nimport { takeUntilDestroyed } from '@angular/core/rxjs-interop';\n\nimport {\n DslService,\n DynamicComponentsRegistry,\n ElementRepositoryService,\n MenuContentItem,\n MenuItemsService,\n MenuSection,\n NavigationService,\n ResizeObserverService,\n VanillaDynamicComponentsCategory,\n VanillaElements,\n} from '@frontend/vanilla/core';\nimport { MenuItemHighlightService } from '@frontend/vanilla/shared/menu-item';\nimport { BehaviorSubject, Observable, ReplaySubject, Subject, debounceTime, distinctUntilChanged, map, of, startWith, switchMap } from 'rxjs';\n\nimport { HeaderConfig, HeaderConfigElements } from './header.client-config';\n\n/**\n * @whatItDoes Provides utility functions for manipulating the header\n *\n * @description\n *\n * # Overview\n * This provides functionality for manipulating the header:\n * - Get header height\n * - Highlight product\n * - show/hide\n * @stable\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class HeaderService {\n currentHighlightedProductName: string | null = null;\n\n readonly unauthItems = signal(null);\n readonly productItems = signal(null);\n readonly pillItems = signal(null);\n readonly balance = signal(null);\n readonly bonusBalance = signal(null);\n readonly activeProduct = signal(null);\n readonly headerVisible = signal(false);\n readonly headerElementRect = signal<{ width: number; height: number }>({ width: 0, height: 0 });\n readonly headerComponentRect = signal<{ width: number; height: number }>({ width: 0, height: 0 });\n readonly hasHeaderElement = computed(() => this.headerComponentRect().width !== 0 || this.headerComponentRect().height !== 0);\n\n private highlightedProductEvents = new BehaviorSubject(null);\n private headerDisplayEvents: BehaviorSubject = new BehaviorSubject(true);\n private disabledItems: string[] = [];\n\n /** @internal */\n get highlightedProduct(): Observable {\n return this.highlightedProductEvents;\n }\n\n /** Observable of when the header is shown or hidden. Will instantly return current value to subscribers. */\n get display(): Observable {\n return this.headerDisplayEvents;\n }\n\n get version(): number {\n return this.headerContent.version;\n }\n\n private readonly authItems$$ = new ReplaySubject(1);\n readonly authItems$ = this.authItems$$.asObservable();\n\n // debounceTime prevents header flickering\n private readonly leftItems$$ = new ReplaySubject(1);\n readonly leftItems$ = this.leftItems$$.asObservable().pipe(\n debounceTime(10),\n distinctUntilChanged((prev, current) => prev.every((item, index) => item.name === current[index]?.name)),\n );\n\n constructor(\n private resizeObserver: ResizeObserverService,\n private elementRepositoryService: ElementRepositoryService,\n private headerContent: HeaderConfig,\n private dslService: DslService,\n private menuItemsService: MenuItemsService,\n private navigationService: NavigationService,\n private dynamicComponentsRegistry: DynamicComponentsRegistry,\n private menuItemHighlightingService: MenuItemHighlightService,\n ) {\n this.elementRepositoryService.elements$\n .pipe(\n map((v) => v.get(VanillaElements.HEADER_SLOT)),\n distinctUntilChanged(),\n switchMap((element) => {\n if (element) {\n return this.resizeObserver\n .observe(element)\n .pipe(map((entry) => ({ width: entry.contentBoxSize[0]!.blockSize, height: entry.contentBoxSize[0]!.inlineSize })));\n }\n return of({ width: 0, height: 0 });\n }),\n takeUntilDestroyed(),\n )\n .subscribe((rect) => this.headerComponentRect.set(rect));\n }\n\n initMenuItems() {\n this.evaluateMenuContentItems('leftItems', this.leftItems$$);\n this.evaluateMenuContentItems('authItems', this.authItems$$);\n this.evaluateMenuContentItems('unauthItems', this.unauthItems);\n this.evaluateMenuContentItems('productItems', this.productItems);\n this.evaluateMenuContentItems('pillItems', this.pillItems);\n this.evaluateBalanceParams();\n }\n\n private evaluateMenuContentItems(key: keyof HeaderConfigElements, store: Subject | WritableSignal) {\n const items = this.headerContent.elements[key];\n\n if (items?.length > 0) {\n // preload the components needed for the header section\n items.forEach((item) => this.preload(item.type));\n\n this.dslService.evaluateContent(items).subscribe((items: MenuContentItem[]) => {\n store instanceof Subject ? store.next(items) : store.set(items);\n });\n }\n }\n\n private authItemBalanceParam(condition: (item: MenuContentItem) => boolean): Observable {\n return this.authItems$$.pipe(\n startWith(this.headerContent.elements.authItems),\n map(\n (authItems: MenuContentItem[]) =>\n authItems.find((authItem: MenuContentItem) => condition(authItem) && authItem?.parameters?.balance)?.parameters?.balance,\n ),\n distinctUntilChanged(),\n switchMap((balanceParam: string | undefined) => {\n if (balanceParam) {\n return this.dslService.evaluateExpression(balanceParam);\n }\n\n return of(0);\n }),\n );\n }\n\n private evaluateBalanceParams() {\n this.authItemBalanceParam((authItem: MenuContentItem) => authItem.type === 'avatar-balance' || authItem.type === 'balance').subscribe(\n (balance: number) => {\n this.balance.set(balance);\n },\n );\n this.authItemBalanceParam((authItem) => authItem.type === 'bonus-balance').subscribe((balance: number) => {\n this.bonusBalance.set(balance);\n });\n }\n\n initProductHighlighting() {\n this.menuItemHighlightingService.initHighlighting(this.headerContent.products);\n this.navigationService.locationChange.subscribe(() => this.setHighlightedProduct());\n }\n\n /**\n * Because the header is fixed and therefore obstructs the top of the page, sometimes it's needed to know it's\n * height (f.e. for scrolling calculations).\n *\n * ```\n * headerService.getHeaderHeight();\n * ```\n */\n getHeaderHeight(): number {\n return this.headerComponentRect().height;\n }\n\n /**\n * Overrides highlighted product in the product switcher. If null is provided, it will reset selected product to\n * current product.\n *\n * ```\n * headerService.highlightProduct('sports');\n * headerService.highlightProduct(null);\n * ```\n *\n * Rules for highlighting (first one that matches will be highlighted):\n *\n * - first item with `highlight-url-pattern` parameter that matches current location absolute path will be\n * highlighted\n * - first item without `highlight-url-pattern` whose `url` is an exact match for current location absolute path\n * will be highlighted\n * - if `HeaderService.highlightProduct()` is called, that product will be highlighted (if it exists)\n * until `HeaderService.highlightProduct(null)` is called.\n * - the item corresponding to `Page.product` will be highlighted (if it exists)\n * - nothing will be highlighted\n */\n highlightProduct(name: string | null) {\n this.currentHighlightedProductName = name;\n\n this.setHighlightedProduct();\n }\n\n /** Set a component type for header item type. */\n setHeaderComponent(itemType: string, component: Type) {\n this.dynamicComponentsRegistry.registerComponent(VanillaDynamicComponentsCategory.Header, itemType, component);\n }\n\n // TODO: find all places where this is used and replace it with preload and get lazy component methods\n /** Gets a component type for header item type. */\n getHeaderComponent(itemType: string | undefined): Type | null {\n return this.dynamicComponentsRegistry.get(VanillaDynamicComponentsCategory.Header, itemType || 'button');\n }\n\n registerLazyCmp(itemType: string, lazyImportFn: () => Promise>) {\n this.dynamicComponentsRegistry.registerLazyComponent(VanillaDynamicComponentsCategory.Header, itemType, lazyImportFn);\n }\n\n /** Gets a lazy component type for header item type for late registered components. */\n getLazyComponentReactive(type: string): Promise | null> {\n return this.dynamicComponentsRegistry.getLazyComponentReactive(VanillaDynamicComponentsCategory.Header, type || 'button');\n }\n /** Gets a lazy component type for header item type. */\n getLazyComponent(itemType: string | undefined): Promise | null> {\n return this.dynamicComponentsRegistry.getLazyComponent(VanillaDynamicComponentsCategory.Header, itemType || 'button');\n }\n\n /** Preload lazy component */\n preload(itemType: string) {\n this.dynamicComponentsRegistry.preloadLazyComponent(VanillaDynamicComponentsCategory.Header, itemType);\n }\n\n /** Assigns a number to be shown as a counter for a header item. */\n setItemCounter(itemName: string, count: any, cssClass?: string) {\n this.menuItemsService.setCounter(MenuSection.Header, itemName, count, cssClass);\n }\n\n /** Shows the header. List of items to be disabled can be passed. */\n show(disabledItems?: string[]) {\n this.headerDisplayEvents.next(true);\n this.headerVisible.set(true);\n this.disabledItems = disabledItems || [];\n }\n\n /** Hides the header. */\n hide() {\n this.headerDisplayEvents.next(false);\n this.headerVisible.set(false);\n }\n\n /** Checks if specific header element is disabled according to list on dynacon config.*/\n itemDisabled(item: string): boolean {\n return this.disabledItems.some((x) => x == item);\n }\n\n setHighlightedProduct() {\n const product = this.menuItemHighlightingService.setHighlightedProduct(this.headerContent.products, this.currentHighlightedProductName);\n\n if (product?.name) {\n this.menuItemHighlightingService.setActiveItem(MenuSection.Header, product.name);\n }\n\n this.highlightedProductEvents.next(product || null);\n this.activeProduct.set(product);\n }\n}\n"],"names":["HeaderService","highlightedProduct","highlightedProductEvents","display","headerDisplayEvents","version","headerContent","constructor","resizeObserver","elementRepositoryService","dslService","menuItemsService","navigationService","dynamicComponentsRegistry","menuItemHighlightingService","currentHighlightedProductName","unauthItems","signal","productItems","pillItems","balance","bonusBalance","activeProduct","headerVisible","headerElementRect","width","height","headerComponentRect","hasHeaderElement","computed","BehaviorSubject","disabledItems","authItems$$","ReplaySubject","authItems$","asObservable","leftItems$$","leftItems$","pipe","debounceTime","distinctUntilChanged","prev","current","every","item","index","_a","name","elements$","map","v","get","VanillaElements","HEADER_SLOT","switchMap","element","observe","entry","contentBoxSize","blockSize","inlineSize","of","takeUntilDestroyed","subscribe","rect","set","initMenuItems","evaluateMenuContentItems","evaluateBalanceParams","key","store","items","elements","length","forEach","preload","type","evaluateContent","Subject","next","authItemBalanceParam","condition","startWith","authItems","_b","find","authItem","parameters","balanceParam","evaluateExpression","initProductHighlighting","initHighlighting","products","locationChange","setHighlightedProduct","getHeaderHeight","highlightProduct","setHeaderComponent","itemType","component","registerComponent","VanillaDynamicComponentsCategory","Header","getHeaderComponent","registerLazyCmp","lazyImportFn","registerLazyComponent","getLazyComponentReactive","getLazyComponent","preloadLazyComponent","setItemCounter","itemName","count","cssClass","setCounter","MenuSection","show","hide","itemDisabled","some","x","product","setActiveItem","ɵɵinject","ResizeObserverService","ElementRepositoryService","HeaderConfig","DslService","MenuItemsService","NavigationService","DynamicComponentsRegistry","MenuItemHighlightService","factory","ɵfac","providedIn","_HeaderService"],"mappings":"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"}