wwf
2025-05-20 938c3e5a587ce950a94964ea509b9e7f8834dfae
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
import cn from '@/utils/classnames'
import { useFieldContext } from '../..'
import Label from '../label'
import ConfigSelect from '@/app/components/app/configuration/config-var/config-select'
 
type OptionsFieldProps = {
  label: string;
  className?: string;
  labelClassName?: string;
}
 
const OptionsField = ({
  label,
  className,
  labelClassName,
}: OptionsFieldProps) => {
  const field = useFieldContext<string[]>()
 
  return (
    <div className={cn('flex flex-col gap-y-0.5', className)}>
      <Label
        htmlFor={field.name}
        label={label}
        className={labelClassName}
      />
      <ConfigSelect
        options={field.state.value}
        onChange={value => field.handleChange(value)}
      />
    </div>
  )
}
 
export default OptionsField