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",
"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": [
{

View file

@ -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": {

View file

@ -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()));
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;
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)
}