Use tRPC and react-hook-form

This commit is contained in:
Timothy Armes
2023-09-11 10:28:02 +02:00
parent 7111f000e5
commit ac633670ab
42 changed files with 5490 additions and 587 deletions
+123 -180
View File
@@ -2,18 +2,25 @@
import { useState } from "react";
import { useAtomValue } from "jotai";
import { zodResolver } from "@hookform/resolvers/zod";
import { useTranslations } from "next-intl";
import dynamic from "next/dynamic";
import { FormProvider, useForm } from "react-hook-form";
import { z } from "zod";
import { clearMessage } from "@/app/[lang]/components/InfoMessage";
import InfoMessage from "@/app/[lang]/components/InfoMessage";
import LoadingMap from "@/app/[lang]/components/LoadingMap";
import { franceCenterAtom } from "@/app/atoms";
import {
handleClearTournamentForm,
handleTournamentSubmit,
} from "@/handlers/formHandlers";
import useTournamentForm from "@/hooks/useTournamentForm";
import { DateField } from "@/app/[lang]/components/form/DateField";
import { SelectField } from "@/app/[lang]/components/form/SelectField";
import { SwitchField } from "@/app/[lang]/components/form/SwitchField";
import { TextAreaField } from "@/app/[lang]/components/form/TextAreaField";
import { TextField } from "@/app/[lang]/components/form/TextField";
import { addTournamentSchema } from "@/schemas";
import { TimeControl } from "@/types";
import { trpc } from "@/utils/trpc";
type TournamentFormValues = z.infer<typeof addTournamentSchema>;
const Map = dynamic(() => import("./Map"), {
ssr: false,
@@ -22,248 +29,184 @@ const Map = dynamic(() => import("./Map"), {
const TournamentForm = () => {
const t = useTranslations("AddTournament");
const center = useAtomValue(franceCenterAtom);
const formRefs = useTournamentForm();
const [isSending, setIsSending] = useState(false);
const at = useTranslations("App");
const addTournament = trpc.addTournament.useMutation();
const [responseMessage, setResponseMessage] = useState({
isSuccessful: false,
message: "",
});
const form = useForm<TournamentFormValues>({
resolver: zodResolver(addTournamentSchema),
defaultValues: {
tournament: {
norm_tournament: false,
coordinates: [47.0844, 2.3964],
},
},
});
const onSubmit = async (data: TournamentFormValues) => {
try {
await addTournament.mutateAsync(data);
setResponseMessage({
isSuccessful: true,
message: t("success"),
});
clearMessage(setResponseMessage);
form.reset();
} catch (err: unknown) {
console.log(err);
setResponseMessage({
isSuccessful: true,
message: t("failure"),
});
clearMessage(setResponseMessage);
}
};
return (
<>
<form
onSubmit={(e) =>
handleTournamentSubmit(
e,
t,
setIsSending,
setResponseMessage,
formRefs,
)
}
className="space-y-8"
>
<FormProvider {...form}>
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-8">
<div className="grid grid-cols-4 items-start gap-6">
<div className="col-span-4">
<label
htmlFor="tournament-name"
className="mb-2 block text-sm font-medium text-gray-900 dark:text-gray-300"
>
{t("tournamentNameLabel")}
</label>
<input
ref={formRefs.tournamentNameRef}
type="text"
id="tournament-name"
className="item dark:shadow-sm-light block w-full rounded-lg border border-gray-300 bg-gray-50 p-2.5 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500"
<TextField
name="tournament.tournament"
label={t("tournamentNameLabel")}
placeholder={t("tournamentNamePlaceholder")}
required
/>
</div>
<div className="col-span-2 sm:col-span-1">
<label
htmlFor="date"
className="mb-2 block text-sm font-medium text-gray-900 dark:text-gray-300"
>
{t("dateLabel")}
</label>
<input
ref={formRefs.dateRef}
type="date"
id="date"
className="dark:shadow-sm-light block w-full content-center rounded-lg border border-gray-300 bg-gray-50 p-3 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500"
required
/>
<DateField name="tournament.date" label={t("dateLabel")} required />
</div>
<div className="col-span-2 sm:col-span-1">
<label
htmlFor="url"
className="mb-2 block text-sm font-medium text-gray-900 dark:text-gray-300"
>
{t("urlLabel")}
</label>
<input
ref={formRefs.urlRef}
type="url"
id="url"
<TextField
name="tournament.url"
label={t("urlLabel")}
placeholder={t("urlPlaceholder")}
className="dark:shadow-sm-light block w-full rounded-lg border border-gray-300 bg-gray-50 p-3 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500"
required
/>
</div>
<div className="col-span-2 sm:col-span-1">
<label
htmlFor="time-control"
className="mb-2 block text-sm font-medium text-gray-900 dark:text-gray-300"
>
{t("tcLabel")}
</label>
<select
ref={formRefs.timeControlRef}
id="time-control"
className="dark:shadow-sm-light block w-full rounded-lg border border-gray-300 bg-gray-50 p-3 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500"
defaultValue="Classical"
>
<option value="Classical">{t("tcOption1")}</option>
<option value="Rapid">{t("tcOption2")}</option>
<option value="Blitz">{t("tcOption3")}</option>
<option value="Other">{t("tcOption4")}</option>
</select>
<SelectField
name="tournament.time_control"
label={t("tcLabel")}
options={[
TimeControl.Classic,
TimeControl.Rapid,
TimeControl.Blitz,
].map((tc) => ({
value: tc,
label: at("timeControlEnum", { tc }),
}))}
required
/>
</div>
<div className="col-span-2 sm:col-span-1">
<label
htmlFor="norm"
className="mb-2 block text-sm font-medium text-gray-900 dark:text-gray-300"
>
{t("normLabel")}
</label>
<select
ref={formRefs.normRef}
id="norm"
className="dark:shadow-sm-light block w-full rounded-lg border border-gray-300 bg-gray-50 p-3 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500"
defaultValue="false"
>
<option value="false">{t("normNo")}</option>
<option value="true">{t("normYes")}</option>
</select>
<SwitchField
name="tournament.norm_tournament"
label={t("normLabel")}
/>
</div>
<div className="col-span-4">
<label
htmlFor="address"
className="mb-2 block text-sm font-medium text-gray-900 dark:text-gray-300"
>
{t("addressLabel")}
</label>
<input
ref={formRefs.addressRef}
type="text"
id="address"
className="dark:shadow-sm-light block w-full rounded-lg border border-gray-300 bg-gray-50 p-2.5 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500"
<TextField
name="tournament.address"
label={t("addressLabel")}
placeholder={t("addressPlaceholder")}
required
/>
</div>
<div className="col-span-4 sm:col-span-2">
<label
htmlFor="town"
className="mb-2 block text-sm font-medium text-gray-900 dark:text-gray-300"
>
{t("townLabel")}
</label>
<input
ref={formRefs.townRef}
type="text"
id="town"
className="dark:shadow-sm-light block w-full rounded-lg border border-gray-300 bg-gray-50 p-3 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500"
<TextField
name="tournament.town"
label={t("townLabel")}
placeholder={t("townPlaceholder")}
required
/>
</div>
<div className="col-span-2 sm:col-span-1">
<label
htmlFor="department"
className="mb-2 block text-sm font-medium text-gray-900 dark:text-gray-300"
>
{t("departmentLabel")}
</label>
<input
ref={formRefs.departmentRef}
type="text"
id="department"
className="dark:shadow-sm-light block w-full rounded-lg border border-gray-300 bg-gray-50 p-3 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500"
<TextField
name="tournament.department"
label={t("departmentLabel")}
placeholder={t("departmentPlaceholder")}
// required
required
/>
</div>
<div className="col-span-2 sm:col-span-1">
<label
htmlFor="country"
className="mb-2 block text-sm font-medium text-gray-900 dark:text-gray-300"
>
{t("countryLabel")}
</label>
<input
ref={formRefs.countryRef}
type="text"
id="country"
className="dark:shadow-sm-light block w-full rounded-lg border border-gray-300 bg-gray-50 p-3 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500"
<TextField
name="tournament.country"
label={t("countryLabel")}
placeholder={t("countryPlaceholder")}
required
/>
</div>
<div className="col-span-2 sm:col-span-1">
<label
htmlFor="your-name"
className="mb-2 block text-sm font-medium text-gray-900 dark:text-gray-300"
>
{t("yourNameLabel")}
</label>
<input
ref={formRefs.yourNameRef}
type="text"
id="your-name"
className="dark:shadow-sm-light block w-full rounded-lg border border-gray-300 bg-gray-50 p-3 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500"
<TextField
name="name"
label={t("yourNameLabel")}
placeholder={t("yourNamePlaceholder")}
required
/>
</div>
<div className="col-span-2 sm:col-span-1">
<label
htmlFor="your-email"
className="mb-2 block text-sm font-medium text-gray-900 dark:text-gray-300"
>
{t("yourEmailLabel")}
</label>
<input
ref={formRefs.yourEmailRef}
type="email"
id="your-email"
className="dark:shadow-sm-light block w-full rounded-lg border border-gray-300 bg-gray-50 p-3 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500"
<TextField
name="email"
label={t("yourEmailLabel")}
placeholder={t("yourEmailPlaceholder")}
required
/>
</div>
<div className="col-span-4 row-span-2 sm:col-span-2">
<label
htmlFor="message"
className="mb-2 block text-sm font-medium text-gray-900 dark:text-gray-300"
>
{t("messageLabel")}
</label>
<textarea
ref={formRefs.messageRef}
id="message"
<TextAreaField
name="message"
label={t("messageLabel")}
rows={6}
className="block w-full rounded-lg border border-gray-300 bg-gray-50 p-2.5 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500"
placeholder={t("messagePlaceholder")}
// required
></textarea>
/>
</div>
<Map
position={formRefs.position}
setPosition={formRefs.setPosition}
center={center}
/>
<div className="col-span-2 sm:col-span-1">
<TextField
name="tournament.coordinates.0"
label={t("latLabel")}
type="number"
required
/>
</div>
<div className="col-span-2 sm:col-span-1">
<TextField
name="tournament.coordinates.1"
label={t("lngLabel")}
type="number"
required
/>
</div>
<section id="map" className="z-0 col-span-4 flex h-auto">
<Map />
</section>
</div>
<button
disabled={isSending}
disabled={form.formState.isSubmitting}
type="submit"
className="rounded-lg bg-primary-600 px-5 py-3 text-center text-sm font-medium text-white hover:bg-primary-800 focus:outline-none focus:ring-4 focus:ring-primary-300 disabled:opacity-25 dark:text-white dark:hover:bg-primary-700 dark:focus:ring-primary-800 sm:w-fit"
>
{isSending ? t("sending") : t("sendButton")}
{form.formState.isSubmitting ? t("sending") : t("sendButton")}
</button>
<button
onClick={() => handleClearTournamentForm(formRefs, center)}
onClick={() => form.reset()}
type="button"
className="ml-4 rounded-lg bg-primary-600 px-5 py-3 text-center text-sm font-medium text-white hover:bg-primary-800 focus:outline-none focus:ring-4 focus:ring-primary-300 disabled:opacity-25 dark:text-white dark:hover:bg-primary-700 dark:focus:ring-primary-800 sm:w-fit"
>
{t("clearForm")}
</button>
<InfoMessage responseMessage={responseMessage} />;
<InfoMessage responseMessage={responseMessage} />
</form>
</>
</FormProvider>
);
};