2016-07-26 11:03:44 +08:00
|
|
|
---
|
|
|
|
category: Components
|
2022-11-09 12:28:04 +08:00
|
|
|
group: Data Entry
|
2016-07-26 11:03:44 +08:00
|
|
|
title: TimePicker
|
2022-11-30 20:14:41 +08:00
|
|
|
cover: https://mdn.alipayobjects.com/huamei_7uahnr/afts/img/A*kGmGSLk_1fwAAAAAAAAAAAAADrJ8AQ/original
|
2022-11-09 12:28:04 +08:00
|
|
|
demo:
|
|
|
|
cols: 2
|
2016-07-26 11:03:44 +08:00
|
|
|
---
|
|
|
|
|
|
|
|
To select/input a time.
|
|
|
|
|
2016-09-10 13:43:30 +08:00
|
|
|
## When To Use
|
2017-10-25 10:25:44 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
---
|
2016-07-26 11:03:44 +08:00
|
|
|
|
|
|
|
By clicking the input box, you can select a time from a popup panel.
|
|
|
|
|
2022-11-09 12:28:04 +08:00
|
|
|
## Examples
|
|
|
|
|
2022-11-17 17:31:26 +08:00
|
|
|
<!-- prettier-ignore -->
|
2022-11-09 12:28:04 +08:00
|
|
|
<code src="./demo/basic.tsx">Basic</code>
|
|
|
|
<code src="./demo/value.tsx">Under Control</code>
|
|
|
|
<code src="./demo/size.tsx">Three Sizes</code>
|
|
|
|
<code src="./demo/disabled.tsx">disabled</code>
|
|
|
|
<code src="./demo/hide-column.tsx">Hour and minute</code>
|
|
|
|
<code src="./demo/interval-options.tsx">interval option</code>
|
|
|
|
<code src="./demo/addon.tsx">Addon</code>
|
|
|
|
<code src="./demo/12hours.tsx">12 hours</code>
|
|
|
|
<code src="./demo/colored-popup.tsx" debug>Colored Popup</code>
|
|
|
|
<code src="./demo/range-picker.tsx">Time Range Picker</code>
|
|
|
|
<code src="./demo/bordered.tsx">Bordered-less</code>
|
|
|
|
<code src="./demo/status.tsx">Status</code>
|
|
|
|
<code src="./demo/suffix.tsx" debug>Suffix</code>
|
|
|
|
<code src="./demo/render-panel.tsx" debug>_InternalPanelDoNotUseOrYouWillBeFired</code>
|
|
|
|
|
2016-07-26 11:03:44 +08:00
|
|
|
## API
|
2017-10-25 10:25:44 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
---
|
2016-07-26 11:03:44 +08:00
|
|
|
|
2016-09-09 13:55:21 +08:00
|
|
|
```jsx
|
2022-02-14 14:40:40 +08:00
|
|
|
import dayjs from 'dayjs';
|
|
|
|
import customParseFormat from 'dayjs/plugin/customParseFormat'
|
2020-04-28 14:09:54 +08:00
|
|
|
|
2022-02-14 14:40:40 +08:00
|
|
|
dayjs.extend(customParseFormat)
|
|
|
|
|
|
|
|
<TimePicker defaultValue={dayjs('13:30:56', 'HH:mm:ss')} />;
|
2016-07-26 11:03:44 +08:00
|
|
|
```
|
|
|
|
|
2019-07-11 14:14:33 +08:00
|
|
|
| Property | Description | Type | Default | Version |
|
|
|
|
| --- | --- | --- | --- | --- |
|
2020-07-01 20:18:48 +08:00
|
|
|
| allowClear | Whether allow clearing text | boolean | true | |
|
|
|
|
| autoFocus | If get focus when component mounted | boolean | false | |
|
|
|
|
| bordered | Whether has border style | boolean | true | |
|
|
|
|
| className | The className of picker | string | - | |
|
2020-10-21 10:33:43 +08:00
|
|
|
| clearIcon | The custom clear icon | ReactNode | - | |
|
2020-07-01 20:18:48 +08:00
|
|
|
| clearText | The clear tooltip of icon | string | clear | |
|
2022-02-14 14:40:40 +08:00
|
|
|
| defaultValue | To set default time | [dayjs](http://day.js.org/) | - | |
|
2020-07-01 20:18:48 +08:00
|
|
|
| disabled | Determine whether the TimePicker is disabled | boolean | false | |
|
2021-12-31 11:28:02 +08:00
|
|
|
| disabledTime | To specify the time that cannot be selected | [DisabledTime](#DisabledTime) | - | 4.19.0 |
|
2020-07-01 20:18:48 +08:00
|
|
|
| format | To set the time format | string | `HH:mm:ss` | |
|
|
|
|
| getPopupContainer | To set the container of the floating layer, while the default is to create a div element in body | function(trigger) | - | |
|
|
|
|
| hideDisabledOptions | Whether hide the options that can not be selected | boolean | false | |
|
|
|
|
| hourStep | Interval between hours in picker | number | 1 | |
|
2019-11-20 14:55:34 +08:00
|
|
|
| inputReadOnly | Set the `readonly` attribute of the input tag (avoids virtual keyboard on touch devices) | boolean | false | |
|
2020-07-01 20:18:48 +08:00
|
|
|
| minuteStep | Interval between minutes in picker | number | 1 | |
|
|
|
|
| open | Whether to popup panel | boolean | false | |
|
|
|
|
| placeholder | Display when there's no value | string \| \[string, string] | `Select a time` | |
|
2022-01-20 16:54:47 +08:00
|
|
|
| placement | The position where the selection box pops up | `bottomLeft` `bottomRight` `topLeft` `topRight` | bottomLeft | |
|
2020-07-01 20:18:48 +08:00
|
|
|
| popupClassName | The className of panel | string | - | |
|
|
|
|
| popupStyle | The style of panel | CSSProperties | - | |
|
2020-10-21 10:33:43 +08:00
|
|
|
| renderExtraFooter | Called from time picker panel to render some addon to its bottom | () => ReactNode | - | |
|
2020-07-01 20:18:48 +08:00
|
|
|
| secondStep | Interval between seconds in picker | number | 1 | |
|
2020-10-21 10:33:43 +08:00
|
|
|
| showNow | Whether to show `Now` button on panel | boolean | - | 4.4.0 |
|
2022-02-16 21:14:51 +08:00
|
|
|
| status | Set validation status | 'error' \| 'warning' \| 'success' \| 'validating' | - | 4.19.0 |
|
2019-11-20 14:55:34 +08:00
|
|
|
| suffixIcon | The custom suffix icon | ReactNode | - | |
|
2020-07-01 20:18:48 +08:00
|
|
|
| use12Hours | Display as 12 hours format, with default format `h:mm:ss a` | boolean | false | |
|
2022-02-14 14:40:40 +08:00
|
|
|
| value | To set time | [dayjs](http://day.js.org/) | - | |
|
|
|
|
| onChange | A callback function, can be executed when the selected time is changing | function(time: dayjs, timeString: string): void | - | |
|
2020-07-01 20:18:48 +08:00
|
|
|
| onOpenChange | A callback function which will be called while panel opening/closing | (open: boolean) => void | - | |
|
2022-02-14 14:40:40 +08:00
|
|
|
| onSelect | A callback function, executes when a value is selected | function(time: dayjs): void | - | |
|
2016-07-26 11:03:44 +08:00
|
|
|
|
2021-12-31 11:28:02 +08:00
|
|
|
#### DisabledTime
|
|
|
|
|
|
|
|
```typescript
|
2022-06-13 14:03:43 +08:00
|
|
|
type DisabledTime = (now: Dayjs) => {
|
2021-12-31 11:28:02 +08:00
|
|
|
disabledHours?: () => number[];
|
|
|
|
disabledMinutes?: (selectedHour: number) => number[];
|
|
|
|
disabledSeconds?: (selectedHour: number, selectedMinute: number) => number[];
|
|
|
|
};
|
|
|
|
```
|
|
|
|
|
2017-12-01 19:28:41 +08:00
|
|
|
## Methods
|
|
|
|
|
2022-02-14 14:40:40 +08:00
|
|
|
| Name | Description | Version |
|
|
|
|
| ------- | ------------ | ------- |
|
|
|
|
| blur() | Remove focus | |
|
|
|
|
| focus() | Get focus | |
|
2017-12-01 19:28:41 +08:00
|
|
|
|
2020-03-06 20:19:24 +08:00
|
|
|
### RangePicker
|
|
|
|
|
|
|
|
Same props from [RangePicker](/components/date-picker/#RangePicker) of DatePicker. And includes additional props:
|
|
|
|
|
2021-03-01 19:20:48 +08:00
|
|
|
| Property | Description | Type | Default | Version |
|
|
|
|
| --- | --- | --- | --- | --- |
|
2021-12-31 11:28:02 +08:00
|
|
|
| disabledTime | To specify the time that cannot be selected | [RangeDisabledTime](#RangeDisabledTime) | - | 4.19.0 |
|
2021-03-01 19:20:48 +08:00
|
|
|
| order | Order start and end time | boolean | true | 4.1.0 |
|
2020-03-06 20:19:24 +08:00
|
|
|
|
2021-12-31 11:28:02 +08:00
|
|
|
### RangeDisabledTime
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
type RangeDisabledTime = (
|
2022-06-13 14:03:43 +08:00
|
|
|
now: Dayjs,
|
2021-12-31 11:28:02 +08:00
|
|
|
type = 'start' | 'end',
|
|
|
|
) => {
|
|
|
|
disabledHours?: () => number[];
|
|
|
|
disabledMinutes?: (selectedHour: number) => number[];
|
|
|
|
disabledSeconds?: (selectedHour: number, selectedMinute: number) => number[];
|
|
|
|
};
|
|
|
|
```
|
2020-03-06 20:19:24 +08:00
|
|
|
|
2020-05-10 22:11:09 +08:00
|
|
|
<style>
|
|
|
|
.code-box-demo .ant-picker { margin: 0 8px 12px 0; }
|
|
|
|
.ant-row-rtl .code-box-demo .ant-picker { margin: 0 0 12px 8px; }
|
|
|
|
</style>
|
2020-01-02 16:05:59 +08:00
|
|
|
|
|
|
|
## FAQ
|
|
|
|
|
2022-06-13 14:03:43 +08:00
|
|
|
- [How to use TimePicker with customize date library like dayjs](/docs/react/use-custom-date-library#TimePicker)
|