UNPKG

@mui/material

Version:

Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.

62 lines (57 loc) 1.89 kB
import _extends from "@babel/runtime/helpers/esm/extends"; import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; const _excluded = ["onChange"]; import * as React from 'react'; import PropTypes from 'prop-types'; import debounce from '../utils/debounce'; import { ownerWindow } from '../utils'; import { jsx as _jsx } from "react/jsx-runtime"; const styles = { width: 99, height: 99, position: 'absolute', top: -9999, overflow: 'scroll' }; /** * @ignore - internal component. * The component originates from https://github.com/STORIS/react-scrollbar-size. * It has been moved into the core in order to minimize the bundle size. */ export default function ScrollbarSize(props) { const { onChange } = props, other = _objectWithoutPropertiesLoose(props, _excluded); const scrollbarHeight = React.useRef(); const nodeRef = React.useRef(null); const setMeasurements = () => { scrollbarHeight.current = nodeRef.current.offsetHeight - nodeRef.current.clientHeight; }; React.useEffect(() => { const handleResize = debounce(() => { const prevHeight = scrollbarHeight.current; setMeasurements(); if (prevHeight !== scrollbarHeight.current) { onChange(scrollbarHeight.current); } }); const containerWindow = ownerWindow(nodeRef.current); containerWindow.addEventListener('resize', handleResize); return () => { handleResize.clear(); containerWindow.removeEventListener('resize', handleResize); }; }, [onChange]); React.useEffect(() => { setMeasurements(); onChange(scrollbarHeight.current); }, [onChange]); return /*#__PURE__*/_jsx("div", _extends({ style: styles, ref: nodeRef }, other)); } process.env.NODE_ENV !== "production" ? ScrollbarSize.propTypes = { onChange: PropTypes.func.isRequired } : void 0;