ant-design/components/date-picker/demo/start-end.md

103 lines
2.3 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
feat: New Picker (#20023) * init generate * basic style * basic panel style * update mode panel style * update style * generate More picker * default clear icon * chore: Update separator type * feat: Add ranged start & end className * update range style * Add transition effect * support size config * adjust range style * chore: Auto fill time by showTime * auto set time by format * update disabled style * update seperator style * ranges style * support extra footer style * remove useless test case part is not usable anymore part is already tested in rc-picker * init calendar * all demos * fix calendar basic test * fix time-picker test case * update snapshot * fix tooltip test case & lint * fix locale & style lint * fix compile * fix style * fix style lint * fix calendar style * update rc-picker version * adjust style * move picker placeholder into locale file * update snapshot * add hover style * update picker version * fix icon position & style * update picker version * update deps for pading * fix: align of suffix * feat: Year & Month support range effect * adjust range style to support up-down placement * update rc-picker * update range picker style * adjust extra footer line style * update snapshot * fix: Locale error * fix: style lint * fix: add missing button style deps * update test case * fix firefox additional white line style issue * rollback demo * fix ff additional blue color * docs: Remove placeholder in demo * rangepicker ranges is tag now * connect start / end background color with picker range * update deps * update deps for fixing blur text issue * hide start-end demo * range hover style update * hover range with ranged value * black magic of inner hover style * hover style of range adjust * fix css select miss hit on DatePicker * remove one eslint rule * fade range hovered color * week should alway not show the cell selection * update style of selection * update snapshot * fix style * add margin back * update rc-picker deps * update date & time picker & form style * fix disabled demo & update form style * update docs about allowEmpty * hide arrow in time range picker * add hover & focused style * fix lint * fix style & update snapshot * raise disabled selector proirity * fix disabled today border color * extra footer provides an bottom line * time picker hover support transition background * add padding style * fix Firefox not correct calculate inline-flex * fix style * fix week picker missing today border color * rm useless padding * Force padding to 0 * test coverage * dedup eslint rule * adjust logic to imporve coverage * fix render cell logic
2019-12-11 23:32:19 +08:00
order: 99
2016-09-08 14:09:36 +08:00
title:
zh-CN: 自定义日期范围选择
en-US: Customized Range Picker
feat: New Picker (#20023) * init generate * basic style * basic panel style * update mode panel style * update style * generate More picker * default clear icon * chore: Update separator type * feat: Add ranged start & end className * update range style * Add transition effect * support size config * adjust range style * chore: Auto fill time by showTime * auto set time by format * update disabled style * update seperator style * ranges style * support extra footer style * remove useless test case part is not usable anymore part is already tested in rc-picker * init calendar * all demos * fix calendar basic test * fix time-picker test case * update snapshot * fix tooltip test case & lint * fix locale & style lint * fix compile * fix style * fix style lint * fix calendar style * update rc-picker version * adjust style * move picker placeholder into locale file * update snapshot * add hover style * update picker version * fix icon position & style * update picker version * update deps for pading * fix: align of suffix * feat: Year & Month support range effect * adjust range style to support up-down placement * update rc-picker * update range picker style * adjust extra footer line style * update snapshot * fix: Locale error * fix: style lint * fix: add missing button style deps * update test case * fix firefox additional white line style issue * rollback demo * fix ff additional blue color * docs: Remove placeholder in demo * rangepicker ranges is tag now * connect start / end background color with picker range * update deps * update deps for fixing blur text issue * hide start-end demo * range hover style update * hover range with ranged value * black magic of inner hover style * hover style of range adjust * fix css select miss hit on DatePicker * remove one eslint rule * fade range hovered color * week should alway not show the cell selection * update style of selection * update snapshot * fix style * add margin back * update rc-picker deps * update date & time picker & form style * fix disabled demo & update form style * update docs about allowEmpty * hide arrow in time range picker * add hover & focused style * fix lint * fix style & update snapshot * raise disabled selector proirity * fix disabled today border color * extra footer provides an bottom line * time picker hover support transition background * add padding style * fix Firefox not correct calculate inline-flex * fix style * fix week picker missing today border color * rm useless padding * Force padding to 0 * test coverage * dedup eslint rule * adjust logic to imporve coverage * fix render cell logic
2019-12-11 23:32:19 +08:00
debug: true
2016-03-31 09:40:55 +08:00
---
2015-10-22 17:27:53 +08:00
2016-06-19 11:17:09 +08:00
## zh-CN
`RangePicker` 无法满足业务需求时,可以使用两个 `DatePicker` 实现类似的功能。
2019-05-07 14:57:32 +08:00
> - 通过设置 `disabledDate` 方法,来约束开始和结束日期。
> - 通过 `open` `onOpenChange` 来优化交互。
2015-10-22 17:27:53 +08:00
2016-06-19 11:17:09 +08:00
## en-US
When `RangePicker` does not satisfied your requirements, try to implement similar functionality with two `DatePicker`.
2016-06-19 11:17:09 +08:00
2019-05-07 14:57:32 +08:00
> - Use the `disabledDate` property to limit the start and end dates.
> - Improve user experience with `open` and `onOpenChange`.
```jsx
import { DatePicker, Space } from 'antd';
2015-10-22 17:27:53 +08:00
class DateRange extends React.Component {
state = {
startValue: null,
endValue: null,
endOpen: false,
};
2019-05-07 14:57:32 +08:00
disabledStartDate = startValue => {
2019-06-19 19:09:08 +08:00
const { endValue } = this.state;
if (!startValue || !endValue) {
2015-10-22 17:27:53 +08:00
return false;
}
return startValue.valueOf() > endValue.valueOf();
2019-05-07 14:57:32 +08:00
};
2019-05-07 14:57:32 +08:00
disabledEndDate = endValue => {
2019-06-19 19:09:08 +08:00
const { startValue } = this.state;
if (!endValue || !startValue) {
2015-10-28 18:35:56 +08:00
return false;
}
return endValue.valueOf() <= startValue.valueOf();
2019-05-07 14:57:32 +08:00
};
onChange = (field, value) => {
2015-10-22 17:27:53 +08:00
this.setState({
[field]: value,
});
2019-05-07 14:57:32 +08:00
};
2019-05-07 14:57:32 +08:00
onStartChange = value => {
2016-03-30 17:06:19 +08:00
this.onChange('startValue', value);
2019-05-07 14:57:32 +08:00
};
2019-05-07 14:57:32 +08:00
onEndChange = value => {
2016-03-30 17:06:19 +08:00
this.onChange('endValue', value);
2019-05-07 14:57:32 +08:00
};
2019-05-07 14:57:32 +08:00
handleStartOpenChange = open => {
if (!open) {
this.setState({ endOpen: true });
}
2019-05-07 14:57:32 +08:00
};
2019-05-07 14:57:32 +08:00
handleEndOpenChange = open => {
this.setState({ endOpen: open });
2019-05-07 14:57:32 +08:00
};
2015-10-22 17:27:53 +08:00
render() {
const { startValue, endValue, endOpen } = this.state;
return (
<Space>
<DatePicker
disabledDate={this.disabledStartDate}
showTime
format="YYYY-MM-DD HH:mm:ss"
value={startValue}
2016-09-29 14:35:33 +08:00
placeholder="Start"
onChange={this.onStartChange}
onOpenChange={this.handleStartOpenChange}
/>
<DatePicker
disabledDate={this.disabledEndDate}
showTime
format="YYYY-MM-DD HH:mm:ss"
value={endValue}
2016-09-29 14:35:33 +08:00
placeholder="End"
onChange={this.onEndChange}
open={endOpen}
onOpenChange={this.handleEndOpenChange}
/>
</Space>
);
}
}
2015-10-22 17:27:53 +08:00
ReactDOM.render(<DateRange />, mountNode);
2019-05-07 14:57:32 +08:00
```