mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-16 01:58:11 -05:00
* Initial * Handle owner leaving * Remove old team queries * Progress * Retire old toggle * e2e tests * Divide loaders/actions of team pages
42 lines
1011 B
TypeScript
42 lines
1011 B
TypeScript
import * as React from "react";
|
|
import {
|
|
Controller,
|
|
type FieldPath,
|
|
type FieldValues,
|
|
get,
|
|
useFormContext,
|
|
} from "react-hook-form";
|
|
import { FormMessage } from "~/components/FormMessage";
|
|
import { Label } from "~/components/Label";
|
|
import { SendouSwitch } from "../elements/Switch";
|
|
|
|
export function ToggleFormField<T extends FieldValues>({
|
|
label,
|
|
name,
|
|
bottomText,
|
|
}: { label: string; name: FieldPath<T>; bottomText?: string }) {
|
|
const methods = useFormContext();
|
|
const id = React.useId();
|
|
|
|
const error = get(methods.formState.errors, name);
|
|
|
|
return (
|
|
<div>
|
|
<Label htmlFor={id}>{label}</Label>
|
|
<Controller
|
|
control={methods.control}
|
|
name={name}
|
|
render={({ field: { value, onChange } }) => (
|
|
<SendouSwitch id={id} isSelected={value} onChange={onChange} />
|
|
)}
|
|
/>
|
|
{error && (
|
|
<FormMessage type="error">{error.message as string}</FormMessage>
|
|
)}
|
|
{bottomText && !error ? (
|
|
<FormMessage type="info">{bottomText}</FormMessage>
|
|
) : null}
|
|
</div>
|
|
);
|
|
}
|