manifold/web/lib/service/analytics.ts

66 lines
1.5 KiB
TypeScript

import {
init,
track,
identify,
setUserId,
Identify,
} from '@amplitude/analytics-browser'
import { ENV_CONFIG } from 'common/envs/constants'
init(ENV_CONFIG.amplitudeApiKey ?? '', undefined, { includeReferrer: true })
export { track }
// Integrate Sprig
try {
(function(l,e,a,p) {
// @ts-expect-error
if (window.Sprig) return
// @ts-expect-error
window.Sprig = function(){S._queue.push(arguments)}
// @ts-expect-error
var S = window.Sprig;S.appId = a;S._queue = [];window.UserLeap=S
// @ts-expect-error
a=l.createElement('script')
// @ts-expect-error
a.async=1;a.src=e+'?id='+S.appId
// @ts-expect-error
p=l.getElementsByTagName('script')[0]
// @ts-expect-error
p.parentNode.insertBefore(a, p)
})(document, 'https://cdn.sprig.com/shim.js', ENV_CONFIG.sprigEnvironmentId)
} catch (error) {
console.log('Error initializing Sprig, please complain to Barak', error)
}
// Convenience functions:
export const trackCallback =
(eventName: string, eventProperties?: any) => () => {
track(eventName, eventProperties)
}
export const withTracking =
(
f: (() => void) | (() => Promise<void>),
eventName: string,
eventProperties?: any
) =>
async () => {
const promise = f()
track(eventName, eventProperties)
await promise
}
export async function identifyUser(userId: string) {
setUserId(userId)
}
export async function setUserProperty(property: string, value: string) {
const identifyObj = new Identify()
identifyObj.set(property, value)
await identify(identifyObj)
}