Skip to content

Commit

Permalink
fix: no window thing (#4900)
Browse files Browse the repository at this point in the history
  • Loading branch information
jose-donato authored Apr 25, 2023
1 parent 76134c7 commit 130942b
Showing 1 changed file with 26 additions and 24 deletions.
50 changes: 26 additions & 24 deletions website/src/theme/Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,9 @@ export const iFrameContext = createContext({

export const useIFrameContext = () => useContext(iFrameContext);

posthog.init("phc_EqU3YjnV8OYmBlKanwWq222B8OHQksfmQBUtcVeteHR", {
api_host: "https://app.posthog.com",
autocapture: {
css_selector_allowlist: [".ph-capture"],
},
loaded: () => {
posthog.onFeatureFlags(function () {
if (!posthog.isFeatureEnabled("record-web", { send_event: false })) {
posthog.stopSessionRecording();
console.log("Stopped session recording");
}
if (!posthog.isFeatureEnabled("collect-logs-web", { send_event: false })) {
posthog.opt_out_capturing();
console.log("Opted out of capturing");
} else if (posthog.has_opted_out_capturing()) {
posthog.opt_in_capturing();
console.log("Opted in to capturing");
}
});
},
});

export default function Root({ children }) {
const [isIFrame, setIsIFrame] = useState(false);
const [posthogLoaded, setPosthogLoaded] = useState(false);
useEffect(() => {
setIsIFrame(window.self !== window.top);
if (window.self !== window.top) {
Expand All @@ -42,13 +21,36 @@ export default function Root({ children }) {
}
});
}
posthog.init("phc_EqU3YjnV8OYmBlKanwWq222B8OHQksfmQBUtcVeteHR", {
api_host: "https://app.posthog.com",
autocapture: {
css_selector_allowlist: [".ph-capture"],
},
loaded: () => {
setPosthogLoaded(true);
posthog.onFeatureFlags(function () {
if (!posthog.isFeatureEnabled("record-web", { send_event: false })) {
posthog.stopSessionRecording();
console.log("Stopped session recording");
}
if (!posthog.isFeatureEnabled("collect-logs-web", { send_event: false })) {
posthog.opt_out_capturing();
console.log("Opted out of capturing");
} else if (posthog.has_opted_out_capturing()) {
posthog.opt_in_capturing();
console.log("Opted in to capturing");
}
});
},
});
}, []);

const location = useLocation();

useEffect(() => {
posthog.capture("$pageview");
}, [location]);
if (posthogLoaded)
posthog.capture("$pageview");
}, [location.pathname, posthogLoaded]);

return (
<iFrameContext.Provider
Expand Down

0 comments on commit 130942b

Please sign in to comment.