forked from peacechen/react-native-modal-selector
-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.d.ts
438 lines (381 loc) · 8.87 KB
/
index.d.ts
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
/* eslint-disable no-undef */
import React from 'react';
import { ViewStyle, TextStyle, FlatListProps } from 'react-native';
export interface IOption {
key: React.Key;
label?: string;
section?: boolean;
accessibilityLabel?: string;
component?: React.ReactNode;
[key: string]: any;
}
type AnimationType = 'none' | 'slide' | 'fade';
type OrientationType = 'portrait' | 'portrait-upside-down' | 'landscape' | 'landscape-left' | 'landscape-right';
type ListType = 'SCROLLVIEW' | 'FLATLIST';
interface IModalSelectorProps<TOption> {
/**
* Array of objects with a unique key and label to select in the modal
* Optional component overrides label text
*
* Default is `[]`
*/
data: TOption[],
/**
* Control the search box visibility
*
* Default is `true`
*/
search?: boolean,
/**
* Hide the caption of related matched items
*
* Default is `false`
*/
hideSectionOnSearch?: boolean,
/**
* Sensitive mode on search
*
* Default is `false`
*/
caseSensitiveSearch?: boolean,
/**
* Keep the modal size to the maximum regardless of the listed items
*
* Default is `false`
*/
fullHeight?: boolean,
/**
* Preserve initial modal size on search
*
* Default is `false`
*/
frozenSearch?: boolean,
/**
* Custom search filterer function
*
* Default is uses its own function
*/
onSearchFilterer?: (searchText: string, data: TOption[]) => TOption[],
/**
* List to be render inside modal can be Scrollview or Flatlist
*
* Default is `'SCROLLVIEW'`
*/
listType?: ListType;
/**
* Callback function, when the users has selected an option
*
* Default is `() => {}`
*/
onChange?: (option: TOption) => void;
/**
* Callback function, when the users has typed in search box
*
* Default is `() => {}`
*/
onChangeSearch?: (searchText: string) => void,
/**
* Callback function, when modal is opening
*
* Default is `() => {}`
*/
onModalOpen?: () => void;
/**
* Callback function, when modal is closing
*
* Default is `() => {}`
*/
onModalClose?: () => void;
/**
* Callback function, when clicking the cancel button
*
* Default is `() => {}`
*/
onCancel?: () => void;
/**
* Extract the key from the data item
*
* Default is `(data) => data.key`
*/
keyExtractor?: (option: TOption) => React.Key;
/**
* Extract the label from the data item
*
* Default is `(data) => data.label`
*/
labelExtractor?: (option: TOption) => string;
/**
* Extract the component from the data item
*
* Default is `(data) => data.component`
*/
componentExtractor?: (option: TOption) => React.ReactNode;
/**
* Control open/close state of modal
*
* Default is `false`
*/
visible?: boolean;
/**
* Control if modal closes on select
*
* Default is `true`
*/
closeOnChange?: boolean;
/**
* Text that is initially shown on the button
*
* Default is `'Select me!'`
*/
initValue?: string;
/**
* Text of the cancel button
*
* Default is `'cancel'`
*/
cancelText?: string;
/**
* Text of the search placeholder
*
* Default is `'search'`
*/
searchText?: string;
/**
* Type of animation to be used to show the modal.
*
* Default is `'slide'`
*/
animationType?: AnimationType;
/**
* Style definitions for the root element
*/
style?: ViewStyle;
/**
* 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
*
* Default is `{}`
*/
selectStyle?: ViewStyle;
/**
* Style definitions for the select element (available in default mode only!)
*
* Default is `{}`
*/
selectTextStyle?: TextStyle;
/**
* Style definitions for the option element
*
* Default is `{}`
*/
optionStyle?: ViewStyle;
/**
* Style definitions for the option text element
*
* Default is `{}`
*/
optionTextStyle?: TextStyle;
/**
* Style definitions for the option container element
*
* Default is `{}`
*/
optionContainerStyle?: ViewStyle;
/**
* Style definitions for the section element
*
* Default is `{}`
*/
sectionStyle?: ViewStyle;
/**
* Style definitions for the children container view
*
* Default is `{}`
*/
childrenContainerStyle?: ViewStyle;
/**
* Style definitions for the touchable element
*
* Default is `{}`
*/
touchableStyle?: ViewStyle;
/**
* Opacity for the touchable element on touch
*
* Default is `0.2`
*/
touchableActiveOpacity?: number;
/**
* Style definitions for the select text element
*
* Default is `{}`
*/
sectionTextStyle?: TextStyle;
/**
* Style definitions for the currently selected text element
*
* Default is `{}`
*/
selectedItemTextStyle?: TextStyle;
/**
* Style definitions for the cancel container
*
* Default is `{}`
*/
cancelContainerStyle?: ViewStyle;
/**
* Style definitions for the cancel element
*
* Default is `{}`
*/
cancelStyle?: ViewStyle;
/**
* Style definitions for the cancel text element
*
* Default is `{}`
*/
cancelTextStyle?: TextStyle;
/**
* Style definitions for the overlay background element
* RN <= 0.41 should override this with pixel value for padding
*
* Default is `{ flex: 1, padding: '5%', justifyContent: 'center', backgroundColor: 'rgba(0,0,0,0.7)' }`
*/
overlayStyle?: ViewStyle;
/**
* Style definitions for the initValue text element
*
* Default is `{}`
*/
initValueTextStyle?: TextStyle;
/**
* Style definitions for the search view element
*
* Default is `{ borderWidth: 1, borderRadius: 5, borderColor: 'rgba(0,0,0,0.2)', paddingHorizontal: PADDING, marginHorizontal: PADDING, }`
*/
searchStyle?: ViewStyle;
/**
* Style definitions for the search text element
*
* Default is `{}`
*/
searchTextStyle?: TextStyle;
/**
* Color of placeHolder search text
*
* Default is `''`
*/
placeHolderTextColor?: string;
/**
* Keyboard type in the search field
*
* Default is `'default'`
*/
keyboardType?: string;
/**
* Disables opening of the modal
*
* Default is `false`
*/
disabled?: boolean;
/**
* Orientations the modal supports
*
* Default is `['portrait', 'landscape']`
*/
supportedOrientations?: OrientationType[];
/**
* Passed to underlying ScrollView
*
* Default is `'always'`
*/
keyboardShouldPersistTaps?: string | boolean;
/**
* true makes the modal close when the overlay is pressed
*
* Default is `false`
*/
backdropPressToClose?: boolean;
/**
* true enables accessibility for the open button container
* Note: if false be sure to define accessibility props directly in the wrapped component
*
* Default is `false`
*/
openButtonContainerAccessible?: boolean;
/**
* true enables accessibility for data items.
* Note: data items should have an accessibilityLabel property if this is enabled
*
* Default is `false`
*/
listItemAccessible?: boolean;
/**
* true enables accessibility for cancel button.
*
* Default is `false`
*/
cancelButtonAccessible?: boolean;
/**
* true enables accessibility for the scroll view.
* Only enable this if you don't want to interact with individual data items.
*
* Default is `false`
*/
scrollViewAccessible?: boolean;
/**
* Accessibility label for the modal ScrollView
*/
scrollViewAccessibilityLabel?: string;
/**
* Accessibility label for the cancel button
*/
cancelButtonAccessibilityLabel?: string;
/**
* props to pass through to the container View and each option TouchableOpacity (e.g. testID for testing)
*
* Default is `{}`
*/
passThruProps?: object;
/**
* props to pass through to the select text component
*
* Default is `{}`
*/
selectTextPassThruProps?: object;
/**
* props to pass through to the options text components in the modal
*
* Default is `{}`
*/
optionTextPassThruProps?: object;
/**
* props to pass through to the cancel text components in the modal
*
* Default is `{}`
*/
cancelTextPassThruProps?: object;
/**
* props to pass through to the internal ScrollView
*
* Default is `{}`
*/
scrollViewPassThruProps?: object;
/**
* How far touch can stray away from touchable that opens modal
*
* Default is `{}`
*/
modalOpenerHitSlop?: object;
/**
* Render a custom node instead of the built-in select box
*/
customSelector?: React.ReactNode;
/**
* Key of the item to be initially selected
*
* Default is `''`
*/
selectedKey?: React.Key;
}
export default class ModalSelector<TOption = IOption> extends React.Component<IModalSelectorProps<TOption> & FlatListProps<any>, any> { }