import { store } from '~~/store/store'
import { defineNuxtPlugin, useRouter, useRuntimeConfig, useSendGtmEvent } from '#imports'
export default defineNuxtPlugin(() => {
const config = useRuntimeConfig()
if (config.public.googleTagManagerId) {
const head = document.getElementsByTagName('head')[0]
const body = document.body
const { ad_storage, analytics_storage, functionality_storage, personalization_storage, security_storage } = useAppStore().cookieConsent
/* --------------------------- consent management --------------------------- */
window.dataLayer = window.dataLayer || [];
dataLayer.push(arguments);
gtag("consent", "default", {
ad_storage: '${ad_storage ? 'granted' : 'denied'}',
analytics_storage: '${analytics_storage ? 'granted' : 'denied'}',
functionality_storage: '${functionality_storage ? 'granted' : 'denied'}',
personalization_storage: '${personalization_storage ? 'granted' : 'denied'}',
security_storage: '${security_storage ? 'granted' : 'denied'}',
gtag('set', 'url_passthrough', true);
gtag("set", "ads_data_redaction", true);
const consentScript = document.createRange().createContextualFragment(consentHtml)
head.append(consentScript)
/* ---------------------------------- init ---------------------------------- */
w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});
var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';
j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;
f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','${config.public.googleTagManagerId}');
const gtmScript = document.createRange().createContextualFragment(scriptHtml)
/* -------------------------------- no-script ------------------------------- */
<iframe src="https://www.googletagmanager.com/ns.html?id=${config.public.googleTagManagerId}" height="0" width="0" style="display:none;visibility:hidden"></iframe>
const gtmNoscript = document.createRange().createContextualFragment(noScriptHtml)
/* -------------------------------- page view ------------------------------- */
useRouter().afterEach((to, from) => {
event: 'virtualPageview',
pageUrl: `${window.location.protocol}//${window.location.host}${to.fullPath}`,
referrerPage: `${window.location.protocol}//${window.location.host}${from.fullPath}`,