Files
real-time-fund/app/components/AnalyticsGate.jsx

30 lines
792 B
JavaScript

'use client';
import { useEffect, useState } from 'react';
import Script from 'next/script';
export default function AnalyticsGate({ GA_ID }) {
const [enabled, setEnabled] = useState(false);
useEffect(() => {
try {
const href = window.location.href || '';
setEnabled(href.includes('hzm0321'));
} catch {}
}, []);
if (!enabled) return null;
return (
<>
<Script src={`https://www.googletagmanager.com/gtag/js?id=${GA_ID}`} strategy="afterInteractive" />
<Script id="google-analytics" strategy="afterInteractive">
{`
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '${GA_ID}');
`}
</Script>
</>
);
}