forked from byteburgers/react-native-autocomplete-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
180 lines (166 loc) · 4.28 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
import React from 'react';
import PropTypes from 'prop-types';
import { FlatList, Platform, StyleSheet, Text, TextInput, View, ViewPropTypes } from 'react-native';
export const AutocompleteInput = (props) => {
function renderResultList() {
const { renderResultList: renderFunction, style } = props;
const listProps = {
style: [styles.list, style],
...props,
};
return renderFunction(listProps);
}
function renderTextInput() {
const { renderTextInput: renderFunction, style } = props;
const textProps = {
style: [styles.input, style],
...props,
};
return renderFunction(textProps);
}
const {
data,
containerStyle,
hideResults,
inputContainerStyle,
listContainerStyle,
onShowResults,
onStartShouldSetResponderCapture,
// flatListProps is only used in defaultResultList
// eslint-disable-next-line no-unused-vars
flatListProps,
} = props;
const showResults = data.length > 0;
// Notify listener if the suggestion will be shown.
onShowResults && onShowResults(showResults);
return (
<View style={[styles.container, containerStyle]}>
<View style={[styles.inputContainer, inputContainerStyle]}>{renderTextInput()}</View>
{!hideResults && (
<View
style={listContainerStyle}
onStartShouldSetResponderCapture={onStartShouldSetResponderCapture}
>
{showResults && renderResultList()}
</View>
)}
</View>
);
};
AutocompleteInput.propTypes = {
...TextInput.propTypes,
/**
* These styles will be applied to the container which
* surrounds the autocomplete component.
*/
containerStyle: ViewPropTypes ? ViewPropTypes.style : PropTypes.object,
/**
* Assign an array of data objects which should be
* rendered in respect to the entered text.
*/
data: PropTypes.array,
/**
* Props which can be applied to result `FlatList`.
*/
flatListProps: FlatList.propTypes || PropTypes.object,
/**
* Set to `true` to hide the suggestion list.
*/
hideResults: PropTypes.bool,
/**
* These styles will be applied to the container which surrounds
* the textInput component.
*/
inputContainerStyle: ViewPropTypes ? ViewPropTypes.style : PropTypes.object,
/**
* These style will be applied to the result list.
*/
listContainerStyle: ViewPropTypes ? ViewPropTypes.style : PropTypes.object,
/**
* `onShowResults` will be called when list is going to
* show/hide results.
*/
onShowResults: PropTypes.func,
/**
* `onShowResults` will be called when list is going to
* show/hide results.
*/
onStartShouldSetResponderCapture: PropTypes.func,
/**
* renders custom TextInput. All props passed to this function.
*/
renderTextInput: PropTypes.func,
/**
* renders custom result list. Can be used to replace FlatList.
* All props passed to this function.
*/
renderResultList: PropTypes.func,
};
const defaultKeyExtractor = (_, index) => `key-${index}`;
const defaultRenderItem = ({ item }) => <Text>{item}</Text>;
const defaultResultList = ({ data, flatListProps }) => <FlatList data={data} {...flatListProps} />;
AutocompleteInput.defaultProps = {
data: [],
onStartShouldSetResponderCapture: () => false,
renderTextInput: (props) => <TextInput {...props} />,
renderResultList: defaultResultList,
flatListProps: {
renderItem: defaultRenderItem,
keyExtractor: defaultKeyExtractor,
},
};
const border = {
borderColor: '#b9b9b9',
borderRadius: 1,
borderWidth: 1,
};
const androidStyles = {
container: {
flex: 1,
},
inputContainer: {
...border,
marginBottom: 0,
},
list: {
...border,
backgroundColor: 'white',
borderTopWidth: 0,
margin: 10,
marginTop: 0,
},
};
const iosStyles = {
container: {
zIndex: 1,
},
inputContainer: {
...border,
},
input: {
backgroundColor: 'white',
height: 40,
paddingLeft: 3,
},
list: {
...border,
backgroundColor: 'white',
borderTopWidth: 0,
left: 0,
position: 'absolute',
right: 0,
},
};
const styles = StyleSheet.create({
input: {
backgroundColor: 'white',
height: 40,
paddingLeft: 3,
},
...Platform.select({
android: androidStyles,
ios: iosStyles,
default: iosStyles,
}),
});
export default AutocompleteInput;