@mui/x-charts
Version:
The community edition of the charts components (MUI X).
115 lines (114 loc) • 4.05 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
const _excluded = ["width", "height"];
import * as React from 'react';
import useEnhancedEffect from '@mui/utils/useEnhancedEffect';
import ownerWindow from '@mui/utils/ownerWindow';
import { styled } from '@mui/material/styles';
import { ChartContainer } from '../ChartContainer';
import { jsx as _jsx } from "react/jsx-runtime";
const useChartDimensions = (inWidth, inHeight) => {
const rootRef = React.useRef(null);
const displayError = React.useRef(false);
const [width, setWidth] = React.useState(0);
const [height, setHeight] = React.useState(0);
// Adaptation of the `computeSizeAndPublishResizeEvent` from the grid.
const computeSize = React.useCallback(() => {
const mainEl = rootRef == null ? void 0 : rootRef.current;
if (!mainEl) {
return;
}
const win = ownerWindow(mainEl);
const computedStyle = win.getComputedStyle(mainEl);
const newHeight = Math.floor(parseFloat(computedStyle.height)) || 0;
const newWidth = Math.floor(parseFloat(computedStyle.width)) || 0;
setWidth(newWidth);
setHeight(newHeight);
}, []);
React.useEffect(() => {
// Ensure the error detection occurs after the first rendering.
displayError.current = true;
}, []);
useEnhancedEffect(() => {
if (inWidth !== undefined && inHeight !== undefined) {
return () => {};
}
computeSize();
const elementToObserve = rootRef.current;
if (typeof ResizeObserver === 'undefined') {
return () => {};
}
let animationFrame;
const observer = new ResizeObserver(() => {
// See https://github.com/mui/mui-x/issues/8733
animationFrame = requestAnimationFrame(() => {
computeSize();
});
});
if (elementToObserve) {
observer.observe(elementToObserve);
}
return () => {
if (animationFrame) {
window.cancelAnimationFrame(animationFrame);
}
if (elementToObserve) {
observer.unobserve(elementToObserve);
}
};
}, [computeSize, inHeight, inWidth]);
if (process.env.NODE_ENV !== 'production') {
if (displayError.current && inWidth === undefined && width === 0) {
console.error(`MUI-X-Charts: ChartContainer does not have \`width\` prop, and its container has no \`width\` defined.`);
displayError.current = false;
}
if (displayError.current && inHeight === undefined && height === 0) {
console.error(`MUI-X-Charts: ChartContainer does not have \`height\` prop, and its container has no \`height\` defined.`);
displayError.current = false;
}
}
return [rootRef, inWidth != null ? inWidth : width, inHeight != null ? inHeight : height];
};
const ResizableContainer = styled('div', {
name: 'MuiResponsiveChart',
slot: 'Container'
})(({
ownerState
}) => {
var _ownerState$width, _ownerState$height;
return {
width: (_ownerState$width = ownerState.width) != null ? _ownerState$width : '100%',
height: (_ownerState$height = ownerState.height) != null ? _ownerState$height : '100%',
display: 'flex',
position: 'relative',
flexGrow: 1,
flexDirection: 'column',
alignItems: 'center',
justifyContent: 'center',
overflow: 'hidden',
'&>svg': {
width: '100%',
height: '100%'
}
};
});
export const ResponsiveChartContainer = /*#__PURE__*/React.forwardRef(function ResponsiveChartContainer(props, ref) {
const {
width: inWidth,
height: inHeight
} = props,
other = _objectWithoutPropertiesLoose(props, _excluded);
const [containerRef, width, height] = useChartDimensions(inWidth, inHeight);
return /*#__PURE__*/_jsx(ResizableContainer, {
ref: containerRef,
ownerState: {
width: inWidth,
height: inHeight
},
children: width && height ? /*#__PURE__*/_jsx(ChartContainer, _extends({}, other, {
width: width,
height: height,
ref: ref
})) : null
});
});