1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| import React from 'react'
| import { useFieldContext } from '../..'
| import Input, { type InputProps } from '../../../input'
| import Label from '../label'
| import cn from '@/utils/classnames'
|
| type TextFieldProps = {
| label: string
| isRequired?: boolean
| showOptional?: boolean
| tooltip?: string
| className?: string
| labelClassName?: string
| } & Omit<InputProps, 'className' | 'onChange' | 'onBlur' | 'value' | 'id'>
|
| const TextField = ({
| label,
| isRequired,
| showOptional,
| tooltip,
| className,
| labelClassName,
| ...inputProps
| }: TextFieldProps) => {
| const field = useFieldContext<string>()
|
| return (
| <div className={cn('flex flex-col gap-y-0.5', className)}>
| <Label
| htmlFor={field.name}
| label={label}
| isRequired={isRequired}
| showOptional={showOptional}
| tooltip={tooltip}
| className={labelClassName}
| />
| <Input
| id={field.name}
| value={field.state.value}
| onChange={e => field.handleChange(e.target.value)}
| onBlur={field.handleBlur}
| {...inputProps}
| />
| </div>
| )
| }
|
| export default TextField
|
|