aboutsummaryrefslogtreecommitdiff
path: root/src/lib/form.ts
blob: 844ca2d581cab8b7f069a76b67467daa4c4b154d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import { invalidate } from '$app/navigation'

// 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, form }: { data: FormData; form: HTMLFormElement }) => void;
		error?: ({
			data,
			form,
			response,
			error
		}: {
			data: FormData;
			form: HTMLFormElement;
			response: Response | null;
			error: Error | null;
		}) => void;
		result?: ({
			data,
			form,
			response
		}: {
			data: FormData;
			response: Response;
			form: HTMLFormElement;
		}) => void;
	} = {}
): { destroy: () => void } {
	let current_token: unknown

	async function handle_submit(e: Event) {
		const token = (current_token = {})

		e.preventDefault()

		const data = new FormData(form)

		if (pending) pending({ data, form })

		try {
			const response = await fetch(form.action, {
				method: form.method,
				headers: {
					accept: 'application/json'
				},
				body: data
			});

			if (token !== current_token) return

			if (response.ok) {
				if (result) result({ data, form, response })

				const url = new URL(form.action)
				url.search = url.hash = ''
				invalidate(url.href)
			} else if (error) {
				error({ data, form, error: null, response })
			} else {
				console.error(await response.text())
			}
		} catch (e: any) {
			if (error) {
				error({ data, form, error: e, response: null })
			} else {
				throw e
			}
		}
	}

	form.addEventListener('submit', handle_submit)

	return {
		destroy() {
			form.removeEventListener('submit', handle_submit)
		}
	}
}