UNPKG

@mui/x-data-grid

Version:

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

104 lines (100 loc) 3.85 kB
"use strict"; var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default; Object.defineProperty(exports, "__esModule", { value: true }); exports.useGridClipboard = void 0; var React = _interopRequireWildcard(require("react")); var _utils = require("../../utils"); var _gridFocusStateSelector = require("../focus/gridFocusStateSelector"); var _csvSerializer = require("../export/serializers/csvSerializer"); var _keyboardUtils = require("../../../utils/keyboardUtils"); function writeToClipboardPolyfill(data) { const span = document.createElement('span'); span.style.whiteSpace = 'pre'; span.style.userSelect = 'all'; span.style.opacity = '0px'; span.textContent = data; document.body.appendChild(span); const range = document.createRange(); range.selectNode(span); const selection = window.getSelection(); selection.removeAllRanges(); selection.addRange(range); try { document.execCommand('copy'); } finally { document.body.removeChild(span); } } function copyToClipboard(data) { if (navigator.clipboard) { navigator.clipboard.writeText(data).catch(() => { writeToClipboardPolyfill(data); }); } else { writeToClipboardPolyfill(data); } } function hasNativeSelection(element) { // When getSelection is called on an <iframe> that is not displayed Firefox will return null. if (window.getSelection()?.toString()) { return true; } // window.getSelection() returns an empty string in Firefox for selections inside a form element. // See: https://bugzilla.mozilla.org/show_bug.cgi?id=85686. // Instead, we can use element.selectionStart that is only defined on form elements. if (element && (element.selectionEnd || 0) - (element.selectionStart || 0) > 0) { return true; } return false; } /** * @requires useGridCsvExport (method) * @requires useGridSelection (method) */ const useGridClipboard = (apiRef, props) => { const ignoreValueFormatterProp = props.ignoreValueFormatterDuringExport; const ignoreValueFormatter = (typeof ignoreValueFormatterProp === 'object' ? ignoreValueFormatterProp?.clipboardExport : ignoreValueFormatterProp) || false; const clipboardCopyCellDelimiter = props.clipboardCopyCellDelimiter; const handleCopy = React.useCallback(event => { if (!(0, _keyboardUtils.isCopyShortcut)(event)) { return; } // Do nothing if there's a native selection if (hasNativeSelection(event.target)) { return; } let textToCopy = ''; const selectedRows = apiRef.current.getSelectedRows(); if (selectedRows.size > 0) { textToCopy = apiRef.current.getDataAsCsv({ includeHeaders: false, delimiter: clipboardCopyCellDelimiter, shouldAppendQuotes: false, escapeFormulas: false }); } else { const focusedCell = (0, _gridFocusStateSelector.gridFocusCellSelector)(apiRef); if (focusedCell) { const cellParams = apiRef.current.getCellParams(focusedCell.id, focusedCell.field); textToCopy = (0, _csvSerializer.serializeCellValue)(cellParams, { csvOptions: { delimiter: clipboardCopyCellDelimiter, shouldAppendQuotes: false, escapeFormulas: false }, ignoreValueFormatter }); } } textToCopy = apiRef.current.unstable_applyPipeProcessors('clipboardCopy', textToCopy); if (textToCopy) { copyToClipboard(textToCopy); apiRef.current.publishEvent('clipboardCopy', textToCopy); } }, [apiRef, ignoreValueFormatter, clipboardCopyCellDelimiter]); (0, _utils.useGridNativeEventListener)(apiRef, () => apiRef.current.rootElementRef.current, 'keydown', handleCopy); (0, _utils.useGridApiOptionHandler)(apiRef, 'clipboardCopy', props.onClipboardCopy); }; exports.useGridClipboard = useGridClipboard;