UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the Data Grid components (MUI X).

63 lines (62 loc) 2.96 kB
import _extends from "@babel/runtime/helpers/esm/extends"; import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; const _excluded = ["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 { gridDensitySelector } from '../../hooks/features/density/densitySelector'; import { jsx as _jsx } from "react/jsx-runtime"; const useUtilityClasses = (ownerState, density) => { const { autoHeight, classes, showCellVerticalBorder } = ownerState; const slots = { root: ['root', autoHeight && 'autoHeight', `root--density${capitalize(density)}`, ownerState.slots.toolbar === null && 'root--noToolbar', 'withBorderColor', showCellVerticalBorder && 'withVerticalBorder'] }; return composeClasses(slots, getDataGridUtilityClass, classes); }; const GridRoot = /*#__PURE__*/React.forwardRef(function GridRoot(props, ref) { const rootProps = useGridRootProps(); const { className } = props, other = _objectWithoutPropertiesLoose(props, _excluded); const apiRef = useGridPrivateApiContext(); const density = useGridSelector(apiRef, gridDensitySelector); const rootElementRef = apiRef.current.rootElementRef; const handleRef = useForkRef(rootElementRef, ref); const ownerState = rootProps; const classes = useUtilityClasses(ownerState, density); // Our implementation of <NoSsr /> const [mountedState, setMountedState] = React.useState(false); useEnhancedEffect(() => { setMountedState(true); }, []); if (!mountedState) { return null; } return /*#__PURE__*/_jsx(GridRootStyles, _extends({ ref: handleRef, className: clsx(className, classes.root), ownerState: ownerState }, other)); }); 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 "pnpm 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 };