mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
aa480a2663
[web] migrate from window attributes to getMeta GitOrigin-RevId: 3dcf1ab6b01155e5e4abeb3e78d0fa9053e055bc
49 lines
1.2 KiB
JavaScript
49 lines
1.2 KiB
JavaScript
import getMeta from '@/utils/meta'
|
|
|
|
function loadGA() {
|
|
if (window.olLoadGA) {
|
|
window.olLoadGA()
|
|
}
|
|
}
|
|
|
|
function setConsent(value) {
|
|
document.querySelector('.cookie-banner').classList.add('hidden')
|
|
const cookieDomain = getMeta('ol-ExposedSettings').cookieDomain
|
|
const oneYearInSeconds = 60 * 60 * 24 * 365
|
|
const cookieAttributes =
|
|
'; path=/' +
|
|
'; domain=' +
|
|
cookieDomain +
|
|
'; max-age=' +
|
|
oneYearInSeconds +
|
|
'; SameSite=Lax; Secure'
|
|
if (value === 'all') {
|
|
document.cookie = 'oa=1' + cookieAttributes
|
|
loadGA()
|
|
} else {
|
|
document.cookie = 'oa=0' + cookieAttributes
|
|
}
|
|
}
|
|
|
|
if (
|
|
getMeta('ol-ExposedSettings').gaToken ||
|
|
getMeta('ol-ExposedSettings').gaTokenV4
|
|
) {
|
|
document
|
|
.querySelectorAll('[data-ol-cookie-banner-set-consent]')
|
|
.forEach(el => {
|
|
el.addEventListener('click', function (e) {
|
|
e.preventDefault()
|
|
const consentType = el.getAttribute('data-ol-cookie-banner-set-consent')
|
|
setConsent(consentType)
|
|
})
|
|
})
|
|
|
|
const oaCookie = document.cookie.split('; ').find(c => c.startsWith('oa='))
|
|
if (!oaCookie) {
|
|
const cookieBannerEl = document.querySelector('.cookie-banner')
|
|
if (cookieBannerEl) {
|
|
cookieBannerEl.classList.remove('hidden')
|
|
}
|
|
}
|
|
}
|