react-select3
v4.0.1
Published
<Select> component made with ReactJS
Downloads
1,622
Maintainers
Readme
REACT-SELECT3
This is <select>
written with ReactJS.
Motivation:
- Easy styling
- Easy control
- Easy fetching
Demo
API reference
Select
Basic usage:
import Select from 'react-select3'
import 'react-select3/dist/styles.css'
const selectOptions = [
{ id: 1, text: 'Uno' },
{ id: 2, text: 'Dos' },
{ id: 3, text: 'Tres' },
{ id: 4, text: 'Cuatro' },
]
<Select options={ selectOptions } placeholder={'Select option'}/>
Props:
| PropName | PropType | Description |
| ------------------------------------- | --------------------- | --------------------------------------------------------------------------------------------------------------- |
| allowClear | <bool>
| whether to allow user to clear selected option // Default: false
|
| cssClassNamePrefix | <string>
| you can provide custom prefix for Selects' classNames |
| autoFocus | <bool>
| whether to focus Select on mount |
| closeOnClickOutside | <bool>
| whether to close dropdown on click outside Select component // Default: true
|
| defaultValue | <string>
/<number>
| provide id of the default selected option |
| disabled | <bool>
| disable selecting and reseting |
| error | <bool>
/<string>
| you can provide boolean to indicate Select's error or string to show error message |
| layout | <object>
| props related to Select component view |
| layout.width | <string>
| width for Select container // Default: '245px'
|
| layout.dropdownVerticalPosition | 'above'/ 'below' | whether to show dropdown above or below Select container // Default: 'below'
|
| layout.emptyOptionsLabel | <string>
| label that shows up when there is no options left |
| name | <string>
| Selects name attribute |
| optionRenderer | <function>
| function that transforms single option output, you can provide it if you want to change layout of options e.g.: |
| |
const optionRenderer = option => (
<strong className="my-custom-option">
<i className={`fa fa-${icons[option.id]}`} />
{option.text}
</strong>
);
| PropName | PropType | Description |
| -------------- | ------------ | ------------------------------------------------------------------------------------------------------ |
| options | <array>
| array with options object. they must have next format: { id: <number|string>, text: <number|string>}
|
| onSelect | <function>
| callback on options select event. event object that passed into callback has next format: |
{
type: 'select',
isClear: <bool>, // indicates that value being cleared by onClearSelection
target: {
name: <string>, // Selects' name attribute
option: <object>, // selected option object
value: <string>, // selected option id
}
}
| PropName | PropType | Description |
| --------------------------- | --------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
| placeholder | <string>
| shows up when there is no selected option |
| search | <object>
| props related to SearchInput, which used to filter options list, you can override its behaviour by providing onSearchTermChange
prop. |
| search.minimumResults | <number>
| minimum number of results before show SearchInput |
| search.show | <bool>
| provide if you want to always show SearchInput |
| search.status | <string>
| provide status message, shows up only when there are no available options |
| onSearchTermChange | <function>
| callback for SearchInput changes, takes input event as agrument |
| value | <number>
/<string>
| you can provide option id to control selection |
Selects ref interface methods
Select component has number of handy public methods that you can use by saving its ref, e.g.:
class MyMajesticComponent extends React.Component {
_selectRef = node => {
this.select = node;
};
_resetSelect = () => {
this.select.clear();
};
render = () => {
return (
<div>
<Select ref={this._selectRef} />
<button onClick={this._resetSelect}>Reset</button>
</div>
);
};
}
Methods:
| Method name | Method type | Description |
| ------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| clear | | use it to clear selection programmaticaly |
| options | <setter>
| sets options for Select component. Select.options = [/* new options */]
. This setter is used by FetchSelect
to set fetched options to Select component without rerendering it. |
| options | <getter>
| returns array of actual options from Selects' state Select.options // options array
|
| value | | returns id of currently selected option Select.value // selected option's id
|
FetchSelect
This component is a wrapper for Select component
that provides interface for fetching options from server by "termQuery"
on SearchInput change event, or once at component mount.
Usage:
import { FetchSelect as Select } from 'react-select3'
import 'react-select3/dist/styles.css'
// function that formats fetched objects into options
const responseDataFormatter = user => ({
// required keys
id: user._id,
text: `${user.first_name} ${user.last_name}`,
// Additional info that you can display in the options layout with "optionRenderer" function
phone: user.phone,
email: user.email,
})
// By default FetchSelect uses its own client that based on fetch,
// also you can provide your custom 'ajaxClient'
// e.g. endpoint: '/api/users/?filter=John&emailVerified=0'
const ajaxClient = (endpoint) => fetch(endpoint).then(data => data.users)
<Select fetch={{
endpoint: '/api/users',
termQuery: 'filter',
responseDataFormatter,
ajaxClient,
params: { emailVerified: 0 }
}}
placeholder='Select user by typing his name'/>
All ref interface methods and props except ofsearch.show
, search.status
and search.minimumResults
(if fetch.once = false)
are being proxied onto Select component.
There are a number of FetchSelect specific props:
| PropName | PropType | Description |
| ---------------------- | ------------ | -------------------------------------------------------------------------------------------------------------------------------------------------- |
| fetch | <object>
| props that related to fetching options from server |
| fetch.ajaxClient | <function>
| custom client to fetch options, it must return <Promise>
|
| fetch.endpoint | <string>
| path to resource to fetch |
| fetch.minLength | <number>
| minimum characters length of SearchInput value to start fetching // Default: 3
|
| fetch.once | <bool>
| if true, options fetched once on FetchSelect mount, in this case SearchInput change not triggers fetch again but filters options that are in state |
| fetch.params | <object>
| additional params that being merged with "termQuery" into endpoint e.g. |
SearchInput.value = 'John';
fetch = {
endpoint: '/api/users',
termQuery: 'filter',
params: {
emailVerified: 0,
},
};
// fetch path: '/api/users?filter=John&emailVerified=0'
| PropName | PropType | Description |
| --------------------------------- | ------------ | ------------------------------------------------------------------------------------- |
| fetch.requestDelay | <number>
| delay between request on SearchInput change // Default: 300
|
| fetch.responseDataFormatter | <function>
| function that formats fetched objects into options. See example above |
| fetch.termQuery | <string>
| key for dynamic query param that takes SearchInput value on change. See example above |
| language | <object>
| pass language object to override default status labels: |
{
isEmpty: 'No options.',
isPending: '...',
minLength: 'Minimum ${minLength} to search...',
responseEmpty: 'Cannot find anything.',
serverError: 'Server error.',
}
Styling
You can style Select component in a several ways:
- Use default Select component styles by importing them from dist folder(TODO: skins):
import 'react-select3/dist/styles.css'
- Use scss source from
react-select3/src/styles/...
, override specific variables and mixins
and compile into custom style - Write your own styles from scratch, you can even provide custom cssClassNamePrefix by passing prop
into Select component and change variable in the scss source code
License
react-select3 Copyright 2017 Rusinov Anton
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Changelog
Credits
⭐️ Thanks for help to:
- Artem Berdyshev