React Native search component with filter function.
$ npm install react-native-search-filter --save
Complete example available here.
import React from 'react'
import { StyleSheet, Text, View, ScrollView } from 'react-native'
import SearchInput, { createFilter } from 'react-native-search-filter'
import emails from './mails'
const KEYS_TO_FILTERS = ['user.name', 'subject']
export default class App extends React.Component {
constructor(props) {
super(props);
this.state = {
searchTerm: ''
}
}
searchUpdated(term) {
this.setState({ searchTerm: term })
}
render() {
const filteredEmails = emails.filter(createFilter(this.state.searchTerm, KEYS_TO_FILTERS))
return (
<View style={styles.container}>
<SearchInput onChangeText={(term) => { this.searchUpdated(term) }} />
<ScrollView>
{filteredEmails.map(email => {
return (
<View key={email.id} style={styles.emailItem}>
<Text>{email.user.name}</Text>
<Text style={styles.emailSubject}>{email.subject}</Text>
</View>
)
})}
</ScrollView>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
justifyContent: 'flex-start',
margin: 10,
marginTop: 50
},
emailItem:{
borderBottomWidth: 0.5,
borderColor: 'rgba(0,0,0,0.3)'
},
emailSubject: {
color: 'rgba(0,0,0,0.5)'
}
});
All props are optional. All other props will be passed to React Native's TextInput
component.
Function called when the search term is changed (will be passed as an argument).
Either an [String]
or a String. Will be use by the filter method if no argument is passed there.
Reduce call frequency to the onChange function (in ms). Default is 200
.
Define if the search should be case sensitive. Default is false
.
Define if the search should be fuzzy. Default is false
.
Define if search results should be sorted by relevance (only works with fuzzy search). Default is false
.
Return a function which can be used to filter an array. keys can be String, [String]
or null
.
If an array keys is an array, the function will return true if at least one of the keys of the item matches the search term.
filter(searchTerm, [keys], [{caseSensitive, fuzzy, sortResults}])
Return a function which can be used to filter an array. searchTerm can be a regex or a String. keys can be String, [String]
or null
.
If an array keys is an array, the function will return true if at least one of the keys of the item matches the search term.
Add babel-plugin-add-module-exports
as a dev dependency. Fuse.js #154.
npm i babel-plugin-add-module-exports babel-preset-es2015 babel-preset-stage-2 --save-dev
enkidevs - Simple react.js component for a search input, providing a filter function .