-
Notifications
You must be signed in to change notification settings - Fork 27.1k
/
gtm.tsx
70 lines (61 loc) · 2.04 KB
/
gtm.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
'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 (
<>
<Script
id="_next-gtm-init"
dangerouslySetInnerHTML={{
__html: `
(function(w,l){
w[l]=w[l]||[];
w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});
${dataLayer ? `w[l].push(${JSON.stringify(dataLayer)})` : ''}
})(window,'${dataLayerName}');`,
}}
nonce={nonce}
/>
<Script
id="_next-gtm"
data-ntpc="GTM"
src={`${gtmScriptUrl}?id=${gtmId}${gtmLayer}${gtmAuth}${gtmPreview}`}
nonce={nonce}
/>
</>
)
}
export const sendGTMEvent = (data: Object, dataLayerName?: string) => {
// special case if we are sending events before GTM init and we have custom dataLayerName
const dataLayer = dataLayerName || currDataLayerName
// define dataLayer so we can still queue up events before GTM init
window[dataLayer] = window[dataLayer] || []
window[dataLayer].push(data)
}