{"version":3,"file":"B8IWh6UL.js","sources":["../../../../node_modules/nuxt/dist/head/runtime/components.js","../../../../src/components/layout/HeadAttributes.vue"],"sourcesContent":["import { defineComponent } from \"vue\";\nimport { useHead } from \"@unhead/vue\";\nconst removeUndefinedProps = (props) => {\n const filteredProps = /* @__PURE__ */ Object.create(null);\n for (const key in props) {\n const value = props[key];\n if (value !== void 0) {\n filteredProps[key] = value;\n }\n }\n return filteredProps;\n};\nconst setupForUseMeta = (metaFactory, renderChild) => (props, ctx) => {\n useHead(() => metaFactory({ ...removeUndefinedProps(props), ...ctx.attrs }, ctx));\n return () => renderChild ? ctx.slots.default?.() : null;\n};\nconst globalProps = {\n accesskey: String,\n autocapitalize: String,\n autofocus: {\n type: Boolean,\n default: void 0\n },\n class: [String, Object, Array],\n contenteditable: {\n type: Boolean,\n default: void 0\n },\n contextmenu: String,\n dir: String,\n draggable: {\n type: Boolean,\n default: void 0\n },\n enterkeyhint: String,\n exportparts: String,\n hidden: {\n type: Boolean,\n default: void 0\n },\n id: String,\n inputmode: String,\n is: String,\n itemid: String,\n itemprop: String,\n itemref: String,\n itemscope: String,\n itemtype: String,\n lang: String,\n nonce: String,\n part: String,\n slot: String,\n spellcheck: {\n type: Boolean,\n default: void 0\n },\n style: String,\n tabindex: String,\n title: String,\n translate: String\n};\nexport const NoScript = defineComponent({\n name: \"NoScript\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n title: String,\n body: Boolean,\n renderPriority: [String, Number]\n },\n setup: setupForUseMeta((props, { slots }) => {\n const noscript = { ...props };\n const slotVnodes = slots.default?.();\n const textContent = slotVnodes ? slotVnodes.filter(({ children }) => children).map(({ children }) => children).join(\"\") : \"\";\n if (textContent) {\n noscript.children = textContent;\n }\n return {\n noscript: [noscript]\n };\n })\n});\nexport const Link = defineComponent({\n // eslint-disable-next-line vue/no-reserved-component-names\n name: \"Link\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n as: String,\n crossorigin: String,\n disabled: Boolean,\n fetchpriority: String,\n href: String,\n hreflang: String,\n imagesizes: String,\n imagesrcset: String,\n integrity: String,\n media: String,\n prefetch: {\n type: Boolean,\n default: void 0\n },\n referrerpolicy: String,\n rel: String,\n sizes: String,\n title: String,\n type: String,\n /** @deprecated **/\n methods: String,\n /** @deprecated **/\n target: String,\n body: Boolean,\n renderPriority: [String, Number]\n },\n setup: setupForUseMeta((link) => ({\n link: [link]\n }))\n});\nexport const Base = defineComponent({\n // eslint-disable-next-line vue/no-reserved-component-names\n name: \"Base\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n href: String,\n target: String\n },\n setup: setupForUseMeta((base) => ({\n base\n }))\n});\nexport const Title = defineComponent({\n // eslint-disable-next-line vue/no-reserved-component-names\n name: \"Title\",\n inheritAttrs: false,\n setup: setupForUseMeta((_, { slots }) => {\n if (import.meta.dev) {\n const defaultSlot = slots.default?.();\n if (defaultSlot && (defaultSlot.length > 1 || typeof defaultSlot[0].children !== \"string\")) {\n console.error(\" can take only one string in its default slot.\");\n }\n return {\n title: defaultSlot?.[0]?.children || null\n };\n }\n return {\n title: slots.default?.()?.[0]?.children || null\n };\n })\n});\nexport const Meta = defineComponent({\n // eslint-disable-next-line vue/no-reserved-component-names\n name: \"Meta\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n charset: String,\n content: String,\n httpEquiv: String,\n name: String,\n body: Boolean,\n renderPriority: [String, Number]\n },\n setup: setupForUseMeta((props) => {\n const meta = { ...props };\n if (meta.httpEquiv) {\n meta[\"http-equiv\"] = meta.httpEquiv;\n delete meta.httpEquiv;\n }\n return {\n meta: [meta]\n };\n })\n});\nexport const Style = defineComponent({\n // eslint-disable-next-line vue/no-reserved-component-names\n name: \"Style\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n type: String,\n media: String,\n nonce: String,\n title: String,\n /** @deprecated **/\n scoped: {\n type: Boolean,\n default: void 0\n },\n body: Boolean,\n renderPriority: [String, Number]\n },\n setup: setupForUseMeta((props, { slots }) => {\n const style = { ...props };\n const textContent = slots.default?.()?.[0]?.children;\n if (textContent) {\n if (import.meta.dev && typeof textContent !== \"string\") {\n console.error(\"<Style> can only take a string in its default slot.\");\n }\n style.children = textContent;\n }\n return {\n style: [style]\n };\n })\n});\nexport const Head = defineComponent({\n // eslint-disable-next-line vue/no-reserved-component-names\n name: \"Head\",\n inheritAttrs: false,\n setup: (_props, ctx) => () => ctx.slots.default?.()\n});\nexport const Html = defineComponent({\n // eslint-disable-next-line vue/no-reserved-component-names\n name: \"Html\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n manifest: String,\n version: String,\n xmlns: String,\n renderPriority: [String, Number]\n },\n setup: setupForUseMeta((htmlAttrs) => ({ htmlAttrs }), true)\n});\nexport const Body = defineComponent({\n // eslint-disable-next-line vue/no-reserved-component-names\n name: \"Body\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n renderPriority: [String, Number]\n },\n setup: setupForUseMeta((bodyAttrs) => ({ bodyAttrs }), true)\n});\n","<template>\n <Head>\n <Meta name=\"viewport\" :content=\"viewport\"></Meta>\n <!-- viewport value is set in plugins/adjustTabletTouchScreenScaling.ts -->\n <Meta charset=\"utf-8\"></Meta>\n <Meta name=\"robots\" content=\"noarchive\"></Meta>\n </Head>\n</template>\n<script setup lang=\"ts\">\nimport { useAreaStore } from '~~/src/stores/useArea';\nimport { SiteIdent } from '~/@types/siteIdent';\nimport { useSessionStore } from '~/stores/useSessionStore';\nimport { useUserContext } from '~/stores/useUserContext';\n\nconst isServer = import.meta.server;\nconst viewport = ref('width=device-width, initial-scale=1');\nconst isTouch = ref(false);\nconst config = useRuntimeConfig();\nconst site = useSiteIdent();\nconst sessionStore = useSessionStore();\nconst userContext = useUserContext();\n\nconst customerId = ref<string | null>(null);\n\nsetMailchimpScript(); // Has to be set on SSR\n\nif (!import.meta.server) {\n isTouch.value = window.matchMedia('(hover: none)').matches;\n setViewport(screen.width);\n setGTMScript();\n setHotjarScript();\n\n if (useShopEnabled()) {\n /**\n * EPOQ recommendations\n */\n const epoqTenantMap: Record<SiteIdent, string> = {\n [SiteIdent.default]: config.public.EPOQ_TENANT_ID_VDV as string,\n [SiteIdent.miniluDe]: config.public.EPOQ_TENANT_ID_MINILU_DE as string,\n [SiteIdent.miniluAt]: config.public.EPOQ_TENANT_ID_MINILU_AT as string,\n [SiteIdent.miniluNl]: config.public.EPOQ_TENANT_ID_MINILU_NL as string,\n };\n\n if (epoqTenantMap[site]) {\n const customerIdScript = document.createElement('script');\n customerIdScript.setAttribute('type', 'text/javascript');\n document.head.prepend(customerIdScript);\n\n watch(\n () => customerId.value,\n (customerId) => {\n if (customerId) {\n customerIdScript.appendChild(\n document.createTextNode(`epoq_customerId = '${customerId}';`),\n );\n } else {\n customerIdScript.innerHTML = '';\n }\n },\n );\n\n const epoqFlowScript = document.createElement('script');\n epoqFlowScript.setAttribute(\n 'src',\n `https://cdn.epoq.de/flow/${epoqTenantMap[site]}.js`,\n );\n epoqFlowScript.setAttribute('class', 'cmplazyload');\n epoqFlowScript.setAttribute('data-cmp-vendor', 's1472');\n epoqFlowScript.setAttribute('type', 'text/plain');\n document.head.appendChild(epoqFlowScript);\n watch(\n [\n () => sessionStore.isLoggedIn,\n () => userContext.accountData?.customerNumber,\n ],\n ([isLoggedIn, customerNumber]) => {\n if (\n isLoggedIn &&\n customerNumber &&\n (\n window as Window &\n typeof globalThis & { cmpCustomVendorsConsent: string }\n )?.cmpCustomVendorsConsent?.includes('s1472')\n ) {\n customerIdScript.appendChild(\n document.createTextNode(`epoq_customerId = '${customerNumber}';`),\n );\n document.head.prepend(customerIdScript);\n } else {\n customerId.value = null;\n customerIdScript.innerHTML = '';\n customerIdScript.remove();\n }\n },\n { immediate: true },\n );\n }\n }\n\n window.addEventListener('resize', () => {\n setViewport(screen.width);\n });\n}\nif (!isServer) {\n useHead({\n script: [],\n });\n}\n\nconst areaStore = useAreaStore();\nconst siteId = useSiteIdent();\nconst shopIsEnabled = useShopEnabled();\n\nwatch(\n () => areaStore.activeAreaId,\n () => {\n useHead({\n style: [\n {\n id: 'areaStyles',\n innerHTML: `:root {${areaStore.areaStyles};${areaStore.activeAreaStyles}}`,\n },\n // @INFO Sticky-Header Top-Spacing for elements on VDV without Shop => 0 because header isn't sticky\n {\n id: 'stickyHeader',\n innerHTML: `:root {--sticky-header-height: ${\n siteId === SiteIdent.default && !shopIsEnabled\n ? '0px'\n : 'var(--thm-spacing-stickyheader)'\n };}`,\n },\n ],\n });\n },\n { immediate: true },\n);\n\nfunction setViewport(screenWidth: number) {\n if (screenWidth < 1440 && screenWidth >= 768 && isTouch.value) {\n viewport.value = `width=1440, initial-scale=${screenWidth / 1440}`;\n } else {\n viewport.value = 'width=device-width, initial-scale=1';\n }\n}\n\n/**\n * GOOGLE Tag manager\n */\nfunction setGTMScript() {\n const site = useSiteIdent();\n let gtmId: string = null;\n\n if (site === SiteIdent.default) {\n gtmId = config.public.GOOGLE_ANALYTICS_ID_VDV;\n } else {\n gtmId = config.public.GOOGLE_ANALYTICS_ID_MINILU;\n }\n\n addGtmScriptToHead(gtmId);\n}\n\nfunction addGtmScriptToHead(gtmId: string | null) {\n if (!gtmId) return;\n\n //@TODO: Should this be async/deferred?\n //@TODO: Recheck later (mid 2023) if we still need this \"hacky\" Solution or if useHead will work for this by then\n // A bit hacky but you can use \"class\" on a script in useHead sadly, but it's required that the scripts have that for the cookie manager :(\n\n const script = document.createElement('script');\n script.appendChild(\n document.createTextNode(\n `(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':\n new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],\n j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=\n 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);\n })(window,document,'script','dataLayer','${gtmId}');;`,\n ),\n );\n script.setAttribute('class', 'cmplazyload');\n script.setAttribute('data-cmp-vendor', 's905');\n script.setAttribute('type', 'text/plain');\n document.head.appendChild(script);\n}\n\nfunction setMailchimpScript() {\n if (!useShopEnabled()) return;\n\n const mcIdMap: Record<SiteIdent, string> = {\n [SiteIdent.default]: config.public.MAILCHIMP_SCRIPT_ID_VDV,\n [SiteIdent.miniluDe]: config.public.MAILCHIMP_SCRIPT_ID_MINILU_DE,\n [SiteIdent.miniluAt]: config.public.MAILCHIMP_SCRIPT_ID_MINILU_AT,\n [SiteIdent.miniluNl]: config.public.MAILCHIMP_SCRIPT_ID_MINILU_NL,\n };\n const mcId = mcIdMap[site];\n if (!mcId) return;\n\n useHead({\n script: [\n {\n id: 'mailchimp_verification',\n src: `https://chimpstatic.com/mcjs-connected/js/users/a8780ef3529534dbe1b892a2a/${mcId}.js`,\n type: 'text/javascript',\n },\n ],\n });\n}\n\nfunction setHotjarScript() {\n if (!useShopEnabled()) return;\n\n const hjIdMap: Record<SiteIdent, string> = {\n [SiteIdent.default]: config.public.HOTJAR_ID_VDV,\n [SiteIdent.miniluDe]: config.public.HOTJAR_ID_MINILU_DE,\n [SiteIdent.miniluAt]: config.public.HOTJAR_ID_MINILU_AT,\n [SiteIdent.miniluNl]: config.public.HOTJAR_ID_MINILU_NL,\n };\n const hjId = hjIdMap[site];\n if (!hjId) return;\n\n const script = document.createElement('script');\n script.appendChild(\n document.createTextNode(\n `(function(h,o,t,j,a,r){\n h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};\n h._hjSettings={hjid:${hjId},hjsv:6};\n a=o.getElementsByTagName('head')[0];\n r=o.createElement('script');r.async=1;\n r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;\n a.appendChild(r);\n })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');`,\n ),\n );\n script.setAttribute('class', 'cmplazyload');\n script.setAttribute('data-cmp-vendor', 's46');\n script.setAttribute('type', 'text/plain');\n document.head.appendChild(script);\n}\n</script>\n"],"names":["removeUndefinedProps","props","filteredProps","key","value","setupForUseMeta","metaFactory","renderChild","ctx","useHead","_b","_a","globalProps","Meta","defineComponent","meta","Head","_props","viewport","ref","isTouch","config","useRuntimeConfig","site","useSiteIdent","sessionStore","useSessionStore","userContext","useUserContext","customerId","setMailchimpScript","setViewport","setGTMScript","setHotjarScript","useShopEnabled","epoqTenantMap","SiteIdent","customerIdScript","watch","epoqFlowScript","isLoggedIn","customerNumber","areaStore","useAreaStore","siteId","shopIsEnabled","screenWidth","gtmId","addGtmScriptToHead","script","mcId","hjId"],"mappings":"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","x_google_ignoreList":[0]}