mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
68 lines
1.8 KiB
JavaScript
68 lines
1.8 KiB
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
import DatePicker from 'react-datepicker/dist/react-datepicker';
|
|
|
|
let InputDate = React.createClass({
|
|
propTypes: {
|
|
submitted: React.PropTypes.bool,
|
|
placeholderText: React.PropTypes.string,
|
|
onChange: React.PropTypes.func,
|
|
defaultValue: React.PropTypes.object,
|
|
|
|
// DatePicker implements the disabled attribute
|
|
// https://github.com/Hacker0x01/react-datepicker/blob/master/src/datepicker.jsx#L30
|
|
disabled: React.PropTypes.bool
|
|
},
|
|
|
|
getInitialState() {
|
|
return {
|
|
value: null,
|
|
value_moment: null
|
|
};
|
|
},
|
|
|
|
// InputDate needs to support setting a defaultValue from outside.
|
|
// If this is the case, we need to call handleChange to propagate this
|
|
// to the outer Property
|
|
componentWillReceiveProps(nextProps) {
|
|
if(!this.state.value && !this.state.value_moment && nextProps.defaultValue) {
|
|
this.handleChange(this.props.defaultValue);
|
|
}
|
|
},
|
|
|
|
handleChange(date) {
|
|
let formattedDate = date.format('YYYY-MM-DD');
|
|
this.setState({
|
|
value: formattedDate,
|
|
value_moment: date
|
|
});
|
|
|
|
this.props.onChange({
|
|
target: {
|
|
value: formattedDate
|
|
}
|
|
});
|
|
},
|
|
|
|
reset() {
|
|
this.setState(this.getInitialState());
|
|
},
|
|
|
|
render() {
|
|
return (
|
|
<div>
|
|
<DatePicker
|
|
disabled={this.props.disabled}
|
|
dateFormat="YYYY-MM-DD"
|
|
selected={this.state.value_moment}
|
|
onChange={this.handleChange}
|
|
placeholderText={this.props.placeholderText}/>
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default InputDate;
|