SurfSense/surfsense_web/components/providers/PostHogIdentify.tsx
2026-06-23 12:57:01 +05:30

84 lines
2.1 KiB
TypeScript

"use client";
import { useAtomValue } from "jotai";
import { usePathname } from "next/navigation";
import { useEffect, useRef } from "react";
import { currentUserAtom } from "@/atoms/user/user-query.atoms";
import { useSession } from "@/hooks/use-session";
import { isPublicRoute } from "@/lib/auth-utils";
import { identifyUser, resetUser } from "@/lib/posthog/events";
/**
* Component that handles PostHog user identification.
* - Identifies users when they're logged in (user data is available)
* - Resets the PostHog identity when user logs out
*
* This should be rendered inside the PostHogProvider.
*/
function PostHogReset() {
useEffect(() => {
resetUser();
}, []);
return null;
}
function PostHogUserIdentify() {
const { data: user, isSuccess, isError } = useAtomValue(currentUserAtom);
const previousUserIdRef = useRef<string | null>(null);
useEffect(() => {
// Only run on client side
if (typeof window === "undefined") return;
// User is logged in and we have their data
if (isSuccess && user?.id) {
const userId = String(user.id);
// Only identify if this is a new user or different from previous
if (previousUserIdRef.current !== userId) {
identifyUser(userId, {
email: user.email,
name: user.display_name,
is_superuser: user.is_superuser,
is_verified: user.is_verified,
});
previousUserIdRef.current = userId;
}
}
// User is not logged in (query failed due to auth error)
// and we previously had a user identified
if (isError && previousUserIdRef.current !== null) {
resetUser();
previousUserIdRef.current = null;
}
}, [user, isSuccess, isError]);
// This component doesn't render anything
return null;
}
function SessionGatedPostHogIdentify() {
const session = useSession();
if (session.status === "loading") {
return null;
}
if (session.status === "unauthenticated") {
return <PostHogReset />;
}
return <PostHogUserIdentify />;
}
export function PostHogIdentify() {
const pathname = usePathname();
if (isPublicRoute(pathname)) {
return <PostHogReset />;
}
return <SessionGatedPostHogIdentify />;
}