-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuseForm.ts
More file actions
35 lines (31 loc) · 922 Bytes
/
Copy pathuseForm.ts
File metadata and controls
35 lines (31 loc) · 922 Bytes
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
import { SyntheticEvent, useTransition } from "react";
import { useFormState } from "react-dom";
export interface UseFormHook<FormState> {
formState: FormState;
isPending: boolean;
formAction: (payload: FormData) => void;
onSubmit: (event: SyntheticEvent<HTMLFormElement>) => void;
}
export function useForm<FormState>(
action: (
formState: Awaited<FormState>,
formData: FormData
) => Promise<FormState>,
initialState: Awaited<FormState>
): UseFormHook<FormState> {
const [isPending, startTransition] = useTransition();
const [formState, formAction] = useFormState(action, initialState);
function onSubmit(event: SyntheticEvent<HTMLFormElement>) {
event.preventDefault();
const formData = new FormData(event.currentTarget);
startTransition(async () => {
await formAction(formData);
});
}
return {
formState,
isPending,
formAction,
onSubmit,
};
}