mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
61 lines
1.2 KiB
TypeScript
61 lines
1.2 KiB
TypeScript
|
|
// this action (https://svelte.dev/tutorial/actions) allows us to
|
||
|
|
// progressively enhance a <form> that already works without JS
|
||
|
|
export function enhance(
|
||
|
|
form: HTMLFormElement,
|
||
|
|
{
|
||
|
|
pending,
|
||
|
|
error,
|
||
|
|
result
|
||
|
|
}: {
|
||
|
|
pending?: (data: FormData, form: HTMLFormElement) => void;
|
||
|
|
error?: (res: Response | null, error: Error | null, form: HTMLFormElement) => void;
|
||
|
|
result: (res: Response, form: HTMLFormElement) => void;
|
||
|
|
}
|
||
|
|
): { destroy: () => void } {
|
||
|
|
let current_token: unknown;
|
||
|
|
|
||
|
|
async function handle_submit(e: Event) {
|
||
|
|
const token = (current_token = {});
|
||
|
|
|
||
|
|
e.preventDefault();
|
||
|
|
|
||
|
|
const body = new FormData(form);
|
||
|
|
|
||
|
|
if (pending) pending(body, form);
|
||
|
|
|
||
|
|
try {
|
||
|
|
const res = await fetch(form.action, {
|
||
|
|
method: form.method,
|
||
|
|
headers: {
|
||
|
|
accept: 'application/json'
|
||
|
|
},
|
||
|
|
body
|
||
|
|
});
|
||
|
|
|
||
|
|
if (token !== current_token) return;
|
||
|
|
|
||
|
|
if (res.ok) {
|
||
|
|
result(res, form);
|
||
|
|
} else if (error) {
|
||
|
|
error(res, null, form);
|
||
|
|
} else {
|
||
|
|
console.error(await res.text());
|
||
|
|
}
|
||
|
|
} catch (e: any) {
|
||
|
|
if (error) {
|
||
|
|
error(null, e, form);
|
||
|
|
} else {
|
||
|
|
throw e;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
form.addEventListener('submit', handle_submit);
|
||
|
|
|
||
|
|
return {
|
||
|
|
destroy() {
|
||
|
|
form.removeEventListener('submit', handle_submit);
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|