@mui/x-data-grid
Version:
The community edition of the data grid component (MUI X).
257 lines (228 loc) • 9.58 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
var _excluded = ["align", "children", "colIndex", "colDef", "cellMode", "field", "formattedValue", "hasFocus", "height", "isEditable", "rowId", "tabIndex", "value", "width", "className", "showRightBorder", "extendRowFullWidth", "row", "colSpan", "disableDragEvents", "onClick", "onDoubleClick", "onMouseDown", "onMouseUp", "onKeyDown", "onDragEnter", "onDragOver"];
/* eslint-disable jsx-a11y/no-noninteractive-element-interactions */
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import { unstable_composeClasses as composeClasses } from '@mui/material';
import { ownerDocument, capitalize } from '@mui/material/utils';
import { getDataGridUtilityClass } from '../../constants/gridClasses';
import { GridCellModes } from '../../models';
import { useGridApiContext } from '../../hooks/utils/useGridApiContext';
import { useGridRootProps } from '../../hooks/utils/useGridRootProps';
import { gridFocusCellSelector } from '../../hooks/features/focus/gridFocusStateSelector';
import { jsx as _jsx } from "react/jsx-runtime";
// Based on https://stackoverflow.com/a/59518678
var cachedSupportsPreventScroll;
function doesSupportPreventScroll() {
if (cachedSupportsPreventScroll === undefined) {
document.createElement('div').focus({
get preventScroll() {
cachedSupportsPreventScroll = true;
return false;
}
});
}
return cachedSupportsPreventScroll;
}
var useUtilityClasses = function useUtilityClasses(ownerState) {
var align = ownerState.align,
showRightBorder = ownerState.showRightBorder,
isEditable = ownerState.isEditable,
classes = ownerState.classes;
var slots = {
root: ['cell', "cell--text".concat(capitalize(align)), isEditable && 'cell--editable', showRightBorder && 'withBorder'],
content: ['cellContent']
};
return composeClasses(slots, getDataGridUtilityClass, classes);
};
var warnedOnce = false;
function GridCell(props) {
var _rootProps$experiment;
var align = props.align,
children = props.children,
colIndex = props.colIndex,
colDef = props.colDef,
cellMode = props.cellMode,
field = props.field,
formattedValue = props.formattedValue,
hasFocus = props.hasFocus,
height = props.height,
isEditable = props.isEditable,
rowId = props.rowId,
tabIndex = props.tabIndex,
value = props.value,
width = props.width,
className = props.className,
showRightBorder = props.showRightBorder,
extendRowFullWidth = props.extendRowFullWidth,
row = props.row,
colSpan = props.colSpan,
disableDragEvents = props.disableDragEvents,
onClick = props.onClick,
onDoubleClick = props.onDoubleClick,
onMouseDown = props.onMouseDown,
onMouseUp = props.onMouseUp,
onKeyDown = props.onKeyDown,
onDragEnter = props.onDragEnter,
onDragOver = props.onDragOver,
other = _objectWithoutProperties(props, _excluded);
var valueToRender = formattedValue == null ? value : formattedValue;
var cellRef = React.useRef(null);
var focusElementRef = React.useRef(null);
var apiRef = useGridApiContext();
var rootProps = useGridRootProps();
var ownerState = {
align: align,
showRightBorder: showRightBorder,
isEditable: isEditable,
classes: rootProps.classes
};
var classes = useUtilityClasses(ownerState);
var publishMouseUp = React.useCallback(function (eventName) {
return function (event) {
var params = apiRef.current.getCellParams(rowId, field || '');
apiRef.current.publishEvent(eventName, params, event);
if (onMouseUp) {
onMouseUp(event);
}
};
}, [apiRef, field, onMouseUp, rowId]);
var publishMouseDown = React.useCallback(function (eventName) {
return function (event) {
var params = apiRef.current.getCellParams(rowId, field || '');
apiRef.current.publishEvent(eventName, params, event);
if (onMouseDown) {
onMouseDown(event);
}
};
}, [apiRef, field, onMouseDown, rowId]);
var publish = React.useCallback(function (eventName, propHandler) {
return function (event) {
// Ignore portal
if (!event.currentTarget.contains(event.target)) {
return;
} // The row might have been deleted during the click
if (!apiRef.current.getRow(rowId)) {
return;
}
var params = apiRef.current.getCellParams(rowId, field || '');
apiRef.current.publishEvent(eventName, params, event);
if (propHandler) {
propHandler(event);
}
};
}, [apiRef, field, rowId]);
var style = {
minWidth: width,
maxWidth: width,
minHeight: height,
maxHeight: height === 'auto' ? 'none' : height // max-height doesn't support "auto"
};
React.useLayoutEffect(function () {
if (!hasFocus || cellMode === GridCellModes.Edit) {
return;
}
var doc = ownerDocument(apiRef.current.rootElementRef.current);
if (cellRef.current && !cellRef.current.contains(doc.activeElement)) {
var focusableElement = cellRef.current.querySelector('[tabindex="0"]');
var elementToFocus = focusElementRef.current || focusableElement || cellRef.current;
if (doesSupportPreventScroll()) {
elementToFocus.focus({
preventScroll: true
});
} else {
var scrollPosition = apiRef.current.getScrollPosition();
elementToFocus.focus();
apiRef.current.scroll(scrollPosition);
}
}
}, [hasFocus, cellMode, apiRef]);
var handleFocus = other.onFocus;
if (process.env.NODE_ENV === 'test' && (_rootProps$experiment = rootProps.experimentalFeatures) != null && _rootProps$experiment.warnIfFocusStateIsNotSynced) {
handleFocus = function handleFocus(event) {
var focusedCell = gridFocusCellSelector(apiRef);
if ((focusedCell == null ? void 0 : focusedCell.id) === rowId && focusedCell.field === field) {
if (typeof other.onFocus === 'function') {
other.onFocus(event);
}
return;
}
if (!warnedOnce) {
console.warn(["MUI: The cell with id=".concat(rowId, " and field=").concat(field, " received focus."), "According to the state, the focus should be at id=".concat(focusedCell == null ? void 0 : focusedCell.id, ", field=").concat(focusedCell == null ? void 0 : focusedCell.field, "."), "Not syncing the state may cause unwanted behaviors since the `cellFocusIn` event won't be fired.", 'Call `fireEvent.mouseUp` before the `fireEvent.click` to sync the focus with the state.'].join('\n'));
warnedOnce = true;
}
};
}
var column = apiRef.current.getColumn(field);
var managesOwnFocus = column.type === 'actions';
var renderChildren = function renderChildren() {
if (children == null) {
return /*#__PURE__*/_jsx("div", {
className: classes.content,
children: valueToRender == null ? void 0 : valueToRender.toString()
});
}
if ( /*#__PURE__*/React.isValidElement(children) && managesOwnFocus) {
return /*#__PURE__*/React.cloneElement(children, {
focusElementRef: focusElementRef
});
}
return children;
};
var draggableEventHandlers = disableDragEvents ? null : {
onDragEnter: publish('cellDragEnter', onDragEnter),
onDragOver: publish('cellDragOver', onDragOver)
};
return /*#__PURE__*/_jsx("div", _extends({
ref: cellRef,
className: clsx(className, classes.root),
role: "cell",
"data-field": field,
"data-colindex": colIndex,
"aria-colindex": colIndex + 1,
"aria-colspan": colSpan,
style: style,
tabIndex: (cellMode === 'view' || !isEditable) && !managesOwnFocus ? tabIndex : -1,
onClick: publish('cellClick', onClick),
onDoubleClick: publish('cellDoubleClick', onDoubleClick),
onMouseDown: publishMouseDown('cellMouseDown'),
onMouseUp: publishMouseUp('cellMouseUp'),
onKeyDown: publish('cellKeyDown', onKeyDown)
}, draggableEventHandlers, other, {
onFocus: handleFocus,
children: renderChildren()
}));
}
process.env.NODE_ENV !== "production" ? GridCell.propTypes = {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the TypeScript types and run "yarn proptypes" |
// ----------------------------------------------------------------------
align: PropTypes.oneOf(['center', 'left', 'right']).isRequired,
cellMode: PropTypes.oneOf(['edit', 'view']),
children: PropTypes.node,
className: PropTypes.string,
colIndex: PropTypes.number.isRequired,
colSpan: PropTypes.number,
disableDragEvents: PropTypes.bool,
field: PropTypes.string.isRequired,
formattedValue: PropTypes.any,
hasFocus: PropTypes.bool,
height: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]).isRequired,
isEditable: PropTypes.bool,
onClick: PropTypes.func,
onDoubleClick: PropTypes.func,
onDragEnter: PropTypes.func,
onDragOver: PropTypes.func,
onKeyDown: PropTypes.func,
onMouseDown: PropTypes.func,
onMouseUp: PropTypes.func,
rowId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired,
showRightBorder: PropTypes.bool,
tabIndex: PropTypes.oneOf([-1, 0]).isRequired,
value: PropTypes.any,
width: PropTypes.number.isRequired
} : void 0;
export { GridCell };