@mui/x-date-pickers
Version:
The community edition of the Date and Time Picker components (MUI X).
152 lines (149 loc) • 4.74 kB
JavaScript
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
import _extends from "@babel/runtime/helpers/esm/extends";
const _excluded = ["autoFocus", "className", "children", "disabled", "selected", "value", "tabIndex", "onClick", "onKeyDown", "onFocus", "onBlur", "aria-current", "aria-label", "monthsPerRow", "slots", "slotProps"];
import * as React from 'react';
import clsx from 'clsx';
import { styled, alpha, useThemeProps } from '@mui/material/styles';
import useSlotProps from '@mui/utils/useSlotProps';
import composeClasses from '@mui/utils/composeClasses';
import useEnhancedEffect from '@mui/utils/useEnhancedEffect';
import { getPickersMonthUtilityClass, pickersMonthClasses } from "./pickersMonthClasses.js";
import { jsx as _jsx } from "react/jsx-runtime";
const useUtilityClasses = ownerState => {
const {
disabled,
selected,
classes
} = ownerState;
const slots = {
root: ['root'],
monthButton: ['monthButton', disabled && 'disabled', selected && 'selected']
};
return composeClasses(slots, getPickersMonthUtilityClass, classes);
};
const PickersMonthRoot = styled('div', {
name: 'MuiPickersMonth',
slot: 'Root',
overridesResolver: (_, styles) => [styles.root]
})({
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
flexBasis: '33.3%',
variants: [{
props: {
monthsPerRow: 4
},
style: {
flexBasis: '25%'
}
}]
});
const MonthCalendarButton = styled('button', {
name: 'MuiPickersMonth',
slot: 'MonthButton',
overridesResolver: (_, styles) => [styles.monthButton, {
[`&.${pickersMonthClasses.disabled}`]: styles.disabled
}, {
[`&.${pickersMonthClasses.selected}`]: styles.selected
}]
})(({
theme
}) => _extends({
color: 'unset',
backgroundColor: 'transparent',
border: 0,
outline: 0
}, theme.typography.subtitle1, {
margin: '8px 0',
height: 36,
width: 72,
borderRadius: 18,
cursor: 'pointer',
'&:focus': {
backgroundColor: theme.vars ? `rgba(${theme.vars.palette.action.activeChannel} / ${theme.vars.palette.action.hoverOpacity})` : alpha(theme.palette.action.active, theme.palette.action.hoverOpacity)
},
'&:hover': {
backgroundColor: theme.vars ? `rgba(${theme.vars.palette.action.activeChannel} / ${theme.vars.palette.action.hoverOpacity})` : alpha(theme.palette.action.active, theme.palette.action.hoverOpacity)
},
'&:disabled': {
cursor: 'auto',
pointerEvents: 'none'
},
[`&.${pickersMonthClasses.disabled}`]: {
color: (theme.vars || theme).palette.text.secondary
},
[`&.${pickersMonthClasses.selected}`]: {
color: (theme.vars || theme).palette.primary.contrastText,
backgroundColor: (theme.vars || theme).palette.primary.main,
'&:focus, &:hover': {
backgroundColor: (theme.vars || theme).palette.primary.dark
}
}
}));
/**
* @ignore - do not document.
*/
export const PickersMonth = /*#__PURE__*/React.memo(function PickersMonth(inProps) {
const props = useThemeProps({
props: inProps,
name: 'MuiPickersMonth'
});
const {
autoFocus,
className,
children,
disabled,
selected,
value,
tabIndex,
onClick,
onKeyDown,
onFocus,
onBlur,
'aria-current': ariaCurrent,
'aria-label': ariaLabel
// We don't want to forward this prop to the root element
,
slots,
slotProps
} = props,
other = _objectWithoutPropertiesLoose(props, _excluded);
const ref = React.useRef(null);
const classes = useUtilityClasses(props);
// We can't forward the `autoFocus` to the button because it is a native button, not a MUI Button
useEnhancedEffect(() => {
if (autoFocus) {
// `ref.current` being `null` would be a bug in MUI.
ref.current?.focus();
}
}, [autoFocus]);
const MonthButton = slots?.monthButton ?? MonthCalendarButton;
const monthButtonProps = useSlotProps({
elementType: MonthButton,
externalSlotProps: slotProps?.monthButton,
additionalProps: {
children,
disabled,
tabIndex,
ref,
type: 'button',
role: 'radio',
'aria-current': ariaCurrent,
'aria-checked': selected,
'aria-label': ariaLabel,
onClick: event => onClick(event, value),
onKeyDown: event => onKeyDown(event, value),
onFocus: event => onFocus(event, value),
onBlur: event => onBlur(event, value)
},
ownerState: props,
className: classes.monthButton
});
return /*#__PURE__*/_jsx(PickersMonthRoot, _extends({
className: clsx(classes.root, className),
ownerState: props
}, other, {
children: /*#__PURE__*/_jsx(MonthButton, _extends({}, monthButtonProps))
}));
});