-
Notifications
You must be signed in to change notification settings - Fork 30
/
DateTime.android.js
82 lines (73 loc) · 2.01 KB
/
DateTime.android.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
/**
* Created by CnJon on 16/1/21.
*/
'use strict';
import React,{Component, PropTypes} from 'react';
import {
NativeModules,
View,
} from 'react-native';
const RCTDateTimePicker = NativeModules.DateTimePicker;
export default class DateTimePicker extends Component {
static propTypes = {
cancelText: PropTypes.string,
okText: PropTypes.string
};
static defaultProps = {
cancelText: 'Cancel',
okText: 'Ok'
};
constructor(props) {
super(props);
}
showDatePicker(date, callback) {
date = date || new Date();
var options = {
...this.props,
year:date.getFullYear(),
month:date.getMonth(),
day:date.getDate()
};
RCTDateTimePicker.showDatePicker(options, function (year, month, day) {
date.setFullYear(year);
date.setMonth(month);
date.setDate(day);
callback(date);
});
}
showTimePicker(date, callback) {
date = date || new Date();
var options = {
...this.props,
hour:date.getHours(),
minute:date.getMinutes()
};
RCTDateTimePicker.showTimePicker(options, function (hour, minute) {
date.setHours(hour);
date.setMinutes(minute);
callback(date);
});
}
showDateTimePicker(date, callback) {
date = date || new Date();
var options = {
...this.props,
year:date.getFullYear(),
month:date.getMonth(),
day:date.getDate(),
hour:date.getHours(),
minute:date.getMinutes()
};
RCTDateTimePicker.showDateTimePicker(options, function (year, month, day, hour, minute) {
date.setFullYear(year);
date.setMonth(month);
date.setDate(day);
date.setHours(hour);
date.setMinutes(minute);
callback(date);
});
}
render() {
return null;
}
}