164 lines
6.6 KiB
JavaScript
164 lines
6.6 KiB
JavaScript
"use strict";
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.GridCellCheckboxRenderer = exports.GridCellCheckboxForwardRef = void 0;
|
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
var _objectWithoutPropertiesLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutPropertiesLoose"));
|
|
var React = _interopRequireWildcard(require("react"));
|
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
var _utils = require("@mui/utils");
|
|
var _keyboardUtils = require("../../utils/keyboardUtils");
|
|
var _useGridApiContext = require("../../hooks/utils/useGridApiContext");
|
|
var _useGridRootProps = require("../../hooks/utils/useGridRootProps");
|
|
var _gridClasses = require("../../constants/gridClasses");
|
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
const _excluded = ["field", "id", "value", "formattedValue", "row", "rowNode", "colDef", "isEditable", "cellMode", "hasFocus", "tabIndex", "api"];
|
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
const useUtilityClasses = ownerState => {
|
|
const {
|
|
classes
|
|
} = ownerState;
|
|
const slots = {
|
|
root: ['checkboxInput']
|
|
};
|
|
return (0, _utils.unstable_composeClasses)(slots, _gridClasses.getDataGridUtilityClass, classes);
|
|
};
|
|
const GridCellCheckboxForwardRef = exports.GridCellCheckboxForwardRef = /*#__PURE__*/React.forwardRef(function GridCellCheckboxRenderer(props, ref) {
|
|
const {
|
|
field,
|
|
id,
|
|
value: isChecked,
|
|
rowNode,
|
|
hasFocus,
|
|
tabIndex
|
|
} = props,
|
|
other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded);
|
|
const apiRef = (0, _useGridApiContext.useGridApiContext)();
|
|
const rootProps = (0, _useGridRootProps.useGridRootProps)();
|
|
const ownerState = {
|
|
classes: rootProps.classes
|
|
};
|
|
const classes = useUtilityClasses(ownerState);
|
|
const checkboxElement = React.useRef(null);
|
|
const rippleRef = React.useRef(null);
|
|
const handleRef = (0, _utils.unstable_useForkRef)(checkboxElement, ref);
|
|
const element = apiRef.current.getCellElement(id, field);
|
|
const handleChange = event => {
|
|
const params = {
|
|
value: event.target.checked,
|
|
id
|
|
};
|
|
apiRef.current.publishEvent('rowSelectionCheckboxChange', params, event);
|
|
};
|
|
React.useLayoutEffect(() => {
|
|
if (tabIndex === 0 && element) {
|
|
element.tabIndex = -1;
|
|
}
|
|
}, [element, tabIndex]);
|
|
React.useEffect(() => {
|
|
if (hasFocus) {
|
|
const input = checkboxElement.current?.querySelector('input');
|
|
input?.focus({
|
|
preventScroll: true
|
|
});
|
|
} else if (rippleRef.current) {
|
|
// Only available in @mui/material v5.4.1 or later
|
|
rippleRef.current.stop({});
|
|
}
|
|
}, [hasFocus]);
|
|
const handleKeyDown = React.useCallback(event => {
|
|
if ((0, _keyboardUtils.isSpaceKey)(event.key)) {
|
|
// We call event.stopPropagation to avoid selecting the row and also scrolling to bottom
|
|
// TODO: Remove and add a check inside useGridKeyboardNavigation
|
|
event.stopPropagation();
|
|
}
|
|
}, []);
|
|
if (rowNode.type === 'footer' || rowNode.type === 'pinnedRow') {
|
|
return null;
|
|
}
|
|
const isSelectable = apiRef.current.isRowSelectable(id);
|
|
const label = apiRef.current.getLocaleText(isChecked ? 'checkboxSelectionUnselectRow' : 'checkboxSelectionSelectRow');
|
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(rootProps.slots.baseCheckbox, (0, _extends2.default)({
|
|
ref: handleRef,
|
|
tabIndex: tabIndex,
|
|
checked: isChecked,
|
|
onChange: handleChange,
|
|
className: classes.root,
|
|
inputProps: {
|
|
'aria-label': label
|
|
},
|
|
onKeyDown: handleKeyDown,
|
|
disabled: !isSelectable,
|
|
touchRippleRef: rippleRef
|
|
}, rootProps.slotProps?.baseCheckbox, other));
|
|
});
|
|
process.env.NODE_ENV !== "production" ? GridCellCheckboxForwardRef.propTypes = {
|
|
// ----------------------------- Warning --------------------------------
|
|
// | These PropTypes are generated from the TypeScript type definitions |
|
|
// | To update them edit the TypeScript types and run "yarn proptypes" |
|
|
// ----------------------------------------------------------------------
|
|
/**
|
|
* GridApi that let you manipulate the grid.
|
|
*/
|
|
api: _propTypes.default.object.isRequired,
|
|
/**
|
|
* The mode of the cell.
|
|
*/
|
|
cellMode: _propTypes.default.oneOf(['edit', 'view']).isRequired,
|
|
/**
|
|
* The column of the row that the current cell belongs to.
|
|
*/
|
|
colDef: _propTypes.default.object.isRequired,
|
|
/**
|
|
* The column field of the cell that triggered the event.
|
|
*/
|
|
field: _propTypes.default.string.isRequired,
|
|
/**
|
|
* A ref allowing to set imperative focus.
|
|
* It can be passed to the element that should receive focus.
|
|
* @ignore - do not document.
|
|
*/
|
|
focusElementRef: _propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.shape({
|
|
current: _propTypes.default.shape({
|
|
focus: _propTypes.default.func.isRequired
|
|
})
|
|
})]),
|
|
/**
|
|
* The cell value formatted with the column valueFormatter.
|
|
*/
|
|
formattedValue: _propTypes.default.any,
|
|
/**
|
|
* If true, the cell is the active element.
|
|
*/
|
|
hasFocus: _propTypes.default.bool.isRequired,
|
|
/**
|
|
* The grid row id.
|
|
*/
|
|
id: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]).isRequired,
|
|
/**
|
|
* If true, the cell is editable.
|
|
*/
|
|
isEditable: _propTypes.default.bool,
|
|
/**
|
|
* The row model of the row that the current cell belongs to.
|
|
*/
|
|
row: _propTypes.default.any.isRequired,
|
|
/**
|
|
* The node of the row that the current cell belongs to.
|
|
*/
|
|
rowNode: _propTypes.default.object.isRequired,
|
|
/**
|
|
* the tabIndex value.
|
|
*/
|
|
tabIndex: _propTypes.default.oneOf([-1, 0]).isRequired,
|
|
/**
|
|
* The cell value.
|
|
* If the column has `valueGetter`, use `params.row` to directly access the fields.
|
|
*/
|
|
value: _propTypes.default.any
|
|
} : void 0;
|
|
const GridCellCheckboxRenderer = exports.GridCellCheckboxRenderer = GridCellCheckboxForwardRef; |