plane/web/lib/posthog-provider.tsx

95 lines
3.0 KiB
TypeScript

import { FC, ReactNode, useEffect, useState } from "react";
import { useRouter } from "next/router";
import posthog from "posthog-js";
import { PostHogProvider as PHProvider } from "posthog-js/react";
import { IUser } from "@plane/types";
// constants
import { GROUP_WORKSPACE } from "@/constants/event-tracker";
// helpers
import { getUserRole } from "@/helpers/user.helper";
// types
export interface IPosthogWrapper {
children: ReactNode;
user: IUser | null;
workspaceIds: string[];
currentWorkspaceId: string | undefined;
posthogAPIKey: string | null;
posthogHost: string | null;
isCloud: boolean;
telemetryEnabled: boolean;
}
const PostHogProvider: FC<IPosthogWrapper> = (props) => {
const { children, user, workspaceIds, currentWorkspaceId, posthogAPIKey, posthogHost, isCloud, telemetryEnabled } =
props;
// states
const [lastWorkspaceId, setLastWorkspaceId] = useState(currentWorkspaceId);
// router
const router = useRouter();
useEffect(() => {
if (user) {
// Identify sends an event, so you want may want to limit how often you call it
posthog?.identify(isCloud ? user.email : user.id, {
id: user.id,
first_name: isCloud ? user.first_name : undefined,
last_name: isCloud ? user.last_name : undefined,
email: isCloud ? user.email : undefined,
use_case: user.use_case,
workspaces: workspaceIds,
});
}
}, [user, workspaceIds, isCloud]);
useEffect(() => {
if (
posthogAPIKey &&
(process.env.NEXT_PUBLIC_POSTHOG_HOST || posthogHost) &&
(isCloud || (!isCloud && telemetryEnabled))
) {
posthog.init(posthogAPIKey, {
api_host: process.env.NEXT_PUBLIC_POSTHOG_HOST || posthogHost || "https://app.posthog.com",
debug: process.env.NEXT_PUBLIC_POSTHOG_DEBUG === "1", // Debug mode based on the environment variable
autocapture: false,
capture_pageview: false, // Disable automatic pageview capture, as we capture manually
});
posthog?.opt_in_capturing();
}
}, [posthogAPIKey, posthogHost, isCloud, telemetryEnabled]);
useEffect(() => {
// Join workspace group on workspace change
if (lastWorkspaceId !== currentWorkspaceId && currentWorkspaceId && user) {
setLastWorkspaceId(currentWorkspaceId);
posthog?.identify(isCloud ? user.email : user.id);
posthog?.group(GROUP_WORKSPACE, currentWorkspaceId);
}
}, [currentWorkspaceId, lastWorkspaceId, user, isCloud]);
useEffect(() => {
// Track page views
const handleRouteChange = () => {
posthog?.capture("$pageview");
};
router.events.on("routeChangeComplete", handleRouteChange);
return () => {
router.events.off("routeChangeComplete", handleRouteChange);
};
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
if (!isCloud && !telemetryEnabled) {
posthog?.opt_out_capturing();
return <>{children}</>;
}
if (posthogAPIKey) {
return <PHProvider client={posthog}>{children}</PHProvider>;
}
return <>{children}</>;
};
export default PostHogProvider;