Combo box with layout listbox
The listbox uses the layout functions to prevent overflow.
import { useState } from 'react';
import {
ComboBox,
useTokenSearch,
layoutMaxWidth,
layoutMaxHeight,
} from '@citizensadvice/react-combo-boxes';
import countries from '../../data/countries.json';
function mapOption({ name, code }) {
return `${name} (${code})`;
}
const onLayoutListBox = [layoutMaxHeight, layoutMaxWidth];
export function Example() {
const [value, setValue] = useState(null);
const [search, setSearch] = useState(null);
const filteredOptions = useTokenSearch(search, {
options: countries,
index: mapOption,
});
return (
<>
<label
id="select-label"
htmlFor="select"
>
Select
</label>
<ComboBox
id="select"
aria-labelledby="select-label"
value={value}
onValue={setValue}
onSearch={setSearch}
options={filteredOptions}
mapOption={mapOption}
onLayoutListBox={onLayoutListBox}
/>
<label htmlFor="output">Current value</label>
<output
htmlFor="select"
id="output"
>
{JSON.stringify(value, undefined, ' ')}
</output>
<div style={{ height: '1000px', width: '500px' }} />
</>
);
}