-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathScripts.tsx
53 lines (50 loc) · 1.42 KB
/
Scripts.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
import Script from "next/script";
import { usePageContext } from "~/context";
import { getEnvironment } from "~/env";
export function Scripts() {
const ctx = usePageContext();
const scripts = usePageContext().bundle.config.scripts;
// We don't want to load the scripts in preview mode or in preview environments.
if (ctx.preview) {
return null;
}
return (
<>
{!!scripts?.googleTagManager && (
<Script
async
src={`https://www.googletagmanager.com/gtag/js?id=${scripts.googleTagManager}`}
/>
)}
{!!scripts?.googleAnalytics && (
<>
<Script
async
src={`https://www.googletagmanager.com/gtag/js?id=${scripts.googleAnalytics}`}
/>
<Script
async
dangerouslySetInnerHTML={{
__html: `
window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments)}
gtag('js', new Date()); gtag('config', '${scripts.googleAnalytics}');
`,
}}
/>
</>
)}
{"domain" in ctx && !!ctx.domain && !!scripts?.plausible && (
<Script
async
defer
data-domain={ctx.domain}
src={
typeof scripts.plausible === "boolean"
? "https://plausible.io/js/plausible.js"
: scripts.plausible
}
/>
)}
</>
);
}