UNPKG

handsontable

Version:

Handsontable is a JavaScript Data Grid available for React, Angular and Vue.

31 lines 1.23 kB
import * as C from "../../../i18n/constants.mjs"; /** * @param {Comments} plugin The Comments plugin instance. * @returns {object} */ export default function addEditCommentItem(plugin) { return { key: 'commentsAddEdit', name() { var _this$getSelectedRang; const highlight = (_this$getSelectedRang = this.getSelectedRangeActive()) === null || _this$getSelectedRang === void 0 ? void 0 : _this$getSelectedRang.highlight; if (highlight !== null && highlight !== void 0 && highlight.isCell() && plugin.getCommentAtCell(highlight.row, highlight.col)) { return this.getTranslatedPhrase(C.CONTEXTMENU_ITEMS_EDIT_COMMENT); } return this.getTranslatedPhrase(C.CONTEXTMENU_ITEMS_ADD_COMMENT); }, callback() { const range = this.getSelectedRangeActive(); plugin.setRange(range); plugin.show(); plugin.focusEditor(); }, disabled() { const range = this.getSelectedRangeActive(); if (!range || range.highlight.isHeader() || this.selection.isEntireRowSelected() && this.selection.isEntireColumnSelected() || this.countRenderedRows() === 0 || this.countRenderedCols() === 0) { return true; } return false; } }; }