'use client' // TODO: Evaluate import 'client only' import React, { useEffect } from 'react' import Script from 'next/script' import type { GTMParams } from '../types/google' let currDataLayerName = 'dataLayer' export function GoogleTagManager(props: GTMParams) { const { gtmId, gtmScriptUrl = 'https://www.googletagmanager.com/gtm.js', dataLayerName = 'dataLayer', auth, preview, dataLayer, nonce, } = props currDataLayerName = dataLayerName const gtmLayer = dataLayerName !== 'dataLayer' ? `&l=${dataLayerName}` : '' const gtmAuth = auth ? `>m_auth=${auth}` : '' const gtmPreview = preview ? `>m_preview=${preview}>m_cookies_win=x` : '' useEffect(() => { // performance.mark is being used as a feature use signal. While it is traditionally used for performance // benchmarking it is low overhead and thus considered safe to use in production and it is a widely available // existing API. // The performance measurement will be handled by Chrome Aurora performance.mark('mark_feature_usage', { detail: { feature: 'next-third-parties-gtm', }, }) }, []) return ( <>