chore: formatting consistency

This commit is contained in:
Cory Dransfeldt 2024-08-01 10:20:57 -07:00
parent 6e206cdf47
commit 6723935876
No known key found for this signature in database
3 changed files with 27 additions and 32 deletions

10
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "21.0.0", "version": "21.0.2",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "21.0.0", "version": "21.0.2",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",
@ -896,9 +896,9 @@
} }
}, },
"node_modules/caniuse-lite": { "node_modules/caniuse-lite": {
"version": "1.0.30001645", "version": "1.0.30001646",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001645.tgz", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001646.tgz",
"integrity": "sha512-GFtY2+qt91kzyMk6j48dJcwJVq5uTkk71XxE3RtScx7XWRLsO7bU44LOFkOZYR8w9YMS0UhPSYpN/6rAMImmLw==", "integrity": "sha512-dRg00gudiBDDTmUhClSdv3hqRfpbOnU28IpI1T6PBTLWa+kOj0681C8uML3PifYfREuBrVjDGhL3adYpBT6spw==",
"dev": true, "dev": true,
"funding": [ "funding": [
{ {

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "21.0.1", "version": "21.0.2",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -1,39 +1,34 @@
const ScriptName = '/js/script.js'; const scriptName = '/js/script.js'
const Endpoint = '/api/event'; const endpoint = '/api/event'
addEventListener('fetch', event => { addEventListener('fetch', event => {
event.passThroughOnException(); event.passThroughOnException()
event.respondWith(handleRequest(event)); event.respondWith(handleRequest(event))
}); })
async function handleRequest(event) { async function handleRequest(event) {
const url = new URL(event.request.url); const url = new URL(event.request.url)
const pathname = url.pathname; const pathname = url.pathname
if (pathname === ScriptName) { if (pathname === scriptName) getScript(event)
return getScript(event); if (pathname === endpoint) return postData(event)
} else if (pathname === Endpoint) { return new Response(null, { status: 404 })
return postData(event);
}
return new Response(null, { status: 404 });
} }
async function getScript(event) { async function getScript(event) {
const cache = caches.default; const cache = caches.default
let response = await cache.match(event.request); let response = await cache.match(event.request)
if (!response) { if (!response) {
const scriptUrl = "https://plausible.io/js/plausible.outbound-links.tagged-events.js"; const scriptUrl = 'https://plausible.io/js/plausible.outbound-links.tagged-events.js'
response = await fetch(scriptUrl); response = await fetch(scriptUrl)
if (response.ok) event.waitUntil(cache.put(event.request, response.clone()))
if (response.ok) event.waitUntil(cache.put(event.request, response.clone()));
} }
return response
return response;
} }
async function postData(event) { async function postData(event) {
const request = new Request(event.request); const request = new Request(event.request)
request.headers.delete('cookie'); request.headers.delete('cookie')
return await fetch("https://plausible.io/api/event", request); return await fetch('https://plausible.io/api/event', request)
} }