import { api } from './_api'; import type { RequestHandler } from '@sveltejs/kit'; // GET /todos.json export const get: RequestHandler = async (event) => { // event.locals.userid comes from src/hooks.js const response = await api(event, `todos/${event.locals.userid}`); if (response.status === 404) { // user hasn't created a todo list. // start with an empty array return { body: [] }; } return response; }; // POST /todos.json export const post: RequestHandler = async (event) => { const data = await event.request.formData(); const response = await api(event, `todos/${event.locals.userid}`, { // because index.svelte posts a FormData object, // request.body is _also_ a (readonly) FormData // object, which allows us to get form data // with the `body.get(key)` method text: data.get('text') }); return response; };