handsontable
Version:
Handsontable is a JavaScript Data Grid available for React, Angular and Vue.
36 lines (35 loc) • 863 B
JavaScript
import * as C from "../../../i18n/constants.mjs";
/**
* @param {CopyPaste} copyPastePlugin The plugin instance.
* @returns {object}
*/
export default function cutItem(copyPastePlugin) {
return {
key: 'cut',
name() {
return this.getTranslatedPhrase(C.CONTEXTMENU_ITEMS_CUT);
},
callback() {
copyPastePlugin.cut();
},
disabled() {
if (this.countRows() === 0 || this.countCols() === 0) {
return true;
}
const range = this.getSelectedRangeActive();
if (!range) {
return true;
}
if (range.isSingleHeader()) {
return true;
}
const selected = this.getSelected();
// Disable for no selection or for non-contiquous selection.
if (!selected || selected.length > 1) {
return true;
}
return false;
},
hidden: false
};
}