Files
upscayl/renderer/components/posthog-provider-wrapper.tsx

46 lines
1.4 KiB
TypeScript

import { enableContributionAtom } from "@/atoms/user-settings-atom";
import { useAtomValue } from "jotai";
import posthog from "posthog-js";
import { PostHogProvider } from "posthog-js/react";
import { useEffect } from "react";
const PostHogProviderWrapper = ({
children,
}: {
children: React.ReactNode;
}) => {
const enableContribution = useAtomValue(enableContributionAtom);
useEffect(() => {
posthog.init("phc_QMcmlmComdofjfaRPzoN4KV9ziV2KgOwAOVyu4J3dIc", {
api_host: "https://us.i.posthog.com",
person_profiles: "always",
autocapture: false,
capture_pageview: false,
capture_pageleave: false,
disable_session_recording: true,
loaded: async (posthog) => {
if (process.env.NODE_ENV === "development") posthog.debug();
const systemInfo = await window.electron.getSystemInfo();
const appVersion = await window.electron.getAppVersion();
// Set super properties that will be included with all events
posthog.register({
...systemInfo,
appVersion,
});
// Capture initial session start
posthog.capture("app_launched", {
...systemInfo,
appVersion,
});
},
});
}, []);
if (enableContribution === false) return <>{children}</>;
return <PostHogProvider client={posthog}>{children}</PostHogProvider>;
};
export default PostHogProviderWrapper;