132 lines
4.2 KiB
JavaScript
132 lines
4.2 KiB
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"];
|
|
import * as React from 'react';
|
|
import clsx from 'clsx';
|
|
import { unstable_composeClasses as composeClasses } from '@mui/utils';
|
|
import { alpha, styled, useThemeProps } from '@mui/material/styles';
|
|
import { getPickersYearUtilityClass, pickersYearClasses } from './pickersYearClasses';
|
|
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]
|
|
})(({
|
|
ownerState
|
|
}) => ({
|
|
flexBasis: ownerState.yearsPerRow === 3 ? '33.3%' : '25%',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'center'
|
|
}));
|
|
const PickersYearButton = 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
|
|
} = 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
|
|
React.useEffect(() => {
|
|
if (autoFocus) {
|
|
// `ref.current` being `null` would be a bug in MUI.
|
|
ref.current.focus();
|
|
}
|
|
}, [autoFocus]);
|
|
return /*#__PURE__*/_jsx(PickersYearRoot, _extends({
|
|
className: clsx(classes.root, className),
|
|
ownerState: props
|
|
}, other, {
|
|
children: /*#__PURE__*/_jsx(PickersYearButton, {
|
|
ref: ref,
|
|
disabled: disabled,
|
|
type: "button",
|
|
role: "radio",
|
|
tabIndex: disabled ? -1 : tabIndex,
|
|
"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),
|
|
className: classes.yearButton,
|
|
ownerState: props,
|
|
children: children
|
|
})
|
|
}));
|
|
}); |