Normalized <select>
, returns array of values in multiple mode
Reason
When using common <select>
element it returns only single value in onChange event. So to get the array of selected values it is necessary to traverse through it's options to find selected ones. This component normalizes behaviour of <select>
so it returns array of values if multiple={true}
flag is present.
Component is a pure wrapper, has no extra logic and supposed to be a drop-in replacement for a conventional <select>
This normalization is necessary to work in composition with other form elements wrappers without breaking onChange
API.
Installation
NPM
npm install --save react react-normalized-select
Don't forget to manually install peer dependencies (react
) if you use npm@3.
1998 Script Tag:
(Module exposed as `NormalizedSelect`)
Demo
http://nkbt.github.io/react-normalized-select
Codepen demo
// TODO
Usage
1. Drop-in replacement
All functionality is the same as for <select>
.
; // ...<Select className="mySelect" onChange= console> 'apples' 'oranges' 'bananas'</Select>
Will render conventional <select>
and by choosing apples
we will get apples
in a console
2. Multi-select mode
Will return array of selected values instead of single string value.
; // ...<Select className="mySelect" multiple=true onChange= console> 'apples' 'oranges' 'bananas'</Select>
Will render conventional <select>
but when we choose apples and bananas, we will get [apples, bananas]
in a console
Example
;;; const App = React; const appRoot = document;documentbody;ReactDOM;
License
MIT