browsertrix/frontend/src/trackEvents.ts
sua yoo 8db80f5570
feat: Workflow form collapsible section enhancements (#2381)
Resolves https://github.com/webrecorder/browsertrix/issues/2359

## Changes

- Track when a workflow form section is opened
- Hide workflow form section navigation on small screens

---------

Co-authored-by: Ilya Kreymer <ikreymer@users.noreply.github.com>
Co-authored-by: Emma Segal-Grossman <hi@emma.cafe>
Co-authored-by: Ilya Kreymer <ikreymer@gmail.com>
2025-02-20 18:42:00 -08:00

20 lines
373 B
TypeScript

/**
* All available analytics tracking events
*/
export enum AnalyticsTrackEvent {
/**
* Generic
*/
PageView = "pageview",
/**
* Collections
*/
CopyShareCollectionLink = "Copy share collection link",
DownloadPublicCollection = "Download public collection",
/**
* Workflows
*/
ExpandWorkflowFormSection = "Expand workflow form section",
}