Integrate google analytics

pull/1331/head
Kamran Ahmed 3 years ago
parent 0067cfdbc6
commit dd43969dfb
  1. 8
      lib/gtag.ts
  2. 8
      pages/_app.tsx

@ -5,7 +5,7 @@ declare global {
}
// https://developers.google.com/analytics/devguides/collection/gtagjs/pages
export const firePageView = (url: string) => {
export function firePageView(url: string) {
if (!window.gtag) {
console.warn('Missing GTAG – Analytics disabled');
return;
@ -14,10 +14,10 @@ export const firePageView = (url: string) => {
window.gtag('config', process.env.GA_SECRET, {
page_path: url
});
};
}
// https://developers.google.com/analytics/devguides/collection/gtagjs/events
export const event = (props: { action: string; category: string; label: string; value: string; }) => {
export function event(props: { action: string; category: string; label: string; value: string; }) {
const { action, category, label, value } = props;
if (!window.gtag) {
console.warn('Missing GTAG – Analytics disabled');
@ -33,4 +33,4 @@ export const event = (props: { action: string; category: string; label: string;
value: value
}
);
};
}

@ -1,9 +1,15 @@
import { useEffect } from 'react';
import type { AppProps } from 'next/app';
import { ChakraProvider } from '@chakra-ui/react';
import { roadmapTheme } from '../lib/theme';
import 'prism-themes/themes/prism-shades-of-purple.css';
import { roadmapTheme } from '../lib/theme';
import { firePageView } from '../lib/gtag';
function MyApp({ Component, pageProps }: AppProps) {
useEffect(() => {
firePageView(window.location.pathname);
}, []);
return (
<ChakraProvider theme={roadmapTheme}>
<Component {...pageProps} />

Loading…
Cancel
Save