chore: eventing + refactoring
This commit is contained in:
parent
9a957159e9
commit
d05bcc1b77
2 changed files with 6 additions and 6 deletions
|
@ -5,7 +5,7 @@ export default async (request, context) => {
|
||||||
const params = new URL(request['url']).searchParams
|
const params = new URL(request['url']).searchParams
|
||||||
const ns = params.get('ns')
|
const ns = params.get('ns')
|
||||||
const page = params.get('page')
|
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)}`
|
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)
|
if (!userId) await ids.set(id, id)
|
||||||
const idVal = await ids.get(id)
|
const idVal = await ids.get(id)
|
||||||
|
|
||||||
if (ig) return
|
if (ignore) return
|
||||||
if (ns) {
|
if (ns) {
|
||||||
url = setUrl(idVal, 'noscript visit')
|
url = setUrl(idVal, 'noscript visit')
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -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)}`
|
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')) {
|
if (window.localStorage && window.localStorage.getItem('ignore')) {
|
||||||
ig = localStorage.getItem('ig')
|
ignore = localStorage.getItem('ignore')
|
||||||
url = `${url}&ig=${ig}`
|
url = `${url}&ignore=${ignore}`
|
||||||
}
|
}
|
||||||
if (!window.fathom) fetch(url).then(() => {}).catch(() => {});
|
if (!window.fathom) fetch(url).then(() => {}).catch(() => {});
|
Reference in a new issue