Send event when adding product to Cart

This commit is contained in:
2022-11-03 23:01:03 +01:00
parent 0d321d318b
commit a01cab174d

View File

@@ -1,6 +1,7 @@
import swell from 'swell-js' import swell from 'swell-js'
import { addNotification } from '$utils/functions/notifications' import { addNotification } from '$utils/functions/notifications'
import { cartData } from '$utils/stores/shop' import { cartData } from '$utils/stores/shop'
import { sendEvent } from '$utils/analytics'
import { PUBLIC_SWELL_STORE_ID, PUBLIC_SWELL_API_PUBLIC_TOKEN } from '$env/static/public' import { PUBLIC_SWELL_STORE_ID, PUBLIC_SWELL_API_PUBLIC_TOKEN } from '$env/static/public'
@@ -40,6 +41,11 @@ export const addToCart = async (product: any, quantity: number = 1) => {
name: `${product.name} - x1`, name: `${product.name} - x1`,
image: product.images[0].file.url, image: product.images[0].file.url,
}) })
// Send event
sendEvent('addToCart', {
product: product.name
})
} }
} }