0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Fixed issue with calling Posthog functions before it is loaded (#19721)

refs PA-36

- Since Posthog is loaded outside of the main Admin app bundle, we need
to check to make sure it exists before calling it. This way it will only
run on Pro and not locally or on self-hosted instances
- Previously we were checking that `window.posthog` existed, but there
are some cases where `window.posthog` may exist, but the `posthog`
object is not fully loaded yet.
- This change fixes this by checking for `window.posthog.__loaded`
instead, which is set to `true` once the `posthog` object is fully
loaded — at this point, we should be able to call whatever functions we
need to on `window.posthog`
This commit is contained in:
Chris Raible 2024-02-20 13:57:42 -08:00 committed by GitHub
parent 99588a7852
commit fbeecd58e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -44,7 +44,7 @@ export function trackEvent(eventName, props = {}) {
*/
export async function identifyUser(user) {
// Return early if window.posthog doesn't exist
if (!window.posthog) {
if (!window.posthog?.__loaded) {
return;
}
// User the user exists and has an email address, identify them in PostHog
@ -79,7 +79,7 @@ export async function identifyUser(user) {
* @returns {void}
*/
export function resetUser() {
if (window.posthog) {
if (window.posthog?.__loaded) {
window.posthog.reset();
}
}