317 lines
11 KiB
Plaintext
317 lines
11 KiB
Plaintext
'use client';
|
|
|
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
import * as React from 'react';
|
|
import { isFragment } from 'react-is';
|
|
import PropTypes from 'prop-types';
|
|
import clsx from 'clsx';
|
|
import composeClasses from '@mui/utils/composeClasses';
|
|
import { useSlotProps } from '@mui/base/utils';
|
|
import HTMLElementType from '@mui/utils/HTMLElementType';
|
|
import { useRtl } from '@mui/system/RtlProvider';
|
|
import MenuList from '../MenuList';
|
|
import Popover, { PopoverPaper } from '../Popover';
|
|
import styled, { rootShouldForwardProp } from '../styles/styled';
|
|
import useThemeProps from '../styles/useThemeProps';
|
|
import { getMenuUtilityClass } from './menuClasses';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
var RTL_ORIGIN = {
|
|
vertical: 'top',
|
|
horizontal: 'right'
|
|
};
|
|
var LTR_ORIGIN = {
|
|
vertical: 'top',
|
|
horizontal: 'left'
|
|
};
|
|
var useUtilityClasses = function useUtilityClasses(ownerState) {
|
|
var classes = ownerState.classes;
|
|
var slots = {
|
|
root: ['root'],
|
|
paper: ['paper'],
|
|
list: ['list']
|
|
};
|
|
return composeClasses(slots, getMenuUtilityClass, classes);
|
|
};
|
|
var MenuRoot = styled(Popover, {
|
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
return rootShouldForwardProp(prop) || prop === 'classes';
|
|
},
|
|
name: 'MuiMenu',
|
|
slot: 'Root',
|
|
overridesResolver: function overridesResolver(props, styles) {
|
|
return styles.root;
|
|
}
|
|
})({});
|
|
export var MenuPaper = styled(PopoverPaper, {
|
|
name: 'MuiMenu',
|
|
slot: 'Paper',
|
|
overridesResolver: function overridesResolver(props, styles) {
|
|
return styles.paper;
|
|
}
|
|
})({
|
|
// specZ: The maximum height of a simple menu should be one or more rows less than the view
|
|
// height. This ensures a tappable area outside of the simple menu with which to dismiss
|
|
// the menu.
|
|
maxHeight: 'calc(100% - 96px)',
|
|
// Add iOS momentum scrolling for iOS < 13.0
|
|
WebkitOverflowScrolling: 'touch'
|
|
});
|
|
var MenuMenuList = styled(MenuList, {
|
|
name: 'MuiMenu',
|
|
slot: 'List',
|
|
overridesResolver: function overridesResolver(props, styles) {
|
|
return styles.list;
|
|
}
|
|
})({
|
|
// We disable the focus ring for mouse, touch and keyboard users.
|
|
outline: 0
|
|
});
|
|
var Menu = /*#__PURE__*/React.forwardRef(function Menu(inProps, ref) {
|
|
var _slots$paper, _slotProps$paper;
|
|
var props = useThemeProps({
|
|
props: inProps,
|
|
name: 'MuiMenu'
|
|
});
|
|
var _props$autoFocus = props.autoFocus,
|
|
autoFocus = _props$autoFocus === void 0 ? true : _props$autoFocus,
|
|
children = props.children,
|
|
className = props.className,
|
|
_props$disableAutoFoc = props.disableAutoFocusItem,
|
|
disableAutoFocusItem = _props$disableAutoFoc === void 0 ? false : _props$disableAutoFoc,
|
|
_props$MenuListProps = props.MenuListProps,
|
|
MenuListProps = _props$MenuListProps === void 0 ? {} : _props$MenuListProps,
|
|
onClose = props.onClose,
|
|
open = props.open,
|
|
_props$PaperProps = props.PaperProps,
|
|
PaperProps = _props$PaperProps === void 0 ? {} : _props$PaperProps,
|
|
PopoverClasses = props.PopoverClasses,
|
|
_props$transitionDura = props.transitionDuration,
|
|
transitionDuration = _props$transitionDura === void 0 ? 'auto' : _props$transitionDura,
|
|
_props$TransitionProp = props.TransitionProps,
|
|
_props$TransitionProp2 = _props$TransitionProp === void 0 ? {} : _props$TransitionProp,
|
|
onEntering = _props$TransitionProp2.onEntering,
|
|
TransitionProps = _objectWithoutProperties(_props$TransitionProp2, ["onEntering"]),
|
|
_props$variant = props.variant,
|
|
variant = _props$variant === void 0 ? 'selectedMenu' : _props$variant,
|
|
_props$slots = props.slots,
|
|
slots = _props$slots === void 0 ? {} : _props$slots,
|
|
_props$slotProps = props.slotProps,
|
|
slotProps = _props$slotProps === void 0 ? {} : _props$slotProps,
|
|
other = _objectWithoutProperties(props, ["autoFocus", "children", "className", "disableAutoFocusItem", "MenuListProps", "onClose", "open", "PaperProps", "PopoverClasses", "transitionDuration", "TransitionProps", "variant", "slots", "slotProps"]);
|
|
var isRtl = useRtl();
|
|
var ownerState = _extends({}, props, {
|
|
autoFocus: autoFocus,
|
|
disableAutoFocusItem: disableAutoFocusItem,
|
|
MenuListProps: MenuListProps,
|
|
onEntering: onEntering,
|
|
PaperProps: PaperProps,
|
|
transitionDuration: transitionDuration,
|
|
TransitionProps: TransitionProps,
|
|
variant: variant
|
|
});
|
|
var classes = useUtilityClasses(ownerState);
|
|
var autoFocusItem = autoFocus && !disableAutoFocusItem && open;
|
|
var menuListActionsRef = React.useRef(null);
|
|
var handleEntering = function handleEntering(element, isAppearing) {
|
|
if (menuListActionsRef.current) {
|
|
menuListActionsRef.current.adjustStyleForScrollbar(element, {
|
|
direction: isRtl ? 'rtl' : 'ltr'
|
|
});
|
|
}
|
|
if (onEntering) {
|
|
onEntering(element, isAppearing);
|
|
}
|
|
};
|
|
var handleListKeyDown = function handleListKeyDown(event) {
|
|
if (event.key === 'Tab') {
|
|
event.preventDefault();
|
|
if (onClose) {
|
|
onClose(event, 'tabKeyDown');
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* the index of the item should receive focus
|
|
* in a `variant="selectedMenu"` it's the first `selected` item
|
|
* otherwise it's the very first item.
|
|
*/
|
|
var activeItemIndex = -1;
|
|
// since we inject focus related props into children we have to do a lookahead
|
|
// to check if there is a `selected` item. We're looking for the last `selected`
|
|
// item and use the first valid item as a fallback
|
|
React.Children.map(children, function (child, index) {
|
|
if (! /*#__PURE__*/React.isValidElement(child)) {
|
|
return;
|
|
}
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
if (isFragment(child)) {
|
|
console.error(["MUI: The Menu component doesn't accept a Fragment as a child.", 'Consider providing an array instead.'].join('\n'));
|
|
}
|
|
}
|
|
if (!child.props.disabled) {
|
|
if (variant === 'selectedMenu' && child.props.selected) {
|
|
activeItemIndex = index;
|
|
} else if (activeItemIndex === -1) {
|
|
activeItemIndex = index;
|
|
}
|
|
}
|
|
});
|
|
var PaperSlot = (_slots$paper = slots.paper) != null ? _slots$paper : MenuPaper;
|
|
var paperExternalSlotProps = (_slotProps$paper = slotProps.paper) != null ? _slotProps$paper : PaperProps;
|
|
var rootSlotProps = useSlotProps({
|
|
elementType: slots.root,
|
|
externalSlotProps: slotProps.root,
|
|
ownerState: ownerState,
|
|
className: [classes.root, className]
|
|
});
|
|
var paperSlotProps = useSlotProps({
|
|
elementType: PaperSlot,
|
|
externalSlotProps: paperExternalSlotProps,
|
|
ownerState: ownerState,
|
|
className: classes.paper
|
|
});
|
|
return /*#__PURE__*/_jsx(MenuRoot, _extends({
|
|
onClose: onClose,
|
|
anchorOrigin: {
|
|
vertical: 'bottom',
|
|
horizontal: isRtl ? 'right' : 'left'
|
|
},
|
|
transformOrigin: isRtl ? RTL_ORIGIN : LTR_ORIGIN,
|
|
slots: {
|
|
paper: PaperSlot,
|
|
root: slots.root
|
|
},
|
|
slotProps: {
|
|
root: rootSlotProps,
|
|
paper: paperSlotProps
|
|
},
|
|
open: open,
|
|
ref: ref,
|
|
transitionDuration: transitionDuration,
|
|
TransitionProps: _extends({
|
|
onEntering: handleEntering
|
|
}, TransitionProps),
|
|
ownerState: ownerState
|
|
}, other, {
|
|
classes: PopoverClasses,
|
|
children: /*#__PURE__*/_jsx(MenuMenuList, _extends({
|
|
onKeyDown: handleListKeyDown,
|
|
actions: menuListActionsRef,
|
|
autoFocus: autoFocus && (activeItemIndex === -1 || disableAutoFocusItem),
|
|
autoFocusItem: autoFocusItem,
|
|
variant: variant
|
|
}, MenuListProps, {
|
|
className: clsx(classes.list, MenuListProps.className),
|
|
children: children
|
|
}))
|
|
}));
|
|
});
|
|
process.env.NODE_ENV !== "production" ? Menu.propTypes /* remove-proptypes */ = {
|
|
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
// └─────────────────────────────────────────────────────────────────────┘
|
|
/**
|
|
* An HTML element, or a function that returns one.
|
|
* It's used to set the position of the menu.
|
|
*/
|
|
anchorEl: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([HTMLElementType, PropTypes.func]),
|
|
/**
|
|
* If `true` (Default) will focus the `[role="menu"]` if no focusable child is found. Disabled
|
|
* children are not focusable. If you set this prop to `false` focus will be placed
|
|
* on the parent modal container. This has severe accessibility implications
|
|
* and should only be considered if you manage focus otherwise.
|
|
* @default true
|
|
*/
|
|
autoFocus: PropTypes.bool,
|
|
/**
|
|
* Menu contents, normally `MenuItem`s.
|
|
*/
|
|
children: PropTypes.node,
|
|
/**
|
|
* Override or extend the styles applied to the component.
|
|
*/
|
|
classes: PropTypes.object,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: PropTypes.string,
|
|
/**
|
|
* When opening the menu will not focus the active item but the `[role="menu"]`
|
|
* unless `autoFocus` is also set to `false`. Not using the default means not
|
|
* following WAI-ARIA authoring practices. Please be considerate about possible
|
|
* accessibility implications.
|
|
* @default false
|
|
*/
|
|
disableAutoFocusItem: PropTypes.bool,
|
|
/**
|
|
* Props applied to the [`MenuList`](/material-ui/api/menu-list/) element.
|
|
* @default {}
|
|
*/
|
|
MenuListProps: PropTypes.object,
|
|
/**
|
|
* Callback fired when the component requests to be closed.
|
|
*
|
|
* @param {object} event The event source of the callback.
|
|
* @param {string} reason Can be: `"escapeKeyDown"`, `"backdropClick"`, `"tabKeyDown"`.
|
|
*/
|
|
onClose: PropTypes.func,
|
|
/**
|
|
* If `true`, the component is shown.
|
|
*/
|
|
open: PropTypes.bool.isRequired,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
PaperProps: PropTypes.object,
|
|
/**
|
|
* `classes` prop applied to the [`Popover`](/material-ui/api/popover/) element.
|
|
*/
|
|
PopoverClasses: PropTypes.object,
|
|
/**
|
|
* The extra props for the slot components.
|
|
* You can override the existing props or add new ones.
|
|
*
|
|
* @default {}
|
|
*/
|
|
slotProps: PropTypes.shape({
|
|
paper: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
root: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
|
}),
|
|
/**
|
|
* The components used for each slot inside.
|
|
*
|
|
* @default {}
|
|
*/
|
|
slots: PropTypes.shape({
|
|
paper: PropTypes.elementType,
|
|
root: PropTypes.elementType
|
|
}),
|
|
/**
|
|
* 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]),
|
|
/**
|
|
* The length of the transition in `ms`, or 'auto'
|
|
* @default 'auto'
|
|
*/
|
|
transitionDuration: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number, PropTypes.shape({
|
|
appear: PropTypes.number,
|
|
enter: PropTypes.number,
|
|
exit: PropTypes.number
|
|
})]),
|
|
/**
|
|
* Props applied to the transition element.
|
|
* By default, the element is based on this [`Transition`](https://reactcommunity.org/react-transition-group/transition/) component.
|
|
* @default {}
|
|
*/
|
|
TransitionProps: PropTypes.object,
|
|
/**
|
|
* The variant to use. Use `menu` to prevent selected items from impacting the initial focus.
|
|
* @default 'selectedMenu'
|
|
*/
|
|
variant: PropTypes.oneOf(['menu', 'selectedMenu'])
|
|
} : void 0;
|
|
export default Menu; |