Combo box with tab select
Pressing tab will move between options.
Tab navigation is supposed to move between controls, rather than navigate within a control, however under some circumstances this may be preferred.
The search on Slack allows tabbing between options.
import { useState } from 'react';
import { ComboBox, useTokenSearch } from '@citizensadvice/react-combo-boxes';
const options = [
'Apple',
'Orange',
'Blood orange',
'Lemon',
'Raspberry',
'Strawberry',
];
export function Example() {
const [value, setValue] = useState(null);
const [search, setSearch] = useState(null);
const filteredOptions = useTokenSearch(search, { options });
const [managedFocus, setManagedFocus] = useState(false);
return (
<>
<label
id="select-label"
htmlFor="select"
>
Select
</label>
<ComboBox
id="select"
aria-labelledby="select-label"
value={value}
onValue={setValue}
onSearch={setSearch}
options={filteredOptions}
tabBetweenOptions
managedFocus={managedFocus}
/>
<label htmlFor="output">Current value</label>
<output
htmlFor="select"
id="output"
>
{JSON.stringify(value, undefined, ' ')}
</output>
<label>
<input
type="checkbox"
onChange={({ target: { checked } }) => setManagedFocus(checked)}
checked={managedFocus}
/>{' '}
Toggle managed focus
</label>
</>
);
}