UNPKG

@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.

63 lines (60 loc) 2.14 kB
"use strict"; 'use client'; var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default; Object.defineProperty(exports, "__esModule", { value: true }); exports.useOptionContextStabilizer = useOptionContextStabilizer; var React = _interopRequireWildcard(require("react")); var _useList = require("../useList"); /** * Stabilizes the ListContext value for the Option component, so it doesn't change when sibling Options update. * * Demos: * * - [Select](https://mui.com/base-ui/react-select/#hooks) * * API: * * - [useOptionContextStabilizer API](https://mui.com/base-ui/react-select/hooks-api/#use-option-context-stabilizer) * * @param value - The value of the Option. * @returns The stable ListContext value. */ function useOptionContextStabilizer(value) { const listContext = React.useContext(_useList.ListContext); if (!listContext) { throw new Error('Option: ListContext was not found.'); } const { getItemState, dispatch } = listContext; const { highlighted, selected, focusable } = getItemState(value); // 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 !== value) { throw new Error(['MUI Base Option: Tried to access the state of another Option.', 'This is unsupported when the Option uses the OptionContextStabilizer as a performance optimization.'].join('/n')); } return { highlighted, selected, focusable }; }, [highlighted, selected, focusable, value]); // Create a local (per Option) instance of the ListContext that changes only when // the getItemState's return value changes. // This makes Options re-render only when their state actually change, not when any Option's state changes. const localContextValue = React.useMemo(() => ({ dispatch, getItemState: localGetItemState }), [dispatch, localGetItemState]); return { contextValue: localContextValue }; }