-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathindex.js
executable file
·259 lines (223 loc) · 5.99 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
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
import React, { Component } from 'react'; // eslint-disable-line
import PropTypes from 'prop-types';
import {
StyleSheet,
Text,
TouchableOpacity,
View,
Modal,
Dimensions,
TouchableWithoutFeedback,
Animated,
SafeAreaView,
Platform,
} from 'react-native'; // eslint-disable-line
import { Picker } from '@react-native-picker/picker';
const SCREEN_WIDTH = Dimensions.get('window').width;
const styles = {
overlayContainer: {
zIndex: -1,
width: '100%',
height: '100%',
backgroundColor: '#000',
opacity: 0.3,
},
mainBox: {
// Can be used by <SimplePicker styles={{ mainBox:{...} }}/>
},
modalContainer: {
width: '100%',
justifyContent: 'center',
alignItems: 'center',
padding: 0,
backgroundColor: '#F5FCFF',
},
buttonView: {
width: '100%',
padding: 8,
borderTopWidth: 0.5,
borderTopColor: 'lightgrey',
justifyContent: 'space-between',
flexDirection: 'row',
},
bottomPicker: {
width: SCREEN_WIDTH,
},
};
const propTypes = {
buttonColor: PropTypes.string,
buttonStyle: PropTypes.object,
cancelText: PropTypes.string,
cancelTextStyle: PropTypes.object,
confirmText: PropTypes.string,
confirmTextStyle: PropTypes.object,
disableOverlay: PropTypes.bool,
initialOptionIndex: PropTypes.number,
itemStyle: PropTypes.object,
labels: PropTypes.array,
modalVisible: PropTypes.bool,
onCancel: PropTypes.func,
onSubmit: PropTypes.func,
options: PropTypes.array.isRequired,
styles: PropTypes.object,
};
const booleanIsSet = variable => variable || String(variable) === 'false';
class SimplePicker extends Component {
constructor(props) {
super(props);
const selected = props.initialOptionIndex || 0;
this.state = {
modalVisible: props.modalVisible || false,
selectedOption: props.options[selected],
translateY: new Animated.Value(0),
};
this.styles = StyleSheet.create({
...styles,
...props.styles,
});
this.onPressCancel = this.onPressCancel.bind(this);
this.onPressSubmit = this.onPressSubmit.bind(this);
this.onValueChange = this.onValueChange.bind(this);
this.onOverlayDismiss = this.onOverlayDismiss.bind(this);
}
UNSAFE_componentWillReceiveProps(nextProps) {
// If initial option index is changed we need to update the code.
if (nextProps.initialOptionIndex !== this.props.initialOptionIndex) {
this.setState({
selectedOption: nextProps.options[nextProps.initialOptionIndex || 0],
});
}
// If options are updated and our current selected option
// is not part of the new options.
if (
nextProps.options
&& nextProps.options.length > 0
&& nextProps.options.indexOf(this.state.selectedOption) === -1
) {
const previousOption = this.state.selectedOption;
this.setState({
selectedOption: nextProps.options[nextProps.initialOptionIndex || 0],
}, () => {
// Options array changed and the previously selected option is not present anymore.
// Should call onSubmit function to tell parent to handle the change too.
if (previousOption) {
this.onPressSubmit();
}
});
}
if (booleanIsSet(nextProps.modalVisible)) {
this.setState({
modalVisible: nextProps.modalVisible,
});
}
}
onPressCancel() {
if (this.props.onCancel) {
this.props.onCancel(this.state.selectedOption);
}
this.hide();
}
onPressSubmit() {
if (this.props.onSubmit) {
this.props.onSubmit(this.state.selectedOption);
}
this.hide();
}
onOverlayDismiss() {
if (this.props.onCancel) {
this.props.onCancel(this.state.selectedOption);
}
this.hide();
}
onValueChange(option) {
this.setState({
selectedOption: option,
});
}
show() {
this.setState({
modalVisible: true,
});
Animated.timing(
this.state.translateY,
{ toValue: Platform.OS === 'ios' ? -250 : -85, useNativeDriver: true }
).start();
}
hide() {
Animated.timing(
this.state.translateY,
{ toValue: 0, useNativeDriver: true }
).start(() => this.setState({ modalVisible: false }));
}
renderItem(option, index) {
const label = (this.props.labels) ? this.props.labels[index] : option;
return (
<Picker.Item
key={option}
value={option}
label={label}
/>
);
}
render() {
const { modalVisible, selectedOption, translateY } = this.state;
const {
options,
buttonStyle,
itemStyle,
cancelText,
cancelTextStyle,
confirmText,
confirmTextStyle,
disableOverlay,
} = this.props;
const transformStyle = {
transform: [{ translateY }]
};
return (
<Modal
transparent={true}
visible={modalVisible}
onRequestClose={this.onPressCancel}
supportedOrientations={['portrait', 'landscape']}
>
{!disableOverlay &&
<TouchableWithoutFeedback onPress={this.onOverlayDismiss}>
<View style={this.styles.overlayContainer}/>
</TouchableWithoutFeedback>
}
<SafeAreaView>
<Animated.View style={[this.styles.modalContainer, transformStyle]}>
<View style={this.styles.buttonView}>
<TouchableOpacity onPress={this.onPressCancel}>
<Text style={[buttonStyle, cancelTextStyle]}>
{cancelText || 'Cancel'}
</Text>
</TouchableOpacity>
<TouchableOpacity onPress={this.onPressSubmit}>
<Text style={[buttonStyle, confirmTextStyle]}>
{confirmText || 'Confirm'}
</Text>
</TouchableOpacity>
</View>
<View style={this.styles.mainBox}>
<Picker
style={this.styles.bottomPicker}
selectedValue={selectedOption}
onValueChange={this.onValueChange}
itemStyle={itemStyle}
>
{options.map((option, index) => this.renderItem(option, index))}
</Picker>
</View>
</Animated.View>
</SafeAreaView>
</Modal>
);
}
}
SimplePicker.defaultProps = {
styles: {},
};
SimplePicker.propTypes = propTypes;
module.exports = SimplePicker;