277 lines
9.9 KiB
JavaScript
277 lines
9.9 KiB
JavaScript
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
const _excluded = ["slots", "slotProps", "components", "componentsProps", "currentMonth", "disabled", "disableFuture", "disablePast", "maxDate", "minDate", "onMonthChange", "onViewChange", "view", "reduceAnimations", "views", "labelId", "className", "timezone"],
|
|
_excluded2 = ["ownerState"];
|
|
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import clsx from 'clsx';
|
|
import Fade from '@mui/material/Fade';
|
|
import { styled, useThemeProps } from '@mui/material/styles';
|
|
import { useSlotProps } from '@mui/base/utils';
|
|
import { unstable_composeClasses as composeClasses } from '@mui/utils';
|
|
import IconButton from '@mui/material/IconButton';
|
|
import { useLocaleText, useUtils } from '../internals/hooks/useUtils';
|
|
import { PickersFadeTransitionGroup } from '../DateCalendar/PickersFadeTransitionGroup';
|
|
import { ArrowDropDownIcon } from '../icons';
|
|
import { PickersArrowSwitcher } from '../internals/components/PickersArrowSwitcher';
|
|
import { usePreviousMonthDisabled, useNextMonthDisabled } from '../internals/hooks/date-helpers-hooks';
|
|
import { getPickersCalendarHeaderUtilityClass, pickersCalendarHeaderClasses } from './pickersCalendarHeaderClasses';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
const useUtilityClasses = ownerState => {
|
|
const {
|
|
classes
|
|
} = ownerState;
|
|
const slots = {
|
|
root: ['root'],
|
|
labelContainer: ['labelContainer'],
|
|
label: ['label'],
|
|
switchViewButton: ['switchViewButton'],
|
|
switchViewIcon: ['switchViewIcon']
|
|
};
|
|
return composeClasses(slots, getPickersCalendarHeaderUtilityClass, classes);
|
|
};
|
|
const PickersCalendarHeaderRoot = styled('div', {
|
|
name: 'MuiPickersCalendarHeader',
|
|
slot: 'Root',
|
|
overridesResolver: (_, styles) => styles.root
|
|
})({
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
marginTop: 16,
|
|
marginBottom: 8,
|
|
paddingLeft: 24,
|
|
paddingRight: 12,
|
|
// prevent jumping in safari
|
|
maxHeight: 30,
|
|
minHeight: 30
|
|
});
|
|
const PickersCalendarHeaderLabelContainer = styled('div', {
|
|
name: 'MuiPickersCalendarHeader',
|
|
slot: 'LabelContainer',
|
|
overridesResolver: (_, styles) => styles.labelContainer
|
|
})(({
|
|
theme
|
|
}) => _extends({
|
|
display: 'flex',
|
|
overflow: 'hidden',
|
|
alignItems: 'center',
|
|
cursor: 'pointer',
|
|
marginRight: 'auto'
|
|
}, theme.typography.body1, {
|
|
fontWeight: theme.typography.fontWeightMedium
|
|
}));
|
|
const PickersCalendarHeaderLabel = styled('div', {
|
|
name: 'MuiPickersCalendarHeader',
|
|
slot: 'Label',
|
|
overridesResolver: (_, styles) => styles.label
|
|
})({
|
|
marginRight: 6
|
|
});
|
|
const PickersCalendarHeaderSwitchViewButton = styled(IconButton, {
|
|
name: 'MuiPickersCalendarHeader',
|
|
slot: 'SwitchViewButton',
|
|
overridesResolver: (_, styles) => styles.switchViewButton
|
|
})(({
|
|
ownerState
|
|
}) => _extends({
|
|
marginRight: 'auto'
|
|
}, ownerState.view === 'year' && {
|
|
[`.${pickersCalendarHeaderClasses.switchViewIcon}`]: {
|
|
transform: 'rotate(180deg)'
|
|
}
|
|
}));
|
|
const PickersCalendarHeaderSwitchViewIcon = styled(ArrowDropDownIcon, {
|
|
name: 'MuiPickersCalendarHeader',
|
|
slot: 'SwitchViewIcon',
|
|
overridesResolver: (_, styles) => styles.switchViewIcon
|
|
})(({
|
|
theme
|
|
}) => ({
|
|
willChange: 'transform',
|
|
transition: theme.transitions.create('transform'),
|
|
transform: 'rotate(0deg)'
|
|
}));
|
|
/**
|
|
* Demos:
|
|
*
|
|
* - [DateCalendar](https://mui.com/x/react-date-pickers/date-calendar/)
|
|
* - [DateRangeCalendar](https://mui.com/x/react-date-pickers/date-range-calendar/)
|
|
* - [Custom slots and subcomponents](https://mui.com/x/react-date-pickers/custom-components/)
|
|
*
|
|
* API:
|
|
*
|
|
* - [PickersCalendarHeader API](https://mui.com/x/api/date-pickers/pickers-calendar-header/)
|
|
*/
|
|
const PickersCalendarHeader = /*#__PURE__*/React.forwardRef(function PickersCalendarHeader(inProps, ref) {
|
|
var _ref, _slots$switchViewButt, _ref2, _slots$switchViewIcon;
|
|
const localeText = useLocaleText();
|
|
const utils = useUtils();
|
|
const props = useThemeProps({
|
|
props: inProps,
|
|
name: 'MuiPickersCalendarHeader'
|
|
});
|
|
const {
|
|
slots,
|
|
slotProps,
|
|
components,
|
|
currentMonth: month,
|
|
disabled,
|
|
disableFuture,
|
|
disablePast,
|
|
maxDate,
|
|
minDate,
|
|
onMonthChange,
|
|
onViewChange,
|
|
view,
|
|
reduceAnimations,
|
|
views,
|
|
labelId,
|
|
className,
|
|
timezone
|
|
} = props,
|
|
other = _objectWithoutPropertiesLoose(props, _excluded);
|
|
const ownerState = props;
|
|
const classes = useUtilityClasses(props);
|
|
const SwitchViewButton = (_ref = (_slots$switchViewButt = slots == null ? void 0 : slots.switchViewButton) != null ? _slots$switchViewButt : components == null ? void 0 : components.SwitchViewButton) != null ? _ref : PickersCalendarHeaderSwitchViewButton;
|
|
const switchViewButtonProps = useSlotProps({
|
|
elementType: SwitchViewButton,
|
|
externalSlotProps: slotProps == null ? void 0 : slotProps.switchViewButton,
|
|
additionalProps: {
|
|
size: 'small',
|
|
'aria-label': localeText.calendarViewSwitchingButtonAriaLabel(view)
|
|
},
|
|
ownerState,
|
|
className: classes.switchViewButton
|
|
});
|
|
const SwitchViewIcon = (_ref2 = (_slots$switchViewIcon = slots == null ? void 0 : slots.switchViewIcon) != null ? _slots$switchViewIcon : components == null ? void 0 : components.SwitchViewIcon) != null ? _ref2 : PickersCalendarHeaderSwitchViewIcon;
|
|
// The spread is here to avoid this bug mui/material-ui#34056
|
|
const _useSlotProps = useSlotProps({
|
|
elementType: SwitchViewIcon,
|
|
externalSlotProps: slotProps == null ? void 0 : slotProps.switchViewIcon,
|
|
ownerState: undefined,
|
|
className: classes.switchViewIcon
|
|
}),
|
|
switchViewIconProps = _objectWithoutPropertiesLoose(_useSlotProps, _excluded2);
|
|
const selectNextMonth = () => onMonthChange(utils.addMonths(month, 1), 'left');
|
|
const selectPreviousMonth = () => onMonthChange(utils.addMonths(month, -1), 'right');
|
|
const isNextMonthDisabled = useNextMonthDisabled(month, {
|
|
disableFuture,
|
|
maxDate,
|
|
timezone
|
|
});
|
|
const isPreviousMonthDisabled = usePreviousMonthDisabled(month, {
|
|
disablePast,
|
|
minDate,
|
|
timezone
|
|
});
|
|
const handleToggleView = () => {
|
|
if (views.length === 1 || !onViewChange || disabled) {
|
|
return;
|
|
}
|
|
if (views.length === 2) {
|
|
onViewChange(views.find(el => el !== view) || views[0]);
|
|
} else {
|
|
// switching only between first 2
|
|
const nextIndexToOpen = views.indexOf(view) !== 0 ? 0 : 1;
|
|
onViewChange(views[nextIndexToOpen]);
|
|
}
|
|
};
|
|
|
|
// No need to display more information
|
|
if (views.length === 1 && views[0] === 'year') {
|
|
return null;
|
|
}
|
|
return /*#__PURE__*/_jsxs(PickersCalendarHeaderRoot, _extends({}, other, {
|
|
ownerState: ownerState,
|
|
className: clsx(className, classes.root),
|
|
ref: ref,
|
|
children: [/*#__PURE__*/_jsxs(PickersCalendarHeaderLabelContainer, {
|
|
role: "presentation",
|
|
onClick: handleToggleView,
|
|
ownerState: ownerState
|
|
// putting this on the label item element below breaks when using transition
|
|
,
|
|
"aria-live": "polite",
|
|
className: classes.labelContainer,
|
|
children: [/*#__PURE__*/_jsx(PickersFadeTransitionGroup, {
|
|
reduceAnimations: reduceAnimations,
|
|
transKey: utils.format(month, 'monthAndYear'),
|
|
children: /*#__PURE__*/_jsx(PickersCalendarHeaderLabel, {
|
|
id: labelId,
|
|
ownerState: ownerState,
|
|
className: classes.label,
|
|
children: utils.format(month, 'monthAndYear')
|
|
})
|
|
}), views.length > 1 && !disabled && /*#__PURE__*/_jsx(SwitchViewButton, _extends({}, switchViewButtonProps, {
|
|
children: /*#__PURE__*/_jsx(SwitchViewIcon, _extends({}, switchViewIconProps))
|
|
}))]
|
|
}), /*#__PURE__*/_jsx(Fade, {
|
|
in: view === 'day',
|
|
children: /*#__PURE__*/_jsx(PickersArrowSwitcher, {
|
|
slots: slots,
|
|
slotProps: slotProps,
|
|
onGoToPrevious: selectPreviousMonth,
|
|
isPreviousDisabled: isPreviousMonthDisabled,
|
|
previousLabel: localeText.previousMonth,
|
|
onGoToNext: selectNextMonth,
|
|
isNextDisabled: isNextMonthDisabled,
|
|
nextLabel: localeText.nextMonth
|
|
})
|
|
})]
|
|
}));
|
|
});
|
|
process.env.NODE_ENV !== "production" ? PickersCalendarHeader.propTypes = {
|
|
// ----------------------------- Warning --------------------------------
|
|
// | These PropTypes are generated from the TypeScript type definitions |
|
|
// | To update them edit the TypeScript types and run "yarn proptypes" |
|
|
// ----------------------------------------------------------------------
|
|
/**
|
|
* Override or extend the styles applied to the component.
|
|
*/
|
|
classes: PropTypes.object,
|
|
/**
|
|
* className applied to the root element.
|
|
*/
|
|
className: PropTypes.string,
|
|
/**
|
|
* Overridable components.
|
|
* @default {}
|
|
* @deprecated Please use `slots`.
|
|
*/
|
|
components: PropTypes.object,
|
|
/**
|
|
* The props used for each component slot.
|
|
* @default {}
|
|
* @deprecated Please use `slotProps`.
|
|
*/
|
|
componentsProps: PropTypes.object,
|
|
currentMonth: PropTypes.any.isRequired,
|
|
disabled: PropTypes.bool,
|
|
disableFuture: PropTypes.bool,
|
|
disablePast: PropTypes.bool,
|
|
labelId: PropTypes.string,
|
|
maxDate: PropTypes.any.isRequired,
|
|
minDate: PropTypes.any.isRequired,
|
|
onMonthChange: PropTypes.func.isRequired,
|
|
onViewChange: PropTypes.func,
|
|
reduceAnimations: PropTypes.bool.isRequired,
|
|
/**
|
|
* The props used for each component slot.
|
|
* @default {}
|
|
*/
|
|
slotProps: PropTypes.object,
|
|
/**
|
|
* Overridable component slots.
|
|
* @default {}
|
|
*/
|
|
slots: PropTypes.object,
|
|
/**
|
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
*/
|
|
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
timezone: PropTypes.string.isRequired,
|
|
view: PropTypes.oneOf(['day', 'month', 'year']).isRequired,
|
|
views: PropTypes.arrayOf(PropTypes.oneOf(['day', 'month', 'year']).isRequired).isRequired
|
|
} : void 0;
|
|
export { PickersCalendarHeader }; |