1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-02-22 18:42:23 +01:00
2021-09-14 20:34:24 +02:00

37 lines
818 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

declare global {
interface Window {
gtag: any;
}
}
// https://developers.google.com/analytics/devguides/collection/gtagjs/pages
export function firePageView(url: string) {
if (!window.gtag) {
console.warn('Missing GTAG Analytics disabled');
return;
}
window.gtag('config', process.env.GA_SECRET, {
page_path: url
});
}
// https://developers.google.com/analytics/devguides/collection/gtagjs/events
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');
return;
}
window.gtag(
'event',
action,
{
event_category: category,
event_label: label,
value: value
}
);
}