(function ($) { // register namespace $.extend(true, window, { "Slick": { "CellExternalCopyManager": CellExternalCopyManager } }); function CellExternalCopyManager(options) { /* This manager enables users to copy/paste data from/to an external Spreadsheet application such as MS-Excel® or OpenOffice-Spreadsheet. Since it is not possible to access directly the clipboard in javascript, the plugin uses a trick to do it's job. After detecting the keystroke, we dynamically create a textarea where the browser copies/pastes the serialized data. options: copiedCellStyle : sets the css className used for copied cells. default : "copied" copiedCellStyleLayerKey : sets the layer key for setting css values of copied cells. default : "copy-manager" dataItemColumnValueExtractor : option to specify a custom column value extractor function dataItemColumnValueSetter : option to specify a custom column value setter function clipboardCommandHandler : option to specify a custom handler for paste actions includeHeaderWhenCopying : set to true and the plugin will take the name property from each column (which is usually what appears in your header) and put that as the first row of the text that's copied to the clipboard bodyElement: option to specify a custom DOM element which to will be added the hidden textbox. It's useful if the grid is inside a modal dialog. onCopyInit: optional handler to run when copy action initializes onCopySuccess: optional handler to run when copy action is complete newRowCreator: function to add rows to table if paste overflows bottom of table, if this function is not provided new rows will be ignored. readOnlyMode: suppresses paste headerColumnValueExtractor : option to specify a custom column header value extractor function */ var _grid; var _self = this; var _copiedRanges; var _options = options || {}; var _copiedCellStyleLayerKey = _options.copiedCellStyleLayerKey || "copy-manager"; var _copiedCellStyle = _options.copiedCellStyle || "copied"; var _clearCopyTI = 0; var _bodyElement = _options.bodyElement || document.body; var _onCopyInit = _options.onCopyInit || null; var _onCopySuccess = _options.onCopySuccess || null; var keyCodes = { 'C': 67, 'V': 86, 'ESC': 27, 'INSERT': 45 }; function init(grid) { _grid = grid; _grid.onKeyDown.subscribe(handleKeyDown); // we need a cell selection model var cellSelectionModel = grid.getSelectionModel(); if (!cellSelectionModel){ throw new Error("Selection model is mandatory for this plugin. Please set a selection model on the grid before adding this plugin: grid.setSelectionModel(new Slick.CellSelectionModel())"); } // we give focus on the grid when a selection is done on it. // without this, if the user selects a range of cell without giving focus on a particular cell, the grid doesn't get the focus and key stroke handles (ctrl+c) don't work cellSelectionModel.onSelectedRangesChanged.subscribe(function(e, args){ _grid.focus(); }); } function destroy() { _grid.onKeyDown.unsubscribe(handleKeyDown); } function getHeaderValueForColumn(columnDef) { if (_options.headerColumnValueExtractor) { var val = _options.headerColumnValueExtractor(columnDef); if (val) { return val; } } return columnDef.name; } function getDataItemValueForColumn(item, columnDef, e) { if (_options.dataItemColumnValueExtractor) { var val = _options.dataItemColumnValueExtractor(item, columnDef); if (val) { return val; } } var retVal = ''; // if a custom getter is not defined, we call serializeValue of the editor to serialize if (columnDef.editor){ var editorArgs = { 'container':$("

"), // a dummy container 'column':columnDef, 'position':{'top':0, 'left':0}, // a dummy position required by some editors 'grid':_grid, 'event':e }; var editor = new columnDef.editor(editorArgs); editor.loadValue(item); retVal = editor.serializeValue(); editor.destroy(); } else { retVal = item[columnDef.field]; } return retVal; } function setDataItemValueForColumn(item, columnDef, value) { if (columnDef.denyPaste) { return null; } if (_options.dataItemColumnValueSetter) { return _options.dataItemColumnValueSetter(item, columnDef, value); } // if a custom setter is not defined, we call applyValue of the editor to unserialize if (columnDef.editor){ var editorArgs = { 'container':$("body"), // a dummy container 'column':columnDef, 'position':{'top':0, 'left':0}, // a dummy position required by some editors 'grid':_grid }; var editor = new columnDef.editor(editorArgs); editor.loadValue(item); editor.applyValue(item, value); editor.destroy(); } else { item[columnDef.field] = value; } } function _createTextBox(innerText){ var ta = document.createElement('textarea'); ta.style.position = 'absolute'; ta.style.left = '-1000px'; ta.style.top = document.body.scrollTop + 'px'; ta.value = innerText; _bodyElement.appendChild(ta); ta.select(); return ta; } function _decodeTabularData(_grid, ta){ var columns = _grid.getColumns(); var clipText = ta.value; var clipRows = clipText.split(/[\n\f\r]/); // trim trailing CR if present if (clipRows[clipRows.length - 1]=="") { clipRows.pop(); } var clippedRange = []; var j = 0; _bodyElement.removeChild(ta); for (var i=0; i _grid.getDataLength(); if (_options.newRowCreator && overflowsBottomOfGrid) { var newRowsNeeded = activeRow + destH - _grid.getDataLength(); _options.newRowCreator(newRowsNeeded); } var clipCommand = { isClipboardCommand: true, clippedRange: clippedRange, oldValues: [], cellExternalCopyManager: _self, _options: _options, setDataItemValueForColumn: setDataItemValueForColumn, markCopySelection: markCopySelection, oneCellToMultiple: oneCellToMultiple, activeRow: activeRow, activeCell: activeCell, destH: destH, destW: destW, maxDestY: _grid.getDataLength(), maxDestX: _grid.getColumns().length, h: 0, w: 0, execute: function() { this.h=0; for (var y = 0; y < this.destH; y++){ this.oldValues[y] = []; this.w=0; this.h++; for (var x = 0; x < this.destW; x++){ this.w++; var desty = activeRow + y; var destx = activeCell + x; if (desty < this.maxDestY && destx < this.maxDestX ) { var nd = _grid.getCellNode(desty, destx); var dt = _grid.getDataItem(desty); this.oldValues[y][x] = dt[columns[destx]['field']]; if (oneCellToMultiple) this.setDataItemValueForColumn(dt, columns[destx], clippedRange[0][0]); else this.setDataItemValueForColumn(dt, columns[destx], clippedRange[y] ? clippedRange[y][x] : ''); _grid.updateCell(desty, destx); _grid.onCellChange.notify({ row: desty, cell: destx, item: dt, grid: _grid }); } } } var bRange = { 'fromCell': activeCell, 'fromRow': activeRow, 'toCell': activeCell+this.w-1, 'toRow': activeRow+this.h-1 } this.markCopySelection([bRange]); _grid.getSelectionModel().setSelectedRanges([bRange]); this.cellExternalCopyManager.onPasteCells.notify({ranges: [bRange]}); }, undo: function() { for (var y = 0; y < this.destH; y++){ for (var x = 0; x < this.destW; x++){ var desty = activeRow + y; var destx = activeCell + x; if (desty < this.maxDestY && destx < this.maxDestX ) { var nd = _grid.getCellNode(desty, destx); var dt = _grid.getDataItem(desty); if (oneCellToMultiple) this.setDataItemValueForColumn(dt, columns[destx], this.oldValues[0][0]); else this.setDataItemValueForColumn(dt, columns[destx], this.oldValues[y][x]); _grid.updateCell(desty, destx); _grid.onCellChange.notify({ row: desty, cell: destx, item: dt, grid: _grid }); } } } var bRange = { 'fromCell': activeCell, 'fromRow': activeRow, 'toCell': activeCell+this.w-1, 'toRow': activeRow+this.h-1 } this.markCopySelection([bRange]); _grid.getSelectionModel().setSelectedRanges([bRange]); this.cellExternalCopyManager.onPasteCells.notify({ranges: [bRange]}); if(addRows > 1){ var d = _grid.getData(); for(; addRows > 1; addRows--) d.splice(d.length - 1, 1); _grid.setData(d); _grid.render(); } } }; if(_options.clipboardCommandHandler) { _options.clipboardCommandHandler(clipCommand); } else { clipCommand.execute(); } } function handleKeyDown(e, args) { var ranges; if (!_grid.getEditorLock().isActive() || _grid.getOptions().autoEdit) { if (e.which == keyCodes.ESC) { if (_copiedRanges) { e.preventDefault(); clearCopySelection(); _self.onCopyCancelled.notify({ranges: _copiedRanges}); _copiedRanges = null; } } if ((e.which === keyCodes.C || e.which === keyCodes.INSERT) && (e.ctrlKey || e.metaKey) && !e.shiftKey) { // CTRL+C or CTRL+INS if (_onCopyInit) { _onCopyInit.call(); } ranges = _grid.getSelectionModel().getSelectedRanges(); if (ranges.length != 0) { _copiedRanges = ranges; markCopySelection(ranges); _self.onCopyCells.notify({ranges: ranges}); var columns = _grid.getColumns(); var clipText = ""; for (var rg = 0; rg < ranges.length; rg++){ var range = ranges[rg]; var clipTextRows = []; for (var i=range.fromRow; i< range.toRow+1 ; i++){ var clipTextCells = []; var dt = _grid.getDataItem(i); if (clipTextRows == "" && _options.includeHeaderWhenCopying) { var clipTextHeaders = []; for (var j = range.fromCell; j < range.toCell + 1 ; j++) { if (columns[j].name.length > 0) clipTextHeaders.push(getHeaderValueForColumn(columns[j])); } clipTextRows.push(clipTextHeaders.join("\t")); } for (var j=range.fromCell; j< range.toCell+1 ; j++){ clipTextCells.push(getDataItemValueForColumn(dt, columns[j], e)); } clipTextRows.push(clipTextCells.join("\t")); } clipText += clipTextRows.join("\r\n") + "\r\n"; } if(window.clipboardData) { window.clipboardData.setData("Text", clipText); return true; } else { var focusEl = document.activeElement; var ta = _createTextBox(clipText); ta.focus(); setTimeout(function(){ _bodyElement.removeChild(ta); // restore focus if (focusEl) focusEl.focus(); else console.log("Not element to restore focus to after copy?"); }, 100); if (_onCopySuccess) { var rowCount = 0; // If it's cell selection, use the toRow/fromRow fields if (ranges.length === 1) { rowCount = (ranges[0].toRow + 1) - ranges[0].fromRow; } else { rowCount = ranges.length; } _onCopySuccess.call(this, rowCount); } return false; } } } if (!_options.readOnlyMode && ( (e.which === keyCodes.V && (e.ctrlKey || e.metaKey) && !e.shiftKey) || (e.which === keyCodes.INSERT && e.shiftKey && !e.ctrlKey) )) { // CTRL+V or Shift+INS var ta = _createTextBox(''); setTimeout(function(){ _decodeTabularData(_grid, ta); }, 100); return false; } } } function markCopySelection(ranges) { clearCopySelection(); var columns = _grid.getColumns(); var hash = {}; for (var i = 0; i < ranges.length; i++) { for (var j = ranges[i].fromRow; j <= ranges[i].toRow; j++) { hash[j] = {}; for (var k = ranges[i].fromCell; k <= ranges[i].toCell && k