This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Nullable<IdType, RequiredType> = RequiredType extends true ? IdType : IdType | null; | |
type OptionProps<IdType> = React.ComponentProps<'option'> & { | |
value: IdType; | |
}; | |
const Select = <IdType extends string, RequiredType extends boolean>(props: { | |
options: Array<OptionProps<IdType>>; | |
selectedItemId: Nullable<IdType, RequiredType>; | |
onSelect: (id: Nullable<IdType, RequiredType>) => void; | |
required?: RequiredType; | |
}) => ( | |
<select | |
value={props.selectedItemId ?? 'NULL_SELECTION'} | |
required={props.required} | |
onChange={e => { | |
const selectedId = e.target.value === 'NULL_SELECTION' ? null : e.target.value; | |
props.onSelect(selectedId as Nullable<IdType, RequiredType>); | |
}} | |
> | |
{!props.required && <option value="NULL_SELECTION">None selected</option>} | |
{props.options.map(option => ( | |
<option key={option.value} {...option} /> | |
))} | |
</select> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment