mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-28 21:34:41 -05:00
51 lines
966 B
TypeScript
51 lines
966 B
TypeScript
import * as React from "react";
|
|
import type { FormFieldProps } from "../types";
|
|
import { ariaAttributes } from "../utils";
|
|
import { FormFieldWrapper } from "./FormFieldWrapper";
|
|
|
|
type TextareaFormFieldProps = FormFieldProps<"text-area"> & {
|
|
disabled?: boolean;
|
|
value: string;
|
|
onChange: (value: string) => void;
|
|
};
|
|
|
|
export function TextareaFormField({
|
|
name,
|
|
label,
|
|
bottomText,
|
|
maxLength,
|
|
error,
|
|
onBlur,
|
|
disabled,
|
|
value,
|
|
onChange,
|
|
}: TextareaFormFieldProps) {
|
|
const id = React.useId();
|
|
|
|
return (
|
|
<FormFieldWrapper
|
|
id={id}
|
|
name={name}
|
|
label={label}
|
|
error={error}
|
|
bottomText={bottomText}
|
|
valueLimits={
|
|
maxLength ? { current: value?.length ?? 0, max: maxLength } : undefined
|
|
}
|
|
>
|
|
<textarea
|
|
id={id}
|
|
value={value}
|
|
onChange={(e) => onChange(e.target.value)}
|
|
onBlur={() => onBlur?.()}
|
|
disabled={disabled}
|
|
{...ariaAttributes({
|
|
id,
|
|
bottomText,
|
|
error,
|
|
})}
|
|
/>
|
|
</FormFieldWrapper>
|
|
);
|
|
}
|