2020-12-02 23:57:51 +02:00
|
|
|
export const EVENT_ACTION = "action";
|
|
|
|
export const EVENT_EXIT = "exit";
|
|
|
|
export const EVENT_CHANGE = "change";
|
|
|
|
export const EVENT_SHAPE = "shape";
|
2020-12-03 15:10:04 +02:00
|
|
|
export const EVENT_LAYER = "layer";
|
|
|
|
export const EVENT_ALIGN = "align";
|
2020-12-03 17:03:02 +02:00
|
|
|
export const EVENT_SHARE = "share";
|
|
|
|
export const EVENT_IO = "io";
|
|
|
|
export const EVENT_DIALOG = "dialog";
|
2020-12-04 19:18:20 +02:00
|
|
|
export const EVENT_LIBRARY = "library";
|
2020-12-02 23:57:51 +02:00
|
|
|
|
|
|
|
export const trackEvent = window.gtag
|
2020-12-03 15:10:04 +02:00
|
|
|
? (category: string, name: string, label?: string, value?: number) => {
|
2020-12-02 23:57:51 +02:00
|
|
|
window.gtag("event", name, {
|
|
|
|
event_category: category,
|
|
|
|
event_label: label,
|
|
|
|
value,
|
|
|
|
});
|
|
|
|
}
|
2020-12-03 15:10:04 +02:00
|
|
|
: (category: string, name: string, label?: string, value?: number) => {
|
|
|
|
console.info("Track Event", category, name, label, value);
|
2020-12-02 23:57:51 +02:00
|
|
|
};
|