quivr/frontend/services/analytics/june/useJune.ts
Zineb El Bachiri 886d30cf9e
feat(analytics): add google analytics (#1147)
* 🚚 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
2023-09-18 15:12:50 +02:00

30 lines
731 B
TypeScript

"use client";
import { AnalyticsBrowser } from "@june-so/analytics-next";
import { useEffect, useState } from "react";
const juneApiKey = process.env.NEXT_PUBLIC_JUNE_API_KEY;
export const useJune = (): AnalyticsBrowser | undefined => {
const [analytics, setAnalytics] = useState<AnalyticsBrowser | undefined>(
undefined
);
useEffect(() => {
const loadAnalytics = () => {
if (juneApiKey === undefined) {
console.log("No June API key found");
return;
}
const response = AnalyticsBrowser.load({
writeKey: juneApiKey,
});
console.log("Loaded June Analytics", response);
setAnalytics(response);
};
loadAnalytics();
}, []);
return analytics;
};