@material-ui/lab
Version:
Laboratory for new Material-UI modules.
394 lines (344 loc) • 11.3 kB
JavaScript
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
import _extends from "@babel/runtime/helpers/esm/extends";
const _excluded = ["allowSameDateSelection", "autoFocus", "className", "day", "disabled", "disableHighlightToday", "disableMargin", "hidden", "isAnimating", "onClick", "onDayFocus", "onDaySelect", "onFocus", "onKeyDown", "outsideCurrentMonth", "selected", "showDaysOutsideCurrentMonth", "children", "today"];
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import ButtonBase from '@material-ui/core/ButtonBase';
import { unstable_useEnhancedEffect as useEnhancedEffect } from '@material-ui/utils';
import { unstable_composeClasses as composeClasses, generateUtilityClass, generateUtilityClasses } from '@material-ui/unstyled';
import { useTheme, alpha, styled, useThemeProps } from '@material-ui/core/styles';
import { useForkRef } from '@material-ui/core/utils';
import { useUtils } from '../internal/pickers/hooks/useUtils';
import { DAY_SIZE, DAY_MARGIN } from '../internal/pickers/constants/dimensions';
import { jsx as _jsx } from "react/jsx-runtime";
export function getPickersDayUtilityClass(slot) {
return generateUtilityClass('MuiPickersDay', slot);
}
export const pickersDayClasses = generateUtilityClasses('MuiPickersDay', ['root', 'dayWithMargin', 'dayOutsideMonth', 'hiddenDaySpacingFiller', 'today', 'selected', 'disabled']);
const useUtilityClasses = styleProps => {
const {
selected,
disableMargin,
disableHighlightToday,
today,
outsideCurrentMonth,
showDaysOutsideCurrentMonth,
classes
} = styleProps;
const slots = {
root: ['root', selected && 'selected', !disableMargin && 'dayWithMargin', !disableHighlightToday && today && 'today', outsideCurrentMonth && showDaysOutsideCurrentMonth && 'dayOutsideMonth'],
hiddenDaySpacingFiller: ['hiddenDaySpacingFiller']
};
return composeClasses(slots, getPickersDayUtilityClass, classes);
};
const styleArg = ({
theme,
styleProps
}) => _extends({}, theme.typography.caption, {
width: DAY_SIZE,
height: DAY_SIZE,
borderRadius: '50%',
padding: 0,
// background required here to prevent collides with the other days when animating with transition group
backgroundColor: theme.palette.background.paper,
color: theme.palette.text.primary,
'&:hover': {
backgroundColor: alpha(theme.palette.action.active, theme.palette.action.hoverOpacity)
},
'&:focus': {
backgroundColor: alpha(theme.palette.action.active, theme.palette.action.hoverOpacity),
[`&.${pickersDayClasses.selected}`]: {
willChange: 'background-color',
backgroundColor: theme.palette.primary.dark
}
},
[`&.${pickersDayClasses.selected}`]: {
color: theme.palette.primary.contrastText,
backgroundColor: theme.palette.primary.main,
fontWeight: theme.typography.fontWeightMedium,
transition: theme.transitions.create('background-color', {
duration: theme.transitions.duration.short
}),
'&:hover': {
willChange: 'background-color',
backgroundColor: theme.palette.primary.dark
}
},
[`&.${pickersDayClasses.disabled}`]: {
color: theme.palette.text.disabled
}
}, !styleProps.disableMargin && {
margin: `0 ${DAY_MARGIN}px`
}, styleProps.outsideCurrentMonth && styleProps.showDaysOutsideCurrentMonth && {
color: theme.palette.text.secondary
}, !styleProps.disableHighlightToday && styleProps.today && {
[`&:not(.${pickersDayClasses.selected})`]: {
border: `1px solid ${theme.palette.text.secondary}`
}
});
const overridesResolver = (props, styles) => {
const {
styleProps
} = props;
return [styles.root, !styleProps.disableMargin && styles.dayWithMargin, !styleProps.disableHighlightToday && styleProps.today && styles.today, !styleProps.outsideCurrentMonth && styleProps.showDaysOutsideCurrentMonth && styles.dayOutsideMonth, styleProps.outsideCurrentMonth && !styleProps.showDaysOutsideCurrentMonth && styles.hiddenDaySpacingFiller];
};
const PickersDayRoot = styled(ButtonBase, {
name: 'MuiPickersDay',
slot: 'Root',
overridesResolver
})(styleArg);
const PickersDayFiller = styled('div', {
name: 'MuiPickersDay',
slot: 'Root',
overridesResolver
})(({
theme,
styleProps
}) => _extends({}, styleArg({
theme,
styleProps
}), {
visibility: 'hidden'
}));
const noop = () => {};
const PickersDay = /*#__PURE__*/React.forwardRef(function PickersDay(inProps, forwardedRef) {
const props = useThemeProps({
props: inProps,
name: 'MuiPickersDay'
});
const {
allowSameDateSelection = false,
autoFocus = false,
className,
day,
disabled = false,
disableHighlightToday = false,
disableMargin = false,
isAnimating,
onClick,
onDayFocus = noop,
onDaySelect,
onFocus,
onKeyDown,
outsideCurrentMonth,
selected = false,
showDaysOutsideCurrentMonth = false,
children,
today: isToday = false
} = props,
other = _objectWithoutPropertiesLoose(props, _excluded);
const styleProps = _extends({}, props, {
allowSameDateSelection,
autoFocus,
disabled,
disableHighlightToday,
disableMargin,
selected,
showDaysOutsideCurrentMonth,
today: isToday
});
const classes = useUtilityClasses(styleProps);
const utils = useUtils();
const ref = React.useRef(null);
const handleRef = useForkRef(ref, forwardedRef); // Since this is rendered when a Popper is opened we can't use passive effects.
// Focusing in passive effects in Popper causes scroll jump.
useEnhancedEffect(() => {
if (autoFocus && !disabled && !isAnimating && !outsideCurrentMonth) {
// ref.current being null would be a bug in Material-UI
ref.current.focus();
}
}, [autoFocus, disabled, isAnimating, outsideCurrentMonth]);
const handleFocus = event => {
if (onDayFocus) {
onDayFocus(day);
}
if (onFocus) {
onFocus(event);
}
};
const handleClick = event => {
if (!allowSameDateSelection && selected) return;
if (!disabled) {
onDaySelect(day, 'finish');
}
if (onClick) {
onClick(event);
}
};
const theme = useTheme();
function handleKeyDown(event) {
if (onKeyDown !== undefined) {
onKeyDown(event);
}
switch (event.key) {
case 'ArrowUp':
onDayFocus(utils.addDays(day, -7));
event.preventDefault();
break;
case 'ArrowDown':
onDayFocus(utils.addDays(day, 7));
event.preventDefault();
break;
case 'ArrowLeft':
onDayFocus(utils.addDays(day, theme.direction === 'ltr' ? -1 : 1));
event.preventDefault();
break;
case 'ArrowRight':
onDayFocus(utils.addDays(day, theme.direction === 'ltr' ? 1 : -1));
event.preventDefault();
break;
case 'Home':
onDayFocus(utils.startOfWeek(day));
event.preventDefault();
break;
case 'End':
onDayFocus(utils.endOfWeek(day));
event.preventDefault();
break;
case 'PageUp':
onDayFocus(utils.getNextMonth(day));
event.preventDefault();
break;
case 'PageDown':
onDayFocus(utils.getPreviousMonth(day));
event.preventDefault();
break;
default:
break;
}
}
if (outsideCurrentMonth && !showDaysOutsideCurrentMonth) {
return /*#__PURE__*/_jsx(PickersDayFiller, {
className: clsx(classes.root, classes.hiddenDaySpacingFiller, className),
styleProps: styleProps
});
}
return /*#__PURE__*/_jsx(PickersDayRoot, _extends({
className: clsx(classes.root, className),
styleProps: styleProps,
ref: handleRef,
centerRipple: true,
disabled: disabled,
"aria-label": !children ? utils.format(day, 'fullDate') : undefined,
tabIndex: selected ? 0 : -1,
onFocus: handleFocus,
onKeyDown: handleKeyDown,
onClick: handleClick
}, other, {
children: !children ? utils.format(day, 'dayOfMonth') : children
}));
});
export const areDayPropsEqual = (prevProps, nextProps) => {
return prevProps.autoFocus === nextProps.autoFocus && prevProps.isAnimating === nextProps.isAnimating && prevProps.today === nextProps.today && prevProps.disabled === nextProps.disabled && prevProps.selected === nextProps.selected && prevProps.disableMargin === nextProps.disableMargin && prevProps.showDaysOutsideCurrentMonth === nextProps.showDaysOutsideCurrentMonth && prevProps.disableHighlightToday === nextProps.disableHighlightToday && prevProps.className === nextProps.className && prevProps.outsideCurrentMonth === nextProps.outsideCurrentMonth && prevProps.onDayFocus === nextProps.onDayFocus && prevProps.onDaySelect === nextProps.onDaySelect;
};
process.env.NODE_ENV !== "production" ? PickersDay.propTypes
/* remove-proptypes */
= {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit TypeScript types and run "yarn proptypes" |
// ----------------------------------------------------------------------
/**
* If `true`, `onChange` is fired on click even if the same date is selected.
* @default false
*/
allowSameDateSelection: PropTypes.bool,
/**
* @ignore
*/
autoFocus: PropTypes.bool,
/**
* The content of the component.
*/
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
*/
classes: PropTypes.object,
/**
* @ignore
*/
className: PropTypes.string,
/**
* The date to show.
*/
day: PropTypes.any.isRequired,
/**
* If `true`, renders as disabled.
* @default false
*/
disabled: PropTypes.bool,
/**
* If `true`, todays date is rendering without highlighting with circle.
* @default false
*/
disableHighlightToday: PropTypes.bool,
/**
* If `true`, days are rendering without margin. Useful for displaying linked range of days.
* @default false
*/
disableMargin: PropTypes.bool,
/**
* @ignore
*/
hidden: PropTypes.bool,
/**
* @ignore
*/
isAnimating: PropTypes.bool,
/**
* @ignore
*/
onClick: PropTypes.func,
/**
* @ignore
*/
onDayFocus: PropTypes.func,
/**
* @ignore
*/
onDaySelect: PropTypes.func.isRequired,
/**
* @ignore
*/
onFocus: PropTypes.func,
/**
* @ignore
*/
onKeyDown: PropTypes.func,
/**
* If `true`, day is outside of month and will be hidden.
*/
outsideCurrentMonth: PropTypes.bool.isRequired,
/**
* If `true`, renders as selected.
* @default false
*/
selected: PropTypes.bool,
/**
* If `true`, days that have `outsideCurrentMonth={true}` are displayed.
* @default false
*/
showDaysOutsideCurrentMonth: PropTypes.bool,
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx: PropTypes.object,
/**
* If `true`, renders as today date.
* @default false
*/
today: PropTypes.bool
} : void 0;
/**
*
* Demos:
*
* - [Date Picker](https://material-ui.com/components/date-picker/)
*
* API:
*
* - [PickersDay API](https://material-ui.com/api/pickers-day/)
*/
export default /*#__PURE__*/React.memo(PickersDay, areDayPropsEqual);