devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
2,204 lines • 100 kB
JavaScript
/**
* DevExtreme (esm/ui/grid_core/ui.grid_core.editing.js)
* Version: 21.2.3
* Build date: Thu Oct 28 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import _extends from "@babel/runtime/helpers/esm/extends";
import $ from "../../core/renderer";
import domAdapter from "../../core/dom_adapter";
import eventsEngine from "../../events/core/events_engine";
import Guid from "../../core/guid";
import {
resetActiveElement
} from "../../core/utils/dom";
import {
isDefined,
isObject,
isFunction,
isEmptyObject
} from "../../core/utils/type";
import {
each
} from "../../core/utils/iterator";
import {
extend
} from "../../core/utils/extend";
import modules from "./ui.grid_core.modules";
import {
name as clickEventName
} from "../../events/click";
import pointerEvents from "../../events/pointer";
import gridCoreUtils from "./ui.grid_core.utils";
import {
createObjectWithChanges
} from "../../data/array_utils";
import {
addNamespace
} from "../../events/utils/index";
import {
confirm
} from "../dialog";
import messageLocalization from "../../localization/message";
import devices from "../../core/devices";
import {
when,
Deferred,
fromPromise
} from "../../core/utils/deferred";
import {
equalByValue,
noop
} from "../../core/utils/common";
import * as iconUtils from "../../core/utils/icon";
import {
EDITOR_CELL_CLASS,
ROW_CLASS,
EDIT_FORM_CLASS,
DATA_EDIT_DATA_INSERT_TYPE,
DATA_EDIT_DATA_REMOVE_TYPE,
EDITING_POPUP_OPTION_NAME,
EDITING_EDITROWKEY_OPTION_NAME,
EDITING_EDITCOLUMNNAME_OPTION_NAME,
TARGET_COMPONENT_NAME,
EDITORS_INPUT_SELECTOR,
FOCUSABLE_ELEMENT_SELECTOR,
EDIT_MODE_ROW,
EDIT_MODES,
ROW_BASED_MODES,
FIRST_NEW_ROW_POSITION,
LAST_NEW_ROW_POSITION,
PAGE_BOTTOM_NEW_ROW_POSITION,
PAGE_TOP_NEW_ROW_POSITION,
VIEWPORT_BOTTOM_NEW_ROW_POSITION,
VIEWPORT_TOP_NEW_ROW_POSITION
} from "./ui.grid_core.editing_constants";
var READONLY_CLASS = "readonly";
var LINK_CLASS = "dx-link";
var ROW_SELECTED = "dx-selection";
var EDIT_BUTTON_CLASS = "dx-edit-button";
var COMMAND_EDIT_CLASS = "dx-command-edit";
var COMMAND_EDIT_WITH_ICONS_CLASS = COMMAND_EDIT_CLASS + "-with-icons";
var INSERT_INDEX = "__DX_INSERT_INDEX__";
var ROW_INSERTED = "dx-row-inserted";
var ROW_MODIFIED = "dx-row-modified";
var CELL_MODIFIED = "dx-cell-modified";
var EDITING_NAMESPACE = "dxDataGridEditing";
var CELL_FOCUS_DISABLED_CLASS = "dx-cell-focus-disabled";
var DATA_EDIT_DATA_UPDATE_TYPE = "update";
var DEFAULT_START_EDIT_ACTION = "click";
var EDIT_LINK_CLASS = {
save: "dx-link-save",
cancel: "dx-link-cancel",
edit: "dx-link-edit",
undelete: "dx-link-undelete",
delete: "dx-link-delete",
add: "dx-link-add"
};
var EDIT_ICON_CLASS = {
save: "save",
cancel: "revert",
edit: "edit",
undelete: "revert",
delete: "trash",
add: "add"
};
var METHOD_NAMES = {
edit: "editRow",
delete: "deleteRow",
undelete: "undeleteRow",
save: "saveEditData",
cancel: "cancelEditData",
add: "addRowByRowIndex"
};
var ACTION_OPTION_NAMES = {
add: "allowAdding",
edit: "allowUpdating",
delete: "allowDeleting"
};
var BUTTON_NAMES = ["edit", "save", "cancel", "delete", "undelete"];
var EDITING_CHANGES_OPTION_NAME = "editing.changes";
var createFailureHandler = function(deferred) {
return function(arg) {
var error = arg instanceof Error ? arg : new Error(arg && String(arg) || "Unknown error");
deferred.reject(error)
}
};
var isEditingCell = function(isEditRow, cellOptions) {
return cellOptions.isEditing || isEditRow && cellOptions.column.allowEditing
};
var isEditingOrShowEditorAlwaysDataCell = function(isEditRow, cellOptions) {
var isCommandCell = !!cellOptions.column.command;
var isEditing = isEditingCell(isEditRow, cellOptions);
var isEditorCell = !isCommandCell && (isEditing || cellOptions.column.showEditorAlways);
return "data" === cellOptions.rowType && isEditorCell
};
var EditingController = modules.ViewController.inherit(function() {
var getButtonIndex = (buttons, name) => {
var result = -1;
buttons.some((button, index) => {
if (getButtonName(button) === name) {
result = index;
return true
}
});
return result
};
function getButtonName(button) {
return isObject(button) ? button.name : button
}
return {
init: function() {
this._columnsController = this.getController("columns");
this._dataController = this.getController("data");
this._rowsView = this.getView("rowsView");
this._lastOperation = null;
if (this._deferreds) {
this._deferreds.forEach(d => d.reject("cancel"))
}
this._deferreds = [];
if (!this._dataChangedHandler) {
this._dataChangedHandler = this._handleDataChanged.bind(this);
this._dataController.changed.add(this._dataChangedHandler)
}
if (!this._saveEditorHandler) {
this.createAction("onInitNewRow", {
excludeValidators: ["disabled", "readOnly"]
});
this.createAction("onRowInserting", {
excludeValidators: ["disabled", "readOnly"]
});
this.createAction("onRowInserted", {
excludeValidators: ["disabled", "readOnly"]
});
this.createAction("onEditingStart", {
excludeValidators: ["disabled", "readOnly"]
});
this.createAction("onRowUpdating", {
excludeValidators: ["disabled", "readOnly"]
});
this.createAction("onRowUpdated", {
excludeValidators: ["disabled", "readOnly"]
});
this.createAction("onRowRemoving", {
excludeValidators: ["disabled", "readOnly"]
});
this.createAction("onRowRemoved", {
excludeValidators: ["disabled", "readOnly"]
});
this.createAction("onSaved", {
excludeValidators: ["disabled", "readOnly"]
});
this.createAction("onSaving", {
excludeValidators: ["disabled", "readOnly"]
});
this.createAction("onEditCanceling", {
excludeValidators: ["disabled", "readOnly"]
});
this.createAction("onEditCanceled", {
excludeValidators: ["disabled", "readOnly"]
})
}
this._updateEditColumn();
this._updateEditButtons();
if (!this._internalState) {
this._internalState = []
}
this.component._optionsByReference[EDITING_EDITROWKEY_OPTION_NAME] = true;
this.component._optionsByReference[EDITING_CHANGES_OPTION_NAME] = true
},
getEditMode: function() {
var editMode = this.option("editing.mode");
if (-1 !== EDIT_MODES.indexOf(editMode)) {
return editMode
}
return EDIT_MODE_ROW
},
_getDefaultEditorTemplate: function() {
return (container, options) => {
var $editor = $("<div>").appendTo(container);
this.getController("editorFactory").createEditor($editor, extend({}, options.column, {
value: options.value,
setValue: options.setValue,
row: options.row,
parentType: "dataRow",
width: null,
readOnly: !options.setValue,
isOnForm: options.isOnForm,
id: options.id
}))
}
},
getChanges: function() {
return this.option(EDITING_CHANGES_OPTION_NAME)
},
getInsertRowCount: function() {
var changes = this.option(EDITING_CHANGES_OPTION_NAME);
return changes.filter(change => "insert" === change.type).length
},
resetChanges: function() {
var changes = this.getChanges();
var needReset = null === changes || void 0 === changes ? void 0 : changes.length;
if (needReset) {
this._silentOption(EDITING_CHANGES_OPTION_NAME, [])
}
},
_getInternalData: function(key) {
return this._internalState.filter(item => equalByValue(item.key, key))[0]
},
_addInternalData: function(params) {
var internalData = this._getInternalData(params.key);
if (internalData) {
return extend(internalData, params)
}
this._internalState.push(params);
return params
},
_getOldData: function(key) {
var _this$_getInternalDat;
return null === (_this$_getInternalDat = this._getInternalData(key)) || void 0 === _this$_getInternalDat ? void 0 : _this$_getInternalDat.oldData
},
getUpdatedData: function(data) {
var key = this._dataController.keyOf(data);
var changes = this.getChanges();
var editIndex = gridCoreUtils.getIndexByKey(key, changes);
if (changes[editIndex]) {
return createObjectWithChanges(data, changes[editIndex].data)
}
return data
},
getInsertedData: function() {
return this.getChanges().filter(change => change.data && change.type === DATA_EDIT_DATA_INSERT_TYPE).map(change => change.data)
},
getRemovedData: function() {
return this.getChanges().filter(change => this._getOldData(change.key) && change.type === DATA_EDIT_DATA_REMOVE_TYPE).map(change => this._getOldData(change.key))
},
_fireDataErrorOccurred: function(arg) {
if ("cancel" === arg) {
return
}
var $popupContent = this.getPopupContent();
this._dataController.dataErrorOccurred.fire(arg, $popupContent)
},
_needToCloseEditableCell: noop,
_closeEditItem: noop,
_handleDataChanged: noop,
_isDefaultButtonVisible: function(button, options) {
var result = true;
switch (button.name) {
case "delete":
result = this.allowDeleting(options);
break;
case "undelete":
result = false
}
return result
},
_isButtonVisible: function(button, options) {
var visible = button.visible;
if (!isDefined(visible)) {
return this._isDefaultButtonVisible(button, options)
}
return isFunction(visible) ? visible.call(button, {
component: options.component,
row: options.row,
column: options.column
}) : visible
},
_isButtonDisabled: function(button, options) {
var disabled = button.disabled;
return isFunction(disabled) ? disabled.call(button, {
component: options.component,
row: options.row,
column: options.column
}) : !!disabled
},
_getButtonConfig: function(button, options) {
var config = isObject(button) ? button : {};
var buttonName = getButtonName(button);
var editingTexts = (options => {
var editingTexts = options.component.option("editing.texts") || {};
return {
save: editingTexts.saveRowChanges,
cancel: editingTexts.cancelRowChanges,
edit: editingTexts.editRow,
undelete: editingTexts.undeleteRow,
delete: editingTexts.deleteRow,
add: editingTexts.addRowToNode
}
})(options);
var methodName = METHOD_NAMES[buttonName];
var editingOptions = this.option("editing");
var actionName = ACTION_OPTION_NAMES[buttonName];
var allowAction = actionName ? editingOptions[actionName] : true;
return extend({
name: buttonName,
text: editingTexts[buttonName],
cssClass: EDIT_LINK_CLASS[buttonName],
onClick: e => {
var event = e.event;
event.stopPropagation();
event.preventDefault();
setTimeout(() => {
options.row && allowAction && this[methodName] && this[methodName](options.row.rowIndex)
})
}
}, config)
},
_getEditingButtons: function(options) {
var buttonIndex;
var haveCustomButtons = !!options.column.buttons;
var buttons = (options.column.buttons || []).slice();
if (haveCustomButtons) {
buttonIndex = getButtonIndex(buttons, "edit");
if (buttonIndex >= 0) {
if (getButtonIndex(buttons, "save") < 0) {
buttons.splice(buttonIndex + 1, 0, "save")
}
if (getButtonIndex(buttons, "cancel") < 0) {
buttons.splice(getButtonIndex(buttons, "save") + 1, 0, "cancel")
}
}
buttonIndex = getButtonIndex(buttons, "delete");
if (buttonIndex >= 0 && getButtonIndex(buttons, "undelete") < 0) {
buttons.splice(buttonIndex + 1, 0, "undelete")
}
} else {
buttons = BUTTON_NAMES.slice()
}
return buttons.map(button => this._getButtonConfig(button, options))
},
_renderEditingButtons: function($container, buttons, options, change) {
buttons.forEach(button => {
if (this._isButtonVisible(button, options)) {
this._createButton($container, button, options, change)
}
})
},
_getEditCommandCellTemplate: function() {
return (container, options, change) => {
var $container = $(container);
if ("data" === options.rowType) {
var buttons = this._getEditingButtons(options);
this._renderEditingButtons($container, buttons, options, change);
options.watch && options.watch(() => buttons.map(button => this._isButtonVisible(button, options)), () => {
$container.empty();
this._renderEditingButtons($container, buttons, options)
})
} else {
gridCoreUtils.setEmptyText($container)
}
}
},
isRowBasedEditMode: function() {
var editMode = this.getEditMode();
return -1 !== ROW_BASED_MODES.indexOf(editMode)
},
getFirstEditableColumnIndex: function() {
var columnsController = this.getController("columns");
var columnIndex;
var visibleColumns = columnsController.getVisibleColumns();
each(visibleColumns, (function(index, column) {
if (column.allowEditing) {
columnIndex = index;
return false
}
}));
return columnIndex
},
getFirstEditableCellInRow: function(rowIndex) {
var rowsView = this.getView("rowsView");
return rowsView && rowsView._getCellElement(rowIndex ? rowIndex : 0, this.getFirstEditableColumnIndex())
},
getFocusedCellInRow: function(rowIndex) {
return this.getFirstEditableCellInRow(rowIndex)
},
getIndexByKey: function(key, items) {
return gridCoreUtils.getIndexByKey(key, items)
},
hasChanges: function(rowIndex) {
var changes = this.getChanges();
var result = false;
for (var i = 0; i < (null === changes || void 0 === changes ? void 0 : changes.length); i++) {
if (changes[i].type && (!isDefined(rowIndex) || this._dataController.getRowIndexByKey(changes[i].key) === rowIndex)) {
result = true;
break
}
}
return result
},
dispose: function() {
this.callBase();
clearTimeout(this._inputFocusTimeoutID);
eventsEngine.off(domAdapter.getDocument(), pointerEvents.up, this._pointerUpEditorHandler);
eventsEngine.off(domAdapter.getDocument(), pointerEvents.down, this._pointerDownEditorHandler);
eventsEngine.off(domAdapter.getDocument(), clickEventName, this._saveEditorHandler)
},
optionChanged: function(args) {
if ("editing" === args.name) {
var fullName = args.fullName;
if (fullName === EDITING_EDITROWKEY_OPTION_NAME) {
this._handleEditRowKeyChange(args)
} else if (fullName === EDITING_CHANGES_OPTION_NAME) {
this._handleChangesChange(args)
} else if (!args.handled) {
this._columnsController.reinit();
this.init();
this.resetChanges();
this._resetEditColumnName();
this._resetEditRowKey()
}
args.handled = true
} else {
this.callBase(args)
}
},
_handleEditRowKeyChange: function(args) {
var rowIndex = this._dataController.getRowIndexByKey(args.value);
var oldRowIndexCorrection = this._getEditRowIndexCorrection();
var oldRowIndex = this._dataController.getRowIndexByKey(args.previousValue) + oldRowIndexCorrection;
if (isDefined(args.value)) {
if (args.value !== args.previousValue) {
this._editRowFromOptionChanged(rowIndex, oldRowIndex)
}
} else {
this.cancelEditData()
}
},
_handleChangesChange: function(args) {
var dataController = this._dataController;
if (!args.value.length && !args.previousValue.length) {
return
}
this._processInsertChanges(args.value);
dataController.updateItems({
repaintChangesOnly: true
})
},
_processInsertChanges: function(changes) {
changes.forEach(change => {
if ("insert" === change.type) {
this._addInsertInfo(change)
}
})
},
publicMethods: function() {
return ["addRow", "deleteRow", "undeleteRow", "editRow", "saveEditData", "cancelEditData", "hasEditData"]
},
refresh: function(isPageChanged) {
if (!isDefined(this._pageIndex)) {
return
}
this._refreshCore(isPageChanged)
},
_refreshCore: noop,
isEditing: function() {
var isEditRowKeyDefined = isDefined(this.option(EDITING_EDITROWKEY_OPTION_NAME));
return isEditRowKeyDefined
},
isEditRow: function() {
return false
},
_setEditRowKey: function(value, silent) {
if (silent) {
this._silentOption(EDITING_EDITROWKEY_OPTION_NAME, value)
} else {
this.option(EDITING_EDITROWKEY_OPTION_NAME, value)
}
},
_setEditRowKeyByIndex: function(rowIndex, silent) {
var key = this._dataController.getKeyByRowIndex(rowIndex);
if (void 0 === key) {
this._dataController.fireError("E1043");
return
}
this._setEditRowKey(key, silent)
},
getEditRowIndex: function() {
return this._getVisibleEditRowIndex()
},
getEditFormRowIndex: function() {
return -1
},
_isEditRowByIndex(rowIndex) {
var key = this._dataController.getKeyByRowIndex(rowIndex);
var isKeyEqual = isDefined(key) && equalByValue(this.option(EDITING_EDITROWKEY_OPTION_NAME), key);
if (isKeyEqual) {
return this._getVisibleEditRowIndex() === rowIndex
}
return isKeyEqual
},
isEditCell: function(visibleRowIndex, columnIndex) {
return this._isEditRowByIndex(visibleRowIndex) && this._getVisibleEditColumnIndex() === columnIndex
},
getPopupContent: noop,
_isProcessedItem: function(item) {
return false
},
_getInsertRowIndex: function(items, change, isProcessedItems) {
var result = -1;
var dataController = this._dataController;
var key = this._getInsertAfterOrBeforeKey(change);
if (!isDefined(key) && 0 === items.length) {
result = 0
} else if (isDefined(key)) {
items.some((item, index) => {
var isProcessedItem = isProcessedItems || this._isProcessedItem(item);
if (isObject(item)) {
if (isProcessedItem || isDefined(item[INSERT_INDEX])) {
if (equalByValue(item.key, key)) {
result = index
}
} else if (equalByValue(dataController.keyOf(item), key)) {
result = index
}
}
if (result >= 0) {
var nextItem = items[result + 1];
if (nextItem && ("detail" === nextItem.rowType || "detailAdaptive" === nextItem.rowType) && isDefined(change.insertAfterKey)) {
return
}
if (isDefined(change.insertAfterKey)) {
result += 1
}
return true
}
})
}
return result
},
_generateNewItem: function(key) {
var _this$_getInternalDat2;
var item = {
key: key
};
var insertInfo = null === (_this$_getInternalDat2 = this._getInternalData(key)) || void 0 === _this$_getInternalDat2 ? void 0 : _this$_getInternalDat2.insertInfo;
if (null !== insertInfo && void 0 !== insertInfo && insertInfo[INSERT_INDEX]) {
item[INSERT_INDEX] = insertInfo[INSERT_INDEX]
}
return item
},
_getLoadedRowIndex: function(items, change, isProcessedItems) {
var loadedRowIndex = this._getInsertRowIndex(items, change, isProcessedItems);
var dataController = this._dataController;
if (loadedRowIndex < 0) {
var newRowPosition = this.option("editing.newRowPosition");
var pageIndex = dataController.pageIndex();
var pageCount = dataController.pageCount();
var insertAfterOrBeforeKey = this._getInsertAfterOrBeforeKey(change);
if (newRowPosition !== LAST_NEW_ROW_POSITION && 0 === pageIndex && !isDefined(insertAfterOrBeforeKey)) {
loadedRowIndex = 0
} else if (newRowPosition === LAST_NEW_ROW_POSITION && pageIndex === pageCount - 1) {
loadedRowIndex = items.length
}
}
return loadedRowIndex
},
processItems: function(items, e) {
var changeType = e.changeType;
this.update(changeType);
var changes = this.getChanges();
changes.forEach(change => {
var _this$_getInternalDat3;
var isInsert = change.type === DATA_EDIT_DATA_INSERT_TYPE;
if (!isInsert) {
return
}
var key = change.key;
var insertInfo = null === (_this$_getInternalDat3 = this._getInternalData(key)) || void 0 === _this$_getInternalDat3 ? void 0 : _this$_getInternalDat3.insertInfo;
if (!isDefined(key) || !isDefined(insertInfo)) {
insertInfo = this._addInsertInfo(change);
key = insertInfo.key
}
var loadedRowIndex = this._getLoadedRowIndex(items, change);
var item = this._generateNewItem(key);
if (loadedRowIndex >= 0) {
items.splice(loadedRowIndex, 0, item)
}
});
return items
},
processDataItem: function(item, options, generateDataValues) {
var columns = options.visibleColumns;
var key = item.data[INSERT_INDEX] ? item.data.key : item.key;
var changes = this.getChanges();
var editIndex = gridCoreUtils.getIndexByKey(key, changes);
item.isEditing = false;
if (editIndex >= 0) {
this._processDataItemCore(item, changes[editIndex], key, columns, generateDataValues)
}
},
_processDataItemCore: function(item, change, key, columns, generateDataValues) {
var {
data: data,
type: type
} = change;
switch (type) {
case DATA_EDIT_DATA_INSERT_TYPE:
item.isNewRow = true;
item.key = key;
item.data = data;
break;
case DATA_EDIT_DATA_UPDATE_TYPE:
item.modified = true;
item.oldData = item.data;
item.data = createObjectWithChanges(item.data, data);
item.modifiedValues = generateDataValues(data, columns, true);
break;
case DATA_EDIT_DATA_REMOVE_TYPE:
item.removed = true
}
},
_initNewRow: function(options) {
this.executeAction("onInitNewRow", options);
if (options.promise) {
var deferred = new Deferred;
when(fromPromise(options.promise)).done(deferred.resolve).fail(createFailureHandler(deferred)).fail(arg => this._fireDataErrorOccurred(arg));
return deferred
}
},
_createInsertInfo: function() {
var insertInfo = {};
insertInfo[INSERT_INDEX] = this._getInsertIndex();
return insertInfo
},
_addInsertInfo: function(change, parentKey) {
var _this$_getInternalDat4;
var insertInfo;
var {
key: key
} = change;
if (!isDefined(key)) {
key = String(new Guid);
change.key = key
}
insertInfo = null === (_this$_getInternalDat4 = this._getInternalData(key)) || void 0 === _this$_getInternalDat4 ? void 0 : _this$_getInternalDat4.insertInfo;
if (!isDefined(insertInfo)) {
var insertAfterOrBeforeKey = this._getInsertAfterOrBeforeKey(change);
insertInfo = this._createInsertInfo();
if (!isDefined(insertAfterOrBeforeKey)) {
this._setInsertAfterOrBeforeKey(change, parentKey)
}
}
this._addInternalData({
insertInfo: insertInfo,
key: key
});
return {
insertInfo: insertInfo,
key: key
}
},
_setInsertAfterOrBeforeKey: function(change, parentKey) {
var dataController = this._dataController;
var allItems = dataController.items(true);
var rowsView = this.getView("rowsView");
var newRowPosition = this.option("editing.newRowPosition");
switch (newRowPosition) {
case FIRST_NEW_ROW_POSITION:
case LAST_NEW_ROW_POSITION:
break;
case PAGE_TOP_NEW_ROW_POSITION:
change.insertBeforeKey = allItems[0].key;
break;
case PAGE_BOTTOM_NEW_ROW_POSITION:
change.insertAfterKey = allItems[allItems.length - 1].key;
break;
default:
var isViewportBottom = newRowPosition === VIEWPORT_BOTTOM_NEW_ROW_POSITION;
var visibleItemIndex = isViewportBottom ? null === rowsView || void 0 === rowsView ? void 0 : rowsView.getBottomVisibleItemIndex() : null === rowsView || void 0 === rowsView ? void 0 : rowsView.getTopVisibleItemIndex();
var row = dataController.getVisibleRows()[visibleItemIndex];
if (row && (!row.isEditing && "detail" === row.rowType || "detailAdaptive" === row.rowType)) {
visibleItemIndex++
}
var insertKey = dataController.getKeyByRowIndex(visibleItemIndex);
if (isDefined(insertKey)) {
change.insertBeforeKey = insertKey
}
}
},
_getInsertIndex: function() {
var maxInsertIndex = 0;
this.getChanges().forEach(editItem => {
var _this$_getInternalDat5;
var insertInfo = null === (_this$_getInternalDat5 = this._getInternalData(editItem.key)) || void 0 === _this$_getInternalDat5 ? void 0 : _this$_getInternalDat5.insertInfo;
if (isDefined(insertInfo) && editItem.type === DATA_EDIT_DATA_INSERT_TYPE && insertInfo[INSERT_INDEX] > maxInsertIndex) {
maxInsertIndex = insertInfo[INSERT_INDEX]
}
});
return maxInsertIndex + 1
},
_getInsertAfterOrBeforeKey: function(insertChange) {
var _insertChange$insertA;
return null !== (_insertChange$insertA = insertChange.insertAfterKey) && void 0 !== _insertChange$insertA ? _insertChange$insertA : insertChange.insertBeforeKey
},
_getPageIndexToInsertRow: function() {
var newRowPosition = this.option("editing.newRowPosition");
var dataController = this._dataController;
var pageIndex = dataController.pageIndex();
var pageCount = dataController.pageCount();
var lastPageIndex = pageCount - 1;
if (newRowPosition === FIRST_NEW_ROW_POSITION && 0 !== pageIndex) {
return 0
} else if (newRowPosition === LAST_NEW_ROW_POSITION && pageIndex !== lastPageIndex) {
return lastPageIndex
}
return -1
},
addRow: function(parentKey) {
var dataController = this._dataController;
var store = dataController.store();
if (!store) {
dataController.fireError("E1052", this.component.NAME);
return (new Deferred).reject()
}
return this._addRow(parentKey)
},
_addRow: function(parentKey) {
var dataController = this._dataController;
var store = dataController.store();
var key = store && store.key();
var param = {
data: {}
};
var oldEditRowIndex = this._getVisibleEditRowIndex();
var deferred = new Deferred;
this.refresh();
if (!this._allowRowAdding()) {
when(this._navigateToNewRow(oldEditRowIndex)).done(deferred.resolve).fail(deferred.reject);
return deferred.promise()
}
if (!key) {
param.data.__KEY__ = String(new Guid)
}
when(this._initNewRow(param, parentKey)).done(() => {
if (this._allowRowAdding()) {
when(this._addRowCore(param.data, parentKey, oldEditRowIndex)).done(deferred.resolve).fail(deferred.reject)
} else {
deferred.reject("cancel")
}
}).fail(deferred.reject);
return deferred.promise()
},
_allowRowAdding: function() {
var insertIndex = this._getInsertIndex();
if (insertIndex > 1) {
return false
}
return true
},
_addRowCore: function(data, parentKey, initialOldEditRowIndex) {
var change = {
data: data,
type: DATA_EDIT_DATA_INSERT_TYPE
};
var editRowIndex = this._getVisibleEditRowIndex();
var insertInfo = this._addInsertInfo(change, parentKey);
var key = insertInfo.key;
this._setEditRowKey(key, true);
this._addChange(change);
return this._navigateToNewRow(initialOldEditRowIndex, change, editRowIndex)
},
_navigateToNewRow: function(oldEditRowIndex, change, editRowIndex) {
var _editRowIndex, _change;
var d = new Deferred;
var dataController = this._dataController;
var focusController = this.getController("focus");
editRowIndex = null !== (_editRowIndex = editRowIndex) && void 0 !== _editRowIndex ? _editRowIndex : -1;
change = null !== (_change = change) && void 0 !== _change ? _change : this.getChanges().filter(c => c.type === DATA_EDIT_DATA_INSERT_TYPE)[0];
if (!change) {
return d.reject("cancel").promise()
}
var pageIndexToInsertRow = this._getPageIndexToInsertRow();
var rowIndex = this._getLoadedRowIndex(dataController.items(), change, true);
var navigateToRowByKey = key => {
when(null === focusController || void 0 === focusController ? void 0 : focusController.navigateToRow(key)).done(() => {
rowIndex = dataController.getRowIndexByKey(change.key);
d.resolve()
})
};
var insertAfterOrBeforeKey = this._getInsertAfterOrBeforeKey(change);
if (pageIndexToInsertRow >= 0) {
dataController.pageIndex(pageIndexToInsertRow).done(() => {
navigateToRowByKey(change.key)
}).fail(d.reject)
} else if (rowIndex < 0 && isDefined(insertAfterOrBeforeKey)) {
navigateToRowByKey(insertAfterOrBeforeKey)
} else {
dataController.updateItems({
changeType: "update",
rowIndices: [oldEditRowIndex, editRowIndex, rowIndex]
});
d.resolve()
}
d.done(() => {
this._showAddedRow(rowIndex);
this._afterInsertRow(change.key)
});
return d.promise()
},
_showAddedRow: function(rowIndex) {
this._focusFirstEditableCellInRow(rowIndex)
},
_beforeFocusElementInRow: noop,
_focusFirstEditableCellInRow: function(rowIndex) {
var $firstCell = this.getFirstEditableCellInRow(rowIndex);
this._editCellInProgress = true;
this._delayedInputFocus($firstCell, () => {
this._editCellInProgress = false;
this._beforeFocusElementInRow(rowIndex)
})
},
_isEditingStart: function(options) {
this.executeAction("onEditingStart", options);
return options.cancel
},
_beforeUpdateItems: noop,
_getVisibleEditColumnIndex: function() {
var editColumnName = this.option(EDITING_EDITCOLUMNNAME_OPTION_NAME);
if (!isDefined(editColumnName)) {
return -1
}
return this._columnsController.getVisibleColumnIndex(editColumnName)
},
_setEditColumnNameByIndex: function(index, silent) {
var _visibleColumns$index;
var visibleColumns = this._columnsController.getVisibleColumns();
this._setEditColumnName(null === (_visibleColumns$index = visibleColumns[index]) || void 0 === _visibleColumns$index ? void 0 : _visibleColumns$index.name, silent)
},
_setEditColumnName: function(name, silent) {
if (silent) {
this._silentOption(EDITING_EDITCOLUMNNAME_OPTION_NAME, name)
} else {
this.option(EDITING_EDITCOLUMNNAME_OPTION_NAME, name)
}
},
_resetEditColumnName: function() {
this._setEditColumnName(null, true)
},
_getEditColumn: function() {
var editColumnName = this.option(EDITING_EDITCOLUMNNAME_OPTION_NAME);
return this._getColumnByName(editColumnName)
},
_getColumnByName: function(name) {
var visibleColumns = this._columnsController.getVisibleColumns();
var editColumn;
isDefined(name) && visibleColumns.some(column => {
if (column.name === name) {
editColumn = column;
return true
}
});
return editColumn
},
_getVisibleEditRowIndex: function(columnName) {
var dataController = this._dataController;
var editRowKey = this.option(EDITING_EDITROWKEY_OPTION_NAME);
var rowIndex = dataController.getRowIndexByKey(editRowKey);
if (-1 === rowIndex) {
return rowIndex
}
return rowIndex + this._getEditRowIndexCorrection(columnName)
},
_getEditRowIndexCorrection: function(columnName) {
var editColumn = columnName ? this._getColumnByName(columnName) : this._getEditColumn();
var isColumnHidden = "adaptiveHidden" === (null === editColumn || void 0 === editColumn ? void 0 : editColumn.visibleWidth);
return isColumnHidden ? 1 : 0
},
_resetEditRowKey: function() {
this._setEditRowKey(null, true)
},
_resetEditIndices: function() {
this._resetEditColumnName();
this._resetEditRowKey()
},
editRow: function(rowIndex) {
var _item$oldData;
var dataController = this._dataController;
var items = dataController.items();
var item = items[rowIndex];
var params = {
data: item && item.data,
cancel: false
};
var oldRowIndex = this._getVisibleEditRowIndex();
if (!item) {
return
}
if (rowIndex === oldRowIndex) {
return true
}
if (void 0 === item.key) {
this._dataController.fireError("E1043");
return
}
if (!item.isNewRow) {
params.key = item.key
}
if (this._isEditingStart(params)) {
return
}
this.resetChanges();
this.init();
this._resetEditColumnName();
this._pageIndex = dataController.pageIndex();
this._addInternalData({
key: item.key,
oldData: null !== (_item$oldData = item.oldData) && void 0 !== _item$oldData ? _item$oldData : item.data
});
this._setEditRowKey(item.key)
},
_editRowFromOptionChanged: function(rowIndex, oldRowIndex) {
var rowIndices = [oldRowIndex, rowIndex];
this._beforeUpdateItems(rowIndices, rowIndex, oldRowIndex);
this._editRowFromOptionChangedCore(rowIndices, rowIndex, oldRowIndex)
},
_editRowFromOptionChangedCore: function(rowIndices, rowIndex, oldRowIndex) {
this._needFocusEditor = true;
this._dataController.updateItems({
changeType: "update",
rowIndices: rowIndices
})
},
_focusEditorIfNeed: noop,
_showEditPopup: noop,
_repaintEditPopup: noop,
_getEditPopupHiddenHandler: function() {
return e => {
if (this.isEditing()) {
this.cancelEditData()
}
}
},
_getPopupEditFormTemplate: noop,
_getSaveButtonConfig: function() {
return {
text: this.option("editing.texts.saveRowChanges"),
onClick: this.saveEditData.bind(this)
}
},
_getCancelButtonConfig: function() {
return {
text: this.option("editing.texts.cancelRowChanges"),
onClick: this.cancelEditData.bind(this)
}
},
_removeInternalData: function(key) {
var internalData = this._getInternalData(key);
var index = this._internalState.indexOf(internalData);
if (index > -1) {
this._internalState.splice(index, 1)
}
},
_updateInsertAfterOrBeforeKeys: function(changes, index) {
var removeChange = changes[index];
changes.forEach(change => {
var insertAfterOrBeforeKey = this._getInsertAfterOrBeforeKey(change);
if (equalByValue(insertAfterOrBeforeKey, removeChange.key)) {
change[isDefined(change.insertAfterKey) ? "insertAfterKey" : "insertBeforeKey"] = this._getInsertAfterOrBeforeKey(removeChange)
}
})
},
_removeChange: function(index) {
if (index >= 0) {
var changes = [...this.getChanges()];
var key = changes[index].key;
this._removeInternalData(key);
this._updateInsertAfterOrBeforeKeys(changes, index);
changes.splice(index, 1);
this._silentOption(EDITING_CHANGES_OPTION_NAME, changes);
if (equalByValue(this.option(EDITING_EDITROWKEY_OPTION_NAME), key)) {
this._resetEditIndices()
}
}
},
executeOperation: function(deferred, func) {
this._lastOperation && this._lastOperation.reject();
this._lastOperation = deferred;
this.waitForDeferredOperations().done(() => {
if ("rejected" === deferred.state()) {
return
}
func();
this._lastOperation = null
}).fail(() => {
deferred.reject();
this._lastOperation = null
})
},
waitForDeferredOperations: function() {
return when(...this._deferreds)
},
_processCanceledEditingCell: noop,
_repaintEditCell: function(column, oldColumn, oldEditRowIndex) {
this._needFocusEditor = true;
if (!column || !column.showEditorAlways || oldColumn && !oldColumn.showEditorAlways) {
this._editCellInProgress = true;
this.getController("editorFactory").loseFocus();
this._dataController.updateItems({
changeType: "update",
rowIndices: [oldEditRowIndex, this._getVisibleEditRowIndex()]
})
} else if (column !== oldColumn) {
this._dataController.updateItems({
changeType: "update",
rowIndices: []
})
}
},
_delayedInputFocus: function($cell, beforeFocusCallback, callBeforeFocusCallbackAlways) {
var inputFocus = () => {
if (beforeFocusCallback) {
beforeFocusCallback()
}
if ($cell) {
var $focusableElement = $cell.find(FOCUSABLE_ELEMENT_SELECTOR).first();
gridCoreUtils.focusAndSelectElement(this, $focusableElement)
}
this._beforeFocusCallback = null
};
if (devices.real().ios || devices.real().android) {
inputFocus()
} else {
if (this._beforeFocusCallback) {
this._beforeFocusCallback()
}
clearTimeout(this._inputFocusTimeoutID);
if (callBeforeFocusCallbackAlways) {
this._beforeFocusCallback = beforeFocusCallback
}
this._inputFocusTimeoutID = setTimeout(inputFocus)
}
},
_focusEditingCell: function(beforeFocusCallback, $editCell, callBeforeFocusCallbackAlways) {
var rowsView = this.getView("rowsView");
var editColumnIndex = this._getVisibleEditColumnIndex();
$editCell = $editCell || rowsView && rowsView._getCellElement(this._getVisibleEditRowIndex(), editColumnIndex);
if ($editCell) {
this._delayedInputFocus($editCell, beforeFocusCallback, callBeforeFocusCallbackAlways)
}
},
deleteRow: function(rowIndex) {
this._checkAndDeleteRow(rowIndex)
},
_checkAndDeleteRow: function(rowIndex) {
var editingOptions = this.option("editing");
var editingTexts = null === editingOptions || void 0 === editingOptions ? void 0 : editingOptions.texts;
var confirmDelete = null === editingOptions || void 0 === editingOptions ? void 0 : editingOptions.confirmDelete;
var confirmDeleteMessage = null === editingTexts || void 0 === editingTexts ? void 0 : editingTexts.confirmDeleteMessage;
var item = this._dataController.items()[rowIndex];
var allowDeleting = !this.isEditing() || item.isNewRow;
if (item && allowDeleting) {
if (!confirmDelete || !confirmDeleteMessage) {
this._deleteRowCore(rowIndex)
} else {
var confirmDeleteTitle = editingTexts && editingTexts.confirmDeleteTitle;
var showDialogTitle = isDefined(confirmDeleteTitle) && confirmDeleteTitle.length > 0;
confirm(confirmDeleteMessage, confirmDeleteTitle, showDialogTitle).done(confirmResult => {
if (confirmResult) {
this._deleteRowCore(rowIndex)
}
})
}
}
},
_deleteRowCore: function(rowIndex) {
var dataController = this._dataController;
var item = dataController.items()[rowIndex];
var key = item && item.key;
var oldEditRowIndex = this._getVisibleEditRowIndex();
this.refresh();
var changes = this.getChanges();
var editIndex = gridCoreUtils.getIndexByKey(key, changes);
if (editIndex >= 0) {
if (changes[editIndex].type === DATA_EDIT_DATA_INSERT_TYPE) {
this._removeChange(editIndex)
} else {
this._addChange({
key: key,
type: DATA_EDIT_DATA_REMOVE_TYPE
})
}
} else {
this._addChange({
key: key,
oldData: item.data,
type: DATA_EDIT_DATA_REMOVE_TYPE
})
}
return this._afterDeleteRow(rowIndex, oldEditRowIndex)
},
_afterDeleteRow: function(rowIndex, oldEditRowIndex) {
return this.saveEditData()
},
undeleteRow: function(rowIndex) {
var dataController = this._dataController;
var item = dataController.items()[rowIndex];
var oldEditRowIndex = this._getVisibleEditRowIndex();
var key = item && item.key;
var changes = this.getChanges();
if (item) {
var editIndex = gridCoreUtils.getIndexByKey(key, changes);
if (editIndex >= 0) {
var {
data: data
} = changes[editIndex];
if (isEmptyObject(data)) {
this._removeChange(editIndex)
} else {
this._addChange({
key: key,
type: DATA_EDIT_DATA_UPDATE_TYPE
})
}
dataController.updateItems({
changeType: "update",
rowIndices: [oldEditRowIndex, rowIndex]
})
}
}
},
_fireOnSaving: function() {
var onSavingParams = {
cancel: false,
promise: null,
changes: [...this.getChanges()]
};
this.executeAction("onSaving", onSavingParams);
var d = new Deferred;
when(fromPromise(onSavingParams.promise)).done(() => {
d.resolve(onSavingParams)
}).fail(arg => {
createFailureHandler(d);
this._fireDataErrorOccurred(arg);
d.resolve({
cancel: true
})
});
return d
},
_executeEditingAction: function(actionName, params, func) {
if (this.component._disposed) {
return null
}
var deferred = new Deferred;
this.executeAction(actionName, params);
when(fromPromise(params.cancel)).done((function(cancel) {
if (cancel) {
setTimeout((function() {
deferred.resolve("cancel")
}))
} else {
func(params).done(deferred.resolve).fail(createFailureHandler(deferred))
}
})).fail(createFailureHandler(deferred));
return deferred
},
_processChanges: function(deferreds, results, dataChanges, changes) {
var store = this._dataController.store();
each(changes, (index, change) => {
var oldData = this._getOldData(change.key);
var {
data: data,
type: type
} = change;
var changeCopy = _extends({}, change);
var deferred;
var params;
if (this._beforeSaveEditData(change, index)) {
return
}
switch (type) {
case DATA_EDIT_DATA_REMOVE_TYPE:
params = {
data: oldData,
key: change.key,
cancel: false
};
deferred = this._executeEditingAction("onRowRemoving", params, (function() {
return store.remove(change.key).done((function(key) {
dataChanges.push({
type: "remove",
key: key
})
}))
}));
break;
case DATA_EDIT_DATA_INSERT_TYPE:
params = {
data: data,
cancel: false
};
deferred = this._executeEditingAction("onRowInserting", params, (function() {
return store.insert(params.data).done((function(data, key) {
if (isDefined(key)) {
changeCopy.key = key
}
if (data && isObject(data) && data !== params.data) {
changeCopy.data = data
}
dataChanges.push({
type: "insert",
data: data,
index: 0
})
}))
}));
break;
case DATA_EDIT_DATA_UPDATE_TYPE:
params = {
newData: data,
oldData: oldData,
key: change.key,
cancel: false
};
deferred = this._executeEditingAction("onRowUpdating", params, (function() {
return store.update(change.key, params.newData).done((function(data, key) {
if (data && isObject(data) && data !== params.newData) {
changeCopy.data = data
}
dataChanges.push({
type: "update",
key: key,
data: data
})
}))
}))
}
changes[index] = changeCopy;
if (deferred) {
var doneDeferred = new Deferred;
deferred.always((function(data) {
results.push({
key: change.key,
result: data
})
})).always(doneDeferred.resolve);
deferreds.push(doneDeferred.promise())
}
})
},
_processRemoveIfError: function(changes, editIndex) {
var change = changes[editIndex];
if ((null === change || void 0 === change ? void 0 : change.type) === DATA_EDIT_DATA_REMOVE_TYPE) {
if (editIndex >= 0) {
changes.splice(editIndex, 1)
}
}
return true
},
_processRemove: function(changes, editIndex, cancel) {
var change = changes[editIndex];
if (!cancel || !change || change.type === DATA_EDIT_DATA_REMOVE_TYPE) {
return this._processRemoveCore(changes, editIndex, !cancel || !change)
}
},
_processRemoveCore: function(changes, editIndex) {
if (editIndex >= 0) {
changes.splice(editIndex, 1)
}
return true
},
_processSaveEditDataResult: function(results) {
var hasSavedData = false;
var changes = [...this.getChanges()];
var changesLength = changes.length;
for (var i = 0; i < results.length; i++) {
var arg = results[i].result;
var cancel = "cancel" === arg;
var editIndex = gridCoreUtils.getIndexByKey(results[i].key, changes);
var change = changes[editIndex];
var isError = arg && arg instanceof Error;
if (isError) {
if (change) {
this._addInternalData({
key: change.key,
error: arg
})
}
this._fireDataErrorOccurred(arg);
if (this._processRemoveIfError(changes, editIndex)) {
break
}
} else if (this._processRemove(changes, editIndex, cancel)) {
hasSavedData = !cancel
}
}
if (changes.length < changesLength) {
this._silentOption(EDITING_CHANGES_OPTION_NAME, changes)
}
return hasSavedData
},
_fireSaveEditDataEvents: function(changes) {
each(changes, (_, _ref) => {
var {
data: data,
key: key,
type: type
} = _ref;
var internalData = this._addInternalData({
key: key
});
var params = {
key: key,
data: data
};
if (internalData.error) {
params.error = internalData.error
}
switch (type) {
case DATA_EDIT_DATA_REMOVE_TYPE:
this.executeAction("onRowRemoved", extend({}, params, {
data: internalData.oldData
}));
break;
case DATA_EDIT_DATA_INSERT_TYPE:
this.executeAction("onRowInserted", params);
break;
case DATA_EDIT_DATA_UPDATE_TYPE:
this.executeAction("onRowUpdated", params)
}
});
this.executeAction("onSaved", {
changes: changes
})
},
saveEditData: function() {
var deferred = new Deferred;
this.waitForDeferredOperations().done(() => {
if (this.isSaving()) {
this._resolveAfterSave(deferred);
return
}
when(this._beforeSaveEditData()).done(cancel => {
if (cancel) {
this._resolveAfterSave(deferred, {
cancel: cancel
});
return
}
this._saving = true;
this._saveEditDataInner().always(() => {
this._saving = false
}).done(deferred.resolve).fail(deferred.reject)
}).fail(deferred.reject)
}).fail(deferred.reject);
return deferred.promise()
},
_resolveAfterSave: function(deferred) {
var {
cancel: cancel,
error: error
} = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {};
when(this._afterSaveEditData(cancel)).done((function() {
deferred.resolve(error)
})).fail(deferred.reject)
},
_saveEditDataInner: function() {
var results = [];
var deferreds = [];
var dataChanges = [];
var dataController = this._dataController;
var dataSource = dataController.dataSource();
var result = new Deferred;
when(this._fireOnSaving()).done(_ref2 => {
var {
cancel: cancel,
changes: changes
} = _ref2;
if (cancel) {
return result.resolve().promise()
}
this._processChanges(deferreds, results, dataChanges, changes);
if (deferreds.length) {
null === dataSource || void 0 === dataSource ? void 0 : dataSource.beginLoading();
when(...deferreds).done(() => {
if (this._processSaveEditDataResult(results)) {
this._endSaving(dataChanges, changes, result)
} else {
null === dataSource || void 0 === dataSource ? void 0 : dataSource.endLoading();
result.resolve()
}
}).fail(error => {
null === dataSource || void 0 === dataSource ? void 0 : dataSource.endLoading();
result.resolve(error)
});
return result.always(() => {
this._focusEditingCell()
}).promise()
}
this._cancelSaving(result)
}).fail(result.reject);
return result.promise()
},
_beforeEndSaving: function(changes) {
this._resetEditIndices()
},
_endSaving: function(dataChanges, changes, deferred) {
var dataSource = this._dataController.dataSource();
this._beforeEndSaving(changes);
null === dataSource || void 0 === dataSource ? void 0 : dataSource.endLoading();
this._refreshDataAfterSave(dataChanges, changes, deferred)
},
_cancelSaving: function(result) {
this.executeAction("onSaved", {
changes: []
});
this._resolveAfterSave(result)
},
_refreshDataAfterSave: function(dataChanges, changes, deferred) {
var dataController = this._dataController;
var refreshMode = this.option("editing.refreshMode");
var isFullRefresh = "reshape" !== refreshMode && "repaint" !== refreshMode;
if (!isFullRefresh) {
dataController.push(dataChanges)
}
when(dataController.refresh({
selection: isFullRefresh,
reload: isFullRefresh,
load: "reshape" === refreshMode,
changesOnly: this.option("repaintChangesOnly")
})).always(() => {
this._fireSaveEditDataEvents(changes)
}).done(() => {
this._resolveAfterSave(deferred)
}).fail(error => {
this._resolveAfterSave(deferred, {
error: error
})
})
},
isSaving: function() {
return this._saving
},
_updateEditColumn: function() {
var isEditColumnVisible = this._isEditColumnVisible();
var useIcons = this.option("editing.useIcons");
var cssClass = COMMAND_EDIT_CLASS + (useIcons ? " " + COMMAND_EDIT_WITH_ICONS_CLASS : "");
this._columnsController.addCommandColumn({
type: "buttons",
command: "edit",
visible: isEditColumnVisible,
cssClass: cssClass,
width: "auto",
alignment: "center",
cellTemplate: this._getEditCommandCellTemplate(),
fixedPosition: "right"
});
this._columnsController.columnOption("command:edit", {
visible: isEditColumnVisible,
cssClass: cssClass
})
},
_isEditColumnVisible: function() {
var editingOptions = this.option("editing");
return editingOptions.allowDeleting
},
_isEditButtonDisabled: function() {
var hasChanges = this.hasChanges();
var isEditRowDefined = isDefined(this.option("editing.editRowKey"));
return !(isEditRowDefined || hasChanges)
},
_updateEditButtons: function() {
var headerPanel = this.getView("headerPanel");
var isButtonDisabled = this._isEditButtonDisabled();
if (headerPanel) {
headerPanel.setToolbarItemDisabled("saveButton", isButtonDisabled);
headerPanel.setToolbarItemDisabled("revertButton", isButtonDisabled)
}
},
_applyModified: function($element) {
$element && $element.addClass(CELL_MODIFIED)
},
_beforeCloseEditCellInBatchMode: noop,
cancelEditData: function() {
var changes = this.getChanges();
var params = {
cancel: false,
changes: changes
};
this.executeAction("onEditCanceling", params);
if (!params.cancel) {
this._cancelEditDataCore();
this.executeAction("onEditCanceled", {
changes: changes
})
}
},
_cancelEditDataCore: function() {
var rowIndex = this._getVisibleEditRowIndex();
this._beforeCancelEditData();
this.init();
this.resetChanges();
this._resetEditColumnName();
this._resetEditRowKey();
this._afterCancelEditData(rowIndex)
},
_afterCancelEditData: function(rowIndex) {
var dataController = this._dataController;
dataController.updateItems({
repaintChangesOnly: this.option("repaintChangesOnly")
})
},
_hideEditPopup: noop,
hasEditData: function() {
return this.hasChanges()
},
update: function(changeType) {
var dataController = this._dataController;
if (dataController && this._pageIndex !== dataController.pageIndex()) {
if ("refresh" === changeType) {
this.refresh(true)
}
this._pageIndex = dataController.pageIndex()
}
this._updateEditButtons()
},
_getRowIndicesForCascadeUpdating: function(row, skipCurrentRow) {
return skipCurrentRow ? [] : [row.rowIndex]
},
addDeferred: function(deferred) {
if (this._deferreds.indexOf(deferred) < 0) {
this._deferreds.push(deferred);
deferred.always(() => {
var index = this._deferreds.indexOf(deferred);
if (index >= 0) {
this._deferreds.splice(index, 1)
}
})
}
},
_prepareChange: function(options, value, text) {
var _options$row;
var newData = {};
var oldData = null === (_options$row = options.row) || void 0 === _options$row ? void 0 : _options$row.data;
var rowKey = options.key;
var deferred = new Deferred;
if (void 0 !== rowKey) {
options.value = value;
var setCellValueResult = fromPromise(options.column.setCellValue(newData, value, extend(true, {}, oldData), text));
setCellValueResult.done((function() {
deferred.resolve({
data: newData,
key: rowKey,
oldData: oldData,
type: DATA_EDIT_DATA_UPDATE_TYPE
})
})).fail(createFailureHandler(deferred)).fail(arg => this._fireDataErrorOccurred(arg));
if (isDefined(text) && options.column.displayValueMap) {
options.column.displayValueMap[value] = text
}
this._updateRowValues(options);
this.addDeferred(deferred)
}
return deferred
},
_updateRowValues: function(options) {
if (options.values) {
var dataController = this._dataController;
var rowIndex = dataController.getRowIndexByKey(options.key);
var row = dataController.getVisibleRows()[rowIndex];
if (row) {
options.values = row.values
}
options.values[options.columnIndex] = options.value
}
},
updateFieldValue: function(options, value, text, forceUpdateRow) {
var rowKey = options.key;
var deferred = new Deferred;
if (void 0 === rowKey) {
this._dataController.fireError("E1043")
}
if (options.column.setCellValue) {
this._prepareChange(options, value, text).done(params => {
when(this._applyChange(options, params, forceUpdateRow)).always(() => {
deferred.resolve()
})
})
} else {
deferred.resolve()
}
return deferred.promise()
},
_focusPreviousEditingCellIfNeed: function(options) {
if (this.hasEditData() && !this.isEditCell(options.rowIndex, options.columnIndex)) {
this._focusEditingCell();
this._updateEditRow(options.row, true);
return true
}
},
_needUpdateRow: function(column) {
var visibleColumns = this._columnsController.getVisibleColumns();
if (!column) {
column = this._getEditColumn()
}
var isCustomSetCellValue = column && column.setCellValue !== column.defaultSetCellValue;
var isCustomCalculateCellValue = visibleColumns.some(visibleColumn => visibleColumn.calculateCellValue !== visibleColumn.defaultCalculateCellValue);
return isCustomSetCellValue || isCustomCalculateCellValue
},
_applyChange: function(options, params, forceUpdateRow) {
this._addChange(params, options.row);
this._updateEditButtons();
return this._applyChangeCore(options, forceUpdateRow)
},
_applyChangeCore: function(options, forceUpdateRow) {
var isCustomSetCellValue = options.column.setCellValue !== options.column.defaultSetCellValue;
var row = options.row;
if (row) {
if (forceUpdateRow || isCustomSetCellValue) {
this._updateEditRow(row, forceUpdateRow, isCustomSetCellValue)
} else if (row.update) {
row.update()
}
}
},
_updateEditRowCore: function(row, skipCurrentRow, isCustomSetCellValue) {
this._dataController.updateItems({
changeType: "update",
rowIndices: this._getRowIndicesForCascadeUpdating(row, skipCurrentRow)
})
},
_updateEditRow: function(row, forceUpdateRow, isCustomSetCellValue) {
if (forceUpdateRow) {
this._updateRowImmediately(row, forceUpdateRow, isCustomSetCellValue)
} else {
this._updateRowWithDelay(row, isCustomSetCellValue)
}
},
_updateRowImmediately: function(row, forceUpdateRow, isCustomSetCellValue) {
this._updateEditRowCore(row, !forceUpdateRow, isCustomSetCellValue);
this._validateEditFormAfterUpdate(row, isCustomSetCellValue);
if (!forceUpdateRow) {
this._focusEditingCell()
}
},
_updateRowWithDelay: function(row, isCustomSetCellValue) {
var deferred = new Deferred;
this.addDeferred(deferred);
setTimeout(() => {
var $focusedElement = $(domAdapter.getActiveElement());
var columnIndex = this._rowsView.getCellIndex($focusedElement, row.rowIndex);
var focusedElement = $focusedElement.get(0);
var selectionRange = gridCoreUtils.getSelectionRange(focusedElement);
this._updateEditRowCore(row, false, isCustomSetCellValue);
this._validateEditFormAfterUpdate(row, isCustomSetCellValue);
if (columnIndex >= 0) {
var $focusedItem = this._rowsView._getCellElement(row.rowIndex, columnIndex);
this._delayedInputFocus($focusedItem, () => {
setTimeout(() => {
focusedElement = domAdapter.getActiveElement();
if (selectionRange.selectionStart >= 0) {
gridCoreUtils.setSelectionRange(focusedElement, selectionRange)
}
})
})
}
deferred.resolve()
})
},
_validateEditFormAfterUpdate: noop,
_addChange: function(options, row) {
var changes = [...this.getChanges()];
var index = gridCoreUtils.getIndexByKey(options.key, changes);
if (index < 0) {
index = changes.length;
this._addInternalData({
key: options.key,
oldData: options.oldData
});
delete options.oldData;
changes.push(options)
}
var change = _extends({}, changes[index]);
if (change) {
if (options.data) {
change.data = createObjectWithChanges(change.data, options.data)
}
if ((!change.type || !options.data) && options.type) {
change.type = options.type
}
if (row) {
row.oldData = this._getOldData(row.key);
row.data = createObjectWithChanges(row.data, options.data)
}
}
changes[index] = change;
this._silentOption(EDITING_CHANGES_OPTION_NAME, changes);
return change
},
_getFormEditItemTemplate: function(cellOptions, column) {
return column.editCellTemplate || this._getDefaultEditorTemplate()
},
getColumnTemplate: function(options) {
var column = options.column;
var rowIndex = options.row && options.row.rowIndex;
var template;
var isRowMode = this.isRowBasedEditMode();
var isRowEditing = this.isEditRow(rowIndex);
var isCellEditing = this.isEditCell(rowIndex, options.columnIndex);
var editingStartOptions;
if ((column.showEditorAlways || column.setCellValue && (isRowEditing && column.allowEditing || isCellEditing)) && ("data" === options.rowType || "detailAdaptive" === options.rowType) && !column.command) {
var allowUpdating = this.allowUpdating(options);
if (((allowUpdating || isRowEditing) && column.allowEditing || isCellEditing) && (isRowEditing || !isRowMode)) {
if (column.showEditorAlways && !isRowMode) {
editingStartOptions = {
cancel: false,
key: options.row.isNewRow ? void 0 : options.row.key,
data: options.row.data,
column: column
};
this._isEditingStart(editingStartOptions)
}
if (!editingStartOptions || !editingStartOptions.cancel) {
options.setValue = (value, text) => {
this.updateFieldValue(options, value, text)
}
}
}
template = column.editCellTemplate || this._getDefaultEditorTemplate()
} else if ("detail" === column.command && "detail" === options.rowType && isRowEditing) {
template = null === this || void 0 === this ? void 0 : this.getEditFormTemplate(options)
}
return template
},
_createButton: function($container, button, options, change) {
var icon = EDIT_ICON_CLASS[button.name];
var useIcons = this.option("editing.useIcons");
var useLegacyColumnButtonTemplate = this.option("useLegacyColumnButtonTemplate");
var $button = $("<a>").attr("href", "#").addClass(LINK_CLASS).addClass(button.cssClass);
if (button.template && useLegacyColumnButtonTemplate) {
this._rowsView.renderTemplate($container, button.template, options, true)
} else {
if (button.template) {
$button = $("<span>").addClass(button.cssClass)
} else if (useIcons && icon || button.icon) {
icon = button.icon || icon;
var iconType = iconUtils.getImageSourceType(icon);
if ("image" === iconType || "svg" === iconType) {
$button = iconUtils.getImageContainer(icon).addClass(button.cssClass)
} else {
$button.addClass("dx-icon" + ("dxIcon" === iconType ? "-" : " ") + icon).attr("title", button.text)
}
$button.addClass("dx-link-icon");
$container.addClass(COMMAND_EDIT_WITH_ICONS_CLASS);
var localizationName = this.getButtonLocalizationNames()[button.name];
localizationName && $button.attr("aria-label", messageLocalization.format(localizationName))
} else {
$button.text(button.text)
}
if (isDefined(button.hint)) {
$button.attr("title", button.hint)
}
if (this._isButtonDisabled(button, options)) {
$button.addClass("dx-state-disabled")
} else {
eventsEngine.on($button, addNamespace("click", EDITING_NAMESPACE), this.createAction((function(e) {
button.onClick.call(button, extend({}, e, {
row: options.row,
column: options.column
}));
e.event.preventDefault();
e.event.stopPropagation()
})))
}
$container.append($button, " ");
if (button.template) {
this._rowsView.renderTemplate($button, button.template, options, true, change)
}
}
},
getButtonLocalizationNames: () => ({
edit: "dxDataGrid-editingEditRow",
save: "dxDataGrid-editingSaveRowChanges",
delete: "dxDataGrid-editingDeleteRow",
undelete: "dxDataGrid-editingUndeleteRow",
cancel: "dxDataGrid-editingCancelRowChanges"
}),
prepareButtonItem: function(headerPanel, name, methodName, sortIndex) {
var editingTexts = this.option("editing.texts") || {};
var titleButtonTextByClassNames = {
revert: editingTexts.cancelAllChanges,
save: editingTexts.saveAllChanges,
addRow: editingTexts.addRow
};
var className = {
revert: "cancel",
save: "save",
addRow: "addrow"
} [name];
var hintText = titleButtonTextByClassNames[name];
var isButtonDisabled = ("save" === className || "cancel" === className) && this._isEditButtonDisabled();
return {
widget: "dxButton",
options: {
onInitialized: e => {
$(e.element).addClass(headerPanel._getToolbarButtonClass(EDIT_BUTTON_CLASS + " " + this.addWidgetPrefix(className) + "-button"))
},
icon: "edit-button-" + className,
disabled: isButtonDisabled,
onClick: () => {
setTimeout(() => {
this[methodName]()
})
},
text: hintText,
hint: hintText
},
showText: "inMenu",
name: name + "Button",
location: "after",
locateInMenu: "auto",
sortIndex: sortIndex
}
},
prepareEditButtons: function(headerPanel) {
var editingOptions = this.option("editing") || {};
var buttonItems = [];
if (editingOptions.allowAdding) {
buttonItems.push(this.prepareButtonItem(headerPanel, "addRow", "addRow", 20))
}
return buttonItems
},
highlightDataCell: function($cell, parameters) {
var cellModified = this.isCellModified(parameters);
cellModified && parameters.column.setCellValue && $cell.addClass(CELL_MODIFIED)
},
_afterInsertRow: noop,
_beforeSaveEditData: function(change) {
if (change && !isDefined(change.key) && isDefined(change.type)) {
return true
}
},
_afterSaveEditData: noop,
_beforeCancelEditData: noop,
_allowEditAction: function(actionName, options) {
var allowEditAction = this.option("editing." + actionName);
if (isFunction(allowEditAction)) {
allowEditAction = allowEditAction({
component: this.component,
row: options.row
})
}
return allowEditAction
},
allowUpdating: function(options, eventName) {
var startEditAction = this.option("editing.startEditAction") || DEFAULT_START_EDIT_ACTION;
var needCallback = arguments.length > 1 ? startEditAction === eventName || "down" === eventName : true;
return needCallback && this._allowEditAction("allowUpdating", options)
},
allowDeleting: function(options) {
return this._allowEditAction("allowDeleting", options)
},
isCellModified: function(parameters) {
var columnIndex = parameters.columnIndex;
var modifiedValues = parameters.row && (parameters.row.isNewRow ? parameters.row.values : parameters.row.modifiedValues);
return !!modifiedValues && void 0 !== modifiedValues[columnIndex]
},
isNewRowInEditMode: function() {
var visibleEditRowIndex = this._getVisibleEditRowIndex();
var rows = this._dataController.items();
return visibleEditRowIndex >= 0 ? rows[visibleEditRowIndex].isNewRow : false
}
}
}());
export var editingModule = {
defaultOptions: function() {
return {
editing: {
mode: "row",
refreshMode: "full",
newRowPosition: VIEWPORT_TOP_NEW_ROW_POSITION,
allowAdding: false,
allowUpdating: false,
allowDeleting: false,
useIcons: false,
selectTextOnEditStart: false,
confirmDelete: true,
texts: {
editRow: messageLocalization.format("dxDataGrid-editingEditRow"),
saveAllChanges: messageLocalization.format("dxDataGrid-editingSaveAllChanges"),
saveRowChanges: messageLocalization.format("dxDataGrid-editingSaveRowChanges"),
cancelAllChanges: messageLocalization.format("dxDataGrid-editingCancelAllChanges"),
cancelRowChanges: messageLocalization.format("dxDataGrid-editingCancelRowChanges"),
addRow: messageLocalization.format("dxDataGrid-editingAddRow"),
deleteRow: messageLocalization.format("dxDataGrid-editingDeleteRow"),
undeleteRow: messageLocalization.format("dxDataGrid-editingUndeleteRow"),
confirmDeleteMessage: messageLocalization.format("dxDataGrid-editingConfirmDeleteMessage"),
confirmDeleteTitle: ""
},
form: {
colCount: 2
},
popup: {},
startEditAction: "click",
editRowKey: null,
editColumnName: null,
changes: []
},
useLegacyColumnButtonTemplate: false
}
},
controllers: {
editing: EditingController
},
extenders: {
controllers: {
data: {
init: function() {
this._editingController = this.getController("editing");
this.callBase()
},
reload: function(full, repaintChangesOnly) {
!repaintChangesOnly && this._editingController.refresh();
return this.callBase.apply(this, arguments)
},
repaintRows: function() {
if (this.getController("editing").isSaving()) {
return
}
return this.callBase.apply(this, arguments)
},
_updateEditRow: function(items) {
var editRowKey = this.option(EDITING_EDITROWKEY_OPTION_NAME);
var editRowIndex = gridCoreUtils.getIndexByKey(editRowKey, items);
var editItem = items[editRowIndex];
if (editItem) {
var _this$_updateEditItem;
editItem.isEditing = true;
null === (_this$_updateEditItem = this._updateEditItem) || void 0 === _this$_updateEditItem ? void 0 : _this$_updateEditItem.call(this, editItem)
}
},
_updateItemsCore: function(change) {
this.callBase(change);
this._updateEditRow(this.items(true))
},
_applyChangeUpdate: function(change) {
this._updateEditRow(change.items);
this.callBase(change)
},
_applyChangesOnly: function(change) {
this._updateEditRow(change.items);
this.callBase(change)
},
_processItems: function(items, change) {
items = this._editingController.processItems(items, change);
return this.callBase(items, change)
},
_processDataItem: function(dataItem, options) {
this._editingController.processDataItem(dataItem, options, this.generateDataValues);
return this.callBase(dataItem, options)
},
_processItem: function(item, options) {
item = this.callBase(item, options);
if (item.isNewRow) {
options.dataIndex--;
delete item.dataIndex
}
return item
},
_getChangedColumnIndices: function(oldItem, newItem, rowIndex, isLiveUpdate) {
if (oldItem.isNewRow !== newItem.isNewRow || oldItem.removed !== newItem.removed) {
return
}
return this.callBase.apply(this, arguments)
},
_isCellChanged: function(oldRow, newRow, visibleRowIndex, columnIndex, isLiveUpdate) {
var editingController = this.getController("editing");
var cell = oldRow.cells && oldRow.cells[columnIndex];
var isEditing = editingController && editingController.isEditCell(visibleRowIndex, columnIndex);
if (isLiveUpdate && isEditing) {
return false
}
if (cell && cell.column && !cell.column.showEditorAlways && cell.isEditing !== isEditing) {
return true
}
return this.callBase.apply(this, arguments)
}
}
},
views: {
rowsView: {
init: function() {
this.callBase();
this._editingController = this.getController("editing")
},
getCellIndex: function($cell, rowIndex) {
if (!$cell.is("td") && rowIndex >= 0) {
var $cellElements = this.getCellElements(rowIndex);
var cellIndex = -1;
each($cellElements, (function(index, cellElement) {
if ($(cellElement).find($cell).length) {
cellIndex = index
}
}));
return cellIndex
}
return this.callBase.apply(this, arguments)
},
publicMethods: function() {
return this.callBase().concat(["cellValue"])
},
_getCellTemplate: function(options) {
var template = this._editingController.getColumnTemplate(options);
return template || this.callBase(options)
},
_isNativeClick: function() {
return (devices.real().ios || devices.real().android) && this.option("editing.allowUpdating")
},
_createRow: function(row) {
var $row = this.callBase.apply(this, arguments);
if (row) {
var isRowRemoved = !!row.removed;
var isRowInserted = !!row.isNewRow;
var isRowModified = !!row.modified;
isRowInserted && $row.addClass(ROW_INSERTED);
isRowModified && $row.addClass(ROW_MODIFIED);
if (isRowInserted || isRowRemoved) {
$row.removeClass(ROW_SELECTED)
}
}
return $row
},
_getColumnIndexByElement: function($element) {
var $tableElement = $element.closest("table");
var $tableElements = this.getTableElements();
while ($tableElement.length && !$tableElements.filter($tableElement).length) {
$element = $tableElement.closest("td");
$tableElement = $element.closest("table")
}
return this._getColumnIndexByElementCore($element)
},
_getColumnIndexByElementCore: function($element) {
var $targetElement = $element.closest("." + ROW_CLASS + "> td:not(.dx-master-detail-cell)");
return this.getCellIndex($targetElement)
},
_editCellByClick: function(e, eventName) {
var editingController = this._editingController;
var $targetElement = $(e.event.target);
var columnIndex = this._getColumnIndexByElement($targetElement);
var row = this._dataController.items()[e.rowIndex];
var allowUpdating = editingController.allowUpdating({
row: row
}, eventName) || row && row.isNewRow;
var column = this._columnsController.getVisibleColumns()[columnIndex];
var isEditedCell = editingController.isEditCell(e.rowIndex, columnIndex);
var allowEditing = allowUpdating && column && (column.allowEditing || isEditedCell);
var startEditAction = this.option("editing.startEditAction") || "click";
if ("down" === eventName) {
if ((devices.real().ios || devices.real().android) && !isEditedCell) {
resetActiveElement()
}
return column && column.showEditorAlways && allowEditing && editingController.editCell(e.rowIndex, columnIndex)
}
if ("click" === eventName && "dblClick" === startEditAction && !isEditedCell) {
editingController.closeEditCell()
}
if (allowEditing && eventName === startEditAction) {
return editingController.editCell(e.rowIndex, columnIndex) || editingController.isEditRow(e.rowIndex)
}
},
_rowPointerDown: function(e) {
this._pointerDownTimeout = setTimeout(() => {
this._editCellByClick(e, "down")
})
},
_rowClick: function(e) {
var isEditForm = $(e.rowElement).hasClass(this.addWidgetPrefix(EDIT_FORM_CLASS));
e.event[TARGET_COMPONENT_NAME] = this.component;
if (!this._editCellByClick(e, "click") && !isEditForm) {
this.callBase.apply(this, arguments)
}
},
_rowDblClick: function(e) {
if (!this._editCellByClick(e, "dblClick")) {
this.callBase.apply(this, arguments)
}
},
_cellPrepared: function($cell, parameters) {
var editingController = this._editingController;
var isCommandCell = !!parameters.column.command;
var isEditableCell = parameters.setValue;
var isEditRow = editingController.isEditRow(parameters.rowIndex);
var isEditing = isEditingCell(isEditRow, parameters);
if (isEditingOrShowEditorAlwaysDataCell(isEditRow, parameters)) {
var alignment = parameters.column.alignment;
$cell.toggleClass(this.addWidgetPrefix(READONLY_CLASS), !isEditableCell).toggleClass(CELL_FOCUS_DISABLED_CLASS, !isEditableCell);
if (alignment) {
$cell.find(EDITORS_INPUT_SELECTOR).first().css("textAlign", alignment)
}
}
if (isEditing) {
this._editCellPrepared($cell)
}
if (parameters.column && !isCommandCell) {
editingController.highlightDataCell($cell, parameters)
}
this.callBase.apply(this, arguments)
},
_editCellPrepared: noop,
_formItemPrepared: noop,
_getCellOptions: function(options) {
var cellOptions = this.callBase(options);
cellOptions.isEditing = this._editingController.isEditCell(cellOptions.rowIndex, cellOptions.columnIndex);
return cellOptions
},
_createCell: function(options) {
var $cell = this.callBase(options);
var isEditRow = this._editingController.isEditRow(options.rowIndex);
isEditingOrShowEditorAlwaysDataCell(isEditRow, options) && $cell.addClass(EDITOR_CELL_CLASS);
return $cell
},
cellValue: function(rowIndex, columnIdentifier, value, text) {
var cellOptions = this.getCellOptions(rowIndex, columnIdentifier);
if (cellOptions) {
if (void 0 === value) {
return cellOptions.value
} else {
this._editingController.updateFieldValue(cellOptions, value, text, true)
}
}
},
dispose: function() {
this.callBase.apply(this, arguments);
clearTimeout(this._pointerDownTimeout)
},
_renderCore: function() {
this.callBase.apply(this, arguments);
this._editingController._focusEditorIfNeed()
}
},
headerPanel: {
_getToolbarItems: function() {
var items = this.callBase();
var editButtonItems = this.getController("editing").prepareEditButtons(this);
return editButtonItems.concat(items)
},
optionChanged: function(args) {
var fullName = args.fullName;
switch (args.name) {
case "editing":
var excludedOptions = [EDITING_POPUP_OPTION_NAME, EDITING_CHANGES_OPTION_NAME, EDITING_EDITCOLUMNNAME_OPTION_NAME, EDITING_EDITROWKEY_OPTION_NAME];
var shouldInvalidate = fullName && !excludedOptions.some(optionName => optionName === fullName);
shouldInvalidate && this._invalidate();
this.callBase(args);
break;
case "useLegacyColumnButtonTemplate":
args.handled = true;
break;
default:
this.callBase(args)
}
},
isVisible: function() {
var editingOptions = this.getController("editing").option("editing");
return this.callBase() || (null === editingOptions || void 0 === editingOptions ? void 0 : editingOptions.allowAdding)
}
}
}
}
};