@mui/base
Version:
MUI Base is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
76 lines (73 loc) • 2.55 kB
JavaScript
;
'use client';
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.useMenuItemContextStabilizer = useMenuItemContextStabilizer;
var React = _interopRequireWildcard(require("react"));
var _utils = require("@mui/utils");
var _useList = require("../useList");
/**
* Stabilizes the ListContext value for the MenuItem component, so it doesn't change when sibling items update.
*
* Demos:
*
* - [Menu](https://mui.com/base-ui/react-menu/#hooks)
*
* API:
*
* - [useMenuItemContextStabilizer API](https://mui.com/base-ui/react-menu/hooks-api/#use-menu-item-context-stabilizer)
*
* @param id - The id of the MenuItem. If undefined, it will be generated with useId.
* @returns The stable ListContext value and the id of the MenuItem.
*/
function useMenuItemContextStabilizer(id) {
const listContext = React.useContext(_useList.ListContext);
if (!listContext) {
throw new Error('MenuItem: ListContext was not found.');
}
const itemId = (0, _utils.unstable_useId)(id);
const {
getItemState,
dispatch
} = listContext;
let itemState;
if (itemId != null) {
itemState = getItemState(itemId);
} else {
itemState = {
focusable: true,
highlighted: false,
selected: false
};
}
const {
highlighted,
selected,
focusable
} = itemState;
// The local version of getItemState can be only called with the current Option's value.
// It doesn't make much sense to render an Option depending on other Options' state anyway.
const localGetItemState = React.useCallback(itemValue => {
if (itemValue !== itemId) {
throw new Error(['MUI Base MenuItem: Tried to access the state of another MenuItem.', `itemValue: ${itemValue} | id: ${itemId}`, 'This is unsupported when the MenuItem uses the MenuItemContextStabilizer as a performance optimization.'].join('/n'));
}
return {
highlighted,
selected,
focusable
};
}, [highlighted, selected, focusable, itemId]);
// Create a local (per MenuItem) instance of the ListContext that changes only when
// the getItemState's return value changes.
// This makes MenuItems re-render only when their state actually change, not when any MenuItem's state changes.
const localContextValue = React.useMemo(() => ({
dispatch,
getItemState: localGetItemState
}), [dispatch, localGetItemState]);
return {
contextValue: localContextValue,
id: itemId
};
}