You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
159 lines
5.0 KiB
JavaScript
159 lines
5.0 KiB
JavaScript
'use client';
|
|
|
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
const _excluded = ["actions", "anchor", "children", "onItemsChange", "slotProps", "slots"];
|
|
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { HTMLElementType, refType } from '@mui/utils';
|
|
import { getMenuUtilityClass } from './menuClasses';
|
|
import { useMenu } from '../useMenu';
|
|
import { MenuProvider } from '../useMenu/MenuProvider';
|
|
import { unstable_composeClasses as composeClasses } from '../composeClasses';
|
|
import { Popper } from '../Popper';
|
|
import { useSlotProps } from '../utils/useSlotProps';
|
|
import { useClassNamesOverride } from '../utils/ClassNameConfigurator';
|
|
import { ListActionTypes } from '../useList';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
function useUtilityClasses(ownerState) {
|
|
const {
|
|
open
|
|
} = ownerState;
|
|
const slots = {
|
|
root: ['root', open && 'expanded'],
|
|
listbox: ['listbox', open && 'expanded']
|
|
};
|
|
return composeClasses(slots, useClassNamesOverride(getMenuUtilityClass));
|
|
}
|
|
|
|
/**
|
|
*
|
|
* Demos:
|
|
*
|
|
* - [Menu](https://mui.com/base-ui/react-menu/)
|
|
*
|
|
* API:
|
|
*
|
|
* - [Menu API](https://mui.com/base-ui/react-menu/components-api/#menu)
|
|
*/
|
|
const Menu = /*#__PURE__*/React.forwardRef(function Menu(props, forwardedRef) {
|
|
var _slots$root, _slots$listbox;
|
|
const {
|
|
actions,
|
|
anchor: anchorProp,
|
|
children,
|
|
onItemsChange,
|
|
slotProps = {},
|
|
slots = {}
|
|
} = props,
|
|
other = _objectWithoutPropertiesLoose(props, _excluded);
|
|
const {
|
|
contextValue,
|
|
getListboxProps,
|
|
dispatch,
|
|
open,
|
|
triggerElement
|
|
} = useMenu({
|
|
onItemsChange,
|
|
componentName: 'Menu'
|
|
});
|
|
const anchor = anchorProp != null ? anchorProp : triggerElement;
|
|
React.useImperativeHandle(actions, () => ({
|
|
dispatch,
|
|
resetHighlight: () => dispatch({
|
|
type: ListActionTypes.resetHighlight,
|
|
event: null
|
|
})
|
|
}), [dispatch]);
|
|
const ownerState = _extends({}, props, {
|
|
open
|
|
});
|
|
const classes = useUtilityClasses(ownerState);
|
|
const Root = (_slots$root = slots.root) != null ? _slots$root : 'div';
|
|
const rootProps = useSlotProps({
|
|
elementType: Root,
|
|
externalSlotProps: slotProps.root,
|
|
externalForwardedProps: other,
|
|
additionalProps: {
|
|
ref: forwardedRef,
|
|
role: undefined
|
|
},
|
|
className: classes.root,
|
|
ownerState
|
|
});
|
|
const Listbox = (_slots$listbox = slots.listbox) != null ? _slots$listbox : 'ul';
|
|
const listboxProps = useSlotProps({
|
|
elementType: Listbox,
|
|
getSlotProps: getListboxProps,
|
|
externalSlotProps: slotProps.listbox,
|
|
className: classes.listbox,
|
|
ownerState
|
|
});
|
|
if (open === true && anchor == null) {
|
|
return /*#__PURE__*/_jsx(Root, _extends({}, rootProps, {
|
|
children: /*#__PURE__*/_jsx(Listbox, _extends({}, listboxProps, {
|
|
children: /*#__PURE__*/_jsx(MenuProvider, {
|
|
value: contextValue,
|
|
children: children
|
|
})
|
|
}))
|
|
}));
|
|
}
|
|
return /*#__PURE__*/_jsx(Popper, _extends({}, rootProps, {
|
|
open: open,
|
|
anchorEl: anchor,
|
|
slots: {
|
|
root: Root
|
|
},
|
|
children: /*#__PURE__*/_jsx(Listbox, _extends({}, listboxProps, {
|
|
children: /*#__PURE__*/_jsx(MenuProvider, {
|
|
value: contextValue,
|
|
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 TypeScript types and run `pnpm proptypes`. │
|
|
// └─────────────────────────────────────────────────────────────────────┘
|
|
/**
|
|
* A ref with imperative actions that can be performed on the menu.
|
|
*/
|
|
actions: refType,
|
|
/**
|
|
* The element based on which the menu is positioned.
|
|
*/
|
|
anchor: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([HTMLElementType, PropTypes.object, PropTypes.func]),
|
|
/**
|
|
* @ignore
|
|
*/
|
|
children: PropTypes.node,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: PropTypes.string,
|
|
/**
|
|
* Function called when the items displayed in the menu change.
|
|
*/
|
|
onItemsChange: PropTypes.func,
|
|
/**
|
|
* The props used for each slot inside the Menu.
|
|
* @default {}
|
|
*/
|
|
slotProps: PropTypes.shape({
|
|
listbox: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
root: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
|
}),
|
|
/**
|
|
* The components used for each slot inside the Menu.
|
|
* Either a string to use a HTML element or a component.
|
|
* @default {}
|
|
*/
|
|
slots: PropTypes.shape({
|
|
listbox: PropTypes.elementType,
|
|
root: PropTypes.elementType
|
|
})
|
|
} : void 0;
|
|
export { Menu }; |