fix(analytics.ts): add safe check for process so Excalidraw can be loaded via script (#2824)

* fix(analytics.ts): add safe check for process so Excalidraw can be loaded via script

* fix
This commit is contained in:
Aakansha Doshi 2021-01-20 21:27:33 +05:30 committed by GitHub
parent 3922ee8c11
commit 49bd683401
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
export const trackEvent = export const trackEvent =
process.env.REACT_APP_GOOGLE_ANALYTICS_ID && typeof process !== "undefined" &&
process.env?.REACT_APP_GOOGLE_ANALYTICS_ID &&
typeof window !== "undefined" && typeof window !== "undefined" &&
window.gtag window.gtag
? (category: string, name: string, label?: string, value?: number) => { ? (category: string, name: string, label?: string, value?: number) => {
@ -9,7 +10,7 @@ export const trackEvent =
value, value,
}); });
} }
: typeof process !== "undefined" && process?.env?.JEST_WORKER_ID : typeof process !== "undefined" && process.env?.JEST_WORKER_ID
? (category: string, name: string, label?: string, value?: number) => {} ? (category: string, name: string, label?: string, value?: number) => {}
: (category: string, name: string, label?: string, value?: number) => { : (category: string, name: string, label?: string, value?: number) => {
// Uncomment the next line to track locally // Uncomment the next line to track locally