Skip to content

Commit 01a3ec4

Browse files
✨ [feature] add characteristic of onchange and showFooter
1 parent 9fccefb commit 01a3ec4

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -267,11 +267,13 @@ ReactDOM.render(<App />, document.getElementById('react-box'));
267267
| min | Date | new Date(1970, 0, 1) | minimum date |
268268
| max | Date | new Date(2050, 0, 1) | maximum date |
269269
| showHeader | Boolean | true | whether to show the header |
270+
| showFooter | Boolean | true | whether to show the fotter |
270271
| customHeader | ReactElement | undefined | customize the header, if you set this property, it will replace `showFormat`|
271272
| confirmText | String | 完成 | customize the selection time button text |
272273
| cancelText | String | 取消 | customize the cancel button text |
273274
| onSelect | Function | () => {} | the callback function after click button of done, Date object as a parameter |
274275
| onCancel | Function | () => {} | the callback function after click button of cancel |
276+
| onChange | Function | () => {} | the callback function after date be changed |
275277

276278

277279
## DateConfig

lib/DatePicker.js

+8-4
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ type Props = {
1515
max: Object,
1616
customHeader?: React.Element<*>,
1717
showHeader: boolean,
18+
showFooter: boolean,
1819
showCaption: boolean,
1920
dateConfig: Object | Array<string>,
2021
headerFormat: string,
2122
confirmText: string,
2223
cancelText: string,
24+
onChange: Function,
2325
onSelect: Function,
2426
onCancel: Function,
2527
}
@@ -118,7 +120,9 @@ class DatePicker extends Component<void, Props, State> {
118120
* @return {undefined}
119121
*/
120122
handleDateSelect(value) {
121-
this.setState({ value });
123+
this.setState({ value }, () => {
124+
this.props.onChange(value);
125+
});
122126
}
123127

124128
/**
@@ -161,7 +165,7 @@ class DatePicker extends Component<void, Props, State> {
161165
* @return {Object} JSX对象
162166
*/
163167
render() {
164-
const { min, max, theme, dateConfig, confirmText, cancelText, headerFormat, showHeader, customHeader, showCaption } = this.props;
168+
const { min, max, theme, dateConfig, confirmText, cancelText, headerFormat, showHeader, showFooter, customHeader, showCaption } = this.props;
165169
const value = this.state.value;
166170
const themeClassName =
167171
['default', 'dark', 'ios', 'android', 'android-dark'].indexOf(theme) === -1 ?
@@ -197,14 +201,14 @@ class DatePicker extends Component<void, Props, State> {
197201
onSelect={this.handleDateSelect} />
198202
))}
199203
</div>
200-
<div className="datepicker-navbar">
204+
{showFooter && <div className="datepicker-navbar">
201205
<a
202206
className="datepicker-navbar-btn"
203207
onClick={this.handleFinishBtnClick}>{confirmText}</a>
204208
<a
205209
className="datepicker-navbar-btn"
206210
onClick={this.props.onCancel}>{cancelText}</a>
207-
</div>
211+
</div>}
208212
</div>
209213
);
210214
}

lib/dataSource.js

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export const defaultProps = {
99
value: new Date(),
1010
min: new Date(1970, 0, 1),
1111
max: new Date(2050, 0, 1),
12+
showFooter: true,
1213
showHeader: true,
1314
showCaption: false,
1415
dateConfig: {
@@ -31,6 +32,7 @@ export const defaultProps = {
3132
headerFormat: 'YYYY/MM/DD',
3233
confirmText: '完成',
3334
cancelText: '取消',
35+
onChange: () => {},
3436
onSelect: () => {},
3537
onCancel: () => {},
3638
};

0 commit comments

Comments
 (0)