react-toolbox/components/date_picker/DatePickerDialog.js

85 lines
2.6 KiB
JavaScript
Raw Normal View History

import React from 'react';
import ClassNames from 'classnames';
2015-11-23 00:13:27 +03:00
import Calendar from './Calendar';
import Dialog from '../dialog';
import style from './style';
import time from '../utils/time';
2015-09-07 02:59:11 +03:00
2015-10-22 02:31:17 +03:00
class CalendarDialog extends React.Component {
static propTypes = {
2015-11-10 16:27:00 +03:00
active: React.PropTypes.bool,
2016-03-09 17:56:10 +03:00
autoOk: React.PropTypes.bool,
className: React.PropTypes.string,
2015-11-16 11:56:05 +03:00
maxDate: React.PropTypes.object,
minDate: React.PropTypes.object,
2015-11-11 22:34:19 +03:00
onDismiss: React.PropTypes.func,
onSelect: React.PropTypes.func,
value: React.PropTypes.object
};
2015-09-07 02:59:11 +03:00
static defaultProps = {
2015-11-10 16:27:00 +03:00
active: false,
className: '',
2015-11-11 22:34:19 +03:00
value: new Date()
};
2015-09-07 02:59:11 +03:00
state = {
2015-11-11 22:34:19 +03:00
date: this.props.value,
2015-11-16 20:02:32 +03:00
display: 'months'
};
2015-09-07 02:59:11 +03:00
2016-03-09 17:56:10 +03:00
handleCalendarChange = (value, dayClick) => {
2015-11-16 20:02:32 +03:00
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);
2016-03-09 17:56:10 +03:00
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-10-22 02:31:17 +03:00
};
2015-11-11 22:34:19 +03:00
handleSwitchDisplay = (display) => {
this.setState({ display });
2015-10-22 02:31:17 +03:00
};
2015-09-07 02:59:11 +03:00
2015-11-11 22:34:19 +03:00
actions = [
{ label: 'Cancel', className: style.button, onClick: this.props.onDismiss },
{ label: 'Ok', className: style.button, onClick: this.handleSelect }
];
2015-09-07 02:59:11 +03:00
render () {
2015-10-10 21:06:16 +03:00
const display = `display-${this.state.display}`;
const className = ClassNames(style.dialog, this.props.className);
const headerClassName = ClassNames(style.header, style[display]);
2015-09-07 02:59:11 +03:00
return (
<Dialog active={this.props.active} type="custom" className={className} actions={this.actions}>
2015-10-10 21:06:16 +03:00
<header className={headerClassName}>
2015-11-11 22:34:19 +03:00
<span className={style.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>
<h3 className={style.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>
2015-10-10 21:06:16 +03:00
<div className={style.wrapper}>
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} />
2015-09-07 02:59:11 +03:00
</div>
</Dialog>
);
}
2015-10-21 13:25:07 +03:00
}
2015-10-22 02:31:17 +03:00
export default CalendarDialog;