import "core-js/modules/es.symbol"; import "core-js/modules/es.symbol.description"; import "core-js/modules/es.symbol.iterator"; import "core-js/modules/es.array.iterator"; import "core-js/modules/es.object.to-string"; import "core-js/modules/es.regexp.to-string"; import "core-js/modules/es.string.iterator"; import "core-js/modules/web.dom-collections.iterator"; function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); } function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } function _iterableToArrayLimit(arr, i) { if (!(Symbol.iterator in Object(arr) || Object.prototype.toString.call(arr) === "[object Arguments]")) { return; } var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } import { getValidSelection } from './../utils'; import { transformSelectionToRowDistance } from './../../../selection/utils'; import * as C from './../../../i18n/constants'; export var KEY = 'remove_row'; export default function removeRowItem() { return { key: KEY, name: function name() { var selection = this.getSelected(); var pluralForm = 0; if (selection) { if (selection.length > 1) { pluralForm = 1; } else { var _selection$ = _slicedToArray(selection[0], 3), fromRow = _selection$[0], toRow = _selection$[2]; if (fromRow - toRow !== 0) { pluralForm = 1; } } } return this.getTranslatedPhrase(C.CONTEXTMENU_ITEMS_REMOVE_ROW, pluralForm); }, callback: function callback() { // TODO: Please keep in mind that below `1` may be improper. The table's way of work, before change `f1747b3912ea3b21fe423fd102ca94c87db81379` was restored. // There is still problem when removing more than one row. this.alter('remove_row', transformSelectionToRowDistance(this.getSelected()), 1, 'ContextMenu.removeRow'); }, disabled: function disabled() { var selected = getValidSelection(this); var totalRows = this.countRows(); if (!selected) { return true; } return this.selection.isSelectedByColumnHeader() || this.selection.isSelectedByCorner() || !totalRows; }, hidden: function hidden() { return !this.getSettings().allowRemoveRow; } }; }