UNPKG

@mui/base

Version:

A library of headless ('unstyled') React UI components and low-level hooks.

91 lines (88 loc) 4.13 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CompoundComponentContext = void 0; exports.useCompoundParent = useCompoundParent; var React = _interopRequireWildcard(require("react")); function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } const CompoundComponentContext = /*#__PURE__*/React.createContext(null); exports.CompoundComponentContext = CompoundComponentContext; CompoundComponentContext.displayName = 'CompoundComponentContext'; /** * Sorts the subitems by their position in the DOM. */ function sortSubitems(subitems) { const subitemsArray = Array.from(subitems.keys()).map(key => { const subitem = subitems.get(key); return { key, subitem }; }); subitemsArray.sort((a, b) => { const aNode = a.subitem.ref.current; const bNode = b.subitem.ref.current; if (aNode === null || bNode === null || aNode === bNode) { return 0; } // eslint-disable-next-line no-bitwise return aNode.compareDocumentPosition(bNode) & Node.DOCUMENT_POSITION_PRECEDING ? 1 : -1; }); return new Map(subitemsArray.map(item => [item.key, item.subitem])); } /** * Provides a way for a component to know about its children. * * Child components register themselves with the `useCompoundItem` hook, passing in arbitrary metadata to the parent. * * This is a more powerful altervantive to `children` traversal, as child components don't have to be placed * directly inside the parent component. They can be anywhere in the tree (and even rendered by other components). * * The downside is that this doesn't work with SSR as it relies on the useEffect hook. * * @ignore - internal hook. */ function useCompoundParent() { const [subitems, setSubitems] = React.useState(new Map()); const subitemKeys = React.useRef(new Set()); const deregisterItem = React.useCallback(function deregisterItem(id) { subitemKeys.current.delete(id); setSubitems(previousState => { const newState = new Map(previousState); newState.delete(id); return newState; }); }, []); const registerItem = React.useCallback(function registerItem(id, item) { let providedOrGeneratedId; if (typeof id === 'function') { providedOrGeneratedId = id(subitemKeys.current); } else { providedOrGeneratedId = id; } subitemKeys.current.add(providedOrGeneratedId); setSubitems(previousState => { const newState = new Map(previousState); newState.set(providedOrGeneratedId, item); return newState; }); return { id: providedOrGeneratedId, deregister: () => deregisterItem(providedOrGeneratedId) }; }, [deregisterItem]); const sortedSubitems = React.useMemo(() => sortSubitems(subitems), [subitems]); const getItemIndex = React.useCallback(function getItemIndex(id) { return Array.from(sortedSubitems.keys()).indexOf(id); }, [sortedSubitems]); return { contextValue: { getItemIndex, registerItem, totalSubitemCount: subitems.size }, subitems: sortedSubitems }; }