Installations
npm install react-native-modal-selector-searchable
Developer Guide
Typescript
No
Module System
CommonJS
Node Version
16.18.1
NPM Version
8.19.2
Score
72.5
Supply Chain
98.9
Quality
75.3
Maintenance
100
Vulnerability
100
License
Releases
Contributors
Unable to fetch Contributors
Languages
TypeScript (59.73%)
JavaScript (40.27%)
Love this project? Help keep it running — sponsor us today! 🚀
Developer
hepter
Download Statistics
Total Downloads
46,503
Last Day
3
Last Week
3
Last Month
1,284
Last Year
15,510
GitHub Statistics
18 Stars
184 Commits
7 Forks
2 Watching
1 Branches
1 Contributors
Package Meta Information
Latest Version
2.1.6
Package Id
react-native-modal-selector-searchable@2.1.6
Unpacked Size
50.71 kB
Size
10.86 kB
File Count
9
NPM Version
8.19.2
Node Version
16.18.1
Publised On
04 Oct 2023
Total Downloads
Cumulative downloads
Total Downloads
46,503
Last day
0%
3
Compared to previous day
Last week
-98.7%
3
Compared to previous week
Last month
15.8%
1,284
Compared to previous month
Last year
-23.4%
15,510
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
react-native-modal-selector-searchable ![npm version](https://badge.fury.io/js/react-native-modal-selector-searchable.svg)
A cross-platform (iOS / Android), selector/picker component for React Native that is highly customizable and supports sections.
Search functionality has been added to this fork repository
This project was forked from react-native-modal-selector
Change log
v2.1.6
- Added
placeholderTextColor
andkeyboardType
props on search field (faslash)
v2.1.5
- Added
searchAutoFocus
prop forautofocus
on search field (jonacds)
Demo
![](docs/demo.gif)
Install
1npm i react-native-modal-selector-searchable --save
Usage
You can either use this component in its default mode, as a wrapper around your existing component or provide a custom component (where you need to control opening of the modal yourself). In default mode a customizable button is rendered.
See SampleApp
for an example how to use this component.
1 2import ModalSelector from 'react-native-modal-selector-searchable' 3 4class SampleApp extends Component { 5 6 constructor(props) { 7 super(props); 8 9 this.state = { 10 textInputValue: '' 11 } 12 } 13 14 render() { 15 let index = 0; 16 const data = [ 17 { key: index++, section: true, label: 'Fruits' }, 18 { key: index++, label: 'Red Apples' }, 19 { key: index++, label: 'Cherries' }, 20 { key: index++, label: 'Cranberries', accessibilityLabel: 'Tap here for cranberries' }, 21 // etc... 22 // Can also add additional custom keys which are passed to the onChange callback 23 { key: index++, label: 'Vegetable', customKey: 'Not a fruit' } 24 ]; 25 26 return ( 27 <View style={{flex:1, justifyContent:'space-around', padding:50}}> 28 29 // Default mode 30 <ModalSelector 31 data={data} 32 initValue="Select something yummy!" 33 onChange={(option)=>{ alert(`${option.label} (${option.key}) nom nom nom`) }} /> 34 35 // Wrapper 36 <ModalSelector 37 data={data} 38 initValue="Select something yummy!" 39 supportedOrientations={['landscape']} 40 accessible={true} 41 scrollViewAccessibilityLabel={'Scrollable options'} 42 cancelButtonAccessibilityLabel={'Cancel Button'} 43 onChange={(option)=>{ this.setState({textInputValue:option.label})}}> 44 45 <TextInput 46 style={{borderWidth:1, borderColor:'#ccc', padding:10, height:30}} 47 editable={false} 48 placeholder="Select something yummy!" 49 value={this.state.textInputValue} /> 50 51 </ModalSelector> 52 53 // Custom component 54 <ModalSelector 55 data={data} 56 ref={selector => { this.selector = selector; }} 57 customSelector={<Switch onValueChange={() => this.selector.open()} />} 58 /> 59 </View> 60 ); 61 } 62}
Data Format
The selector accepts a specific format of data:
1[{ key: 5, label: 'Red Apples' }]
Optionally provide a component
key which overrides the default label text. Optionally provide a unique testID
for each item:
1[{ 2 key: 5, 3 label: 'Red Apples', 4 // The next keys are optional -- 5 component: <View style={{backgroundColor: 'red'}}><Text style={{color: 'white'}}>Red Apples custom component ☺</Text></View>, 6 testID: '5-red-apples' 7}]
![](docs/image-1.png)
If your data has a specific format, you can define extractors of data, example:
1this.setState({data: [{ id: 5, name: 'Red Apples' }]}); 2 3return ( 4 <ModalSelector 5 data={this.state.data} 6 keyExtractor= {item => item.id} 7 labelExtractor= {item => item.name} 8 /> 9);
API
Props
Prop | Type | Optional | Default | Description |
---|---|---|---|---|
data | array | No | [] | array of objects with a unique key and label to select in the modal. Optional component overrides label text. Optional unique testID for each item. |
search | bool | Yes | true | Control the search box visibility |
hideSectionOnSearch | bool | Yes | false | Hide the caption of related matched items |
caseSensitiveSearch | bool | Yes | false | Sensitive mode on search |
frozenSearch | bool | Yes | false | Preserve initial modal size on search |
fullHeight | bool | Yes | false | Keep the modal size to the maximum regardless of the listed items |
onSearchFilterer | function | Yes | (searchText, data) => filteredData | Custom search filterer function. |
onChange | function | Yes | () => {} | callback function, when the users has selected an option |
onChangeSearch | function | Yes | (searchData) => {} | Callback function, when the users has typed in search box |
onModalOpen | function | Yes | () => {} | callback function, when modal is opening |
onModalClose | function | Yes | (item) => {} | callback function, when modal is closing. Returns the selected item. |
onCancel | function | Yes | () => {} | callback function, when clicking the cancel button |
keyExtractor | function | Yes | (data) => data.key | extract the key from the data item |
labelExtractor | function | Yes | (data) => data.label | extract the label from the data item |
componentExtractor | function | Yes | (data) => data.component | extract the component from the data item |
visible | bool | Yes | false | control open/close state of modal |
closeOnChange | bool | Yes | true | control if modal closes on select |
initValue | string | Yes | Select me! | text that is initially shown on the button |
cancelText | string | Yes | cancel | text of the cancel button |
searchText | string | Yes | search | text of the search placeholder |
disabled | bool | Yes | false | true disables opening of the modal |
supportedOrientations | ['portrait', 'landscape'] | Yes | both | orientations the modal supports |
keyboardShouldPersistTaps | string / bool | Yes | always | passed to underlying ScrollView |
listType | string | Yes | SCROLLVIEW | scroller type: SCROLLVIEW or FLATLIST |
animationType | string | Yes | slide | type of animation to be used to show the modal. Must be one of none , slide or fade . |
style | object | Yes | style definitions for the root element | |
childrenContainerStyle | object | Yes | {} | style definitions for the children container view |
touchableStyle | object | Yes | {} | style definitions for the touchable element |
touchableActiveOpacity | number | Yes | 0.2 | opacity for the touchable element on touch |
selectStyle | object | Yes | {} | style definitions for the select element (available in default mode only!). NOTE: Due to breaking changes in React Native, RN < 0.39.0 should pass flex:1 explicitly to selectStyle as a prop. |
selectTextStyle | object | Yes | {} | style definitions for the select element (available in default mode only!) |
overlayStyle | object | Yes | { flex: 1, padding: '5%', justifyContent: 'center', backgroundColor: 'rgba(0,0,0,0.7)' } | style definitions for the overlay background element. RN <= 0.41 should override this with pixel value for padding. |
sectionStyle | object | Yes | {} | style definitions for the section element |
sectionTextStyle | object | Yes | {} | style definitions for the select text element |
selectedItemTextStyle | object | Yes | {} | style definitions for the currently selected text element |
optionStyle | object | Yes | {} | style definitions for the option element |
optionTextStyle | object | Yes | {} | style definitions for the option text element |
optionContainerStyle | object | Yes | {} | style definitions for the option container element |
cancelStyle | object | Yes | {} | style definitions for the cancel element |
cancelTextStyle | object | Yes | {} | style definitions for the cancel text element |
initValueTextStyle | object | Yes | {} | style definitions for the initValue text element |
cancelContainerStyle | object | Yes | {} | style definitions for the cancel container |
searchStyle | object | Yes | {} | Style definitions for the search view element |
searchTextStyle | object | Yes | {} | Style definitions for the search text element |
backdropPressToClose | bool | Yes | false | true makes the modal close when the overlay is pressed |
passThruProps | object | Yes | {} | props to pass through to the container View and each option TouchableOpacity (e.g. testID for testing) |
selectTextPassThruProps | object | Yes | {} | props to pass through to the select text component |
optionTextPassThruProps | object | Yes | {} | props to pass through to the options text components in the modal |
cancelTextPassThruProps | object | Yes | {} | props to pass through to the cancel text components in the modal |
scrollViewPassThruProps | object | Yes | {} | props to pass through to the internal ScrollView |
openButtonContainerAccessible | bool | Yes | false | true enables accessibility for the open button container. Note: if false be sure to define accessibility props directly in the wrapped component. |
listItemAccessible | bool | Yes | false | true enables accessibility for data items. Note: data items should have an accessibilityLabel property if this is enabled |
cancelButtonAccessible | bool | Yes | false | true enables accessibility for cancel button. |
scrollViewAccessible | bool | Yes | false | true enables accessibility for the scroll view. Only enable this if you don't want to interact with individual data items. |
scrollViewAccessibilityLabel | string | Yes | undefined | Accessibility label for the modal ScrollView |
cancelButtonAccessibilityLabel | string | Yes | undefined | Accessibility label for the cancel button |
modalOpenerHitSlop | object | Yes | {} | How far touch can stray away from touchable that opens modal (RN docs) |
customSelector | node | Yes | undefined | Render a custom node instead of the built-in select box. |
selectedKey | any | Yes | '' | Key of the item to be initially selected |
enableShortPress | bool | Yes | true | enables short press. This is regular touch behavior. |
enableLongPress | bool | Yes | false | enables long press. When true, onModalOpen returns {longPress: true} |
optionsTestIDPrefix | string | Yes | 'default' | This prefixes each selectable option's testID prop if no testID keys are provided in props.data array objects. Default for each option's testID: 'default-<optionLabel>' |
Methods
getSelectedItem()
: get current selected item, updated by onChange event.
![Empty State](/_next/static/media/empty.e5fae2e5.png)
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
- Info: project has a license file: LICENSE:0
- Info: FSF or OSI recognized license: MIT License: LICENSE:0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 2/27 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
- Warn: no security policy file detected
- Warn: no security file to analyze
- Warn: no security file to analyze
- Warn: no security file to analyze
Reason
project is not fuzzed
Details
- Warn: no fuzzer integrations found
Reason
branch protection not enabled on development/release branches
Details
- Warn: branch protection not enabled for branch 'master'
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
- Warn: 0 commits out of 6 are checked with a SAST tool
Score
3
/10
Last Scanned on 2025-02-03
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn MoreOther packages similar to react-native-modal-selector-searchable
react-native-actions-sheet-picker
A React Native component that provides a filterable select dropdown/picker.
@kbarreto23/react-native-actions-sheet-picker
A React Native component that provides a filterable select dropdown/picker.
react-native-actions-sheet-picker-serial-luncher
Fork from react-native-actions-sheet-picker
@wardpieters/react-native-actions-sheet-picker
A React Native component that provides a filterable select dropdown/picker.