UNPKG

react-dates

Version:

A responsive and accessible date range picker component built with React

442 lines (378 loc) 12.1 kB
import React from 'react'; import moment from 'moment'; import cx from 'classnames'; import Portal from 'react-portal'; import { forbidExtraProps } from 'airbnb-prop-types'; import { addEventListener, removeEventListener } from 'consolidated-events'; import isTouchDevice from 'is-touch-device'; import SingleDatePickerShape from '../shapes/SingleDatePickerShape'; import { SingleDatePickerPhrases } from '../defaultPhrases'; import OutsideClickHandler from './OutsideClickHandler'; import toMomentObject from '../utils/toMomentObject'; import toLocalizedDateString from '../utils/toLocalizedDateString'; import getResponsiveContainerStyles from '../utils/getResponsiveContainerStyles'; import toISODateString from '../utils/toISODateString'; import SingleDatePickerInput from './SingleDatePickerInput'; import DayPickerSingleDateController from './DayPickerSingleDateController'; import CloseButton from '../svg/close.svg'; import isInclusivelyAfterDay from '../utils/isInclusivelyAfterDay'; import { HORIZONTAL_ORIENTATION, VERTICAL_ORIENTATION, ANCHOR_LEFT, ANCHOR_RIGHT, DAY_SIZE, } from '../../constants'; const propTypes = forbidExtraProps(SingleDatePickerShape); const defaultProps = { // required props for a functional interactive SingleDatePicker date: null, focused: false, // input related props id: 'date', placeholder: 'Date', disabled: false, required: false, readOnly: false, screenReaderInputMessage: '', showClearDate: false, showDefaultInputIcon: false, customInputIcon: null, customCloseIcon: null, // calendar presentation and interaction related props orientation: HORIZONTAL_ORIENTATION, anchorDirection: ANCHOR_LEFT, horizontalMargin: 0, withPortal: false, withFullScreenPortal: false, initialVisibleMonth: null, numberOfMonths: 2, keepOpenOnDateSelect: false, reopenPickerOnClearDate: false, renderCalendarInfo: null, hideKeyboardShortcutsPanel: false, daySize: DAY_SIZE, isRTL: false, // navigation related props navPrev: null, navNext: null, onPrevMonthClick() {}, onNextMonthClick() {}, onClose() {}, // month presentation and interaction related props renderMonth: null, // day presentation and interaction related props renderDay: null, enableOutsideDays: false, isDayBlocked: () => false, isOutsideRange: day => !isInclusivelyAfterDay(day, moment()), isDayHighlighted: () => {}, // internationalization props displayFormat: () => moment.localeData().longDateFormat('L'), monthFormat: 'MMMM YYYY', phrases: SingleDatePickerPhrases, }; export default class SingleDatePicker extends React.Component { constructor(props) { super(props); this.isTouchDevice = false; this.state = { dayPickerContainerStyles: {}, isDayPickerFocused: false, isInputFocused: false, }; this.onDayPickerFocus = this.onDayPickerFocus.bind(this); this.onDayPickerBlur = this.onDayPickerBlur.bind(this); this.onChange = this.onChange.bind(this); this.onFocus = this.onFocus.bind(this); this.onClearFocus = this.onClearFocus.bind(this); this.clearDate = this.clearDate.bind(this); this.responsivizePickerPosition = this.responsivizePickerPosition.bind(this); } /* istanbul ignore next */ componentDidMount() { this.resizeHandle = addEventListener( window, 'resize', this.responsivizePickerPosition, { passive: true }, ); this.responsivizePickerPosition(); if (this.props.focused) { this.setState({ isInputFocused: true, }); } this.isTouchDevice = isTouchDevice(); } componentDidUpdate(prevProps) { if (!prevProps.focused && this.props.focused) { this.responsivizePickerPosition(); } } /* istanbul ignore next */ componentWillUnmount() { removeEventListener(this.resizeHandle); } onChange(dateString) { const { isOutsideRange, keepOpenOnDateSelect, onDateChange, onFocusChange, onClose, } = this.props; const newDate = toMomentObject(dateString, this.getDisplayFormat()); const isValid = newDate && !isOutsideRange(newDate); if (isValid) { onDateChange(newDate); if (!keepOpenOnDateSelect) { onFocusChange({ focused: false }); onClose({ date: newDate }); } } else { onDateChange(null); } } onFocus() { const { disabled, onFocusChange, withPortal, withFullScreenPortal } = this.props; const moveFocusToDayPicker = withPortal || withFullScreenPortal || this.isTouchDevice; if (moveFocusToDayPicker) { this.onDayPickerFocus(); } else { this.onDayPickerBlur(); } if (!disabled) { onFocusChange({ focused: true }); } } onClearFocus() { const { startDate, endDate, focused, onFocusChange, onClose } = this.props; if (!focused) return; this.setState({ isInputFocused: false, isDayPickerFocused: false, }); onFocusChange({ focused: false }); onClose({ startDate, endDate }); } onDayPickerFocus() { this.setState({ isInputFocused: false, isDayPickerFocused: true, }); } onDayPickerBlur() { this.setState({ isInputFocused: true, isDayPickerFocused: false, }); } getDateString(date) { const displayFormat = this.getDisplayFormat(); if (date && displayFormat) { return date && date.format(displayFormat); } return toLocalizedDateString(date); } getDayPickerContainerClasses() { const { orientation, withPortal, withFullScreenPortal, anchorDirection, isRTL } = this.props; const dayPickerClassName = cx('SingleDatePicker__picker', { 'SingleDatePicker__picker--direction-left': anchorDirection === ANCHOR_LEFT, 'SingleDatePicker__picker--direction-right': anchorDirection === ANCHOR_RIGHT, 'SingleDatePicker__picker--horizontal': orientation === HORIZONTAL_ORIENTATION, 'SingleDatePicker__picker--vertical': orientation === VERTICAL_ORIENTATION, 'SingleDatePicker__picker--portal': withPortal || withFullScreenPortal, 'SingleDatePicker__picker--full-screen-portal': withFullScreenPortal, 'SingleDatePicker__picker--rtl': isRTL, }); return dayPickerClassName; } getDisplayFormat() { const { displayFormat } = this.props; return typeof displayFormat === 'string' ? displayFormat : displayFormat(); } clearDate() { const { onDateChange, reopenPickerOnClearDate, onFocusChange } = this.props; onDateChange(null); if (reopenPickerOnClearDate) { onFocusChange({ focused: true }); } } /* istanbul ignore next */ responsivizePickerPosition() { const { anchorDirection, horizontalMargin, withPortal, withFullScreenPortal, focused, } = this.props; const { dayPickerContainerStyles } = this.state; if (!focused) { return; } const isAnchoredLeft = anchorDirection === ANCHOR_LEFT; if (!withPortal && !withFullScreenPortal) { const containerRect = this.dayPickerContainer.getBoundingClientRect(); const currentOffset = dayPickerContainerStyles[anchorDirection] || 0; const containerEdge = isAnchoredLeft ? containerRect[ANCHOR_RIGHT] : containerRect[ANCHOR_LEFT]; this.setState({ dayPickerContainerStyles: getResponsiveContainerStyles( anchorDirection, currentOffset, containerEdge, horizontalMargin, ), }); } } maybeRenderDayPickerWithPortal() { const { focused, withPortal, withFullScreenPortal } = this.props; if (!focused) { return null; } if (withPortal || withFullScreenPortal) { return ( <Portal isOpened> {this.renderDayPicker()} </Portal> ); } return this.renderDayPicker(); } renderDayPicker() { const { onDateChange, date, onFocusChange, focused, enableOutsideDays, numberOfMonths, orientation, monthFormat, navPrev, navNext, withPortal, withFullScreenPortal, initialVisibleMonth, renderMonth, renderDay, renderCalendarInfo, hideKeyboardShortcutsPanel, customCloseIcon, phrases, daySize, isRTL, isOutsideRange, isDayBlocked, isDayHighlighted, } = this.props; const { dayPickerContainerStyles, isDayPickerFocused } = this.state; const onOutsideClick = (!withFullScreenPortal && withPortal) ? this.onClearFocus : undefined; const closeIcon = customCloseIcon || (<CloseButton />); return ( <div // eslint-disable-line jsx-a11y/no-static-element-interactions ref={(ref) => { this.dayPickerContainer = ref; }} className={this.getDayPickerContainerClasses()} style={dayPickerContainerStyles} onClick={onOutsideClick} > <DayPickerSingleDateController date={date} onDateChange={onDateChange} onFocusChange={onFocusChange} orientation={orientation} enableOutsideDays={enableOutsideDays} numberOfMonths={numberOfMonths} monthFormat={monthFormat} withPortal={withPortal || withFullScreenPortal} focused={focused} hideKeyboardShortcutsPanel={hideKeyboardShortcutsPanel} initialVisibleMonth={initialVisibleMonth} navPrev={navPrev} navNext={navNext} renderMonth={renderMonth} renderDay={renderDay} renderCalendarInfo={renderCalendarInfo} isFocused={isDayPickerFocused} phrases={phrases} daySize={daySize} isRTL={isRTL} isOutsideRange={isOutsideRange} isDayBlocked={isDayBlocked} isDayHighlighted={isDayHighlighted} /> {withFullScreenPortal && ( <button aria-label={phrases.closeDatePicker} className="SingleDatePicker__close" type="button" onClick={this.onClearFocus} > <div className="SingleDatePicker__close-icon"> {closeIcon} </div> </button> )} </div> ); } render() { const { id, placeholder, disabled, focused, required, readOnly, showClearDate, showDefaultInputIcon, customInputIcon, date, phrases, withPortal, withFullScreenPortal, screenReaderInputMessage, isRTL, } = this.props; const { isInputFocused } = this.state; const displayValue = this.getDateString(date); const inputValue = toISODateString(date); const onOutsideClick = (!withPortal && !withFullScreenPortal) ? this.onClearFocus : undefined; return ( <div className="SingleDatePicker"> <OutsideClickHandler onOutsideClick={onOutsideClick}> <SingleDatePickerInput id={id} placeholder={placeholder} focused={focused} isFocused={isInputFocused} disabled={disabled} required={required} readOnly={readOnly} showCaret={!withPortal && !withFullScreenPortal} onClearDate={this.clearDate} showClearDate={showClearDate} showDefaultInputIcon={showDefaultInputIcon} customInputIcon={customInputIcon} displayValue={displayValue} inputValue={inputValue} onChange={this.onChange} onFocus={this.onFocus} onKeyDownShiftTab={this.onClearFocus} onKeyDownTab={this.onClearFocus} onKeyDownArrowDown={this.onDayPickerFocus} screenReaderMessage={screenReaderInputMessage} phrases={phrases} isRTL={isRTL} /> {this.maybeRenderDayPickerWithPortal()} </OutsideClickHandler> </div> ); } } SingleDatePicker.propTypes = propTypes; SingleDatePicker.defaultProps = defaultProps;