import { Select } from '@gear-js/ui'; import { useState } from 'react'; import { Sails, TypeDef } from 'sails-js'; import { Fieldset } from '@/shared/ui'; import { useSetPayloadValue } from '../../hooks'; import { getDefaultValue, getLabel } from '../../utils'; type Props = { sails: Sails; def: TypeDef; name: string; label: string; renderField: (def: TypeDef, label: string, name: string) => JSX.Element | undefined; }; const OPTIONS = [ { label: 'None', value: 0 }, { label: 'Some', value: 1 }, ]; function OptionalField({ sails, def, name, label, renderField }: Props) { const optionalDef = def.asOptional.def; const [isSome, setIsSome] = useState(OPTIONS[0].value); useSetPayloadValue(name, isSome ? getDefaultValue(sails)(optionalDef) : null, isSome); return (
); } export { OptionalField };