155 lines
3.4 KiB
TypeScript
155 lines
3.4 KiB
TypeScript
import Script from 'next/script';
|
|
import React from 'react';
|
|
|
|
import type {
|
|
DecrementPayload,
|
|
IdentifyPayload,
|
|
IncrementPayload,
|
|
OpenPanelMethodNames,
|
|
OpenPanelOptions,
|
|
TrackProperties,
|
|
} from '@openpanel/web';
|
|
|
|
export * from '@openpanel/web';
|
|
|
|
const CDN_URL = 'https://openpanel.dev/op1.js';
|
|
|
|
type OpenPanelComponentProps = Omit<OpenPanelOptions, 'filter'> & {
|
|
profileId?: string;
|
|
cdnUrl?: string;
|
|
filter?: string;
|
|
globalProperties?: Record<string, unknown>;
|
|
};
|
|
|
|
const stringify = (obj: unknown) => {
|
|
if (typeof obj === 'object' && obj !== null && obj !== undefined) {
|
|
const entries = Object.entries(obj).map(([key, value]) => {
|
|
if (key === 'filter') {
|
|
return `"${key}":${value}`;
|
|
}
|
|
return `"${key}":${JSON.stringify(value)}`;
|
|
});
|
|
return `{${entries.join(',')}}`;
|
|
}
|
|
|
|
return JSON.stringify(obj);
|
|
};
|
|
|
|
export function OpenPanelComponent({
|
|
profileId,
|
|
cdnUrl,
|
|
globalProperties,
|
|
...options
|
|
}: OpenPanelComponentProps) {
|
|
const methods: { name: OpenPanelMethodNames; value: unknown }[] = [
|
|
{
|
|
name: 'init',
|
|
value: {
|
|
...options,
|
|
sdk: 'nextjs',
|
|
sdkVersion: process.env.NEXTJS_VERSION!,
|
|
},
|
|
},
|
|
];
|
|
if (profileId) {
|
|
methods.push({
|
|
name: 'identify',
|
|
value: {
|
|
profileId,
|
|
},
|
|
});
|
|
}
|
|
if (globalProperties) {
|
|
methods.push({
|
|
name: 'setGlobalProperties',
|
|
value: globalProperties,
|
|
});
|
|
}
|
|
return (
|
|
<>
|
|
<Script src={cdnUrl ?? CDN_URL} async defer />
|
|
<Script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `window.op = window.op || function(...args) {(window.op.q = window.op.q || []).push(args)};
|
|
${methods
|
|
.map((method) => {
|
|
return `window.op('${method.name}', ${stringify(method.value)});`;
|
|
})
|
|
.join('\n')}`,
|
|
}}
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
|
|
type IdentifyComponentProps = IdentifyPayload;
|
|
|
|
export function IdentifyComponent(props: IdentifyComponentProps) {
|
|
return (
|
|
<>
|
|
<Script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `window.op('identify', ${JSON.stringify(props)});`,
|
|
}}
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export function SetGlobalPropertiesComponent(props: Record<string, unknown>) {
|
|
return (
|
|
<>
|
|
<Script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `window.op('setGlobalProperties', ${JSON.stringify(props)});`,
|
|
}}
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export function useOpenPanel() {
|
|
return {
|
|
track,
|
|
screenView,
|
|
identify,
|
|
increment,
|
|
decrement,
|
|
clear,
|
|
setGlobalProperties,
|
|
};
|
|
}
|
|
|
|
function setGlobalProperties(properties: Record<string, unknown>) {
|
|
window.op?.('setGlobalProperties', properties);
|
|
}
|
|
|
|
function track(name: string, properties?: TrackProperties) {
|
|
window.op?.('track', name, properties);
|
|
}
|
|
|
|
function screenView(properties?: TrackProperties): void;
|
|
function screenView(path: string, properties?: TrackProperties): void;
|
|
function screenView(
|
|
pathOrProperties?: string | TrackProperties,
|
|
propertiesOrUndefined?: TrackProperties,
|
|
) {
|
|
window.op?.('screenView', pathOrProperties, propertiesOrUndefined);
|
|
}
|
|
|
|
function identify(payload: IdentifyPayload) {
|
|
window.op?.('identify', payload);
|
|
}
|
|
|
|
function increment(payload: IncrementPayload) {
|
|
window.op?.('increment', payload);
|
|
}
|
|
|
|
function decrement(payload: DecrementPayload) {
|
|
window.op('decrement', payload);
|
|
}
|
|
|
|
function clear() {
|
|
window.op?.('clear');
|
|
}
|