import { getValidSelection } from './../utils'; import * as C from './../../../i18n/constants'; export var KEY = 'row_above'; export default function rowAboveItem() { return { key: KEY, name: function name() { return this.getTranslatedPhrase(C.CONTEXTMENU_ITEMS_ROW_ABOVE); }, callback: function callback(key, normalizedSelection) { var latestSelection = normalizedSelection[Math.max(normalizedSelection.length - 1, 0)]; this.alter('insert_row', latestSelection.start.row, 1, 'ContextMenu.rowAbove'); }, disabled: function disabled() { var selected = getValidSelection(this); if (!selected) { return true; } return this.selection.isSelectedByColumnHeader() || this.countRows() >= this.getSettings().maxRows; }, hidden: function hidden() { return !this.getSettings().allowInsertRow; } }; }