Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | 'use client';
import {
createInstance,
HackleProvider as OriginalHackleProvider,
PropertyOperationsBuilder,
setUserId
} from '@hackler/react-sdk';
import { HACKLE_KEY, isDev } from '@lib/config';
import React from 'react';
import { useGetMeQuery } from '@lib/api/queries';
interface HackleProviderProps {
children?: React.ReactNode;
}
export function HackleProvider({ children }: HackleProviderProps) {
const hackleClient = createInstance(HACKLE_KEY, {
debug: isDev,
pollingIntervalMillis: 30000,
auto_track_page_view: true
});
const { data: me } = useGetMeQuery();
React.useEffect(() => {
if (me) {
setUserId(me.id);
const operations = new PropertyOperationsBuilder()
.set('email', me.email)
.set('name', me.name)
.build();
hackleClient.updateUserProperties(operations);
}
}, [me]);
return (
<OriginalHackleProvider hackleClient={hackleClient} supportSSR>
{children}
</OriginalHackleProvider>
);
}
|