Skip to content

Commit

Permalink
✨ [feature] add test case for dateSteps
Browse files Browse the repository at this point in the history
  • Loading branch information
lanjingling0510 committed Apr 23, 2018
1 parent 34ff8c6 commit 8508a7e
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 20 deletions.
37 changes: 19 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ react-mobile-datepicker provides a component that can set year, month, day, hour
- is only 4k.
- It does not depend on moment.js

## Theme
## Theme

### default
<div style="padding:30px">
Expand All @@ -35,22 +35,22 @@ react-mobile-datepicker provides a component that can set year, month, day, hour
### android-dark
<div style="padding:30px">
<img src="https://raw.githubusercontent.com/lanjingling0510/react-mobile-datepicker/master/.github/android-dark.png" width="300" />
</div>

## Custom date unit

set dateFormat for `['YYYY', 'MM', 'DD', 'hh', 'mm']` to configure year, month, day, hour, minute.

</div>

## Custom date unit

set dateFormat for `['YYYY', 'MM', 'DD', 'hh', 'mm']` to configure year, month, day, hour, minute.

<div style="padding:30px">
<img src="https://raw.githubusercontent.com/lanjingling0510/react-mobile-datepicker/master/.github/year-month-day-hour-minute.png" width="300" />
</div>


set dateFormat for `['hh', 'mm', 'ss']` to configure hour, minute and second.

</div>


set dateFormat for `['hh', 'mm', 'ss']` to configure hour, minute and second.

<div style="padding:30px">
<img src="https://raw.githubusercontent.com/lanjingling0510/react-mobile-datepicker/master/.github/hour-minute-second.png" width="300" />
</div>
</div>


## Getting Started
Expand Down Expand Up @@ -122,17 +122,18 @@ ReactDOM.render(<App />, document.getElementById('react-box'));
## PropTypes

| Property | Type | Default | Description |
|:------------- |:------------- |:-------------- |:---------- |
|:------------- |:------------- |:-------------- |:---------- |
| isPopup | Boolean | true | whether as popup add a overlay |
| isOpen | Boolean | false | whether to open datepicker |
| theme | String | default | theme of datepicker, include 'default', 'dark', 'ios', 'android', 'android-dark' |
| dateFormat | Array | ['YYYY', 'M', 'D'] | according to year, month, day, hour, minute, second format specified display text. E.g ['YYYY年', 'MM月', 'DD日']|
| dateFormat | Array | ['YYYY', 'M', 'D'] | according to year, month, day, hour, minute, second format specified display text. E.g ['YYYY年', 'MM月', 'DD日']|
| dateSteps | Array | [1, 1, 1] | set step for each time unit |
|showFormat | String | 'YYYY/MM/DD' | customize the format of the display title |
| value | Date | new Date() | date value |
| min | Date | new Date(1970, 0, 1) | minimum date |
| max | Date | new Date(2050, 0, 1) | maximum date |
| showHeader | Boolean | true | whether to show the header |
| customHeader | ReactElement | undefined | customize the header, if you set this property, it will replace `showFormat`|
| max | Date | new Date(2050, 0, 1) | maximum date |
| showHeader | Boolean | true | whether to show the header |
| customHeader | ReactElement | undefined | customize the header, if you set this property, it will replace `showFormat`|
| confirmText | String | 完成 | customize the selection time button text |
| cancelText | String | 取消 | customize the cancel button text |
| onSelect | Function | () => {} | the callback function after click button of done, Date object as a parameter |
Expand Down
4 changes: 2 additions & 2 deletions examples/basic/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import DatePicker from '../../lib/index';
(function main() {
class App extends React.Component {
state = {
time: new Date(),
time: new Date(2016, 8, 16, 8, 20, 57),
isOpen: false,
theme: 'default',
}
Expand Down Expand Up @@ -59,8 +59,8 @@ import DatePicker from '../../lib/index';
</div>
<DatePicker
value={this.state.time}
min={new Date(2017, 2, 2)}
dateSteps={[1, 1, 5]}
dateFormat={['hh', 'mm', 'ss']}
theme={this.state.theme}
isOpen={this.state.isOpen}
onSelect={this.handleSelect}
Expand Down
90 changes: 90 additions & 0 deletions test/functional/DatePicker_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -322,3 +322,93 @@ describe('渲染正确的DatepicketItem子组件', () => {
expect(datePickerItems.at(2).props().format).to.equals('ss');
});
});

describe('测试dateSteps属性', () => {
let props;
let mountedDatepicker;
let yearPicker, monthPicker, dayPicker;

const datePicker = () => {
if (!mountedDatepicker) {
mountedDatepicker = mount(
<DatePicker {...props} />
);

yearPicker = mountedDatepicker.find(DatePickerItem).first();
monthPicker = mountedDatepicker.find(DatePickerItem).at(1);
dayPicker = mountedDatepicker.find(DatePickerItem).at(2);
}

return mountedDatepicker;
}

beforeEach(() => {
props = {
value: new Date(2016, 8, 16, 8, 22, 57),
min: new Date(2015, 10, 1),
max: new Date(2020, 10, 1),
isOpen: true,
};
mountedDatepicker = undefined;
yearPicker = null;
monthPicker = null;
dayPicker = null;
});


it ('当datesteps等于[5, 5, 5], dateFormart等于[hh, mm, ss], 当前时间为8:20:57,向上滑动秒,分钟应该为23', () => {
props.dateFormat = ['hh', 'mm', 'ss'];
props.dateSteps = [1, 1, 5];

const datePickerItems = datePicker().find(DatePickerItem);
const second = dayPicker.find('.datepicker-viewport').instance();

const touchstartEvent = {
targetTouches: [{ pageY: 0 }],
};
const touchmoveEvent = {
targetTouches: [{ pageY: -21 }],
};
const touchendEvent = {
changedTouches: [{ pageY: -21 }],
};

eventTrigger(second, 'touchstart', touchstartEvent);
eventTrigger(second, 'touchmove', touchmoveEvent);
eventTrigger(second, 'touchend', touchendEvent);

return delay(250)
.then(() => {
expect(mountedDatepicker.state('value').getTime()).to.equals(new Date(2016, 8, 16, 8, 23, 2).getTime());
})
});


it ('当datesteps等于[5, 5, 5], dateFormart等于[hh, mm, ss], 当前时间为8:20:57,向上滑动秒,最大时间是8:20:59, 分钟应该为22', () => {
props.dateFormat = ['hh', 'mm', 'ss'];
props.dateSteps = [1, 1, 5];
props.max = new Date(2016, 8, 16, 8, 22, 59);

const datePickerItems = datePicker().find(DatePickerItem);
const second = dayPicker.find('.datepicker-viewport').instance();

const touchstartEvent = {
targetTouches: [{ pageY: 0 }],
};
const touchmoveEvent = {
targetTouches: [{ pageY: -21 }],
};
const touchendEvent = {
changedTouches: [{ pageY: -21 }],
};

eventTrigger(second, 'touchstart', touchstartEvent);
eventTrigger(second, 'touchmove', touchmoveEvent);
eventTrigger(second, 'touchend', touchendEvent);

return delay(250)
.then(() => {
expect(mountedDatepicker.state('value').getTime()).to.equals(new Date(2016, 8, 16, 8, 22, 57).getTime());
})
});
});

0 comments on commit 8508a7e

Please sign in to comment.