handsontable
Version:
Handsontable is a JavaScript Data Grid available for React, Angular and Vue.
32 lines (31 loc) • 1 kB
JavaScript
import * as C from "../../../i18n/constants.mjs";
export const KEY = 'row_above';
/**
* @returns {object}
*/
export default function rowAboveItem() {
return {
key: KEY,
name() {
return this.getTranslatedPhrase(C.CONTEXTMENU_ITEMS_ROW_ABOVE);
},
callback() {
const activeSelection = this.getSelectedRangeActive().getTopLeftCorner();
this.alter('insert_row_above', activeSelection.row, 1, 'ContextMenu.rowAbove');
},
disabled() {
const range = this.getSelectedRangeActive();
if (!range || this.selection.isSelectedByColumnHeader() || range.isSingleHeader() && range.highlight.row < 0 || this.countSourceRows() >= this.getSettings().maxRows) {
return true;
}
if (this.selection.isSelectedByCorner()) {
// Enable "Insert row above" only when there is at least one row.
return this.countRows() === 0;
}
return false;
},
hidden() {
return !this.getSettings().allowInsertRow;
}
};
}