<html><head></head><body>{"version":3,"file":"score-header.js","sources":["../../../../src/components/score/score-header/score-header.ts"],"sourcesContent":["import { OutlineElement } from '../../base/outline-element/outline-element';\nimport { CSSResultGroup, html, TemplateResult } from 'lit';\nimport { customElement, property, query, state } from 'lit/decorators.js';\nimport componentStyles from './score-header.css.lit';\nimport { ScoreMenu } from '../score-menu/score-menu';\nimport { SlotController } from '../../controllers/slot-controller';\nimport GuiDialog from '../../../utilities/dialog';\nimport { classMap } from 'lit/directives/class-map.js';\nimport { ifDefined } from 'lit/directives/if-defined.js';\nimport logoMarkup from './logo-markup';\n// import logoMarkupNoText from './logo-markup-no-text';\n// Fix error: Property 'dataLayer' does not exist on type 'Window & typeof globalThis'.\ndeclare global {\n interface Window {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n dataLayer: any;\n }\n}\n\nimport '../score-menu/score-menu';\nimport '../score-container/score-container';\nimport '../score-location/score-location';\nimport '../score-heading/score-heading';\nimport '../score-button/score-button';\nimport { unsafeHTML } from 'lit/directives/unsafe-html.js';\n\n/**\n * The Score Header Component\n *\n * @element score-header\n *\n */\n@customElement('score-header')\nexport class ScoreHeader extends OutlineElement {\n static styles: CSSResultGroup = [componentStyles];\n slots = new SlotController(this, false);\n\n @query('.mobile-menu-container')\n mobileMenu: HTMLElement;\n\n /**\n * Wether to use real from URL or debug menu.\n */\n @property({\n type: Boolean,\n reflect: true,\n attribute: 'debug-menu',\n })\n debugMenu: boolean;\n\n /**\n * Menu machine name.\n */\n @property({\n type: String,\n reflect: true,\n attribute: 'menu-id',\n })\n menuId = 'main';\n\n /**\n * Menu full name (for screen-readers).\n */\n @property({\n type: String,\n reflect: true,\n attribute: 'menu-name',\n })\n menuName = 'Main Navigation';\n\n /**\n * Menu language.\n */\n @property({\n type: String,\n reflect: true,\n attribute: 'menu-lang',\n })\n menuLang = '';\n\n /**\n * Menu Type - 'menu' or 'groupcontentmenu'.\n */\n @property({\n type: String,\n reflect: true,\n attribute: 'menu-type',\n })\n menuType = 'menu';\n\n @property({\n type: Boolean,\n reflect: true,\n attribute: 'hamburger-menu-open',\n })\n hamburgerMenuOpen: boolean;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'hamburger-menu-name',\n })\n hamburgerMenuName = 'menu';\n\n /**\n * Force mobile menu (vertical) display.\n */\n @property({\n type: Boolean,\n reflect: true,\n attribute: 'mobile-mode',\n })\n isMobile = false;\n\n isSticky = false;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'group-name-label',\n })\n groupNameLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'group-menu-id',\n })\n groupMenuId: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'no-group-label',\n })\n noGroupLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'select-location-label',\n })\n selectLocationLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'use-current-location-label',\n })\n useCurrentLocationLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'zipcode-label',\n })\n zipcodeLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'find-button-label',\n })\n findButtonLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'current-language',\n })\n currentLanguage: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'translate-label',\n })\n translateLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'en-url',\n })\n enURL: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'es-url',\n })\n esURL: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'main-menu-label',\n })\n mainMenuLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'utility-menu-label',\n })\n utilityMenuLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'location-menu-label',\n })\n locationMenuLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'account-menu-1-label',\n })\n accountMenu1Label: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'account-menu-1-url',\n })\n accountMenu1URL: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'account-menu-1-l1-label',\n })\n accountMenu1L1Label: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'account-menu-1-l1-url',\n })\n accountMenu1L1URL: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'account-menu-1-l2-label',\n })\n accountMenu1L2Label: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'account-menu-1-l2-url',\n })\n accountMenu1L2URL: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'account-menu-2-label',\n })\n accountMenu2Label: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'account-menu-2-url',\n })\n accountMenu2URL: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'donate-url',\n })\n donateURL: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'donate-label',\n })\n donateLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'donate-aria-label',\n })\n donateAriaLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'en-label',\n })\n enLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'es-label',\n })\n esLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'search-label',\n })\n searchLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'search-url',\n })\n searchURL: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'search-placeholder',\n })\n searchPlaceholder: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'menu-label',\n })\n menuLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'group-menu-label',\n })\n groupMenuLabel: string;\n\n @property({\n type: Boolean,\n reflect: true,\n attribute: 'location-finder-open',\n })\n locationFinderOpen: boolean;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'chapter-url',\n })\n chapterUrl: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'warning-text',\n })\n warningText: string;\n\n @property({\n type: Object,\n })\n browserInfo: { name: string; version: number | string };\n\n connectedCallback() {\n super.connectedCallback();\n this.browserInfo = this.checkBrowser();\n }\n\n firstUpdated() {\n this.stickyMode();\n this.translateObserver();\n }\n\n // USE THIS IF WE WANT TO GO BACK TO ANIMATE MENU (WIP FOR LATER)\n // updated() {\n // if (!this.hamburgerMenuOpen) {\n // this.collapseSection(this.mobileMenu);\n // }\n // }\n\n /*\n * Add sticky mode\n */\n\n translateObserver() {\n if (document.cookie) {\n const allCookies = document.cookie.split(';');\n const googleCokie = allCookies.filter(cookie =>\n cookie.includes('googtrans')\n );\n const elHeader = this.shadowRoot?.querySelector('.is-sticky-header');\n if (googleCokie.length !== 0) {\n const separeteValue = googleCokie[0]?.split('=');\n if (separeteValue[1] !== '/en/es' || separeteValue[1] !== '/en/es') {\n elHeader?.classList.add('is-sticky-header');\n }\n } else {\n elHeader?.classList.remove('is-sticky-header');\n }\n }\n }\n\n stickyMode() {\n const el = this as HTMLElement;\n const mainMenu = this.shadowRoot?.querySelector('.main-menu');\n\n const options = {\n rootMargin: '0px 0px -50px 0px',\n threshold: 1,\n };\n\n const observer = new IntersectionObserver(([e]) => {\n this.isSticky = e.intersectionRatio < 1;\n el.classList.toggle('is-sticky', this.isSticky);\n el.shadowRoot\n ?.querySelector('header')!\n .classList.toggle('is-sticky-header', this.isSticky);\n if (this.isSticky) {\n mainMenu?.scrollIntoView(true);\n }\n this.requestUpdate();\n }, options);\n observer.observe(el!);\n }\n\n requestsBufferMap = new Map<string, boolean="">();\n\n checkBrowser() {\n const ua = navigator.userAgent;\n let tem,\n M =\n ua.match(\n /(opera|chrome|safari|firefox|msie|trident(?=\\/))\\/?\\s*(\\d+)/i\n ) || [];\n if (/trident/i.test(M[1])) {\n tem = /\\brv[ :]+(\\d+)/g.exec(ua) || [];\n return { name: 'IE', version: tem[1] || '' };\n }\n if (M[1] === 'Chrome') {\n tem = ua.match(/\\bOPR|Edge\\/(\\d+)/);\n if (tem != null) {\n return { name: 'Opera', version: tem[1] };\n }\n }\n M = M[2] ? [M[1], M[2]] : [navigator.appName, navigator.appVersion, '-?'];\n if ((tem = ua.match(/version\\/(\\d+\\.\\d+)/i)) != null) {\n M.splice(1, 1, tem[1]);\n }\n return {\n name: M[0],\n version: parseFloat(M[1]),\n };\n }\n\n /*\n * Create a Map for any menu that request mobile mode\n */\n private processRequests(menuId: string, mode: string) {\n if (mode === 'mobile') {\n this.requestsBufferMap.set(menuId, true);\n } else if (this.requestsBufferMap.has(menuId)) {\n this.requestsBufferMap.delete(menuId);\n }\n\n // set header mobile mode if at least 1 menu requires mobile mode\n this.isMobile = this.requestsBufferMap.size > 0;\n }\n\n private _menuModeListener(e: CustomEvent) {\n this.processRequests(e.detail.menuId, e.detail.mode);\n }\n\n render() {\n this.translateObserver();\n return html`\n ${this.browserInfo?.name === 'Safari' && this.browserInfo?.version < 15.5\n ? html`<div class='\"outdated-browser-banner\"'>\n <score-icon\n library='\"material\"\n' name='\"error\"\n' size='\"1.5rem\"\n'>\n ${this.warningText}\n </score-icon\n></div>`\n : null}\n\n <header\n 'is-sticky':="" 'mobile':="" @menumode="${this._menuModeListener}\n" class="${classMap({\n" this.ismobile,\n="" this.issticky,\n="" })}\n="">\n <div class='\"score-main-header\"'>\n ${this.isMobile ? this.mobileTemplate() : this.desktopTemplate()}\n </div>\n \n `;\n }\n\n mobileStatus() {\n return this.isMobile ? 'mobile' : '';\n }\n\n toggleHamburgerMenu() {\n // USE THIS IF WE WANT TO GO BACK TO ANIMATE MENU (WIP FOR LATER)\n // this.hamburgerMenuOpen\n // ? this.collapseSection(this.mobileMenu)\n // : this.expandSection(this.mobileMenu);\n\n this.hamburgerMenuOpen = !this.hamburgerMenuOpen;\n }\n\n topMobileTemplate() {\n return html` ${this.logoTemplate()} ${this.searchTemplate()}\n\n <button\n 'close="" 'open="" :="" ?="" ?autofocus="${this.hamburgerMenuOpen}\n" @click='\"${this.toggleHamburgerMenu}\"\n' aria-label='\"${this.hamburgerMenuOpen' class='\"menu-dropdown\"\n' menu'="" menu'}\"\n="">\n ${this.hamburgerMenuOpen\n ? html`<score-icon\n library='\"system\"\n' name='\"menu-close\"\n' size='\"2em\"\n'>`\n : html`<score-icon\n library='\"system\"\n' name='\"menu-hamburger\"\n' size='\"2em\"\n'>`}\n ${this.hamburgerMenuName}\n `;\n }\n\n mobileTemplate() {\n return html`\n <div class='\"top-header\"'>${this.topMobileTemplate()}</div>\n <div\n ${this.hamburgermenuopen\n="" ''\n="" 'visually-hidden'}\"\n="" :="" ?="" class='\"mobile-menu-container'>\n <div class='\"hamburger-dropdown\"'>\n ${this.utilityMenuTemplate()} ${this.mainMenuTemplate()}\n </div>\n \n ${this.locationMobileTemplate()}\n `;\n }\n\n // LEAVING THE BELOW FUNCTIONS IN IN CASE WE WANT TO ANIMATE THE MENU DROPDOWN LATER.\n\n // collapseSection(element: HTMLElement) {\n // element.style.maxHeight = '0px';\n // //isMobile && (element.style.overflow = 'hidden');\n // setTimeout(() => {\n // element.ariaHidden = 'true';\n // element.style.visibility = 'hidden';\n // }, 250);\n // }\n\n // expandSection(element: HTMLElement) {\n // // get the height of the element's inner content and the height of any possible\n // // nested sub dropdown's inner content, regardless of their actual size\n // element.ariaHidden = 'false';\n // let totalScrollHeight = 0;\n // element.style.visibility = 'visible';\n // const locationMenuHeight =\n // element.querySelector('#utility-menu')?.scrollHeight;\n\n // const menus = element\n // .querySelector('score-menu')\n // ?.shadowRoot?.querySelectorAll('.menu-level-ul');\n\n // if (menus)\n // menus.forEach(child => {\n // //(child as HTMLElement).style.visibility = 'visible';\n // const subDropDownHeight: number | undefined = child.scrollHeight;\n // totalScrollHeight += subDropDownHeight ? subDropDownHeight : 0;\n // });\n\n // element.style.maxHeight =\n // (locationMenuHeight ? locationMenuHeight : 0) + totalScrollHeight + 'px';\n // // isMobile && setTimeout(() => (element.style.overflow = 'visible'), 100);\n // }\n\n desktopTemplate() {\n return html`\n <score-container>\n <div class='\"top-header\"'>\n ${this.logoTemplate()}\n <div class='\"right-side\"'>\n ${this.utilityMenuTemplate()}\n <div class='\"main-menu\"'>\n ${this.mainMenuTemplate()} ${this.searchTemplate()}\n </div>\n </div>\n </div>\n </score-container>\n ${this.locationDesktopTemplate()}\n `;\n }\n\n locationDesktopTemplate() {\n return html` <div\n ${!this.groupnamelabel\n="" ''}\"\n="" 'no-location-selected'\n="" :="" ?="" class='\"location-wrapper'>\n ${this.scoreLocationSelectTemplate()}\n ${this.groupNameLabel ? html` ${this.locationMenuTemplate()}` : ''}\n `;\n }\n\n locationMobileTemplate() {\n return html` <div\n ${!this.groupnamelabel\n="" ''}\"\n="" 'no-location-selected'\n="" :="" ?="" class='\"location-wrapper'>\n ${this.scoreLocationSelectTemplate()}\n ${this.groupNameLabel\n ? html`\n <button\n @click='\"${ScoreMenu.toggleMenu}\"\n' @focus='\"${ScoreMenu.closeAllMenusEvent}\"\n' @mouseenter='\"${ScoreMenu.closeAllMenusEvent}\"\n' aria-expanded='\"false\"\n' aria-haspopup='\"true\"\n' aria-label='\"Location\"\n' class='\"no-title' dropdown-button\"\n="" type='\"button\"\n'>\n <span class='\"dropdown-icon\"'>\n <score-icon\n library='\"system\"\n' name='\"chevron-down\"\n' size='\"1rem\"\n'>\n </score-icon\n></span>\n \n ${this.locationMenuTemplate()}\n `\n : ''}\n `;\n }\n\n scoreLocationSelectTemplate() {\n return html`\n <div class='\"location-select-container\"'>\n <score-location\n ?dialog-open="${this.locationFinderOpen}\n" chapter-url="${this.chapterUrl}\n" find-button-label='\"${this.findButtonLabel}\"\n' group-name-label='\"${this.groupNameLabel}\"\n' no-group-label='\"${this.noGroupLabel}\"\n' select-location-label='\"${this.selectLocationLabel}\"\n' use-current-location-label='\"${this.useCurrentLocationLabel}\"\n' zipcode-label='\"${this.zipcodeLabel}\"\n'>\n <div slot='\"location-finder-search\"'>\n <slot name='\"location-finder-search\"'></slot>\n </div>\n <div slot='\"results\"'>\n <slot name='\"location-finder\"'></slot>\n </div>\n \n </score-location\n></div>\n `;\n }\n\n // logoTemplate() {\n // return html` <a class='\"logo\"' href='\"/\"' title='\"Home\"'>\n // ${this.isSticky ? unsafeHTML(logoMarkupNoText) : unsafeHTML(logoMarkup)}\n // </a>`;\n // }\n\n logoTemplate() {\n return html` <a class='\"logo\"' href='\"/\"' title='\"Home\"'>\n ${unsafeHTML(logoMarkup)}\n </a>`;\n }\n\n mainMenuTemplate() {\n return html`\n <score-menu\n class='\"${this.mobileStatus()}\"\n' color-mode='\"light\"\n' debug-menu='\"${ifDefined(this.debugMenu)}\"\n' justify='\"right\"\n' menu-id='\"main\"\n' menu-label='\"${this.mainMenuLabel}\"\n' menu-lang='\"${this.currentLanguage}\"\n' menu-name='\"${this.menuName}\"\n' mobile-trigger='\"true\"\n' sticky='\"${this.isSticky}\"\n'>\n `;\n }\n\n utilityMenuTemplate() {\n return html`\n <nav\n ${this.mobilestatus()}="" aria-label='\"${this.utilityMenuLabel}\"\n' class='\"utility-menu' id='\"utility-menu\"\n' light-mode\"\n="">\n <ul>\n <li>\n <slot name='\"gtranslate\"'></slot>\n </li>\n <li>\n ${this.loginMenu()}\n </li>\n ${this.accountMenu2URL\n ? html` <li>\n <a href='\"${this.accountMenu2URL}\"'>${this.accountMenu2Label}</a>\n </li>`\n : ''}\n <li>\n <a aria-label='\"${this.donateAriaLabel}\"' href='\"${this.donateURL}\"\n' noreferrer\"\n="" rel='\"noopener' target='\"_blank\"\n'>\n ${this.donateLabel}\n </a>\n </li>\n </ul>\n \n `;\n }\n\n menuToggle(ev: Event) {\n // @ts-expect-error Property classList might not exist in EventTarget.\n ev.currentTarget?.classList.toggle('menu-open');\n // @ts-expect-error querySelectorAll is not in EventTarget.\n const button = ev.currentTarget.querySelectorAll(':scope > button').item(0);\n if (button) {\n // @ts-expect-error Property classList might not exist in EventTarget.\n button.setAttribute('aria-expanded', ev.currentTarget?.classList.contains('menu-open'));\n }\n }\n\n @state() translateMenuOpen = false;\n openTranslateMenu() {\n this.translateMenuOpen = true;\n }\n closeTranslateMenu() {\n this.translateMenuOpen = false;\n }\n toggleTranslateMenu(e: KeyboardEvent) {\n e.key === 'Enter' && (this.translateMenuOpen = !this.translateMenuOpen);\n e.key === 'Escape' && (this.translateMenuOpen = false);\n }\n translateMenuTemplate() {\n return html`\n <div\n @keydown='\"${this.toggleTranslateMenu}\"\n' @mouseenter='\"${this.openTranslateMenu}\"\n' @mouseleave='\"${this.closeTranslateMenu}\"\n' class='\"translate-menu-button-container\"\n'>\n <button\n '-1'="" '0'}\"\n="" :="" ?="" aria-expanded='\"${this.translateMenuOpen}\"\n' aria-haspopup='\"true\"\n' class='\"no-title' dropdown-button\"\n="" tabindex='\"${this.isSticky' type='\"button\"\n'>\n ${this.translateLabel}\n <span class='\"dropdown-icon\"'>\n <score-icon\n library='\"system\"\n' name='\"chevron-down\"\n' size='\"1rem\"\n'>\n </score-icon\n></span>\n \n <div class='\"translate-menu\"'>\n <!-- drupal translate options. to be removed until related bug is fixed -->\n <!-- <ul>\n <li>\n <a href=\"${this.enURL}\" @click=${() => this.fireEvent('en')}\n >${this.enLabel}</a\n >\n </li>\n <li>\n <a href=\"${this.esURL}\" @click=${() => this.fireEvent('es')}\n >${this.esLabel}</a\n >\n </li>\n </ul> -->\n <div class='\"google-translate\"'>\n <slot name='\"translate\"'></slot>\n <div class='\"google-watermark\"'>\n Powered by\n <score-icon\n library='\"system\"\n' name='\"google-logo\"\n' size-width='\"3rem\"\n'>\n </score-icon\n></div>\n </div>\n </div>\n \n `;\n }\n\n loginMenu(): TemplateResult{\n return (this.accountMenu1L1Label || this.accountMenu1L2Label) ? html`\n <div class='\"menu' mobile\"="">\n <a href='\"${this.accountMenu1L1URL}\"'>${this.accountMenu1Label} ${this.accountMenu1L1Label}</a>\n <a href='\"${this.accountMenu1L2URL}\"'>${this.accountMenu1Label} ${this.accountMenu1L2Label}</a>\n </div>\n <div\n @keydown='\"${this.menuToggle}\"\n' @mouseenter='\"${this.menuToggle}\"\n' @mouseleave='\"${this.menuToggle}\"\n' class='\"menu\"\n'>\n <button\n '-1'="" '0'}\"\n="" :="" ?="" aria-expanded='\"false\"\n' aria-haspopup='\"true\"\n' class='\"no-title' dropdown-button\"\n="" tabindex='\"${this.isSticky' type='\"button\"\n'>\n ${this.accountMenu1Label}\n <span class='\"dropdown-icon\"'>\n <score-icon\n library='\"system\"\n' name='\"chevron-down\"\n' size='\"1rem\"\n'>\n </score-icon\n></span>\n \n <div class='\"menu-items\"'>\n <ul>\n <li><a href='\"${this.accountMenu1L1URL}\"'>${this.accountMenu1L1Label}</a></li>\n <li><a href='\"${this.accountMenu1L2URL}\"'>${this.accountMenu1L2Label}</a></li>\n </ul>\n </div>\n \n ` : html`<a href='\"${this.accountMenu1URL}\"'>${this.accountMenu1Label}</a>`;\n }\n\n fireEvent(translatedTo: string) {\n const dataLayerData = {\n event: 'pageTranslated',\n translationLanguage: translatedTo,\n translationService: 'on-page drupal translate',\n };\n\n if (window.dataLayer) {\n window.dataLayer.push(dataLayerData);\n }\n\n // this.dispatchEvent(\n // new CustomEvent('pageTranslated', {\n // detail: {\n // dataLayerData,\n // },\n // bubbles: true,\n // composed: true,\n // })\n // );\n }\n\n locationMenuTemplate() {\n return html`\n <div class='\"location-menu-container\"'>\n <score-menu\n class='\"${this.mobileStatus()}' color-mode='\"dark\"\n' debug-menu='\"${ifDefined(this.debugMenu)}\"\n' justify='\"left\"\n' location-menu\"\n="" menu-id='\"${this.groupMenuId}\"\n' menu-label='\"${this.locationMenuLabel}\"\n' menu-lang='\"${this.currentLanguage}\"\n' menu-name='\"Location' menu-type='\"groupcontentmenu\"\n' menu\"\n="" selection="">\n </score-menu\n></div>\n `;\n }\n\n searchTemplate() {\n return html`\n <button\n @click='\"${this.openDialog}\"\n' class='\"search\"\n' data-dialog-id='\"search\"\n'>\n <score-icon\n library='\"system\"\n' name='\"magnifying-glass\"\n' size='\"2em\"\n'>\n <span class='\"search-label\"'>${this.searchLabel}</span>\n \n <dialog id='\"search\"'>\n <button\n @click='\"${this.closeDialog}\"\n' class='\"close-search-button\"\n' type='\"button\"\n'>\n <score-icon\n library='\"system\"\n' name='\"close-dialog\"\n' size='\"2.5rem\"\n'>\n \n\n <form method='\"dialog\"'>\n \n <label class='\"visually-hidden\"\n' for='\"search-blog-input\"'>${this.searchPlaceholder}\n <div class='\"input-wrapper\"'>\n <input\n @keypress='\"${this.keySubmitSearch}\"\n' by="" id='\"search-blog-input\"\n' keyword="" maxlength='\"128\"\n' name='\"keys\"\n' or="" phrase\"\n="" placeholder='\"Search' size='\"30\"\n' value='\"\"\n'>\n\n <button @click='\"${this.submitSearch}\"' type='\"button\"'>\n <score-icon\n library='\"system\"\n' name='\"magnifying-glass\"\n' size='\"2rem\"\n'>\n <span class='\"visually-hidden\"'>${this.searchLabel}</span>\n </score-icon\n></button>\n </input\n></div>\n \n \n </label></form></score-icon\n></button\n></dialog>\n `;\n }\n\n submitSearch(e: Event) {\n const trigger = e.currentTarget as HTMLButtonElement;\n const input = trigger.previousElementSibling as HTMLInputElement;\n const encodedSearchValue = encodeURIComponent(input.value);\n const searchUrl = this.searchURL + '?keywords=' + encodedSearchValue;\n window.location.href = searchUrl;\n }\n\n keySubmitSearch(e: KeyboardEvent) {\n if (e.key === 'Enter') {\n const input = e.currentTarget as HTMLInputElement;\n const encodedSearchValue = encodeURIComponent(input.value);\n const searchUrl = this.searchURL + '?keywords=' + encodedSearchValue;\n window.location.href = searchUrl;\n }\n }\n\n openDialog(e: Event) {\n const trigger = e.currentTarget as HTMLDialogElement;\n const dialogElement = trigger.nextElementSibling as HTMLDialogElement;\n const input = trigger.parentElement?.querySelector(\n '#search-blog-input'\n ) as HTMLInputElement;\n input.value = '';\n GuiDialog(dialogElement);\n dialogElement.showModal();\n }\n\n closeDialog(e: Event) {\n const trigger = e.currentTarget as HTMLDialogElement;\n const dialogElement = trigger.closest('dialog') as HTMLDialogElement;\n dialogElement.close('cancel');\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'score-header': ScoreHeader;\n }\n}\n"],"names":["ScoreHeader","OutlineElement","constructor","this","slots","SlotController","menuId","menuName","menuLang","menuType","hamburgerMenuName","isMobile","isSticky","requestsBufferMap","Map","translateMenuOpen","connectedCallback","super","browserInfo","checkBrowser","firstUpdated","stickyMode","translateObserver","document","cookie","googleCokie","split","filter","includes","elHeader","_a","shadowRoot","querySelector","length","separeteValue","_b","classList","add","remove","el","mainMenu","observer","IntersectionObserver","e","intersectionRatio","toggle","scrollIntoView","requestUpdate","rootMargin","threshold","observe","ua","navigator","userAgent","tem","M","match","test","exec","name","version","appName","appVersion","splice","parseFloat","processRequests","mode","set","has","delete","size","_menuModeListener","detail","render","html","warningText","classMap","mobile","mobileTemplate","desktopTemplate","mobileStatus","toggleHamburgerMenu","hamburgerMenuOpen","topMobileTemplate","logoTemplate","searchTemplate","utilityMenuTemplate","mainMenuTemplate","locationMobileTemplate","locationDesktopTemplate","groupNameLabel","scoreLocationSelectTemplate","locationMenuTemplate","ScoreMenu","toggleMenu","closeAllMenusEvent","noGroupLabel","selectLocationLabel","useCurrentLocationLabel","zipcodeLabel","findButtonLabel","locationFinderOpen","chapterUrl","unsafeHTML","logoMarkup","ifDefined","debugMenu","mainMenuLabel","currentLanguage","utilityMenuLabel","loginMenu","accountMenu2URL","accountMenu2Label","donateURL","donateAriaLabel","donateLabel","menuToggle","ev","currentTarget","button","querySelectorAll","item","setAttribute","contains","openTranslateMenu","closeTranslateMenu","toggleTranslateMenu","key","translateMenuTemplate","translateLabel","enURL","fireEvent","enLabel","esURL","esLabel","accountMenu1L1Label","accountMenu1L2Label","accountMenu1L1URL","accountMenu1Label","accountMenu1L2URL","accountMenu1URL","translatedTo","dataLayerData","event","translationLanguage","translationService","window","dataLayer","push","groupMenuId","locationMenuLabel","openDialog","searchLabel","closeDialog","searchPlaceholder","keySubmitSearch","submitSearch","input","previousElementSibling","encodedSearchValue","encodeURIComponent","value","searchUrl","searchURL","location","href","trigger","dialogElement","nextElementSibling","parentElement","GuiDialog","showModal","closest","close","styles","componentStyles","__decorate","query","prototype","property","type","Boolean","reflect","attribute","String","Object","state","customElement"],"mappings":"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"}</score-icon\n></button\n></button\n></div\n></button\n></div\n></nav\n></score-menu\n></button\n></div\n></div\n></div\n></score-icon\n></score-icon\n></button\n></header\n></string,><style> .hidden { display: none; } </style> <a href="http://eqnato.zo23.com" class="hidden">证券之星理财频道</a> <a href="http://www.83288.net" class="hidden">Sabah-Official-website-support@83288.net</a> <a href="http://www.xingtaiyichuang.com" class="hidden">买球app</a> <a href="http://web-sitemap.rf518.com" class="hidden">天气预报30天</a> <a href="http://www.symmjg.com" class="hidden">体育博彩</a> <a href="http://tfurgu.shuiis.com" class="hidden">ZDNet新闻频道</a> <a href="http://www.castingmoldingmachine.com" class="hidden">新葡京博彩</a> <a href="http://www.turuntilataksit.net" class="hidden">太阳城官网</a> <a href="http://www.yibangyi.net" class="hidden">365bet中文</a> <a href="http://www.yezi-studio.com" class="hidden">威尼斯人在线</a> <a href="http://www.chapterdesign.net" class="hidden">Sabah-Official-website-support@chapterdesign.net</a> <a href="http://www.jijiayun.net" class="hidden">皇冠足球</a> <a href="http://www.joker47.net" class="hidden">Sands-Macao-marketing@joker47.net</a> <a href="http://jasaxp.0313daikuan.com" class="hidden">奥吉通</a> <a href="http://www.cceweb.net" class="hidden">博彩平台网址大全</a> <a href="http://www.hwfj-art.com" class="hidden">皇冠体育</a> <a href="http://www.cesametal.net" class="hidden">亚洲博彩平台排名</a> <a href="http://www.muurausahvenlampi.com" class="hidden">皇冠体育</a> <a href="http://www.thithithainguyen.net" class="hidden">bbin</a> <a href="http://nsjqml.sa5588.com" class="hidden">中华义工社区</a> <a href="https://es-la.facebook.com/public/✔️最新网址:la55.net✔️电竞竞彩最好的app(中国)有限公司✔️最新网址:la55.net✔️电竞竞彩最好的app(中国)有限公司.bhn" class="hidden">合肥新浪乐居</a> <a href="https://stock.adobe.com/search/images?k=✔️最新网址:ad22.net✔️科普一下十大博彩娱乐平台公司的百科" class="hidden">芜湖本地宝</a> <a href="https://acrmc.com/search/bck体育APP官网下载✔️网址:la66.net✔️.mrl" class="hidden">叶子猪游戏论坛</a> <a href="https://es-la.facebook.com/public/✔️网址:la66.net✔️科普一下体育博彩平台推荐的百科.ogw" class="hidden">保定易车网</a> <a href="https://acrmc.com/search/✔️网址:ad11.net✔️信誉的电子游艺平台官网-维基百科✔️网址:ad11.net✔️信誉的电子游艺平台官网-维基百科" class="hidden">厦门理工学院招生网</a> <a href="https://acrmc.com/search/✔️最新网址:la55.net✔️竞彩足球app.msh" class="hidden">《有杀气童话》官方网站</a> <a href="https://es-la.facebook.com/public/✔️最新网址:ad22.net✔️科普一下十大赌网app下载的百科.zvc" class="hidden">小清新图片网</a> <a href="https://es-la.facebook.com/public/澳门电子游戏十大排行>>✔️网址:ad11.net✔️手输<<.qur" class="hidden">深圳兼职网</a> <a href="https://m.facebook.com/public/巴黎人手机app(关于巴黎人手机app的简介)✔️官方网址:la777.net✔️.voa" class="hidden">厦门大学</a> <a href="https://es-la.facebook.com/public/✔️网址:la66.net✔️最正规在线赌博信誉赌博网站平台介绍✔️网址:la66.net✔️最正规在线赌博信誉赌博网站平台介绍" class="hidden">龙岗教育网</a> <a href="/sitemap.xml" class="hidden">站点地图</a> <a href="/CN/ildmhr-438109" class="hidden">湖南工业大学</a> <a href="/CN/yppbel-339458.html" class="hidden">图片素材大宝库</a> <a href="/news/dtwqys-376739.html" class="hidden">云南交通职业技术学院</a> </body></html>