react-dates
Version:
A responsive and accessible date range picker component built with React
737 lines (631 loc) • 21.5 kB
JSX
import React from 'react';
import PropTypes from 'prop-types';
import momentPropTypes from 'react-moment-proptypes';
import { forbidExtraProps, mutuallyExclusiveProps, nonNegativeInteger } from 'airbnb-prop-types';
import moment from 'moment';
import values from 'object.values';
import isTouchDevice from 'is-touch-device';
import { DayPickerPhrases } from '../defaultPhrases';
import getPhrasePropTypes from '../utils/getPhrasePropTypes';
import isSameDay from '../utils/isSameDay';
import isAfterDay from '../utils/isAfterDay';
import getVisibleDays from '../utils/getVisibleDays';
import isDayVisible from '../utils/isDayVisible';
import toISODateString from '../utils/toISODateString';
import toISOMonthString from '../utils/toISOMonthString';
import ScrollableOrientationShape from '../shapes/ScrollableOrientationShape';
import DayOfWeekShape from '../shapes/DayOfWeekShape';
import CalendarInfoPositionShape from '../shapes/CalendarInfoPositionShape';
import {
HORIZONTAL_ORIENTATION,
VERTICAL_SCROLLABLE,
DAY_SIZE,
INFO_POSITION_BOTTOM,
} from '../constants';
import DayPicker from './DayPicker';
const propTypes = forbidExtraProps({
date: momentPropTypes.momentObj,
onDateChange: PropTypes.func,
focused: PropTypes.bool,
onFocusChange: PropTypes.func,
onClose: PropTypes.func,
keepOpenOnDateSelect: PropTypes.bool,
isOutsideRange: PropTypes.func,
isDayBlocked: PropTypes.func,
isDayHighlighted: PropTypes.func,
// DayPicker props
renderMonthText: mutuallyExclusiveProps(PropTypes.func, 'renderMonthText', 'renderMonthElement'),
renderMonthElement: mutuallyExclusiveProps(PropTypes.func, 'renderMonthText', 'renderMonthElement'),
enableOutsideDays: PropTypes.bool,
numberOfMonths: PropTypes.number,
orientation: ScrollableOrientationShape,
withPortal: PropTypes.bool,
initialVisibleMonth: PropTypes.func,
firstDayOfWeek: DayOfWeekShape,
hideKeyboardShortcutsPanel: PropTypes.bool,
daySize: nonNegativeInteger,
verticalHeight: nonNegativeInteger,
noBorder: PropTypes.bool,
verticalBorderSpacing: nonNegativeInteger,
transitionDuration: nonNegativeInteger,
horizontalMonthPadding: nonNegativeInteger,
navPrev: PropTypes.node,
navNext: PropTypes.node,
onPrevMonthClick: PropTypes.func,
onNextMonthClick: PropTypes.func,
onOutsideClick: PropTypes.func,
renderCalendarDay: PropTypes.func,
renderDayContents: PropTypes.func,
renderCalendarInfo: PropTypes.func,
calendarInfoPosition: CalendarInfoPositionShape,
// accessibility
onBlur: PropTypes.func,
isFocused: PropTypes.bool,
showKeyboardShortcuts: PropTypes.bool,
onTab: PropTypes.func,
onShiftTab: PropTypes.func,
// i18n
monthFormat: PropTypes.string,
weekDayFormat: PropTypes.string,
phrases: PropTypes.shape(getPhrasePropTypes(DayPickerPhrases)),
dayAriaLabelFormat: PropTypes.string,
isRTL: PropTypes.bool,
});
const defaultProps = {
date: undefined, // TODO: use null
onDateChange() {},
focused: false,
onFocusChange() {},
onClose() {},
keepOpenOnDateSelect: false,
isOutsideRange() {},
isDayBlocked() {},
isDayHighlighted() {},
// DayPicker props
renderMonthText: null,
enableOutsideDays: false,
numberOfMonths: 1,
orientation: HORIZONTAL_ORIENTATION,
withPortal: false,
hideKeyboardShortcutsPanel: false,
initialVisibleMonth: null,
firstDayOfWeek: null,
daySize: DAY_SIZE,
verticalHeight: null,
noBorder: false,
verticalBorderSpacing: undefined,
transitionDuration: undefined,
horizontalMonthPadding: 13,
navPrev: null,
navNext: null,
onPrevMonthClick() {},
onNextMonthClick() {},
onOutsideClick() {},
renderCalendarDay: undefined,
renderDayContents: null,
renderCalendarInfo: null,
renderMonthElement: null,
calendarInfoPosition: INFO_POSITION_BOTTOM,
// accessibility
onBlur() {},
isFocused: false,
showKeyboardShortcuts: false,
onTab() {},
onShiftTab() {},
// i18n
monthFormat: 'MMMM YYYY',
weekDayFormat: 'dd',
phrases: DayPickerPhrases,
dayAriaLabelFormat: undefined,
isRTL: false,
};
export default class DayPickerSingleDateController extends React.PureComponent {
constructor(props) {
super(props);
this.isTouchDevice = false;
this.today = moment();
this.modifiers = {
today: day => this.isToday(day),
blocked: day => this.isBlocked(day),
'blocked-calendar': day => props.isDayBlocked(day),
'blocked-out-of-range': day => props.isOutsideRange(day),
'highlighted-calendar': day => props.isDayHighlighted(day),
valid: day => !this.isBlocked(day),
hovered: day => this.isHovered(day),
selected: day => this.isSelected(day),
'first-day-of-week': day => this.isFirstDayOfWeek(day),
'last-day-of-week': day => this.isLastDayOfWeek(day),
};
const { currentMonth, visibleDays } = this.getStateForNewMonth(props);
this.state = {
hoverDate: null,
currentMonth,
visibleDays,
};
this.onDayMouseEnter = this.onDayMouseEnter.bind(this);
this.onDayMouseLeave = this.onDayMouseLeave.bind(this);
this.onDayClick = this.onDayClick.bind(this);
this.onPrevMonthClick = this.onPrevMonthClick.bind(this);
this.onNextMonthClick = this.onNextMonthClick.bind(this);
this.onMonthChange = this.onMonthChange.bind(this);
this.onYearChange = this.onYearChange.bind(this);
this.getFirstFocusableDay = this.getFirstFocusableDay.bind(this);
}
componentDidMount() {
this.isTouchDevice = isTouchDevice();
}
componentWillReceiveProps(nextProps) {
const {
date,
focused,
isOutsideRange,
isDayBlocked,
isDayHighlighted,
initialVisibleMonth,
numberOfMonths,
enableOutsideDays,
} = nextProps;
const {
isOutsideRange: prevIsOutsideRange,
isDayBlocked: prevIsDayBlocked,
isDayHighlighted: prevIsDayHighlighted,
numberOfMonths: prevNumberOfMonths,
enableOutsideDays: prevEnableOutsideDays,
initialVisibleMonth: prevInitialVisibleMonth,
focused: prevFocused,
date: prevDate,
} = this.props;
let { visibleDays } = this.state;
let recomputeOutsideRange = false;
let recomputeDayBlocked = false;
let recomputeDayHighlighted = false;
if (isOutsideRange !== prevIsOutsideRange) {
this.modifiers['blocked-out-of-range'] = day => isOutsideRange(day);
recomputeOutsideRange = true;
}
if (isDayBlocked !== prevIsDayBlocked) {
this.modifiers['blocked-calendar'] = day => isDayBlocked(day);
recomputeDayBlocked = true;
}
if (isDayHighlighted !== prevIsDayHighlighted) {
this.modifiers['highlighted-calendar'] = day => isDayHighlighted(day);
recomputeDayHighlighted = true;
}
const recomputePropModifiers = (
recomputeOutsideRange || recomputeDayBlocked || recomputeDayHighlighted
);
if (
numberOfMonths !== prevNumberOfMonths
|| enableOutsideDays !== prevEnableOutsideDays
|| (
initialVisibleMonth !== prevInitialVisibleMonth
&& !prevFocused
&& focused
)
) {
const newMonthState = this.getStateForNewMonth(nextProps);
const { currentMonth } = newMonthState;
({ visibleDays } = newMonthState);
this.setState({
currentMonth,
visibleDays,
});
}
const didDateChange = date !== prevDate;
const didFocusChange = focused !== prevFocused;
let modifiers = {};
if (didDateChange) {
modifiers = this.deleteModifier(modifiers, prevDate, 'selected');
modifiers = this.addModifier(modifiers, date, 'selected');
}
if (didFocusChange || recomputePropModifiers) {
values(visibleDays).forEach((days) => {
Object.keys(days).forEach((day) => {
const momentObj = moment(day);
if (this.isBlocked(momentObj)) {
modifiers = this.addModifier(modifiers, momentObj, 'blocked');
} else {
modifiers = this.deleteModifier(modifiers, momentObj, 'blocked');
}
if (didFocusChange || recomputeOutsideRange) {
if (isOutsideRange(momentObj)) {
modifiers = this.addModifier(modifiers, momentObj, 'blocked-out-of-range');
} else {
modifiers = this.deleteModifier(modifiers, momentObj, 'blocked-out-of-range');
}
}
if (didFocusChange || recomputeDayBlocked) {
if (isDayBlocked(momentObj)) {
modifiers = this.addModifier(modifiers, momentObj, 'blocked-calendar');
} else {
modifiers = this.deleteModifier(modifiers, momentObj, 'blocked-calendar');
}
}
if (didFocusChange || recomputeDayHighlighted) {
if (isDayHighlighted(momentObj)) {
modifiers = this.addModifier(modifiers, momentObj, 'highlighted-calendar');
} else {
modifiers = this.deleteModifier(modifiers, momentObj, 'highlighted-calendar');
}
}
});
});
}
const today = moment();
if (!isSameDay(this.today, today)) {
modifiers = this.deleteModifier(modifiers, this.today, 'today');
modifiers = this.addModifier(modifiers, today, 'today');
this.today = today;
}
if (Object.keys(modifiers).length > 0) {
this.setState({
visibleDays: {
...visibleDays,
...modifiers,
},
});
}
}
componentWillUpdate() {
this.today = moment();
}
onDayClick(day, e) {
if (e) e.preventDefault();
if (this.isBlocked(day)) return;
const {
onDateChange,
keepOpenOnDateSelect,
onFocusChange,
onClose,
} = this.props;
onDateChange(day);
if (!keepOpenOnDateSelect) {
onFocusChange({ focused: false });
onClose({ date: day });
}
}
onDayMouseEnter(day) {
if (this.isTouchDevice) return;
const { hoverDate, visibleDays } = this.state;
let modifiers = this.deleteModifier({}, hoverDate, 'hovered');
modifiers = this.addModifier(modifiers, day, 'hovered');
this.setState({
hoverDate: day,
visibleDays: {
...visibleDays,
...modifiers,
},
});
}
onDayMouseLeave() {
const { hoverDate, visibleDays } = this.state;
if (this.isTouchDevice || !hoverDate) return;
const modifiers = this.deleteModifier({}, hoverDate, 'hovered');
this.setState({
hoverDate: null,
visibleDays: {
...visibleDays,
...modifiers,
},
});
}
onPrevMonthClick() {
const { onPrevMonthClick, numberOfMonths, enableOutsideDays } = this.props;
const { currentMonth, visibleDays } = this.state;
const newVisibleDays = {};
Object.keys(visibleDays).sort().slice(0, numberOfMonths + 1).forEach((month) => {
newVisibleDays[month] = visibleDays[month];
});
const prevMonth = currentMonth.clone().subtract(1, 'month');
const prevMonthVisibleDays = getVisibleDays(prevMonth, 1, enableOutsideDays);
this.setState({
currentMonth: prevMonth,
visibleDays: {
...newVisibleDays,
...this.getModifiers(prevMonthVisibleDays),
},
}, () => {
onPrevMonthClick(prevMonth.clone());
});
}
onNextMonthClick() {
const { onNextMonthClick, numberOfMonths, enableOutsideDays } = this.props;
const { currentMonth, visibleDays } = this.state;
const newVisibleDays = {};
Object.keys(visibleDays).sort().slice(1).forEach((month) => {
newVisibleDays[month] = visibleDays[month];
});
const nextMonth = currentMonth.clone().add(numberOfMonths, 'month');
const nextMonthVisibleDays = getVisibleDays(nextMonth, 1, enableOutsideDays);
const newCurrentMonth = currentMonth.clone().add(1, 'month');
this.setState({
currentMonth: newCurrentMonth,
visibleDays: {
...newVisibleDays,
...this.getModifiers(nextMonthVisibleDays),
},
}, () => {
onNextMonthClick(newCurrentMonth.clone());
});
}
onMonthChange(newMonth) {
const { numberOfMonths, enableOutsideDays, orientation } = this.props;
const withoutTransitionMonths = orientation === VERTICAL_SCROLLABLE;
const newVisibleDays = getVisibleDays(
newMonth,
numberOfMonths,
enableOutsideDays,
withoutTransitionMonths,
);
this.setState({
currentMonth: newMonth.clone(),
visibleDays: this.getModifiers(newVisibleDays),
});
}
onYearChange(newMonth) {
const { numberOfMonths, enableOutsideDays, orientation } = this.props;
const withoutTransitionMonths = orientation === VERTICAL_SCROLLABLE;
const newVisibleDays = getVisibleDays(
newMonth,
numberOfMonths,
enableOutsideDays,
withoutTransitionMonths,
);
this.setState({
currentMonth: newMonth.clone(),
visibleDays: this.getModifiers(newVisibleDays),
});
}
getFirstFocusableDay(newMonth) {
const { date, numberOfMonths } = this.props;
let focusedDate = newMonth.clone().startOf('month');
if (date) {
focusedDate = date.clone();
}
if (this.isBlocked(focusedDate)) {
const days = [];
const lastVisibleDay = newMonth.clone().add(numberOfMonths - 1, 'months').endOf('month');
let currentDay = focusedDate.clone();
while (!isAfterDay(currentDay, lastVisibleDay)) {
currentDay = currentDay.clone().add(1, 'day');
days.push(currentDay);
}
const viableDays = days.filter(day => !this.isBlocked(day) && isAfterDay(day, focusedDate));
if (viableDays.length > 0) {
([focusedDate] = viableDays);
}
}
return focusedDate;
}
getModifiers(visibleDays) {
const modifiers = {};
Object.keys(visibleDays).forEach((month) => {
modifiers[month] = {};
visibleDays[month].forEach((day) => {
modifiers[month][toISODateString(day)] = this.getModifiersForDay(day);
});
});
return modifiers;
}
getModifiersForDay(day) {
return new Set(Object.keys(this.modifiers).filter(modifier => this.modifiers[modifier](day)));
}
getStateForNewMonth(nextProps) {
const {
initialVisibleMonth,
date,
numberOfMonths,
enableOutsideDays,
} = nextProps;
const initialVisibleMonthThunk = initialVisibleMonth || (date ? () => date : () => this.today);
const currentMonth = initialVisibleMonthThunk();
const visibleDays = this.getModifiers(getVisibleDays(
currentMonth,
numberOfMonths,
enableOutsideDays,
));
return { currentMonth, visibleDays };
}
addModifier(updatedDays, day, modifier) {
const { numberOfMonths: numberOfVisibleMonths, enableOutsideDays, orientation } = this.props;
const { currentMonth: firstVisibleMonth, visibleDays } = this.state;
let currentMonth = firstVisibleMonth;
let numberOfMonths = numberOfVisibleMonths;
if (orientation === VERTICAL_SCROLLABLE) {
numberOfMonths = Object.keys(visibleDays).length;
} else {
currentMonth = currentMonth.clone().subtract(1, 'month');
numberOfMonths += 2;
}
if (!day || !isDayVisible(day, currentMonth, numberOfMonths, enableOutsideDays)) {
return updatedDays;
}
const iso = toISODateString(day);
let updatedDaysAfterAddition = { ...updatedDays };
if (enableOutsideDays) {
const monthsToUpdate = Object.keys(visibleDays).filter(monthKey => (
Object.keys(visibleDays[monthKey]).indexOf(iso) > -1
));
updatedDaysAfterAddition = monthsToUpdate.reduce((days, monthIso) => {
const month = updatedDays[monthIso] || visibleDays[monthIso];
const modifiers = new Set(month[iso]);
modifiers.add(modifier);
return {
...days,
[monthIso]: {
...month,
[iso]: modifiers,
},
};
}, updatedDaysAfterAddition);
} else {
const monthIso = toISOMonthString(day);
const month = updatedDays[monthIso] || visibleDays[monthIso];
const modifiers = new Set(month[iso]);
modifiers.add(modifier);
updatedDaysAfterAddition = {
...updatedDaysAfterAddition,
[monthIso]: {
...month,
[iso]: modifiers,
},
};
}
return updatedDaysAfterAddition;
}
deleteModifier(updatedDays, day, modifier) {
const { numberOfMonths: numberOfVisibleMonths, enableOutsideDays, orientation } = this.props;
const { currentMonth: firstVisibleMonth, visibleDays } = this.state;
let currentMonth = firstVisibleMonth;
let numberOfMonths = numberOfVisibleMonths;
if (orientation === VERTICAL_SCROLLABLE) {
numberOfMonths = Object.keys(visibleDays).length;
} else {
currentMonth = currentMonth.clone().subtract(1, 'month');
numberOfMonths += 2;
}
if (!day || !isDayVisible(day, currentMonth, numberOfMonths, enableOutsideDays)) {
return updatedDays;
}
const iso = toISODateString(day);
let updatedDaysAfterDeletion = { ...updatedDays };
if (enableOutsideDays) {
const monthsToUpdate = Object.keys(visibleDays).filter(monthKey => (
Object.keys(visibleDays[monthKey]).indexOf(iso) > -1
));
updatedDaysAfterDeletion = monthsToUpdate.reduce((days, monthIso) => {
const month = updatedDays[monthIso] || visibleDays[monthIso];
const modifiers = new Set(month[iso]);
modifiers.delete(modifier);
return {
...days,
[monthIso]: {
...month,
[iso]: modifiers,
},
};
}, updatedDaysAfterDeletion);
} else {
const monthIso = toISOMonthString(day);
const month = updatedDays[monthIso] || visibleDays[monthIso];
const modifiers = new Set(month[iso]);
modifiers.delete(modifier);
updatedDaysAfterDeletion = {
...updatedDaysAfterDeletion,
[monthIso]: {
...month,
[iso]: modifiers,
},
};
}
return updatedDaysAfterDeletion;
}
isBlocked(day) {
const { isDayBlocked, isOutsideRange } = this.props;
return isDayBlocked(day) || isOutsideRange(day);
}
isHovered(day) {
const { hoverDate } = this.state || {};
return isSameDay(day, hoverDate);
}
isSelected(day) {
const { date } = this.props;
return isSameDay(day, date);
}
isToday(day) {
return isSameDay(day, this.today);
}
isFirstDayOfWeek(day) {
const { firstDayOfWeek } = this.props;
return day.day() === (firstDayOfWeek || moment.localeData().firstDayOfWeek());
}
isLastDayOfWeek(day) {
const { firstDayOfWeek } = this.props;
return day.day() === ((firstDayOfWeek || moment.localeData().firstDayOfWeek()) + 6) % 7;
}
render() {
const {
numberOfMonths,
orientation,
monthFormat,
renderMonthText,
navPrev,
navNext,
onOutsideClick,
onShiftTab,
onTab,
withPortal,
focused,
enableOutsideDays,
hideKeyboardShortcutsPanel,
daySize,
firstDayOfWeek,
renderCalendarDay,
renderDayContents,
renderCalendarInfo,
renderMonthElement,
calendarInfoPosition,
isFocused,
isRTL,
phrases,
dayAriaLabelFormat,
onBlur,
showKeyboardShortcuts,
weekDayFormat,
verticalHeight,
noBorder,
transitionDuration,
verticalBorderSpacing,
horizontalMonthPadding,
} = this.props;
const { currentMonth, visibleDays } = this.state;
return (
<DayPicker
orientation={orientation}
enableOutsideDays={enableOutsideDays}
modifiers={visibleDays}
numberOfMonths={numberOfMonths}
onDayClick={this.onDayClick}
onDayMouseEnter={this.onDayMouseEnter}
onDayMouseLeave={this.onDayMouseLeave}
onPrevMonthClick={this.onPrevMonthClick}
onNextMonthClick={this.onNextMonthClick}
onMonthChange={this.onMonthChange}
onYearChange={this.onYearChange}
monthFormat={monthFormat}
withPortal={withPortal}
hidden={!focused}
hideKeyboardShortcutsPanel={hideKeyboardShortcutsPanel}
initialVisibleMonth={() => currentMonth}
firstDayOfWeek={firstDayOfWeek}
onOutsideClick={onOutsideClick}
navPrev={navPrev}
navNext={navNext}
renderMonthText={renderMonthText}
renderCalendarDay={renderCalendarDay}
renderDayContents={renderDayContents}
renderCalendarInfo={renderCalendarInfo}
renderMonthElement={renderMonthElement}
calendarInfoPosition={calendarInfoPosition}
isFocused={isFocused}
getFirstFocusableDay={this.getFirstFocusableDay}
onBlur={onBlur}
onTab={onTab}
onShiftTab={onShiftTab}
phrases={phrases}
daySize={daySize}
isRTL={isRTL}
showKeyboardShortcuts={showKeyboardShortcuts}
weekDayFormat={weekDayFormat}
dayAriaLabelFormat={dayAriaLabelFormat}
verticalHeight={verticalHeight}
noBorder={noBorder}
transitionDuration={transitionDuration}
verticalBorderSpacing={verticalBorderSpacing}
horizontalMonthPadding={horizontalMonthPadding}
/>
);
}
}
DayPickerSingleDateController.propTypes = propTypes;
DayPickerSingleDateController.defaultProps = defaultProps;