-
Notifications
You must be signed in to change notification settings - Fork 30
/
DateTime.ios.js
150 lines (134 loc) · 3.6 KB
/
DateTime.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
/**
* Created by CnJon on 16/1/21.
*/
'use strict';
import React,{Component, PropTypes} from 'react';
import {
DatePickerIOS,
Dimensions,
Navigator,
StyleSheet,
Text,
TouchableOpacity,
View,
} from 'react-native';
const Screen = Dimensions.get('window');
export default class DateTimePicker extends Component {
static propTypes = {
okText: PropTypes.string
};
static defaultProps = {
okText: "Ok"
};
constructor(props) {
super(props);
this.state = {
visible: false,
mode: 'date',
date: new Date()
};
this.callback = ()=>{};
}
showDatePicker(date, callback) {
this.callback = callback;
date = (date || new Date());
this.setState({
mode: 'date',
visible: true,
date: date
});
}
showTimePicker(date, callback) {
this.callback = callback;
date = (date || new Date());
this.setState({
mode: 'time',
visible: true,
date: date
});
}
showDateTimePicker(date, callback) {
this.callback = callback;
date = (date || new Date());
this.setState({
mode: 'datetime',
visible: true,
date: date
});
}
onClose() {
this.setState({
visible: false
});
}
onComplete() {
this.setState({
visible: false
});
this.callback(this.state.date);
}
onDateChange(date) {
this.setState({date: date});
}
render() {
const styles = { ..._styles, ...this.props.styles}
return this.state.visible && (
<View style={styles.container}>
<View style={styles.actionSheetContainer}>
<TouchableOpacity
style={styles.touchableOpacity}
activeOpacity={1}
onPress={()=>this.onClose()} />
<DatePickerIOS
date={this.state.date}
mode={this.state.mode}
onDateChange={(date)=>this.onDateChange(date)}
style = {styles.datePicker}
/>
<View style={styles.separator}/>
<TouchableOpacity
onPress={()=>this.onComplete()}
style={styles.button}>
<Text>{ this.props.okText }</Text>
</TouchableOpacity>
<TouchableOpacity
style={styles.touchableOpacity}
activeOpacity={1}
onPress={()=>this.onClose()} />
</View>
</View>
);
}
}
const _styles = StyleSheet.create({
container:{
top: 0,
bottom: 0,
left: 0,
right: 0,
backgroundColor: 'transparent',
position: 'absolute'
},
actionSheetContainer: {
height: Screen.height,
justifyContent: 'center',
backgroundColor: 'rgba(0, 0, 0, 0.5)'
},
datePicker: {
backgroundColor: 'white',
alignItems: 'center',
},
touchableOpacity: {
flex: 1,
},
button: {
paddingVertical: 10,
backgroundColor: 'white',
justifyContent: 'center',
alignItems: 'center'
},
separator: {
height: 1,
backgroundColor: '#CCC'
}
});