diff --git a/package-lock.json b/package-lock.json index 194dbac4..6ec54f06 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "21.0.0", + "version": "21.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "21.0.0", + "version": "21.0.2", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", @@ -896,9 +896,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001645", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001645.tgz", - "integrity": "sha512-GFtY2+qt91kzyMk6j48dJcwJVq5uTkk71XxE3RtScx7XWRLsO7bU44LOFkOZYR8w9YMS0UhPSYpN/6rAMImmLw==", + "version": "1.0.30001646", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001646.tgz", + "integrity": "sha512-dRg00gudiBDDTmUhClSdv3hqRfpbOnU28IpI1T6PBTLWa+kOj0681C8uML3PifYfREuBrVjDGhL3adYpBT6spw==", "dev": true, "funding": [ { diff --git a/package.json b/package.json index 8aef58b1..d11dfe1d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "21.0.1", + "version": "21.0.2", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/workers/analytics/index.js b/workers/analytics/index.js index 59dc5b78..eebb14c1 100644 --- a/workers/analytics/index.js +++ b/workers/analytics/index.js @@ -1,39 +1,34 @@ -const ScriptName = '/js/script.js'; -const Endpoint = '/api/event'; +const scriptName = '/js/script.js' +const endpoint = '/api/event' addEventListener('fetch', event => { - event.passThroughOnException(); - event.respondWith(handleRequest(event)); -}); + event.passThroughOnException() + event.respondWith(handleRequest(event)) +}) async function handleRequest(event) { - const url = new URL(event.request.url); - const pathname = url.pathname; + const url = new URL(event.request.url) + const pathname = url.pathname - if (pathname === ScriptName) { - return getScript(event); - } else if (pathname === Endpoint) { - return postData(event); - } - return new Response(null, { status: 404 }); + if (pathname === scriptName) getScript(event) + if (pathname === endpoint) return postData(event) + return new Response(null, { status: 404 }) } async function getScript(event) { - const cache = caches.default; - let response = await cache.match(event.request); + const cache = caches.default + let response = await cache.match(event.request) - if (!response) { - const scriptUrl = "https://plausible.io/js/plausible.outbound-links.tagged-events.js"; - response = await fetch(scriptUrl); - - if (response.ok) event.waitUntil(cache.put(event.request, response.clone())); - } - - return response; + if (!response) { + const scriptUrl = 'https://plausible.io/js/plausible.outbound-links.tagged-events.js' + response = await fetch(scriptUrl) + if (response.ok) event.waitUntil(cache.put(event.request, response.clone())) + } + return response } async function postData(event) { - const request = new Request(event.request); - request.headers.delete('cookie'); - return await fetch("https://plausible.io/api/event", request); + const request = new Request(event.request) + request.headers.delete('cookie') + return await fetch('https://plausible.io/api/event', request) } \ No newline at end of file