@mui/x-data-grid
Version:
The community edition of the data grid component (MUI X).
408 lines (403 loc) • 15.1 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import * as React from 'react';
import { unstable_ownerDocument as ownerDocument, unstable_useEventCallback as useEventcallback } from '@mui/utils';
import { gridClasses } from '../../../constants/gridClasses';
import { useGridApiMethod } from '../../utils/useGridApiMethod';
import { useGridLogger } from '../../utils/useGridLogger';
import { useGridApiEventHandler } from '../../utils/useGridApiEventHandler';
import { isNavigationKey } from '../../../utils/keyboardUtils';
import { gridFocusCellSelector, unstable_gridFocusColumnGroupHeaderSelector } from './gridFocusStateSelector';
import { gridVisibleColumnDefinitionsSelector } from '../columns/gridColumnsSelector';
import { getVisibleRows } from '../../utils/useGridVisibleRows';
import { clamp } from '../../../utils/utils';
import { gridPinnedRowsSelector } from '../rows/gridRowsSelector';
export var focusStateInitializer = function focusStateInitializer(state) {
return _extends({}, state, {
focus: {
cell: null,
columnHeader: null,
columnHeaderFilter: null,
columnGroupHeader: null
},
tabIndex: {
cell: null,
columnHeader: null,
columnHeaderFilter: null,
columnGroupHeader: null
}
});
};
/**
* @requires useGridParamsApi (method)
* @requires useGridRows (method)
* @requires useGridEditing (event)
*/
export var useGridFocus = function useGridFocus(apiRef, props) {
var logger = useGridLogger(apiRef, 'useGridFocus');
var lastClickedCell = React.useRef(null);
var publishCellFocusOut = React.useCallback(function (cell, event) {
if (cell) {
// The row might have been deleted
if (apiRef.current.getRow(cell.id)) {
apiRef.current.publishEvent('cellFocusOut', apiRef.current.getCellParams(cell.id, cell.field), event);
}
}
}, [apiRef]);
var setCellFocus = React.useCallback(function (id, field) {
var focusedCell = gridFocusCellSelector(apiRef);
if ((focusedCell == null ? void 0 : focusedCell.id) === id && (focusedCell == null ? void 0 : focusedCell.field) === field) {
return;
}
apiRef.current.setState(function (state) {
logger.debug("Focusing on cell with id=".concat(id, " and field=").concat(field));
return _extends({}, state, {
tabIndex: {
cell: {
id: id,
field: field
},
columnHeader: null,
columnHeaderFilter: null,
columnGroupHeader: null
},
focus: {
cell: {
id: id,
field: field
},
columnHeader: null,
columnHeaderFilter: null,
columnGroupHeader: null
}
});
});
apiRef.current.forceUpdate();
// The row might have been deleted
if (!apiRef.current.getRow(id)) {
return;
}
if (focusedCell) {
// There's a focused cell but another cell was clicked
// Publishes an event to notify that the focus was lost
publishCellFocusOut(focusedCell, {});
}
apiRef.current.publishEvent('cellFocusIn', apiRef.current.getCellParams(id, field));
}, [apiRef, logger, publishCellFocusOut]);
var setColumnHeaderFocus = React.useCallback(function (field) {
var event = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var cell = gridFocusCellSelector(apiRef);
publishCellFocusOut(cell, event);
apiRef.current.setState(function (state) {
logger.debug("Focusing on column header with colIndex=".concat(field));
return _extends({}, state, {
tabIndex: {
columnHeader: {
field: field
},
columnHeaderFilter: null,
cell: null,
columnGroupHeader: null
},
focus: {
columnHeader: {
field: field
},
columnHeaderFilter: null,
cell: null,
columnGroupHeader: null
}
});
});
apiRef.current.forceUpdate();
}, [apiRef, logger, publishCellFocusOut]);
var setColumnHeaderFilterFocus = React.useCallback(function (field) {
var event = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var cell = gridFocusCellSelector(apiRef);
publishCellFocusOut(cell, event);
apiRef.current.setState(function (state) {
logger.debug("Focusing on column header filter with colIndex=".concat(field));
return _extends({}, state, {
tabIndex: {
columnHeader: null,
columnHeaderFilter: {
field: field
},
cell: null,
columnGroupHeader: null
},
focus: {
columnHeader: null,
columnHeaderFilter: {
field: field
},
cell: null,
columnGroupHeader: null
}
});
});
apiRef.current.forceUpdate();
}, [apiRef, logger, publishCellFocusOut]);
var setColumnGroupHeaderFocus = React.useCallback(function (field, depth) {
var event = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
var cell = gridFocusCellSelector(apiRef);
if (cell) {
apiRef.current.publishEvent('cellFocusOut', apiRef.current.getCellParams(cell.id, cell.field), event);
}
apiRef.current.setState(function (state) {
return _extends({}, state, {
tabIndex: {
columnGroupHeader: {
field: field,
depth: depth
},
columnHeader: null,
columnHeaderFilter: null,
cell: null
},
focus: {
columnGroupHeader: {
field: field,
depth: depth
},
columnHeader: null,
columnHeaderFilter: null,
cell: null
}
});
});
apiRef.current.forceUpdate();
}, [apiRef]);
var getColumnGroupHeaderFocus = React.useCallback(function () {
return unstable_gridFocusColumnGroupHeaderSelector(apiRef);
}, [apiRef]);
var moveFocusToRelativeCell = React.useCallback(function (id, field, direction) {
var columnIndexToFocus = apiRef.current.getColumnIndex(field);
var visibleColumns = gridVisibleColumnDefinitionsSelector(apiRef);
var currentPage = getVisibleRows(apiRef, {
pagination: props.pagination,
paginationMode: props.paginationMode
});
var pinnedRows = gridPinnedRowsSelector(apiRef);
// Include pinned rows as well
var currentPageRows = [].concat(pinnedRows.top || [], currentPage.rows, pinnedRows.bottom || []);
var rowIndexToFocus = currentPageRows.findIndex(function (row) {
return row.id === id;
});
if (direction === 'right') {
columnIndexToFocus += 1;
} else if (direction === 'left') {
columnIndexToFocus -= 1;
} else {
rowIndexToFocus += 1;
}
if (columnIndexToFocus >= visibleColumns.length) {
// Go to next row if we are after the last column
rowIndexToFocus += 1;
if (rowIndexToFocus < currentPageRows.length) {
// Go to first column of the next row if there's one more row
columnIndexToFocus = 0;
}
} else if (columnIndexToFocus < 0) {
// Go to previous row if we are before the first column
rowIndexToFocus -= 1;
if (rowIndexToFocus >= 0) {
// Go to last column of the previous if there's one more row
columnIndexToFocus = visibleColumns.length - 1;
}
}
rowIndexToFocus = clamp(rowIndexToFocus, 0, currentPageRows.length - 1);
var rowToFocus = currentPageRows[rowIndexToFocus];
if (!rowToFocus) {
return;
}
var colSpanInfo = apiRef.current.unstable_getCellColSpanInfo(rowToFocus.id, columnIndexToFocus);
if (colSpanInfo && colSpanInfo.spannedByColSpan) {
if (direction === 'left' || direction === 'below') {
columnIndexToFocus = colSpanInfo.leftVisibleCellIndex;
} else if (direction === 'right') {
columnIndexToFocus = colSpanInfo.rightVisibleCellIndex;
}
}
columnIndexToFocus = clamp(columnIndexToFocus, 0, visibleColumns.length - 1);
var columnToFocus = visibleColumns[columnIndexToFocus];
apiRef.current.setCellFocus(rowToFocus.id, columnToFocus.field);
}, [apiRef, props.pagination, props.paginationMode]);
var handleCellDoubleClick = React.useCallback(function (_ref) {
var id = _ref.id,
field = _ref.field;
apiRef.current.setCellFocus(id, field);
}, [apiRef]);
var handleCellKeyDown = React.useCallback(function (params, event) {
// GRID_CELL_NAVIGATION_KEY_DOWN handles the focus on Enter, Tab and navigation keys
if (event.key === 'Enter' || event.key === 'Tab' || event.key === 'Shift' || isNavigationKey(event.key)) {
return;
}
apiRef.current.setCellFocus(params.id, params.field);
}, [apiRef]);
var handleColumnHeaderFocus = React.useCallback(function (_ref2, event) {
var field = _ref2.field;
if (event.target !== event.currentTarget) {
return;
}
apiRef.current.setColumnHeaderFocus(field, event);
}, [apiRef]);
var handleColumnGroupHeaderFocus = React.useCallback(function (_ref3, event) {
var fields = _ref3.fields,
depth = _ref3.depth;
if (event.target !== event.currentTarget) {
return;
}
var focusedColumnGroup = unstable_gridFocusColumnGroupHeaderSelector(apiRef);
if (focusedColumnGroup !== null && focusedColumnGroup.depth === depth && fields.includes(focusedColumnGroup.field)) {
// This group cell has already been focused
return;
}
apiRef.current.setColumnGroupHeaderFocus(fields[0], depth, event);
}, [apiRef]);
var handleBlur = React.useCallback(function (_, event) {
var _event$relatedTarget;
if ((_event$relatedTarget = event.relatedTarget) != null && _event$relatedTarget.className.includes(gridClasses.columnHeader)) {
return;
}
logger.debug("Clearing focus");
apiRef.current.setState(function (state) {
return _extends({}, state, {
focus: {
cell: null,
columnHeader: null,
columnHeaderFilter: null,
columnGroupHeader: null
}
});
});
}, [logger, apiRef]);
var handleCellMouseDown = React.useCallback(function (params) {
lastClickedCell.current = params;
}, []);
var handleDocumentClick = React.useCallback(function (event) {
var cellParams = lastClickedCell.current;
lastClickedCell.current = null;
var focusedCell = gridFocusCellSelector(apiRef);
var canUpdateFocus = apiRef.current.unstable_applyPipeProcessors('canUpdateFocus', true, {
event: event,
cell: cellParams
});
if (!canUpdateFocus) {
return;
}
if (!focusedCell) {
if (cellParams) {
apiRef.current.setCellFocus(cellParams.id, cellParams.field);
}
return;
}
if ((cellParams == null ? void 0 : cellParams.id) === focusedCell.id && (cellParams == null ? void 0 : cellParams.field) === focusedCell.field) {
return;
}
var cellElement = apiRef.current.getCellElement(focusedCell.id, focusedCell.field);
if (cellElement != null && cellElement.contains(event.target)) {
return;
}
if (cellParams) {
apiRef.current.setCellFocus(cellParams.id, cellParams.field);
} else {
apiRef.current.setState(function (state) {
return _extends({}, state, {
focus: {
cell: null,
columnHeader: null,
columnHeaderFilter: null,
columnGroupHeader: null
}
});
});
apiRef.current.forceUpdate();
// There's a focused cell but another element (not a cell) was clicked
// Publishes an event to notify that the focus was lost
publishCellFocusOut(focusedCell, event);
}
}, [apiRef, publishCellFocusOut]);
var handleCellModeChange = React.useCallback(function (params) {
if (params.cellMode === 'view') {
return;
}
var cell = gridFocusCellSelector(apiRef);
if ((cell == null ? void 0 : cell.id) !== params.id || (cell == null ? void 0 : cell.field) !== params.field) {
apiRef.current.setCellFocus(params.id, params.field);
}
}, [apiRef]);
var handleRowSet = React.useCallback(function () {
var cell = gridFocusCellSelector(apiRef);
// If the focused cell is in a row which does not exist anymore, then remove the focus
if (cell && !apiRef.current.getRow(cell.id)) {
apiRef.current.setState(function (state) {
return _extends({}, state, {
focus: {
cell: null,
columnHeader: null,
columnHeaderFilter: null,
columnGroupHeader: null
}
});
});
}
}, [apiRef]);
var handlePaginationModelChange = useEventcallback(function () {
var currentFocusedCell = gridFocusCellSelector(apiRef);
if (!currentFocusedCell) {
return;
}
var currentPage = getVisibleRows(apiRef, {
pagination: props.pagination,
paginationMode: props.paginationMode
});
var rowIsInCurrentPage = currentPage.rows.find(function (row) {
return row.id === currentFocusedCell.id;
});
if (rowIsInCurrentPage) {
return;
}
var visibleColumns = gridVisibleColumnDefinitionsSelector(apiRef);
apiRef.current.setState(function (state) {
return _extends({}, state, {
tabIndex: {
cell: {
id: currentPage.rows[0].id,
field: visibleColumns[0].field
},
columnGroupHeader: null,
columnHeader: null,
columnHeaderFilter: null
}
});
});
});
var focusApi = {
setCellFocus: setCellFocus,
setColumnHeaderFocus: setColumnHeaderFocus,
setColumnHeaderFilterFocus: setColumnHeaderFilterFocus
};
var focusPrivateApi = {
moveFocusToRelativeCell: moveFocusToRelativeCell,
setColumnGroupHeaderFocus: setColumnGroupHeaderFocus,
getColumnGroupHeaderFocus: getColumnGroupHeaderFocus
};
useGridApiMethod(apiRef, focusApi, 'public');
useGridApiMethod(apiRef, focusPrivateApi, 'private');
React.useEffect(function () {
var doc = ownerDocument(apiRef.current.rootElementRef.current);
doc.addEventListener('mouseup', handleDocumentClick);
return function () {
doc.removeEventListener('mouseup', handleDocumentClick);
};
}, [apiRef, handleDocumentClick]);
useGridApiEventHandler(apiRef, 'columnHeaderBlur', handleBlur);
useGridApiEventHandler(apiRef, 'cellDoubleClick', handleCellDoubleClick);
useGridApiEventHandler(apiRef, 'cellMouseDown', handleCellMouseDown);
useGridApiEventHandler(apiRef, 'cellKeyDown', handleCellKeyDown);
useGridApiEventHandler(apiRef, 'cellModeChange', handleCellModeChange);
useGridApiEventHandler(apiRef, 'columnHeaderFocus', handleColumnHeaderFocus);
useGridApiEventHandler(apiRef, 'columnGroupHeaderFocus', handleColumnGroupHeaderFocus);
useGridApiEventHandler(apiRef, 'rowsSet', handleRowSet);
useGridApiEventHandler(apiRef, 'paginationModelChange', handlePaginationModelChange);
};