import React, { useCallback } from 'react'; import { StrictRJSFSchema, RJSFSchema, FormContextType, WidgetProps, labelValue } from '@rjsf/utils'; import { Textarea } from '@mantine/core'; import { cleanupOptions } from '../utils'; export default function TextareaWidget< T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any >(props: WidgetProps): React.ReactElement { const { id, name, value, placeholder, required, disabled, readonly, autofocus, label, hideLabel, rawErrors, options, onChange, onBlur, onFocus, } = props; const themeProps = cleanupOptions(options); const emptyValue = options?.emptyValue ?? ''; const handleChange = useCallback( (e: React.ChangeEvent) => { onChange(e.target.value === '' ? emptyValue : e.target.value); }, [onChange, emptyValue] ); const handleBlur = useCallback( ({ target }: React.FocusEvent) => { if (onBlur) { onBlur(id, target && target.value); } }, [onBlur, id] ); const handleFocus = useCallback( ({ target }: React.FocusEvent) => { if (onFocus) { onFocus(id, target && target.value); } }, [onFocus, id] ); return (