mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
8b9d202518
Fix onclick event propagation GitOrigin-RevId: bfcc3840e1768ed0f91e5fefbaee1738e36f6752
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
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)
|
|
}
|