-
-
Notifications
You must be signed in to change notification settings - Fork 413
/
timepicker.android.js
53 lines (50 loc) · 2.15 KB
/
timepicker.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
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @flow strict-local
*/
import {TIME_SET_ACTION, DISMISS_ACTION, ANDROID_DISPLAY} from './constants';
import {toMilliseconds} from './utils';
import RNTimePickerAndroid from './specs/NativeModuleTimePicker';
import type {TimePickerOptions, DateTimePickerResult} from './types';
export default class TimePickerAndroid {
/**
* Opens the standard Android time picker dialog.
*
* The available keys for the `options` object are:
* - `value` (`Date` object) - date to show by default
* * `is24Hour` (boolean) - If `true`, the picker uses the 24-hour format. If `false`,
* the picker shows an AM/PM chooser. If undefined, the default for the current locale
* is used.
* * `minuteInterval` (enum(1 | 5 | 10 | 15 | 20 | 30)`) - set the time picker minutes' interval
* * `mode` (`enum('clock', 'spinner', 'default')`) - set the time picker mode
* - 'clock': Show a time picker in clock mode.
* - 'spinner': Show a time picker in spinner mode.
* - 'default': Show a default time picker based on Android versions.
*
* Returns a Promise which will be invoked an object containing `action`, `hour` (0-23),
* `minute` (0-59) if the user picked a time. If the user dismissed the dialog, the Promise will
* still be resolved with action being `TimePickerAndroid.dismissedAction` and all the other keys
* being undefined. **Always** check whether the `action` before reading the values.
*/
static async open(options: TimePickerOptions): Promise<DateTimePickerResult> {
toMilliseconds(options, 'value');
options.display = options.display || ANDROID_DISPLAY.default;
return RNTimePickerAndroid.open(options);
}
static async dismiss(): Promise<boolean> {
return RNTimePickerAndroid.dismiss();
}
/**
* A time has been selected.
*/
static +timeSetAction: 'timeSetAction' = TIME_SET_ACTION;
/**
* The dialog has been dismissed.
*/
static +dismissedAction: 'dismissedAction' = DISMISS_ACTION;
}