Skip to content

Commit 34ff8c6

Browse files
✨ [feature] Add characteristics of set a time step
1 parent 5d5555c commit 34ff8c6

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

examples/basic/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ import DatePicker from '../../lib/index';
6060
<DatePicker
6161
value={this.state.time}
6262
min={new Date(2017, 2, 2)}
63+
dateSteps={[1, 1, 5]}
6364
theme={this.state.theme}
6465
isOpen={this.state.isOpen}
6566
onSelect={this.handleSelect}

lib/DatePicker.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ type Props = {
1515
customHeader?: React.Element<*>,
1616
showHeader: boolean,
1717
dateFormat: Array<*>,
18+
dateSteps: Array<*>,
1819
showFormat: string,
1920
confirmText: string,
2021
cancelText: string,
@@ -84,12 +85,12 @@ class DatePicker extends Component<void, Props, State> {
8485
* @return {Object} JSX对象
8586
*/
8687
render() {
87-
const { min, max, theme, dateFormat, confirmText, cancelText, showFormat, showHeader, customHeader } = this.props;
88+
const { min, max, theme, dateFormat, confirmText, cancelText, showFormat, showHeader, customHeader, dateSteps } = this.props;
8889
const value = this.state.value;
8990
const themeClassName =
9091
['default', 'dark', 'ios', 'android', 'android-dark'].indexOf(theme) === -1 ?
9192
'default' : theme;
92-
93+
9394
return (
9495
<div
9596
className={`datepicker ${themeClassName}`}>
@@ -99,6 +100,7 @@ class DatePicker extends Component<void, Props, State> {
99100
{dateFormat.map((format, index) => (
100101
<DatePickerItem
101102
key={index}
103+
step={dateSteps[index] || 1}
102104
value={value}
103105
min={min}
104106
max={max}

lib/DatePickerItem.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ type Props = {
4545
min: Object,
4646
max: Object,
4747
format: string,
48+
step: number,
4849
onSelect: Function,
4950
}
5051

@@ -128,7 +129,7 @@ class DatePickerItem extends Component<void, Props, State> {
128129
const typeName = this.typeName;
129130
const dates = Array(...Array(DATE_LENGTH))
130131
.map((value, index) =>
131-
TimeUtil[`next${typeName}`](date, index - MIDDLE_INDEX));
132+
TimeUtil[`next${typeName}`](date, (index - MIDDLE_INDEX) * this.props.step));
132133
this.setState({ dates });
133134
}
134135

@@ -140,15 +141,15 @@ class DatePickerItem extends Component<void, Props, State> {
140141
this.setState({
141142
dates: [
142143
...dates.slice(1),
143-
TimeUtil[`next${typeName}`](dates[dates.length - 1], 1),
144+
TimeUtil[`next${typeName}`](dates[dates.length - 1], this.props.step),
144145
],
145146
marginTop: (this.currentIndex - MIDDLE_INDEX) * DATE_HEIGHT,
146147
});
147148
} else {
148149
this.currentIndex --;
149150
this.setState({
150151
dates: [
151-
TimeUtil[`next${typeName}`](dates[0], -1),
152+
TimeUtil[`next${typeName}`](dates[0], -this.props.step),
152153
...dates.slice(0, dates.length - 1),
153154
],
154155
marginTop: (this.currentIndex - MIDDLE_INDEX) * DATE_HEIGHT,

lib/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ ModalDatePicker.defaultProps = {
4949
max: new Date(2050, 0, 1),
5050
showHeader: true,
5151
dateFormat: ['YYYY', 'M', 'D'],
52+
dateSteps: [1, 1, 1],
5253
showFormat: 'YYYY/MM/DD',
5354
confirmText: '完成',
5455
cancelText: '取消',

test/functional/DatePickerItem_spec.js

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ const DEFAULT_PROPS = {
1414
value: new Date(2010, 3, 7),
1515
min: new Date(2010, 2, 6),
1616
max: new Date(2010, 4, 8),
17+
step: 1,
1718
onSelect: () => {},
1819
}
1920

test/functional/DatePicker_spec.js

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const DEFAULT_PROPS = {
1616
min: new Date(2015, 10, 1),
1717
max: new Date(2020, 10, 1),
1818
dateFormat: ['YYYY', 'M', 'D'],
19+
dateSteps: [1, 1, 1],
1920
isOpen: true,
2021
}
2122

@@ -286,6 +287,7 @@ describe('渲染正确的DatepicketItem子组件', () => {
286287
beforeEach(() => {
287288
props = {
288289
value: new Date(2016, 8, 16),
290+
dateSteps: [1, 1, 1]
289291
};
290292
mountedDatepicker = undefined;
291293
});

0 commit comments

Comments
 (0)