Integrating keyboard navigation
The Navigator API redirects users when opening an item using their keyboard.
Keyboard navigation is essential to a satisfying autocomplete experience. This is one of the most important aspects of web accessibility: users should be able to interact with an autocomplete without using a mouse or trackpad.
Autocomplete provides keyboard accessibility out of the box and lets you define how to navigate to results without leaving the keyboard.
The Navigator API defines three navigation schemes based on key combinations:
- In the current tab when hitting Enter
- In a new tab when hitting ⌘ Cmd+Enter or Ctrl+Enter
- In a new window when hitting ⇧ Shift+Enter
#
UsageTo activate keyboard navigation, you need to implement a getItemUrl
function in each of your sources to provide the URL to navigate to. It tells the Navigator API which link to open on Enter.
By default, the Navigator API uses the Location
API (see default implementation above). If you're relying on native document-based routing, this should work out of the box. If you're using custom client-side routing, you can use the Navigator API to connect your autocomplete with it.
For example, if you're using Autocomplete in a Gatsby website, you can leverage their navigate
helper to navigate to internal pages without refreshing the page.
#
ReferenceAutocomplete merges the provided parameters with the default configuration, so you can only rewrite what you need.
navigate
#
(params: { itemUrl: string, item: TItem, state: AutocompleteState<TItem> }) => void
The function called when a URL should open in the current page.
This is triggered on Enter.
navigateNewTab
#
(params: { itemUrl: string, item: TItem, state: AutocompleteState<TItem> }) => void
The function called when a URL should open in a new tab.
This is triggered on ⌘ Cmd+Enter or Ctrl+Enter.
navigateNewWindow
#
(params: { itemUrl: string, item: TItem, state: AutocompleteState<TItem> }) => void
The function called when a URL should open in a new window.
This is triggered on ⇧ Shift+Enter.