76 lines
3.6 KiB
JavaScript
76 lines
3.6 KiB
JavaScript
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
var _excluded = ["children", "className"];
|
|
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import clsx from 'clsx';
|
|
import { unstable_useForkRef as useForkRef, unstable_useEnhancedEffect as useEnhancedEffect, unstable_capitalize as capitalize, unstable_composeClasses as composeClasses } from '@mui/utils';
|
|
import { GridRootStyles } from './GridRootStyles';
|
|
import { useGridSelector } from '../../hooks/utils/useGridSelector';
|
|
import { useGridPrivateApiContext } from '../../hooks/utils/useGridPrivateApiContext';
|
|
import { useGridRootProps } from '../../hooks/utils/useGridRootProps';
|
|
import { getDataGridUtilityClass } from '../../constants/gridClasses';
|
|
import { gridDensityValueSelector } from '../../hooks/features/density/densitySelector';
|
|
import { useGridAriaAttributes } from '../../hooks/utils/useGridAriaAttributes';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
var useUtilityClasses = function useUtilityClasses(ownerState) {
|
|
var autoHeight = ownerState.autoHeight,
|
|
density = ownerState.density,
|
|
classes = ownerState.classes;
|
|
var slots = {
|
|
root: ['root', autoHeight && 'autoHeight', "root--density".concat(capitalize(density)), 'withBorderColor']
|
|
};
|
|
return composeClasses(slots, getDataGridUtilityClass, classes);
|
|
};
|
|
var GridRoot = /*#__PURE__*/React.forwardRef(function GridRoot(props, ref) {
|
|
var _rootProps$experiment;
|
|
var rootProps = useGridRootProps();
|
|
var children = props.children,
|
|
className = props.className,
|
|
other = _objectWithoutProperties(props, _excluded);
|
|
var apiRef = useGridPrivateApiContext();
|
|
var densityValue = useGridSelector(apiRef, gridDensityValueSelector);
|
|
var rootContainerRef = React.useRef(null);
|
|
var handleRef = useForkRef(rootContainerRef, ref);
|
|
var getAriaAttributes = (_rootProps$experiment = rootProps.experimentalFeatures) != null && _rootProps$experiment.ariaV7 // ariaV7 should never change
|
|
? null : useGridAriaAttributes;
|
|
var ariaAttributes = typeof getAriaAttributes === 'function' ? getAriaAttributes() : null;
|
|
var ownerState = _extends({}, rootProps, {
|
|
density: densityValue
|
|
});
|
|
var classes = useUtilityClasses(ownerState);
|
|
apiRef.current.register('public', {
|
|
rootElementRef: rootContainerRef
|
|
});
|
|
|
|
// Our implementation of <NoSsr />
|
|
var _React$useState = React.useState(false),
|
|
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
mountedState = _React$useState2[0],
|
|
setMountedState = _React$useState2[1];
|
|
useEnhancedEffect(function () {
|
|
setMountedState(true);
|
|
}, []);
|
|
if (!mountedState) {
|
|
return null;
|
|
}
|
|
return /*#__PURE__*/_jsx(GridRootStyles, _extends({
|
|
ref: handleRef,
|
|
className: clsx(className, classes.root),
|
|
ownerState: ownerState
|
|
}, ariaAttributes, other, {
|
|
children: children
|
|
}));
|
|
});
|
|
process.env.NODE_ENV !== "production" ? GridRoot.propTypes = {
|
|
// ----------------------------- Warning --------------------------------
|
|
// | These PropTypes are generated from the TypeScript type definitions |
|
|
// | To update them edit the TypeScript types and run "yarn proptypes" |
|
|
// ----------------------------------------------------------------------
|
|
/**
|
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
*/
|
|
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
|
|
} : void 0;
|
|
export { GridRoot }; |