mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
78 lines
2.0 KiB
TypeScript
78 lines
2.0 KiB
TypeScript
/* eslint-disable @typescript-eslint/consistent-type-definitions */
|
|
/* eslint-disable @typescript-eslint/consistent-indexed-object-style */
|
|
/* eslint-disable @typescript-eslint/restrict-template-expressions */
|
|
/* eslint-disable @typescript-eslint/prefer-nullish-coalescing */
|
|
import { useEffect, useRef, useState } from 'react'
|
|
|
|
import { useTags } from '#components/Map/hooks/useTags'
|
|
|
|
type TextAreaProps = {
|
|
labelTitle?: string
|
|
labelStyle?: string
|
|
containerStyle?: string
|
|
dataField?: string
|
|
inputStyle?: string
|
|
defaultValue: string
|
|
placeholder?: string
|
|
required?: boolean
|
|
updateFormValue?: (value: string) => void
|
|
}
|
|
|
|
interface KeyValue {
|
|
[key: string]: string
|
|
}
|
|
|
|
export function TextAreaInput({
|
|
labelTitle,
|
|
dataField,
|
|
labelStyle,
|
|
containerStyle,
|
|
inputStyle,
|
|
defaultValue,
|
|
placeholder,
|
|
required = true,
|
|
updateFormValue,
|
|
}: TextAreaProps) {
|
|
const ref = useRef<HTMLTextAreaElement>(null)
|
|
const [inputValue, setInputValue] = useState<string>(defaultValue)
|
|
|
|
const tags = useTags()
|
|
|
|
const values: KeyValue[] = []
|
|
|
|
tags.forEach((tag) => {
|
|
values.push({ key: tag.name, value: tag.name, color: tag.color })
|
|
})
|
|
|
|
useEffect(() => {
|
|
setInputValue(defaultValue)
|
|
}, [defaultValue])
|
|
|
|
const handleChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
|
|
const newValue = e.target.value
|
|
setInputValue(newValue)
|
|
if (updateFormValue) {
|
|
updateFormValue(newValue)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className={`tw-form-control tw-w-full ${containerStyle || ''}`}>
|
|
{labelTitle ? (
|
|
<label className='tw-label'>
|
|
<span className={`tw-label-text tw-text-base-content ${labelStyle}`}>{labelTitle}</span>
|
|
</label>
|
|
) : null}
|
|
<textarea
|
|
required={required}
|
|
ref={ref}
|
|
value={inputValue}
|
|
name={dataField}
|
|
className={`tw-textarea tw-textarea-bordered tw-w-full tw-leading-5 ${inputStyle || ''}`}
|
|
placeholder={placeholder || ''}
|
|
onChange={handleChange}
|
|
></textarea>
|
|
</div>
|
|
)
|
|
}
|