From d05bcc1b7745db943783735009980249fea6a563 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 25 Mar 2024 10:10:39 -0700 Subject: [PATCH] chore: eventing + refactoring --- api/event.js | 4 ++-- src/assets/scripts/index.js | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/api/event.js b/api/event.js index 7658b177..2e352978 100644 --- a/api/event.js +++ b/api/event.js @@ -5,7 +5,7 @@ export default async (request, context) => { const params = new URL(request['url']).searchParams const ns = params.get('ns') const page = params.get('page') - const ig = params.get('ig') + const ignore = params.get('ignore') const setUrl = (id, event) => `https://cdn.usefathom.com/?h=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${id}&name=${encodeURIComponent(event)}` @@ -28,7 +28,7 @@ export default async (request, context) => { if (!userId) await ids.set(id, id) const idVal = await ids.get(id) - if (ig) return + if (ignore) return if (ns) { url = setUrl(idVal, 'noscript visit') } else { diff --git a/src/assets/scripts/index.js b/src/assets/scripts/index.js index 23b3f4e4..2a071893 100644 --- a/src/assets/scripts/index.js +++ b/src/assets/scripts/index.js @@ -1,7 +1,7 @@ -let ig; +let ignore; let url = `https://coryd.dev/api/event/?page=${encodeURIComponent(window.location.href)}&lang=${encodeURIComponent(navigator.language)}&nav=${encodeURIComponent(navigator.userAgent)}` -if (window.localStorage && window.localStorage.getItem('ig')) { - ig = localStorage.getItem('ig') - url = `${url}&ig=${ig}` +if (window.localStorage && window.localStorage.getItem('ignore')) { + ignore = localStorage.getItem('ignore') + url = `${url}&ignore=${ignore}` } if (!window.fathom) fetch(url).then(() => {}).catch(() => {}); \ No newline at end of file