Files
outline/app/utils/Analytics.ts
2023-02-10 18:56:12 -05:00

27 lines
495 B
TypeScript

/**
* Helper class to track events across various analytics integrations
*/
export default class Analytics {
/**
* Send an event to Analytics
*
* @param event The event name
* @param action The action name
*/
public static track = (
event: string,
action: string,
metadata?: Record<string, string>
) => {
// GA3
ga?.("send", "event", event, action);
// GA4
window.dataLayer?.push({
event,
action,
...metadata,
});
};
}