forked from callstack/react-native-paper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTextInputExample.tsx
473 lines (458 loc) · 13.2 KB
/
TextInputExample.tsx
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
import * as React from 'react';
import {
StyleSheet,
View,
ScrollView,
KeyboardAvoidingView,
Platform,
} from 'react-native';
import { TextInput, HelperText, useTheme } from 'react-native-paper';
import Icon from 'react-native-vector-icons/FontAwesome';
import { inputReducer, State } from '../../utils';
const MAX_LENGTH = 20;
const initialState: State = {
text: '',
customIconText: '',
name: '',
outlinedText: '',
largeText: '',
flatTextPassword: 'Password',
outlinedLargeText: '',
outlinedTextPassword: '',
nameNoPadding: '',
flatDenseText: '',
flatDense: '',
outlinedDenseText: '',
outlinedDense: '',
flatMultiline: '',
flatTextArea: '',
outlinedMultiline: '',
outlinedTextArea: '',
maxLengthName: '',
flatTextSecureEntry: true,
outlineTextSecureEntry: true,
iconsColor: {
flatLeftIcon: undefined,
flatRightIcon: undefined,
outlineLeftIcon: undefined,
outlineRightIcon: undefined,
customIcon: undefined,
},
};
type AvoidingViewProps = {
children: React.ReactNode;
};
const TextInputAvoidingView = ({ children }: AvoidingViewProps) => {
return Platform.OS === 'ios' ? (
<KeyboardAvoidingView
style={styles.wrapper}
behavior="padding"
keyboardVerticalOffset={80}
>
{children}
</KeyboardAvoidingView>
) : (
<>{children}</>
);
};
const TextInputExample = () => {
const [state, dispatch] = React.useReducer(inputReducer, initialState);
const {
text,
customIconText,
name,
outlinedText,
largeText,
flatTextPassword,
outlinedLargeText,
outlinedTextPassword,
nameNoPadding,
flatDenseText,
flatDense,
outlinedDenseText,
outlinedDense,
flatMultiline,
flatTextArea,
outlinedMultiline,
outlinedTextArea,
maxLengthName,
flatTextSecureEntry,
outlineTextSecureEntry,
iconsColor: {
flatLeftIcon,
flatRightIcon,
outlineLeftIcon,
outlineRightIcon,
customIcon,
},
} = state;
const _isUsernameValid = (name: string) => /^[a-zA-Z]*$/.test(name);
const {
colors: { background, accent },
} = useTheme();
const inputActionHandler = (type: string, payload: string) =>
dispatch({
type: type,
payload: payload,
});
const changeIconColor = (name: keyof State['iconsColor']) => {
const color = state.iconsColor[name];
const colors = {
...state.iconsColor,
[name]: !color ? accent : undefined,
};
dispatch({
type: 'iconsColor',
payload: colors,
});
};
return (
<TextInputAvoidingView>
<ScrollView
style={[styles.container, { backgroundColor: background }]}
keyboardShouldPersistTaps={'always'}
removeClippedSubviews={false}
>
<TextInput
style={styles.inputContainerStyle}
label="Flat input"
placeholder="Type something"
value={text}
onChangeText={(text) => inputActionHandler('text', text)}
left={
<TextInput.Icon
name="heart"
color={flatLeftIcon}
onPress={() => {
changeIconColor('flatLeftIcon');
}}
/>
}
right={<TextInput.Affix text="/100" />}
/>
<TextInput
style={[styles.inputContainerStyle, styles.fontSize]}
label="Flat input large font"
placeholder="Type something"
value={largeText}
onChangeText={(largeText) =>
inputActionHandler('largeText', largeText)
}
left={<TextInput.Affix text="#" />}
right={
<TextInput.Icon
name="heart"
color={flatRightIcon}
onPress={() => {
changeIconColor('flatRightIcon');
}}
/>
}
/>
<TextInput
style={[styles.inputContainerStyle, styles.fontSize]}
label="Flat input large font"
placeholder="Type something"
value={flatTextPassword}
onChangeText={(flatTextPassword) =>
inputActionHandler('flatTextPassword', flatTextPassword)
}
secureTextEntry={flatTextSecureEntry}
right={
<TextInput.Icon
name={flatTextSecureEntry ? 'eye' : 'eye-off'}
onPress={() =>
dispatch({
type: 'flatTextSecureEntry',
payload: !flatTextSecureEntry,
})
}
forceTextInputFocus={false}
/>
}
/>
<TextInput
style={styles.inputContainerStyle}
label="Flat input with custom icon"
placeholder="Type something"
value={customIconText}
onChangeText={(text) => inputActionHandler('customIconText', text)}
right={<TextInput.Affix text="/100" />}
left={
<TextInput.Icon
name={() => (
<Icon
name="heart"
size={24}
color={customIcon}
onPress={() => {
changeIconColor('customIcon');
}}
/>
)}
/>
}
/>
<TextInput
style={styles.inputContainerStyle}
dense
label="Dense flat input"
placeholder="Type something"
value={flatDenseText}
onChangeText={(flatDenseText) =>
inputActionHandler('flatDenseText', flatDenseText)
}
left={<TextInput.Affix text="#" />}
/>
<TextInput
style={styles.inputContainerStyle}
dense
placeholder="Dense flat input without label"
value={flatDense}
onChangeText={(flatDense) =>
inputActionHandler('flatDense', flatDense)
}
/>
<TextInput
style={styles.inputContainerStyle}
label="Flat input multiline"
multiline
placeholder="Type something"
value={flatMultiline}
onChangeText={(flatMultiline) =>
inputActionHandler('flatMultiline', flatMultiline)
}
/>
<TextInput
style={[styles.inputContainerStyle, styles.textArea]}
label="Flat input text area"
multiline
placeholder="Type something"
value={flatTextArea}
onChangeText={(flatTextArea) =>
inputActionHandler('flatTextArea', flatTextArea)
}
/>
<TextInput
disabled
style={styles.inputContainerStyle}
label="Disabled flat input"
/>
<TextInput
mode="outlined"
style={styles.inputContainerStyle}
label="Outlined input"
placeholder="Type something"
value={outlinedText}
onChangeText={(outlinedText) =>
inputActionHandler('outlinedText', outlinedText)
}
left={
<TextInput.Icon
name="heart"
color={outlineLeftIcon}
onPress={() => {
changeIconColor('outlineLeftIcon');
}}
/>
}
right={<TextInput.Affix text="/100" />}
/>
<TextInput
mode="outlined"
style={[styles.inputContainerStyle, styles.fontSize]}
label="Outlined large font"
placeholder="Type something"
value={outlinedLargeText}
onChangeText={(outlinedLargeText) =>
inputActionHandler('outlinedLargeText', outlinedLargeText)
}
left={<TextInput.Affix text="$" />}
right={
<TextInput.Icon
name="heart"
color={outlineRightIcon}
onPress={() => {
changeIconColor('outlineRightIcon');
}}
/>
}
/>
<TextInput
mode="outlined"
style={[styles.inputContainerStyle, styles.fontSize]}
label="Outlined large font"
placeholder="Type something"
value={outlinedTextPassword}
onChangeText={(outlinedTextPassword) =>
inputActionHandler('outlinedTextPassword', outlinedTextPassword)
}
secureTextEntry={outlineTextSecureEntry}
right={
<TextInput.Icon
name={outlineTextSecureEntry ? 'eye' : 'eye-off'}
onPress={() =>
dispatch({
type: 'outlineTextSecureEntry',
payload: !outlineTextSecureEntry,
})
}
/>
}
/>
<TextInput
mode="outlined"
style={styles.inputContainerStyle}
dense
label="Dense outlined input"
placeholder="Type something"
value={outlinedDenseText}
onChangeText={(outlinedDenseText) =>
inputActionHandler('outlinedDenseText', outlinedDenseText)
}
left={<TextInput.Affix text="$" />}
/>
<TextInput
mode="outlined"
style={styles.inputContainerStyle}
dense
placeholder="Dense outlined input without label"
value={outlinedDense}
onChangeText={(outlinedDense) =>
inputActionHandler('outlinedDense', outlinedDense)
}
/>
<TextInput
mode="outlined"
style={styles.inputContainerStyle}
label="Outlined input multiline"
multiline
placeholder="Type something"
value={outlinedMultiline}
onChangeText={(outlinedMultiline) =>
inputActionHandler('outlinedMultiline', outlinedMultiline)
}
/>
<TextInput
mode="outlined"
style={[styles.inputContainerStyle, styles.textArea]}
label="Outlined input text area"
multiline
placeholder="Type something"
value={outlinedTextArea}
onChangeText={(outlinedTextArea) =>
inputActionHandler('outlinedTextArea', outlinedTextArea)
}
/>
<TextInput
mode="outlined"
disabled
style={styles.inputContainerStyle}
label="Disabled outlined input"
/>
<View style={styles.inputContainerStyle}>
<TextInput
label="Input with helper text"
placeholder="Enter username, only letters"
value={name}
error={!_isUsernameValid(name)}
onChangeText={(name) => inputActionHandler('name', name)}
/>
<HelperText type="error" visible={!_isUsernameValid(name)}>
Error: Only letters are allowed
</HelperText>
</View>
<View style={styles.inputContainerStyle}>
<TextInput
label="Input with helper text and character counter"
placeholder="Enter username, only letters"
value={maxLengthName}
error={!_isUsernameValid(maxLengthName)}
onChangeText={(maxLengthName) =>
inputActionHandler('maxLengthName', maxLengthName)
}
maxLength={MAX_LENGTH}
/>
<View style={styles.helpersWrapper}>
<HelperText
type="error"
visible={!_isUsernameValid(maxLengthName)}
style={styles.helper}
>
Error: Numbers and special characters are not allowed
</HelperText>
<HelperText type="info" visible style={styles.counterHelper}>
{maxLengthName.length} / {MAX_LENGTH}
</HelperText>
</View>
</View>
<View style={styles.inputContainerStyle}>
<TextInput
label="Input with no padding"
style={{ backgroundColor: 'transparent', paddingHorizontal: 0 }}
placeholder="Enter username, only letters"
value={nameNoPadding}
error={!_isUsernameValid(nameNoPadding)}
onChangeText={(nameNoPadding) =>
inputActionHandler('nameNoPadding', nameNoPadding)
}
/>
<HelperText
type="error"
padding="none"
visible={!_isUsernameValid(nameNoPadding)}
>
Error: Only letters are allowed
</HelperText>
</View>
<View style={styles.inputContainerStyle}>
<TextInput
label="Input with text align center"
style={{
textAlign: 'center',
}}
/>
</View>
<View style={styles.inputContainerStyle}>
<TextInput
mode="outlined"
label="Outlined input with text align center"
style={{
textAlign: 'center',
}}
/>
</View>
</ScrollView>
</TextInputAvoidingView>
);
};
TextInputExample.title = 'TextInput';
const styles = StyleSheet.create({
container: {
flex: 1,
padding: 8,
},
helpersWrapper: {
flexDirection: 'row',
justifyContent: 'space-between',
},
wrapper: {
flex: 1,
},
helper: {
flexShrink: 1,
},
counterHelper: {
textAlign: 'right',
},
inputContainerStyle: {
margin: 8,
},
fontSize: {
fontSize: 32,
},
textArea: {
height: 80,
},
});
export default TextInputExample;