React Finder Select
This is a small project whose objective is to supply an effective and easy to use solution for the common problems about the normal html select's, which are little boring and does not let you search inside the options, so if the select has too many options, finding the desired option will be tedious.
The Finder Select lets you set "onClick" and "onChange" functions so you will be able to use the Finder Select as you like. The main Finder Select characteristic is that it provides the user a way to make effective searches inside the select options only writing on the select.
If you want to see how the Finder Select looks/works and compare it with a normal select, you can visit this URL. There we are taking the data asynchronously from an API and then sending them to the select. The example app code is on this repository; in the example folder.
To install the Finder Select in your app
npm install --save react-finderselect
To use the Finder Select in your app
Props:
prop | required | type | description |
---|---|---|---|
data |
true | array of objects | data that will be used for the options |
label |
true | string | how is named the label key in the data |
value |
true | string | how is named the value key in the data |
extraInfo |
false | string | how is named the extraInfo key in the data |
name |
false | string | which will be the valueInput name |
className |
false | string | which will the labelInput class |
placeholder |
false | string | which will the labelInput placeholder |
onClick |
false | function | function that will be executed when the user press the labelInput |
onChange |
false | function | function that will be executed when the user leaves the labelInput |