quivr/frontend/services/analytics/useJune.ts

26 lines
616 B
TypeScript
Raw Normal View History

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) {
return;
}
const response = AnalyticsBrowser.load({
writeKey: juneApiKey,
});
setAnalytics(response);
};
loadAnalytics();
}, []);
return analytics;
};