-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.ts
25 lines (23 loc) · 819 Bytes
/
index.ts
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
import type { Handle } from "@sveltejs/kit";
import { parseFormData } from "parse-nested-form-data";
export const form_data: Handle = async ({ event, resolve }) => {
// Only look for form data
const is_action =
event.request.headers.get("content-type") === "application/x-www-form-urlencoded";
if (event.request.method === "POST" && is_action) {
try {
// Make a clone to prevent error in already read body
const request_2 = event.request.clone();
// Get form data
const form_data = await request_2.formData();
// Parse that ish
const data = parseFormData(form_data);
// Set it to locals
event.locals.form_data = data;
} catch (error) {
console.error("Error parsing form-data:");
console.error(error);
}
}
return resolve(event);
};