@mui/x-date-pickers
Version:
The community edition of the Date and Time Picker components (MUI X).
150 lines (147 loc) • 4.63 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", "yearsPerRow", "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 { getPickersYearUtilityClass, pickersYearClasses } from "./pickersYearClasses.js";
import { jsx as _jsx } from "react/jsx-runtime";
const useUtilityClasses = ownerState => {
const {
disabled,
selected,
classes
} = ownerState;
const slots = {
root: ['root'],
yearButton: ['yearButton', disabled && 'disabled', selected && 'selected']
};
return composeClasses(slots, getPickersYearUtilityClass, classes);
};
const PickersYearRoot = styled('div', {
name: 'MuiPickersYear',
slot: 'Root',
overridesResolver: (_, styles) => [styles.root]
})({
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
flexBasis: '33.3%',
variants: [{
props: {
yearsPerRow: 4
},
style: {
flexBasis: '25%'
}
}]
});
const YearCalendarButton = styled('button', {
name: 'MuiPickersYear',
slot: 'YearButton',
overridesResolver: (_, styles) => [styles.yearButton, {
[`&.${pickersYearClasses.disabled}`]: styles.disabled
}, {
[`&.${pickersYearClasses.selected}`]: styles.selected
}]
})(({
theme
}) => _extends({
color: 'unset',
backgroundColor: 'transparent',
border: 0,
outline: 0
}, theme.typography.subtitle1, {
margin: '6px 0',
height: 36,
width: 72,
borderRadius: 18,
cursor: 'pointer',
'&:focus': {
backgroundColor: theme.vars ? `rgba(${theme.vars.palette.action.activeChannel} / ${theme.vars.palette.action.focusOpacity})` : alpha(theme.palette.action.active, theme.palette.action.focusOpacity)
},
'&: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'
},
[`&.${pickersYearClasses.disabled}`]: {
color: (theme.vars || theme).palette.text.secondary
},
[`&.${pickersYearClasses.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 - internal component.
*/
export const PickersYear = /*#__PURE__*/React.memo(function PickersYear(inProps) {
const props = useThemeProps({
props: inProps,
name: 'MuiPickersYear'
});
const {
autoFocus,
className,
children,
disabled,
selected,
value,
tabIndex,
onClick,
onKeyDown,
onFocus,
onBlur,
'aria-current': ariaCurrent
// 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 YearButton = slots?.yearButton ?? YearCalendarButton;
const yearButtonProps = useSlotProps({
elementType: YearButton,
externalSlotProps: slotProps?.yearButton,
additionalProps: {
children,
disabled,
tabIndex,
ref,
type: 'button',
role: 'radio',
'aria-current': ariaCurrent,
'aria-checked': selected,
onClick: event => onClick(event, value),
onKeyDown: event => onKeyDown(event, value),
onFocus: event => onFocus(event, value),
onBlur: event => onBlur(event, value)
},
ownerState: props,
className: classes.yearButton
});
return /*#__PURE__*/_jsx(PickersYearRoot, _extends({
className: clsx(classes.root, className),
ownerState: props
}, other, {
children: /*#__PURE__*/_jsx(YearButton, _extends({}, yearButtonProps))
}));
});