-
Notifications
You must be signed in to change notification settings - Fork 26
/
RCTAutoComplete.ios.js
218 lines (206 loc) · 6.46 KB
/
RCTAutoComplete.ios.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
var React = require("react");
var PropTypes = require("prop-types");
var { requireNativeComponent } = require("react-native");
var NativeAutoComplete = requireNativeComponent("RCTAutoComplete", null);
class RCTAutoComplete extends React.Component {
constructor(props) {
super(props);
this.state = {
mostRecentEventCount: 0
};
this._getText = this._getText.bind(this);
this._onChange = this._onChange.bind(this);
this._onFocus = this._onFocus.bind(this);
this._onBlur = this._onBlur.bind(this);
}
_getText() {
return typeof this.props.value === "string"
? this.props.value
: this.props.defaultValue;
}
_onChange(event) {
var text = event.nativeEvent.text;
var eventCount = event.nativeEvent.eventCount;
this.props.onChange && this.props.onChange(event);
this.props.onChangeText && this.props.onChangeText(text);
this.setState({ mostRecentEventCount: eventCount }, () => {
// This is a controlled component, so make sure to force the native value
// to match. Most usage shouldn't need this, but if it does this will be
// more correct but might flicker a bit and/or cause the cursor to jump.
if (text !== this.props.value && typeof this.props.value === "string") {
this.refs.input &&
this.refs.input.setNativeProps({
text: this.props.value
});
}
});
event.nativeEvent.possibleCompletionsForString &&
this.props.onTyping &&
this.props.onTyping(event.nativeEvent.possibleCompletionsForString);
event.nativeEvent.didSelectAutoCompleteString &&
this.props.onSelect &&
this.props.onSelect(event.nativeEvent.didSelectAutoCompleteString);
}
_onFocus(event) {
if (this.props.onFocus) {
this.props.onFocus(event);
}
}
_onBlur(event) {
if (this.props.onBlur) {
this.props.onBlur(event);
}
}
render() {
var props = Object.assign({}, this.props);
return (
<NativeAutoComplete
ref="autocomplete"
{...props}
onChange={this._onChange}
onFocus={this._onFocus}
onBlur={this._onBlur}
onSelectionChangeShouldSetResponder={() => true}
text={this._getText()}
mostRecentEventCount={this.state.mostRecentEventCount}
/>
);
}
}
RCTAutoComplete.PropTypes = {
/**
* If false, disables auto-correct. The default value is true.
*/
autoCorrect: PropTypes.bool,
/**
* The string that will be rendered before text input has been entered
*/
placeholder: PropTypes.string,
/**
* When the clear button should appear on the right side of the text view
* @platform ios
*/
clearButtonMode: PropTypes.oneOf([
"never",
"while-editing",
"unless-editing",
"always"
]),
/**
* If true, clears the text field automatically when editing begins
* @platform ios
*/
clearTextOnFocus: PropTypes.bool,
/**
* Determines which keyboard to open, e.g.`numeric`.
*
* The following values work across platforms:
* - default
* - numeric
* - email-address
*/
keyboardType: PropTypes.oneOf([
// Cross-platform
"default",
"numeric",
"email-address",
// iOS-only
"ascii-capable",
"numbers-and-punctuation",
"url",
"number-pad",
"phone-pad",
"name-phone-pad",
"decimal-pad",
"twitter",
"web-search"
]),
/**
* Determines how the return key should look.
* @platform ios
*/
returnKeyType: PropTypes.oneOf([
"default",
"go",
"google",
"join",
"next",
"route",
"search",
"send",
"yahoo",
"done",
"emergency-call"
]),
/**
* If true, the keyboard disables the return key when there is no text and
* automatically enables it when there is text. The default value is false.
* @platform ios
*/
enablesReturnKeyAutomatically: PropTypes.bool,
/**
* Can tell TextInput to automatically capitalize certain characters.
*
* - characters: all characters,
* - words: first letter of each word
* - sentences: first letter of each sentence (default)
* - none: don't auto capitalize anything
*/
autoCapitalize: PropTypes.oneOf(["none", "sentences", "words", "characters"]),
/**
* Set the position of the cursor from where editing will begin.
* @platorm android
*/
textAlign: PropTypes.oneOf(["start", "center", "end"]),
cellComponent: PropTypes.string,
suggestions: PropTypes.array,
autoCompleteFetchRequestDelay: PropTypes.number,
maximumNumberOfAutoCompleteRows: PropTypes.number,
showTextFieldDropShadowWhenAutoCompleteTableIsOpen: PropTypes.bool,
autoCompleteTableViewHidden: PropTypes.bool,
autoCompleteTableBorderColor: PropTypes.string,
autoCompleteTableBorderWidth: PropTypes.number,
autoCompleteTableBackgroundColor: PropTypes.string,
autoCompleteTableCornerRadius: PropTypes.number,
autoCompleteTableTopOffset: PropTypes.number,
autoCompleteTableLeftOffset: PropTypes.number,
autoCompleteTableSizeOffset: PropTypes.number,
autoCompleteRowHeight: PropTypes.number,
autoCompleteFontSize: PropTypes.number,
autoCompleteRegularFontName: PropTypes.string,
autoCompleteBoldFontName: PropTypes.string,
autoCompleteTableCellTextColor: PropTypes.string,
autoCompleteTableCellBackgroundColor: PropTypes.string,
applyBoldEffectToAutoCompleteSuggestions: PropTypes.bool,
reverseAutoCompleteSuggestionsBoldEffect: PropTypes.bool,
disableAutoCompleteTableUserInteractionWhileFetching: PropTypes.bool
};
RCTAutoComplete.defaultProps = {
autoCorrect: false,
clearTextOnFocus: true,
showTextFieldDropShadowWhenAutoCompleteTableIsOpen: true,
reverseAutoCompleteSuggestionsBoldEffect: false,
autoCompleteTableViewHidden: false,
applyBoldEffectToAutoCompleteSuggestions: false,
enablesReturnKeyAutomatically: false,
disableAutoCompleteTableUserInteractionWhileFetching: false,
placeholder: "Search a name",
clearButtonMode: "while-editing",
returnKeyType: "go",
textAlign: "center",
autoCompleteTableTopOffset: 10,
autoCompleteTableLeftOffset: 20,
autoCompleteTableSizeOffset: 40,
autoCompleteTableBorderColor: "lightblue",
autoCompleteTableBackgroundColor: "azure",
autoCompleteTableCornerRadius: 8,
autoCompleteTableBorderWidth: 1,
autoCompleteFontSize: 18,
autoCompleteRegularFontName: "Helvetica Neue",
autoCompleteBoldFontName: "Helvetica Bold",
autoCompleteTableCellTextColor: "dimgray",
autoCompleteRowHeight: 40,
autoCompleteFetchRequestDelay: 100,
maximumNumberOfAutoCompleteRows: 6
};
module.exports = RCTAutoComplete;