react-select v5 + react-virtualized + react hooks!
This project came up after hours of trying to find an autocomplete component that supports large sets of data to be displayed and searched for while maintain performance. The only libraries out there that allow this functionality are either not maintained anymore, use outdated libraries or are poorly performant.
I created a component that uses the Airbnb library called react-virtualized
for the virtual data loading of elements and plugged it to the react-select
(the most used autocomplete library for react) menu list.
npm install --save react-select-virtualized
{
"react",
"react-dom",
"react-virtualized",
"react-select"
}
The select component will be the same from react-select v5
so you will be able to use it with any select you already have.
Check Storybook for more examples
Components: Select
, Async
, Creatable
-
We support all the UI related props for the input. Extension also.
-
We do not support any related prop to the popup list. We extend it. *Sorry no extension of any component inside the list.*
-
Sorry no multi selection yet. (no
isMulti
)
const options = [
{
value: 1,
label: `guiyep`,
},
...
];
const opsGroup = [
{ label: `Group Name Header`, options },
...
]
import React from 'react';
import Select from 'react-select-virtualized';
const Example1 = () => <Select options={options} />;
import React from 'react';
import Select from 'react-select-virtualized';
const Example1 = () => <Select options={opsGroup} grouped />;
import React from 'react';
import { Async } from 'react-select-virtualized';
const loadOptions = (input, callback) => {...};
const Example1 = () => <Async loadOptions={loadOptions}/>
const Example2 = () => <Async defaultOptions={options} loadOptions={loadOptions}/>
const Example3 = () => <Async defaultOptions={opsGroup} loadOptions={loadOptions} grouped/>
import React from 'react';
import { Creatable } from 'react-select-virtualized';
const Example1 = () => <Creatable options={options} />;
NOT YET DONE.
For custom styling of the Input component read the react-select
documentation.
The styling in the menu list is by css.
Set the menuIsOpen
prop to true, create an options list with less than 100 elements and use css for adjusting your css.
Use this example as a guidance
Possible classes
react-select-virtualized
grouped-virtualized-list-item
flat-virtualized-item
fast-option
fast-option
fast-option-focused
fast-option-selected
fast-option-create
Toggle
Props | Type | Default | Description |
---|---|---|---|
grouped | boolean | false | Specify if options are grouped |
formatGroupHeaderLabel | function({ label, options}) => component | Will render a custom component in the popup grouped header (only for grouped) | |
formatOptionLabel (coming from react-select) | function(option, { context }) => component | Will render a custom component in the label | |
optionHeight | number | 31 | Height of each option |
groupHeaderHeight | number | Header row height in the popover list | |
maxHeight (coming from react-select) | number | auto | Max height popover list |
defaultValue | option | Will set default value and set the component as an uncontrolled component | |
value | option | Will set the value and the component will be a controlled component | |
onCreateOption (Only for Creatable) | function(option) => nothing | Will be executed when a new option is created , it is only for controlled components |
Toggle
- useCallback everywhere.
- Move fast options to group.
- Fix minimum input search on grouped component.
- Upgrade alpha version.
- Review all the TODOs.
- Improve filtering function in
fast-react-select
.- Improved performance by 50%
- Add gzip.
- Review support to all the react-select props. Should all work but multi-val.
-- v 1.0.0 --
- Add support to AsyncSelect.
-- v 1.1.0 --
- Add support to AsyncSelect with group.
-- v 1.2.0 --
- Upgrading packages and hooks.
-- v 2.0.0 --
- Adding react-select v3.
- Fixing addon-info.
- Remove classnames.
- Improve packaging.
- Remove react-hover-observer.
- Added controlled components support.
-- v 2.1.0 --
- Better debouncing
-- v 2.2.0 --
- Add support to create element props.
- Add better error handling.
-- v 2.3.0 --
- Move modules to lib.
- Improve debounce.
-- v3.0.0 --
- Move internal state of select and async select to reducer like creatable.
-- v 3.1.0 --
- Add support to create element props with group.
- Add testing so we do not only relay on storybook.
This is a React form state management library that works with React/Redux/React-Native.
MIT © guiyep