Skip to content

Combobox

Combobox is an accessible autocomplete input that enables merchants to filter a list of options and select one or more values.

Props

No props found for this component, run `yarn gen:docs` to generate component meta first.

Slots

No slots found for this component, run `yarn gen:docs` to generate component meta first.

Events

Combobox events

Anatomy

A diagram of the Combobox component showing the smaller primitive components it is composed of.

A combobox is made up of the following:

  1. TextField: A text input that activates a popover displaying a list of options. As merchants type in the text field, the list of options is filtered by the input value. Options replace or add to the input value when selected.
  2. Popover: An overlay containing a list of options.
  3. Listbox: A list of options to filter and select or deselect.
  4. Listbox.Option: The individual options to select or deselect. Check out the listbox component documentation to learn how to compose it with various content.

Best practices

The Combobox component should:

  • Be clearly labeled so the merchant knows what kind of options will be available
  • Not be used within a popover
  • Indicate a loading state to the merchant while option data is being populated
  • Order items in an intentional way so it’s easy for the merchant to find a specific value

Content guidelines

The input field for Combobox should follow the content guidelines for text fields.


Sorting and filtering

Sorting

Item order should be intentional. Order them so it’s easy for the merchant to find a specific value. Some ways you can do this:

  • Sort options in alphabetical order
  • Display options based on how frequently the merchant selects an option

If multiple options can be selected, move selected items to the top of the list. If this doesn’t work for your context, you can override this behavior.

Filtering

  • By default, menu items are filtered based on whether or not they match the value of the textfield.
  • Filters are not case-sensitive by default.
  • You can apply custom filtering logic if the default behavior doesn’t make sense for your use case.

Patterns

Tags autocomplete

The tag multi-select input enables merchants to efficiently add or remove tags from a resource, like a product or an order. It uses the inline autocomplete combobox pattern to present merchants with an editable list of tags to browse and select from.



Accessibility

Structure

The Combobox component is based on the ARIA 1.2 combobox pattern. It is a combination of a single-line TextField and a Popover. The current implementation expects a Listbox component to be used.

The Combobox popover displays below the text field or other control by default so it is easy for merchants to discover and use. However, you can change the position with the preferredPosition prop.

Combobox features can be challenging for merchants with visual, motor, and cognitive disabilities. Even when they’re built using best practices, these features can be difficult to use with some assistive technologies. Merchants should always be able to search, enter data, or perform other activities without relying on the combobox.

Do

  • Use combobox as progressive enhancement to make the interface easier to use for most merchants.

Don’t

  • Require that merchants make a selection from the combobox to complete a task.

Keyboard support

  • Give the combobox's text input keyboard focus with the tab key (or shift + tab when tabbing backwards)

Released under the MIT License.