woocommerce/plugins/woo-ai/src/utils/recordTracksFactory.ts

18 lines
422 B
TypeScript

/**
* External dependencies
*/
import { recordEvent } from '@woocommerce/tracks';
export const recordTracksFactory = <
T = Record< string, string | number | null >
>(
feature: string,
propertiesCallback: () => Record< string, string | number | null >
) => {
return ( name: string, properties?: T ) =>
recordEvent( `woo_ai_product_${ feature }_${ name }`, {
...propertiesCallback(),
...properties,
} );
};