mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-05 10:14:30 +00:00
129 lines
3.3 KiB
TypeScript
129 lines
3.3 KiB
TypeScript
// PostHog public ingest key — write-only, safe to ship in the client bundle
|
|
const POSTHOG_API_KEY = "phc_zjjbX0PnWxERXrMHhkEJWj9A9BhGVLRReICgsfTMmpx";
|
|
const POSTHOG_HOST = "https://us.i.posthog.com";
|
|
const FLUSH_INTERVAL_MS = 30_000;
|
|
const FLUSH_TIMEOUT_MS = 5_000;
|
|
|
|
interface EventProperties {
|
|
[key: string]: string | number | boolean | null | undefined;
|
|
}
|
|
|
|
interface QueuedEvent {
|
|
event: string;
|
|
properties: EventProperties;
|
|
timestamp: string;
|
|
}
|
|
|
|
let queue: QueuedEvent[] = [];
|
|
let flushTimer: ReturnType<typeof setInterval> | null = null;
|
|
let distinctId: string | null = null;
|
|
|
|
function getDistinctId(): string {
|
|
if (distinctId) return distinctId;
|
|
try {
|
|
const stored = localStorage.getItem("hf-studio-anon-id");
|
|
if (stored) {
|
|
distinctId = stored;
|
|
return stored;
|
|
}
|
|
} catch {
|
|
// localStorage may be unavailable
|
|
}
|
|
distinctId = crypto.randomUUID();
|
|
try {
|
|
localStorage.setItem("hf-studio-anon-id", distinctId);
|
|
} catch {
|
|
// best-effort persistence
|
|
}
|
|
return distinctId;
|
|
}
|
|
|
|
function isEnabled(): boolean {
|
|
try {
|
|
return localStorage.getItem("hf-studio-telemetry-opt-out") !== "1";
|
|
} catch {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
function getSessionProperties(): EventProperties {
|
|
return {
|
|
studio_version: typeof __STUDIO_VERSION__ !== "undefined" ? __STUDIO_VERSION__ : "dev",
|
|
screen_width: window.screen?.width,
|
|
screen_height: window.screen?.height,
|
|
viewport_width: window.innerWidth,
|
|
viewport_height: window.innerHeight,
|
|
user_agent: navigator.userAgent,
|
|
url_hash: location.hash.replace(/#project\//, ""),
|
|
};
|
|
}
|
|
|
|
declare const __STUDIO_VERSION__: string;
|
|
|
|
export function trackStudioEvent(event: string, properties: EventProperties = {}): void {
|
|
if (!isEnabled()) return;
|
|
|
|
queue.push({
|
|
event: `studio:${event}`,
|
|
properties: { ...getSessionProperties(), ...properties },
|
|
timestamp: new Date().toISOString(),
|
|
});
|
|
|
|
if (!flushTimer) {
|
|
flushTimer = setInterval(flushEvents, FLUSH_INTERVAL_MS);
|
|
}
|
|
}
|
|
|
|
async function flushEvents(): Promise<void> {
|
|
if (queue.length === 0) return;
|
|
|
|
const batch = queue.map((e) => ({
|
|
event: e.event,
|
|
properties: { ...e.properties, $ip: null },
|
|
distinct_id: getDistinctId(),
|
|
timestamp: e.timestamp,
|
|
}));
|
|
queue = [];
|
|
|
|
const controller = new AbortController();
|
|
const timeout = setTimeout(() => controller.abort(), FLUSH_TIMEOUT_MS);
|
|
|
|
try {
|
|
await fetch(`${POSTHOG_HOST}/batch/`, {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ api_key: POSTHOG_API_KEY, batch }),
|
|
signal: controller.signal,
|
|
});
|
|
} catch {
|
|
// Telemetry must never break the studio
|
|
} finally {
|
|
clearTimeout(timeout);
|
|
}
|
|
}
|
|
|
|
if (typeof window !== "undefined") {
|
|
window.addEventListener("visibilitychange", () => {
|
|
if (document.visibilityState === "hidden") {
|
|
if (flushTimer) {
|
|
clearInterval(flushTimer);
|
|
flushTimer = null;
|
|
}
|
|
if (queue.length === 0) return;
|
|
const batch = queue.map((e) => ({
|
|
event: e.event,
|
|
properties: { ...e.properties, $ip: null },
|
|
distinct_id: getDistinctId(),
|
|
timestamp: e.timestamp,
|
|
}));
|
|
queue = [];
|
|
const body = JSON.stringify({ api_key: POSTHOG_API_KEY, batch });
|
|
try {
|
|
navigator.sendBeacon(`${POSTHOG_HOST}/batch/`, body);
|
|
} catch {
|
|
// best-effort
|
|
}
|
|
}
|
|
});
|
|
}
|