Files
developer-roadmap/lib/gtag.js

28 lines
680 B
JavaScript
Raw Normal View History

2019-11-08 01:32:01 +04:00
export const GA_TRACKING_ID = 'UA-139582634-1';
// https://developers.google.com/analytics/devguides/collection/gtagjs/pages
export const firePageView = url => {
2019-11-16 13:50:30 +04:00
if (!window.gtag) {
console.warn('Missing GTAG Analytics disabled');
return;
}
2019-11-08 01:32:01 +04:00
window.gtag('config', GA_TRACKING_ID, {
page_path: url,
})
};
// https://developers.google.com/analytics/devguides/collection/gtagjs/events
export const event = ({ action, category, label, value }) => {
2019-11-16 13:50:30 +04:00
if (!window.gtag) {
console.warn('Missing GTAG Analytics disabled');
return;
}
2019-11-08 01:32:01 +04:00
window.gtag('event', action, {
event_category: category,
event_label: label,
value: value,
})
};