React-based typeahead component that uses Bootstrap as a base for styles and behaviors and supports both single- and multi-selection. The UI and behaviors are inspired by Twitter's typeahead.js. Try a live example.
Please note that this library is under active development and the APIs may change. The documentation below applies to the most recent version and may no longer be applicable if you're using an outdated version.
- Installation
- Importing vs. Requiring
- Usage
- Data
- Filtering
- Custom Rendering
- Public Methods
- Props
- CSS
- Example
- Browser Support
- License
Use NPM to install the module in your project:
npm install --save react-bootstrap-typeahead
Minified and unminified UMD modules are also included in the NPM package, or you can clone the project and npm run build
to generate these files.
The component is written using ES6 modules and transpiled with Babel 6. If you are also using ES6, you can simply import
just as you would any other module:
import Typeahead from 'react-bootstrap-typeahead';
If you're using CommonJS, you'll need to explicitly specify default
:
var Typeahead = require('react-bootstrap-typeahead').default;
Alternatively, you can use the add-module-exports
Babel plugin to avoid having to add .default
.
The component behaves similar to other form elements. It requires an array of options to be displayed, similar to a select
.
<Typeahead
onChange={this._handleChange}
options={myData}
/>
The component provides single-selection by default, but also supports multi-selection. Simply set the multiple
prop and the component turns into a tokenizer:
<Typeahead
multiple
onChange={this._handleChange}
options={myData}
/>
Like an input
, the component can be controlled or uncontrolled. Use the selected
prop to control it via the parent, or defaultSelected
to optionally set defaults and then allow the component to control itself.
<Typeahead
onChange={this._handleChange}
options={myData}
selected={selected}
/>
react-bootstrap-typeahead
accepts an array of either strings or objects. If you pass in objects, each one should have a string property to be used as the label for display. By default, the key is named label
, but you can specify a different key via the labelKey
prop. If you pass an array of strings, the labelKey
prop will be ignored.
The component will throw an error if any options are something other than a string or object with a valid labelKey
.
The following are valid data structures:
// Array of strings.
var myData = [
'John',
'Miles',
'Charles',
'Herbie',
];
// Array of objects with default `labelKey`.
var myData = [
{id: 1, label: 'John'},
{id: 2, label: 'Miles'},
{id: 3, label: 'Charles'},
{id: 4, label: 'Herbie'},
];
// Array of objects with custom `labelKey`.
// The `labelKey` prop must be set to 'name' in this case.
var myData = [
{id: 1, name: 'John'},
{id: 2, name: 'Miles'},
{id: 3, name: 'Charles'},
{id: 4, name: 'Herbie'},
];
// Mixed array of strings and objects.
// Note: while valid, this is NOT recommended.
var myData = [
'John',
'Miles',
{id: 3, label: 'Charles'},
'Herbie',
];
You may have unexpected results if your data contains duplicate options. For this reason, it is highly recommended that you pass in objects with unique identifiers (eg: an id) if possible.
The component simply handles rendering and selection of the data that is passed in. It is agnostic about the data source (eg: an async endpoint), which should be handled separately.
By default, the component will filter results based on a case-insensitive string match between the input string and the labelKey
property of each option (or the option itself, if an array of strings is passed). You can customize the filtering a few ways:
Setting this prop to true
changes the string match to be, you guessed it, case-sensitive. Defaults to false
.
<Typeahead
...
caseSensitive
/>
The filterBy
prop can be used in one of two ways: to specify option
properties that should be searched or to pass a completely custom callback.
By default, the filtering algorithm only searches the field that corresponds to labelKey
. However, you can pass an array of additional fields to search:
<Typeahead
...
filterBy={['firstName', 'lastName', 'email']}
/>
The field corresponding to labelKey
is always searched (once), whether or not you specify it.
You can also pass your own callback to take complete control over how the filtering works. Note that the caseSensitive
prop will no longer work in this case, since you are now completely overriding the algorithm.
<Typeahead
...
filterBy={option => {
/* Your own filtering code goes here. */
}}
/>
react-bootstrap-typeahead
is intended to work with standard Bootstrap components and styles. It provides basic rendering for your data by default, but also allows for more advanced options should the need arise.
Allows you to control the contents of the selection. If set to a string, will use that property of the selected option. It can also be set to a function, with one argument (the selected option) and returning a string for rendering.
<Typeahead
options={options}
labelKey={(option) => {
/* Return custom contents here. */
}}
/>
Allows you to control the contents of a menu item. Your function will be passed the TypeaheadMenu
props, an individual option from your data list, and the index:
<Typeahead
options={options}
renderMenuItemChildren={(props, option, idx) => {
/* Render custom contents here. */
}}
/>
Provides the ability to customize rendering of tokens when multiple selections are enabled. The first parameter is the current selected option in the loop, while the second parameter is the onRemove
callback passed down by the main component. This callback is a no-op if multiple
is false.
<Typeahead
...
multiple
renderToken={(option, onRemove) => {
/* Render custom token here. */
}}
/>
Be careful when using renderToken
, since you will need to handle things like disabling the tokens and removing them (via onRemove
) yourself. It is highly recommended that you use the provided Token
component:
// ES2015
import Token from 'react-bootstrap-typeahead/lib/Token.react';
// CommonJS
const Token = require('react-bootstrap-typeahead/lib/Token.react');
Note that if you use your own component to render the token, you will lose built-in functionality like removing via keystroke.
To access the component's public methods, add a ref to your typeahead instance:
<Typeahead ref="typeahead" ... />
then access the ref from your handler:
<button onClick={() => this.refs.typeahead.getInstance().clear()}>
Clear Typeahead
</button>
Note that you must use getInstance
to get the typeahead instance. This is because react-bootstrap-typeahead
is wrapped by the react-onclickoutside
higher-order component, so the clear
method is not directly available. See react-onclickoutside
's documentation for more information.
Provides a programmatic way to blur the input.
Provides a programmatic way to reset the input. Calling the method will clear both text and selection(s).
Provides a programmatic way to focus the input.
Name | Type | Default | Description |
---|---|---|---|
align | string | 'justify' | Specify menu alignment. The default value is justify , which makes the menu as wide as the input and truncates long values. Specifying left or right will align the menu to that side and the width will be determined by the length of menu item values. |
allowNew | boolean | false | Allows the creation of new selections on the fly. Any new items will be added to the list of selections, but not the list of original options unless handled as such by Typeahead 's parent. The newly added item will always be returned as an object even if the other options are simply strings, so be sure your onChange callback can handle this. |
bsSize | one of: 'large' , 'lg' , 'small' , 'sm' |
Specify the size of the input. | |
caseSensitive | bool | false | Whether or not filtering should be case-sensitive. |
defaultSelected | array | [] |
Specify any pre-selected options. Use only if you want the component to be uncontrolled. |
disabled | boolean | Whether to disable the input. Will also disable selections when multiple={true} . |
|
dropup | boolean | false | Specify whether the menu should appear above the input. |
emptyLabel | string | 'No matches found.' | Message to display in the menu if there are no valid results. |
filterBy | function or array | [] |
Either an array of fields in option to search, or a custom filtering callback. |
labelKey | string or function | 'label' | Specify which option key to use for display or a render function. By default, the selector will use the label key. |
maxHeight | number | 300 |
Maximum height of the dropdown menu, in px. |
maxResults | number | 100 |
Maximum number of results to display by default. Mostly done for performance reasons so as not to render too many DOM nodes in the case of large data sets. |
minLength | number | 0 |
Number of input characters that must be entered before showing results. |
multiple | boolean | false |
Whether or not multiple selections are allowed. |
name | string | Name property for the input | |
newSelectionPrefix | string | 'New selection:' | Provides the ability to specify a prefix before the user-entered text to indicate that the selection will be new. No-op unless allowNew={true} . |
onBlur | function | Callback fired when the input is blurred. Receives an event. | |
onChange | function | Callback fired whenever items are added or removed. Receives an array of the selected options. | |
onFocus | function | Callback fired when the input is focused. Receives an event. | |
onInputChange | function | Callback fired when user-input text changes. Receives the text string. | |
options required |
array | Full set of options, including any pre-selected options. | |
paginate | boolean | true |
Give user the ability to display additional results if the number of results exceeds maxResults . |
paginateResults | number | 100 | DEPRECATED. Use maxResults and paginate instead. |
paginationText | string | 'Display additional results...' | Prompt displayed when large data sets are paginated. |
placeholder | string | Placeholder text for the input. | |
renderMenuItemChildren | function | Provides a hook for customized rendering of menu item contents. | |
renderToken | function | Provides a hook for customized rendering of tokens when multiple selections are enabled. | |
selected | array | [] |
The selected option(s) displayed in the input. Use this prop if you want to control the component via its parent. |
The component tries to use as little CSS as possible, relying primarily on Bootstrap or any Bootstrap themes for styling. Some minimal styling is included in Typeahead.css
and Token.css
and should ideally be included wherever you're using the component.
To modify the example, clone the repository, npm install
and npm run example
to build the example index file. You can then open the HTML file locally in a browser. You can also try the live example.
Recent versions of the following browsers are supported:
- Chrome
- Firefox
- IE (10/11)
- Safari