@momentum-ui/react
Version:
Cisco Momentum UI framework for ReactJs applications
331 lines (267 loc) • 10.4 kB
JavaScript
var _excluded = ["children", "className", "direction", "isDynamic", "onMonthChange", "showArrow"];
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
/** @component date-picker */
import React from 'react';
import PropTypes from 'prop-types';
import { EventOverlay } from "./..";
import DatePickerCalendar from "./DatePickerCalendar";
import DatePickerContext from "../DatePickerContext";
import { addDays, addWeeks, isDayDisabled, isSameDay, subtractDays, subtractWeeks } from "../utils/dateUtils";
import moment from 'moment';
import omit from 'lodash/omit';
var DatePicker = /*#__PURE__*/function (_React$Component) {
_inheritsLoose(DatePicker, _React$Component);
function DatePicker(props) {
var _this;
_this = _React$Component.call(this, props) || this;
_this.setOpen = function (open) {
_this.setState({
isOpen: open
});
};
_this.handleSelect = function (event, date) {
var shouldCloseOnSelect = _this.props.shouldCloseOnSelect;
_this.setPreSelection(date, event);
_this.setSelected(date, event);
shouldCloseOnSelect && _this.setOpen(false);
};
_this.setSelected = function (date, event) {
var onSelect = _this.props.onSelect;
!isDayDisabled(date, _this.props) && _this.setState({
selected: date
}, function () {
return onSelect && onSelect(event, date.toDate());
});
};
_this.setPreSelection = function (date, event) {
var onChange = _this.props.onChange;
!isDayDisabled(date, _this.props) && _this.setState({
focus: date
}, function () {
return onChange && onChange(event, date.toDate());
});
};
_this.setMonthNavFocus = function () {
var monthNavFocus = _this.state.monthNavFocus;
if (monthNavFocus === 'prev') {
_this.setState({
monthNavFocus: 'next'
});
} else {
_this.setState({
monthNavFocus: 'prev'
});
}
};
_this.handleInputClick = function () {
_this.setOpen(true);
};
_this.handleInputKeyDown = function (event) {
var _this$state = _this.state,
focus = _this$state.focus,
isOpen = _this$state.isOpen;
var flag = false;
var copy = moment(focus);
var datePickerDayHasFocus = document.activeElement.className.includes('md-datepicker__day--focus');
var tabOverride = function tabOverride(event) {
_this.setMonthNavFocus();
event.preventDefault();
};
switch (!event.shiftKey && event.which) {
case 9:
// Tab
isOpen && tabOverride(event);
break;
case 32:
case 13:
if (!isOpen) {
_this.handleInputClick();
} else if ((moment.isMoment(focus) || moment.isDate(focus)) && datePickerDayHasFocus) {
_this.handleSelect(event, copy);
}
flag = true;
break;
case 27:
// escape
_this.setOpen(false);
break;
case 38:
// up
_this.setPreSelection(subtractWeeks(copy, 1));
flag = true;
break;
case 37:
// left
_this.setPreSelection(subtractDays(copy, 1));
flag = true;
break;
case 39:
// right
_this.setPreSelection(addDays(copy, 1));
flag = true;
break;
case 40:
// bottom
_this.setPreSelection(addWeeks(copy, 1));
flag = true;
break;
default:
break;
}
switch (event.shiftKey && event.which) {
case 9:
// Tab
isOpen && tabOverride(event);
break;
default:
break;
}
if (flag) {
event.stopPropagation();
event.preventDefault();
}
};
_this.state = {
anchorNode: null,
focus: null,
isOpen: false,
selected: null,
monthNavFocus: ''
};
return _this;
}
var _proto = DatePicker.prototype;
_proto.componentDidMount = function componentDidMount() {
var selectedDate = moment(this.props.selectedDate);
var isValid = selectedDate.isValid() && !isDayDisabled(selectedDate, this.props);
isValid && this.setPreSelection(selectedDate);
isValid && this.setSelected(selectedDate);
};
_proto.componentDidUpdate = function componentDidUpdate(prevProps) {
var selectedDate = moment(this.props.selectedDate);
var prevSelectedDate = moment(prevProps.selectedDate);
var isValid = selectedDate.isValid() && !isDayDisabled(selectedDate, this.props);
if (isValid && !isSameDay(prevSelectedDate, selectedDate)) {
this.setSelected(selectedDate);
this.setPreSelection(selectedDate);
}
};
_proto.render = function render() {
var _this2 = this;
var _this$props = this.props,
children = _this$props.children,
className = _this$props.className,
direction = _this$props.direction,
isDynamic = _this$props.isDynamic,
onMonthChange = _this$props.onMonthChange,
showArrow = _this$props.showArrow,
props = _objectWithoutPropertiesLoose(_this$props, _excluded);
var _this$state2 = this.state,
selected = _this$state2.selected,
focus = _this$state2.focus,
anchorNode = _this$state2.anchorNode,
isOpen = _this$state2.isOpen,
monthNavFocus = _this$state2.monthNavFocus;
var dpContext = {
handleDayClick: function handleDayClick(event, date) {
return _this2.handleSelect(event, date);
},
handleMonthChange: function handleMonthChange(event, date) {
return onMonthChange && onMonthChange(event, date.toDate());
},
focus: focus,
selected: selected
};
var trigger = /*#__PURE__*/React.cloneElement(children, {
ref: function ref(_ref) {
return !_this2.state.anchorNode && _this2.setState({
anchorNode: _ref
});
},
onClick: this.handleInputClick,
onKeyDown: this.handleInputKeyDown
});
var otherProps = omit(_extends({}, props), ['onSelect', 'onChange', 'onMonthChange', 'shouldCloseOnSelect']);
var calendar = /*#__PURE__*/React.createElement(DatePickerContext.Provider, {
value: dpContext
}, /*#__PURE__*/React.createElement(DatePickerCalendar, _extends({
monthNavFocus: monthNavFocus
}, otherProps)));
var content = /*#__PURE__*/React.createElement(EventOverlay, {
allowClickAway: true,
isOpen: isOpen,
anchorNode: anchorNode,
close: function close() {
return _this2.setOpen(false);
},
direction: direction,
showArrow: showArrow,
isDynamic: isDynamic,
onKeyDown: this.handleInputKeyDown
}, calendar);
return /*#__PURE__*/React.createElement("div", {
className: 'md-datepicker-container' + ("" + (className && " " + className || ''))
}, trigger, isOpen && content);
};
return DatePicker;
}(React.Component);
DatePicker.propTypes = {
/** @prop Children nodes to render inside DatePicker | null */
children: PropTypes.element,
/** @prop Optional css class string | '' */
className: PropTypes.string,
/** @prop Set the direction in which the DatePicker opens | 'bottom-center' */
direction: PropTypes.string,
/** @prop Function to filter Dates | null */
filterDate: PropTypes.func,
/** @prop Sets the DatePicker EventOverlay to be dynamic | true */
isDynamic: PropTypes.bool,
/** @prop Sets the language of the DatePicker | 'en' */
locale: PropTypes.string,
/** @prop Sets the last date in which the DatePicker does not disable | null */
maxDate: PropTypes.instanceOf(Date),
/** @prop Sets the first date in which the DatePicker does not disable | null */
minDate: PropTypes.instanceOf(Date),
/** @prop Sets the format of the month | 'MMMM YYYY' */
monthFormat: PropTypes.string,
/** @prop Text to display for blindness accessibility features | 'next' */
nextArialLabel: PropTypes.string,
/** @prop Handler invoked when user makes a chnage within the DatePicker | null */
onChange: PropTypes.func,
/** @prop Handler invoked when user makes a change to the selected month within DatePicker | null */
onMonthChange: PropTypes.func,
/** @prop Handler invoked when user selects a date within DatePicker | null */
onSelect: PropTypes.func,
/** @prop Text to display for blindness accessibility features | 'previous' */
previousArialLabel: PropTypes.string,
/** @prop Initial Selected Date for DatePicker | moment().toDate() */
selectedDate: PropTypes.instanceOf(Date),
/** @prop Determines if the DatePicker should close when a date is selected | true */
shouldCloseOnSelect: PropTypes.bool,
/** @prop Determines if the DatePicker should show the open/close arrow | false */
showArrow: PropTypes.bool
};
DatePicker.defaultProps = {
children: null,
className: '',
direction: 'bottom-center',
filterDate: null,
isDynamic: true,
locale: 'en',
maxDate: null,
minDate: null,
monthFormat: 'MMMM YYYY',
nextArialLabel: '',
onChange: null,
onMonthChange: null,
onSelect: null,
previousArialLabel: '',
selectedDate: moment().toDate(),
shouldCloseOnSelect: true,
showArrow: false
};
DatePicker.displayName = 'DatePicker';
export default DatePicker;