react-toolbox/components/date_picker/DatePickerDialog.js

115 lines
3.4 KiB
JavaScript
Raw Normal View History

import React, { Component, PropTypes } from 'react';
2016-05-21 21:52:48 +03:00
import classnames from 'classnames';
import time from '../utils/time.js';
const factory = (Dialog, Calendar) => {
class CalendarDialog extends Component {
static propTypes = {
active: PropTypes.bool,
autoOk: PropTypes.bool,
className: PropTypes.string,
maxDate: PropTypes.object,
minDate: PropTypes.object,
onDismiss: PropTypes.func,
onSelect: PropTypes.func,
theme: PropTypes.shape({
button: PropTypes.string,
calendarWrapper: PropTypes.string,
date: PropTypes.string,
dialog: PropTypes.string,
header: PropTypes.string,
monthsDisplay: PropTypes.string,
year: PropTypes.string,
yearsDisplay: PropTypes.string
}),
value: PropTypes.object
};
static defaultProps = {
active: false,
className: '',
value: new Date()
};
state = {
display: 'months',
date: this.props.value
};
componentWillMount () {
this.updateStateDate(this.props.value);
}
componentWillReceiveProps (nextProps) {
this.updateStateDate(nextProps.value);
2016-03-09 17:56:10 +03:00
}
2015-10-22 02:31:17 +03:00
handleCalendarChange = (value, dayClick) => {
const state = {display: 'months', date: value};
if (time.dateOutOfRange(value, this.props.minDate, this.props.maxDate)) {
state.date = this.props.maxDate || this.props.minDate;
}
this.setState(state);
if (dayClick && this.props.autoOk && this.props.onSelect) {
this.props.onSelect(value);
}
};
2015-10-22 02:31:17 +03:00
handleSelect = (event) => {
if (this.props.onSelect) this.props.onSelect(this.state.date, event);
};
2015-09-07 02:59:11 +03:00
handleSwitchDisplay = (display) => {
this.setState({ display });
};
updateStateDate = (date) => {
if (Object.prototype.toString.call(date) === '[object Date]') {
this.setState({
date
});
}
}
actions = [
{ label: 'Cancel', className: this.props.theme.button, onClick: this.props.onDismiss },
{ label: 'Ok', className: this.props.theme.button, onClick: this.handleSelect }
];
2015-09-07 02:59:11 +03:00
render () {
const { theme } = this.props;
const display = `${this.state.display}Display`;
const className = classnames(theme.dialog, this.props.className);
const headerClassName = classnames(theme.header, theme[display]);
return (
<Dialog active={this.props.active} type="custom" className={className} actions={this.actions}>
2015-10-10 21:06:16 +03:00
<header className={headerClassName}>
2016-05-21 21:52:48 +03:00
<span className={theme.year} onClick={this.handleSwitchDisplay.bind(this, 'years')}>
2015-11-16 20:02:32 +03:00
{this.state.date.getFullYear()}
2015-09-07 02:59:11 +03:00
</span>
2016-05-21 21:52:48 +03:00
<h3 className={theme.date} onClick={this.handleSwitchDisplay.bind(this, 'months')}>
{time.getShortDayOfWeek(this.state.date.getDay())}, {time.getShortMonth(this.state.date)} {this.state.date.getDate()}
</h3>
2015-09-07 02:59:11 +03:00
</header>
2016-05-21 21:52:48 +03:00
<div className={theme.calendarWrapper}>
2015-09-07 02:59:11 +03:00
<Calendar
display={this.state.display}
2015-11-16 11:56:05 +03:00
maxDate={this.props.maxDate}
minDate={this.props.minDate}
2015-10-22 02:31:17 +03:00
onChange={this.handleCalendarChange}
selectedDate={this.state.date}
theme={this.props.theme} />
2015-09-07 02:59:11 +03:00
</div>
</Dialog>
);
}
2015-09-07 02:59:11 +03:00
}
2015-10-22 02:31:17 +03:00
return CalendarDialog;
};
export default factory;