d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
66 lines
2.1 KiB
TypeScript
66 lines
2.1 KiB
TypeScript
'use client'
|
|
|
|
import { useEffect, useRef, useState } from 'react'
|
|
import { createLogger } from '@sim/logger'
|
|
import type { PostHog } from 'posthog-js'
|
|
import { getEnv, isTruthy } from '@/lib/core/config/env'
|
|
|
|
const logger = createLogger('PostHogProvider')
|
|
|
|
export function PostHogProvider({ children }: { children: React.ReactNode }) {
|
|
const [Provider, setProvider] = useState<React.ComponentType<{
|
|
client: PostHog
|
|
children: React.ReactNode
|
|
}> | null>(null)
|
|
const clientRef = useRef<PostHog | null>(null)
|
|
|
|
useEffect(() => {
|
|
const posthogEnabled = getEnv('NEXT_PUBLIC_POSTHOG_ENABLED')
|
|
const posthogKey = getEnv('NEXT_PUBLIC_POSTHOG_KEY')
|
|
|
|
if (!isTruthy(posthogEnabled) || !posthogKey) return
|
|
|
|
Promise.all([import('posthog-js'), import('posthog-js/react')])
|
|
.then(([posthogModule, { PostHogProvider: PHProvider }]) => {
|
|
const posthog = posthogModule.default
|
|
if (!posthog.__loaded) {
|
|
posthog.init(posthogKey, {
|
|
api_host: '/ingest',
|
|
ui_host: 'https://us.posthog.com',
|
|
defaults: '2025-05-24',
|
|
person_profiles: 'identified_only',
|
|
autocapture: false,
|
|
capture_pageview: false,
|
|
capture_pageleave: false,
|
|
capture_performance: false,
|
|
capture_dead_clicks: false,
|
|
enable_heatmaps: false,
|
|
disable_session_recording: true,
|
|
session_recording: {
|
|
maskAllInputs: false,
|
|
maskInputOptions: {
|
|
password: true,
|
|
email: false,
|
|
},
|
|
recordCrossOriginIframes: false,
|
|
recordHeaders: false,
|
|
recordBody: false,
|
|
},
|
|
persistence: 'localStorage+cookie',
|
|
})
|
|
}
|
|
clientRef.current = posthog
|
|
setProvider(() => PHProvider)
|
|
})
|
|
.catch((err) => {
|
|
logger.error('Failed to load PostHog', { error: err })
|
|
})
|
|
}, [])
|
|
|
|
if (Provider && clientRef.current) {
|
|
return <Provider client={clientRef.current}>{children}</Provider>
|
|
}
|
|
|
|
return <>{children}</>
|
|
}
|