react-dates
Version:
A responsive and accessible date range picker component built with React
375 lines (322 loc) • 11.7 kB
JSX
import React from 'react';
import PropTypes from 'prop-types';
import momentPropTypes from 'react-moment-proptypes';
import { forbidExtraProps, nonNegativeInteger, or } from 'airbnb-prop-types';
import { css, withStyles, withStylesPropTypes } from 'react-with-styles';
import moment from 'moment';
import { CalendarDayPhrases } from '../defaultPhrases';
import getPhrasePropTypes from '../utils/getPhrasePropTypes';
import getCalendarDaySettings from '../utils/getCalendarDaySettings';
import { DAY_SIZE } from '../constants';
import DefaultTheme from '../theme/DefaultTheme';
const { reactDates: { color } } = DefaultTheme;
function getStyles(stylesObj, isHovered) {
if (!stylesObj) return null;
const { hover } = stylesObj;
if (isHovered && hover) {
return hover;
}
return stylesObj;
}
const DayStyleShape = PropTypes.shape({
background: PropTypes.string,
border: or([PropTypes.string, PropTypes.number]),
color: PropTypes.string,
hover: PropTypes.shape({
background: PropTypes.string,
border: or([PropTypes.string, PropTypes.number]),
color: PropTypes.string,
}),
});
const propTypes = forbidExtraProps({
...withStylesPropTypes,
day: momentPropTypes.momentObj,
daySize: nonNegativeInteger,
isOutsideDay: PropTypes.bool,
modifiers: PropTypes.instanceOf(Set),
isFocused: PropTypes.bool,
tabIndex: PropTypes.oneOf([0, -1]),
onDayClick: PropTypes.func,
onDayMouseEnter: PropTypes.func,
onDayMouseLeave: PropTypes.func,
renderDayContents: PropTypes.func,
ariaLabelFormat: PropTypes.string,
// style overrides
defaultStyles: DayStyleShape,
outsideStyles: DayStyleShape,
todayStyles: DayStyleShape,
firstDayOfWeekStyles: DayStyleShape,
lastDayOfWeekStyles: DayStyleShape,
highlightedCalendarStyles: DayStyleShape,
blockedMinNightsStyles: DayStyleShape,
blockedCalendarStyles: DayStyleShape,
blockedOutOfRangeStyles: DayStyleShape,
hoveredSpanStyles: DayStyleShape,
selectedSpanStyles: DayStyleShape,
lastInRangeStyles: DayStyleShape,
selectedStyles: DayStyleShape,
selectedStartStyles: DayStyleShape,
selectedEndStyles: DayStyleShape,
afterHoveredStartStyles: DayStyleShape,
hoveredStartFirstPossibleEndStyles: DayStyleShape,
hoveredStartBlockedMinNightsStyles: DayStyleShape,
// internationalization
phrases: PropTypes.shape(getPhrasePropTypes(CalendarDayPhrases)),
});
export const defaultStyles = {
border: `1px solid ${color.core.borderLight}`,
color: color.text,
background: color.background,
hover: {
background: color.core.borderLight,
border: `1px solid ${color.core.borderLight}`,
color: 'inherit',
},
};
export const outsideStyles = {
background: color.outside.backgroundColor,
border: 0,
color: color.outside.color,
};
export const highlightedCalendarStyles = {
background: color.highlighted.backgroundColor,
color: color.highlighted.color,
hover: {
background: color.highlighted.backgroundColor_hover,
color: color.highlighted.color_active,
},
};
export const blockedMinNightsStyles = {
background: color.minimumNights.backgroundColor,
border: `1px solid ${color.minimumNights.borderColor}`,
color: color.minimumNights.color,
hover: {
background: color.minimumNights.backgroundColor_hover,
color: color.minimumNights.color_active,
},
};
export const blockedCalendarStyles = {
background: color.blocked_calendar.backgroundColor,
border: `1px solid ${color.blocked_calendar.borderColor}`,
color: color.blocked_calendar.color,
hover: {
background: color.blocked_calendar.backgroundColor_hover,
border: `1px solid ${color.blocked_calendar.borderColor}`,
color: color.blocked_calendar.color_active,
},
};
export const blockedOutOfRangeStyles = {
background: color.blocked_out_of_range.backgroundColor,
border: `1px solid ${color.blocked_out_of_range.borderColor}`,
color: color.blocked_out_of_range.color,
hover: {
background: color.blocked_out_of_range.backgroundColor_hover,
border: `1px solid ${color.blocked_out_of_range.borderColor}`,
color: color.blocked_out_of_range.color_active,
},
};
export const hoveredSpanStyles = {
background: color.hoveredSpan.backgroundColor,
border: `1px double ${color.hoveredSpan.borderColor}`,
color: color.hoveredSpan.color,
hover: {
background: color.hoveredSpan.backgroundColor_hover,
border: `1px double ${color.hoveredSpan.borderColor}`,
color: color.hoveredSpan.color_active,
},
};
export const selectedSpanStyles = {
background: color.selectedSpan.backgroundColor,
border: `1px double ${color.selectedSpan.borderColor}`,
color: color.selectedSpan.color,
hover: {
background: color.selectedSpan.backgroundColor_hover,
border: `1px double ${color.selectedSpan.borderColor}`,
color: color.selectedSpan.color_active,
},
};
export const lastInRangeStyles = {};
export const selectedStyles = {
background: color.selected.backgroundColor,
border: `1px double ${color.selected.borderColor}`,
color: color.selected.color,
hover: {
background: color.selected.backgroundColor_hover,
border: `1px double ${color.selected.borderColor}`,
color: color.selected.color_active,
},
};
const defaultProps = {
day: moment(),
daySize: DAY_SIZE,
isOutsideDay: false,
modifiers: new Set(),
isFocused: false,
tabIndex: -1,
onDayClick() {},
onDayMouseEnter() {},
onDayMouseLeave() {},
renderDayContents: null,
ariaLabelFormat: 'dddd, LL',
// style defaults
defaultStyles,
outsideStyles,
todayStyles: {},
highlightedCalendarStyles,
blockedMinNightsStyles,
blockedCalendarStyles,
blockedOutOfRangeStyles,
hoveredSpanStyles,
selectedSpanStyles,
lastInRangeStyles,
selectedStyles,
selectedStartStyles: {},
selectedEndStyles: {},
afterHoveredStartStyles: {},
firstDayOfWeekStyles: {},
lastDayOfWeekStyles: {},
hoveredStartFirstPossibleEndStyles: {},
hoveredStartBlockedMinNightsStyles: {},
// internationalization
phrases: CalendarDayPhrases,
};
class CustomizableCalendarDay extends React.PureComponent {
constructor(...args) {
super(...args);
this.state = {
isHovered: false,
};
this.setButtonRef = this.setButtonRef.bind(this);
}
componentDidUpdate(prevProps) {
const { isFocused, tabIndex } = this.props;
if (tabIndex === 0) {
if (isFocused || tabIndex !== prevProps.tabIndex) {
this.buttonRef.focus();
}
}
}
onDayClick(day, e) {
const { onDayClick } = this.props;
onDayClick(day, e);
}
onDayMouseEnter(day, e) {
const { onDayMouseEnter } = this.props;
this.setState({ isHovered: true });
onDayMouseEnter(day, e);
}
onDayMouseLeave(day, e) {
const { onDayMouseLeave } = this.props;
this.setState({ isHovered: false });
onDayMouseLeave(day, e);
}
onKeyDown(day, e) {
const {
onDayClick,
} = this.props;
const { key } = e;
if (key === 'Enter' || key === ' ') {
onDayClick(day, e);
}
}
setButtonRef(ref) {
this.buttonRef = ref;
}
render() {
const {
day,
ariaLabelFormat,
daySize,
isOutsideDay,
modifiers,
tabIndex,
renderDayContents,
styles,
phrases,
defaultStyles: defaultStylesWithHover,
outsideStyles: outsideStylesWithHover,
todayStyles: todayStylesWithHover,
firstDayOfWeekStyles: firstDayOfWeekStylesWithHover,
lastDayOfWeekStyles: lastDayOfWeekStylesWithHover,
highlightedCalendarStyles: highlightedCalendarStylesWithHover,
blockedMinNightsStyles: blockedMinNightsStylesWithHover,
blockedCalendarStyles: blockedCalendarStylesWithHover,
blockedOutOfRangeStyles: blockedOutOfRangeStylesWithHover,
hoveredSpanStyles: hoveredSpanStylesWithHover,
selectedSpanStyles: selectedSpanStylesWithHover,
lastInRangeStyles: lastInRangeStylesWithHover,
selectedStyles: selectedStylesWithHover,
selectedStartStyles: selectedStartStylesWithHover,
selectedEndStyles: selectedEndStylesWithHover,
afterHoveredStartStyles: afterHoveredStartStylesWithHover,
hoveredStartFirstPossibleEndStyles: hoveredStartFirstPossibleEndStylesWithHover,
hoveredStartBlockedMinNightsStyles: hoveredStartBlockedMinNightsStylesWithHover,
} = this.props;
const { isHovered } = this.state;
if (!day) return <td />;
const {
daySizeStyles,
useDefaultCursor,
selected,
hoveredSpan,
isOutsideRange,
ariaLabel,
} = getCalendarDaySettings(day, ariaLabelFormat, daySize, modifiers, phrases);
return (
<td
{...css(
styles.CalendarDay,
useDefaultCursor && styles.CalendarDay__defaultCursor,
daySizeStyles,
getStyles(defaultStylesWithHover, isHovered),
isOutsideDay && getStyles(outsideStylesWithHover, isHovered),
modifiers.has('today') && getStyles(todayStylesWithHover, isHovered),
modifiers.has('first-day-of-week') && getStyles(firstDayOfWeekStylesWithHover, isHovered),
modifiers.has('last-day-of-week') && getStyles(lastDayOfWeekStylesWithHover, isHovered),
modifiers.has('hovered-start-first-possible-end') && getStyles(hoveredStartFirstPossibleEndStylesWithHover, isHovered),
modifiers.has('hovered-start-blocked-minimum-nights') && getStyles(hoveredStartBlockedMinNightsStylesWithHover, isHovered),
modifiers.has('highlighted-calendar') && getStyles(highlightedCalendarStylesWithHover, isHovered),
modifiers.has('blocked-minimum-nights') && getStyles(blockedMinNightsStylesWithHover, isHovered),
modifiers.has('blocked-calendar') && getStyles(blockedCalendarStylesWithHover, isHovered),
hoveredSpan && getStyles(hoveredSpanStylesWithHover, isHovered),
modifiers.has('after-hovered-start') && getStyles(afterHoveredStartStylesWithHover, isHovered),
modifiers.has('selected-span') && getStyles(selectedSpanStylesWithHover, isHovered),
modifiers.has('last-in-range') && getStyles(lastInRangeStylesWithHover, isHovered),
selected && getStyles(selectedStylesWithHover, isHovered),
modifiers.has('selected-start') && getStyles(selectedStartStylesWithHover, isHovered),
modifiers.has('selected-end') && getStyles(selectedEndStylesWithHover, isHovered),
isOutsideRange && getStyles(blockedOutOfRangeStylesWithHover, isHovered),
)}
role="button" // eslint-disable-line jsx-a11y/no-noninteractive-element-to-interactive-role
ref={this.setButtonRef}
aria-disabled={modifiers.has('blocked')}
aria-label={ariaLabel}
onMouseEnter={(e) => { this.onDayMouseEnter(day, e); }}
onMouseLeave={(e) => { this.onDayMouseLeave(day, e); }}
onMouseUp={(e) => { e.currentTarget.blur(); }}
onClick={(e) => { this.onDayClick(day, e); }}
onKeyDown={(e) => { this.onKeyDown(day, e); }}
tabIndex={tabIndex}
>
{renderDayContents ? renderDayContents(day, modifiers) : day.format('D')}
</td>
);
}
}
CustomizableCalendarDay.propTypes = propTypes;
CustomizableCalendarDay.defaultProps = defaultProps;
export { CustomizableCalendarDay as PureCustomizableCalendarDay };
export default withStyles(({ reactDates: { font } }) => ({
CalendarDay: {
boxSizing: 'border-box',
cursor: 'pointer',
fontSize: font.size,
textAlign: 'center',
':active': {
outline: 0,
},
},
CalendarDay__defaultCursor: {
cursor: 'default',
},
}), { pureComponent: typeof React.PureComponent !== 'undefined' })(CustomizableCalendarDay);