UNPKG

@mui/x-data-grid

Version:

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

57 lines 1.8 kB
import _extends from "@babel/runtime/helpers/esm/extends"; import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; const _excluded = ["label", "icon", "showInMenu", "onClick"], _excluded2 = ["label", "icon", "showInMenu", "onClick", "closeMenuOnClick", "closeMenu"]; import * as React from 'react'; import { forwardRef } from '@mui/x-internals/forwardRef'; import { useGridRootProps } from "../../hooks/utils/useGridRootProps.js"; import { jsx as _jsx } from "react/jsx-runtime"; const GridActionsCellItem = forwardRef((props, ref) => { const rootProps = useGridRootProps(); if (!props.showInMenu) { const { label, icon, onClick } = props, other = _objectWithoutPropertiesLoose(props, _excluded); const handleClick = event => { onClick?.(event); }; return /*#__PURE__*/_jsx(rootProps.slots.baseIconButton, _extends({ size: "small", role: "menuitem", "aria-label": label }, other, { onClick: handleClick }, rootProps.slotProps?.baseIconButton, { ref: ref, children: /*#__PURE__*/React.cloneElement(icon, { fontSize: 'small' }) })); } const { label, icon, onClick, closeMenuOnClick = true, closeMenu } = props, other = _objectWithoutPropertiesLoose(props, _excluded2); const handleClick = event => { onClick?.(event); if (closeMenuOnClick) { closeMenu?.(); } }; return /*#__PURE__*/_jsx(rootProps.slots.baseMenuItem, _extends({ ref: ref }, other, { onClick: handleClick, iconStart: icon, children: label })); }); if (process.env.NODE_ENV !== "production") GridActionsCellItem.displayName = "GridActionsCellItem"; export { GridActionsCellItem };