mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-18 16:11:45 +03:00
886d30cf9e
* 🚚 move june analytics to folder and update paths * ✨ set up google analytics * ✨ sent firt GA event with react-ga * 🔒️ update security headers to include vercel and google analytics * 🚚 rename Vercel Analytics * ✨ use react-ga4 instread * 💚 fix tests
26 lines
634 B
TypeScript
26 lines
634 B
TypeScript
"use client";
|
|
|
|
import { usePathname } from "next/navigation";
|
|
import { useEffect } from "react";
|
|
|
|
import { useSupabase } from "@/lib/context/SupabaseProvider";
|
|
|
|
import { useJune } from "./useJune";
|
|
|
|
export const usePageTracking = (): void => {
|
|
const analytics = useJune();
|
|
const pathname = usePathname();
|
|
const { session } = useSupabase();
|
|
|
|
useEffect(() => {
|
|
if (pathname !== null) {
|
|
const handleRouteChange = async () => {
|
|
await analytics?.identify(session?.user.id);
|
|
await analytics?.page(pathname);
|
|
};
|
|
|
|
void handleRouteChange();
|
|
}
|
|
}, [analytics, pathname, session?.user.id]);
|
|
};
|