| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import sessionStorage from '../infrastructure/session-storage'
- const CACHE_KEY = 'mbEvents'
- export function send(category, action, label, value) {
- if (typeof window.ga === 'function') {
- window.ga('send', 'event', category, action, label, value)
- }
- }
- export function sendMB(key, segmentation = {}) {
- sendBeacon(key, segmentation)
- }
- export function sendMBOnce(key, segmentation = {}) {
- let eventCache = sessionStorage.getItem(CACHE_KEY)
- // Initialize as an empy object if the event cache is still empty.
- if (eventCache == null) {
- eventCache = {}
- sessionStorage.setItem(CACHE_KEY, eventCache)
- }
- const isEventInCache = eventCache[key] || false
- if (!isEventInCache) {
- eventCache[key] = true
- sessionStorage.setItem(CACHE_KEY, eventCache)
- sendMB(key, segmentation)
- }
- }
- export function sendMBSampled(key, body = {}, rate = 0.01) {
- if (Math.random() < rate) {
- sendMB(key, body)
- }
- }
- function sendBeacon(key, data) {
- if (!navigator || !navigator.sendBeacon) return
- data._csrf = window.csrfToken
- const blob = new Blob([JSON.stringify(data)], {
- type: 'application/json; charset=UTF-8',
- })
- navigator.sendBeacon(`/event/${key}`, blob)
- }
|