forked from janhq/jan
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: umami analytics send app loaded event (janhq#1928)
- Loading branch information
Showing
1 changed file
with
24 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,31 @@ | ||
import { useEffect } from 'react' | ||
|
||
import Script from 'next/script' | ||
|
||
// Define the type for the umami data object | ||
interface UmamiData { | ||
version: string | ||
} | ||
|
||
declare global { | ||
interface Window { | ||
umami: | ||
| { | ||
track: (event: string, data?: UmamiData) => void | ||
} | ||
| undefined | ||
} | ||
} | ||
|
||
const Umami = () => { | ||
const appVersion = VERSION | ||
const analyticsHost = ANALYTICS_HOST | ||
const analyticsId = ANALYTICS_ID | ||
|
||
useEffect(() => { | ||
if (!appVersion || !analyticsHost || !analyticsId) return | ||
const ping = () => { | ||
// Check if umami is defined before ping | ||
if (window.umami !== null && typeof window.umami !== 'undefined') { | ||
window.umami.track(appVersion, { | ||
version: appVersion, | ||
}) | ||
} | ||
} | ||
|
||
// Wait for umami to be defined before ping | ||
if (window.umami !== null && typeof window.umami !== 'undefined') { | ||
ping() | ||
} else { | ||
// Listen for umami script load event | ||
document.addEventListener('umami:loaded', ping) | ||
} | ||
|
||
// Cleanup function to remove event listener if the component unmounts | ||
return () => { | ||
document.removeEventListener('umami:loaded', ping) | ||
} | ||
}, [appVersion, analyticsHost, analyticsId]) | ||
|
||
return ( | ||
<> | ||
{appVersion && analyticsHost && analyticsId && ( | ||
<Script | ||
src={analyticsHost} | ||
data-website-id={analyticsId} | ||
data-cache="true" | ||
defer | ||
onLoad={() => document.dispatchEvent(new Event('umami:loaded'))} | ||
/> | ||
)} | ||
</> | ||
) | ||
if (!VERSION || !ANALYTICS_HOST || !ANALYTICS_ID) return | ||
fetch(ANALYTICS_HOST, { | ||
method: 'POST', | ||
// eslint-disable-next-line @typescript-eslint/naming-convention | ||
headers: { 'Content-Type': 'application/json' }, | ||
body: JSON.stringify({ | ||
payload: { | ||
website: ANALYTICS_ID, | ||
hostname: 'jan.ai', | ||
screen: `${screen.width}x${screen.height}`, | ||
language: navigator.language, | ||
referrer: 'index.html', | ||
data: { version: VERSION }, | ||
type: 'event', | ||
title: document.title, | ||
url: 'index.html', | ||
name: VERSION, | ||
}, | ||
type: 'event', | ||
}), | ||
}) | ||
}, []) | ||
|
||
return <></> | ||
} | ||
|
||
export default Umami |