@mui/x-data-grid
Version:
The community edition of the data grid component (MUI X).
121 lines • 3.96 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
const _excluded = ["children", "className", "classes"];
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import { styled } from '@mui/material/styles';
import { unstable_generateUtilityClasses as generateUtilityClasses } from '@mui/utils';
import ClickAwayListener from '@mui/material/ClickAwayListener';
import Paper from '@mui/material/Paper';
import Popper from '@mui/material/Popper';
import { useGridApiContext } from '../../hooks/utils/useGridApiContext';
import { isEscapeKey } from '../../utils/keyboardUtils';
import { gridClasses } from '../../constants/gridClasses';
import { useGridRootProps } from '../../hooks/utils/useGridRootProps';
import { jsx as _jsx } from "react/jsx-runtime";
export const gridPanelClasses = generateUtilityClasses('MuiDataGrid', ['panel', 'paper']);
const GridPanelRoot = styled(Popper, {
name: 'MuiDataGrid',
slot: 'Panel',
overridesResolver: (props, styles) => styles.panel
})(({
theme
}) => ({
zIndex: theme.zIndex.modal
}));
const GridPaperRoot = styled(Paper, {
name: 'MuiDataGrid',
slot: 'Paper',
overridesResolver: (props, styles) => styles.paper
})(({
theme
}) => ({
backgroundColor: (theme.vars || theme).palette.background.paper,
minWidth: 300,
maxHeight: 450,
display: 'flex'
}));
const GridPanel = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
children,
className
} = props,
other = _objectWithoutPropertiesLoose(props, _excluded);
const apiRef = useGridApiContext();
const rootProps = useGridRootProps();
const classes = gridPanelClasses;
const [isPlaced, setIsPlaced] = React.useState(false);
const handleClickAway = React.useCallback(() => {
apiRef.current.hidePreferences();
}, [apiRef]);
const handleKeyDown = React.useCallback(event => {
if (isEscapeKey(event.key)) {
apiRef.current.hidePreferences();
}
}, [apiRef]);
const modifiers = React.useMemo(() => [{
name: 'flip',
enabled: false
}, {
name: 'isPlaced',
enabled: true,
phase: 'main',
fn: () => {
setIsPlaced(true);
},
effect: () => () => {
setIsPlaced(false);
}
}], []);
const [anchorEl, setAnchorEl] = React.useState(null);
React.useEffect(() => {
const columnHeadersElement = apiRef.current.rootElementRef?.current?.querySelector(`.${gridClasses.columnHeaders}`);
if (columnHeadersElement) {
setAnchorEl(columnHeadersElement);
}
}, [apiRef]);
if (!anchorEl) {
return null;
}
return /*#__PURE__*/_jsx(GridPanelRoot, _extends({
ref: ref,
placement: "bottom-start",
className: clsx(className, classes.panel),
ownerState: rootProps,
anchorEl: anchorEl,
modifiers: modifiers
}, other, {
children: /*#__PURE__*/_jsx(ClickAwayListener, {
mouseEvent: "onMouseUp",
onClickAway: handleClickAway,
children: /*#__PURE__*/_jsx(GridPaperRoot, {
className: classes.paper,
ownerState: rootProps,
elevation: 8,
onKeyDown: handleKeyDown,
children: isPlaced && children
})
})
}));
});
process.env.NODE_ENV !== "production" ? GridPanel.propTypes = {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the TypeScript types and run "yarn proptypes" |
// ----------------------------------------------------------------------
/**
* Popper render function or node.
*/
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
*/
classes: PropTypes.object,
/**
* If `true`, the component is shown.
*/
open: PropTypes.bool.isRequired,
ownerState: PropTypes.object
} : void 0;
export { GridPanel };