
* chore: Remove tracking * process * rename * remove * prod * Update public/index.html Co-authored-by: David Luzar <luzar.david@gmail.com> * Update public/index.html * eol * more * stats Co-authored-by: David Luzar <luzar.david@gmail.com>
18 lines
691 B
TypeScript
18 lines
691 B
TypeScript
export const trackEvent =
|
|
process.env.REACT_APP_GOOGLE_ANALYTICS_ID &&
|
|
typeof window !== "undefined" &&
|
|
window.gtag
|
|
? (category: string, name: string, label?: string, value?: number) => {
|
|
window.gtag("event", name, {
|
|
event_category: category,
|
|
event_label: label,
|
|
value,
|
|
});
|
|
}
|
|
: typeof process !== "undefined" && process?.env?.JEST_WORKER_ID
|
|
? (category: string, name: string, label?: string, value?: number) => {}
|
|
: (category: string, name: string, label?: string, value?: number) => {
|
|
// Uncomment the next line to track locally
|
|
// console.info("Track Event", category, name, label, value);
|
|
};
|