mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
47 lines
1019 B
JavaScript
47 lines
1019 B
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
|
|
},
|
|
|
|
getInitialState() {
|
|
return {
|
|
value: null
|
|
};
|
|
},
|
|
|
|
handleChange(date) {
|
|
let formattedDate = date.format('YYYY-MM-DD');
|
|
this.setState({
|
|
value: formattedDate,
|
|
value_moment: date
|
|
});
|
|
|
|
this.props.onChange({
|
|
target: {
|
|
value: formattedDate
|
|
}
|
|
});
|
|
},
|
|
|
|
render: function () {
|
|
return (
|
|
<div>
|
|
<DatePicker
|
|
dateFormat="YYYY-MM-DD"
|
|
selected={this.state.value_moment}
|
|
onChange={this.handleChange}
|
|
placeholderText={this.props.placeholderText}/>
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default InputDate;
|