devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
872 lines (863 loc) • 39.5 kB
JavaScript
/**
* DevExtreme (cjs/__internal/grids/grid_core/selection/m_selection.js)
* Version: 23.2.6
* Build date: Wed May 01 2024
*
* Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.selectionModule = exports.rowsViewSelectionExtenderMixin = exports.dataSelectionExtenderMixin = exports.columnHeadersSelectionExtenderMixin = exports.SelectionController = void 0;
var _renderer = _interopRequireDefault(require("../../../../core/renderer"));
var _common = require("../../../../core/utils/common");
var _deferred = require("../../../../core/utils/deferred");
var _extend = require("../../../../core/utils/extend");
var _iterator = require("../../../../core/utils/iterator");
var _support = require("../../../../core/utils/support");
var _type = require("../../../../core/utils/type");
var _array_utils = require("../../../../data/array_utils");
var _click = require("../../../../events/click");
var _events_engine = _interopRequireDefault(require("../../../../events/core/events_engine"));
var _hold = _interopRequireDefault(require("../../../../events/hold"));
var _index = require("../../../../events/utils/index");
var _message = _interopRequireDefault(require("../../../../localization/message"));
var _selection = _interopRequireDefault(require("../../../../ui/selection/selection"));
var _ui = _interopRequireDefault(require("../../../../ui/widget/ui.errors"));
var _m_modules = _interopRequireDefault(require("../m_modules"));
var _m_utils = _interopRequireDefault(require("../m_utils"));
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
}
}
function _inheritsLoose(subClass, superClass) {
subClass.prototype = Object.create(superClass.prototype);
subClass.prototype.constructor = subClass;
_setPrototypeOf(subClass, superClass)
}
function _setPrototypeOf(o, p) {
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(o, p) {
o.__proto__ = p;
return o
};
return _setPrototypeOf(o, p)
}
const EDITOR_CELL_CLASS = "dx-editor-cell";
const ROW_CLASS = "dx-row";
const ROW_SELECTION_CLASS = "dx-selection";
const SELECT_CHECKBOX_CLASS = "dx-select-checkbox";
const CHECKBOXES_HIDDEN_CLASS = "dx-select-checkboxes-hidden";
const COMMAND_SELECT_CLASS = "dx-command-select";
const SELECTION_DISABLED_CLASS = "dx-selection-disabled";
const DATA_ROW_CLASS = "dx-data-row";
const SHOW_CHECKBOXES_MODE = "selection.showCheckBoxesMode";
const SELECTION_MODE = "selection.mode";
const processLongTap = function(that, dxEvent) {
const rowsView = that.getView("rowsView");
const selectionController = that.getController("selection");
const $row = (0, _renderer.default)(dxEvent.target).closest(".".concat("dx-data-row"));
const rowIndex = rowsView.getRowIndex($row);
if (rowIndex < 0) {
return
}
if ("onLongTap" === that.option(SHOW_CHECKBOXES_MODE)) {
if (selectionController.isSelectionWithCheckboxes()) {
selectionController.stopSelectionWithCheckboxes()
} else {
selectionController.startSelectionWithCheckboxes()
}
} else {
if ("onClick" === that.option(SHOW_CHECKBOXES_MODE)) {
selectionController.startSelectionWithCheckboxes()
}
if ("always" !== that.option(SHOW_CHECKBOXES_MODE)) {
selectionController.changeItemSelection(rowIndex, {
control: true
})
}
}
};
const isSeveralRowsSelected = function(that, selectionFilter) {
let keyIndex = 0;
const store = that._dataController.store();
const key = store && store.key();
const isComplexKey = Array.isArray(key);
if (!selectionFilter.length) {
return false
}
if (isComplexKey && Array.isArray(selectionFilter[0]) && "and" === selectionFilter[1]) {
for (let i = 0; i < selectionFilter.length; i++) {
if (Array.isArray(selectionFilter[i])) {
if (selectionFilter[i][0] !== key[keyIndex] || "=" !== selectionFilter[i][1]) {
return true
}
keyIndex++
}
}
return false
}
return key !== selectionFilter[0]
};
const selectionCellTemplate = (container, options) => {
const {
component: component
} = options;
const rowsView = component.getView("rowsView");
if (component.option("renderAsync") && !component.option("selection.deferred")) {
options.value = component.isRowSelected(options.row.key)
}
rowsView.renderSelectCheckBoxContainer((0, _renderer.default)(container), options)
};
const selectionHeaderTemplate = (container, options) => {
const {
column: column
} = options;
const $cellElement = (0, _renderer.default)(container);
const columnHeadersView = options.component.getView("columnHeadersView");
$cellElement.addClass("dx-editor-cell");
columnHeadersView._renderSelectAllCheckBox($cellElement, column);
columnHeadersView._attachSelectAllCheckBoxClickEvent($cellElement)
};
let SelectionController = function(_modules$Controller) {
_inheritsLoose(SelectionController, _modules$Controller);
function SelectionController() {
return _modules$Controller.apply(this, arguments) || this
}
var _proto = SelectionController.prototype;
_proto.init = function() {
var _a;
const {
deferred: deferred,
selectAllMode: selectAllMode,
mode: mode
} = null !== (_a = this.option("selection")) && void 0 !== _a ? _a : {};
if ("infinite" === this.option("scrolling.mode") && !deferred && "multiple" === mode && "allPages" === selectAllMode) {
_ui.default.log("W1018")
}
this._dataController = this.getController("data");
this._columnsController = this.getController("columns");
this._stateStoringController = this.getController("stateStoring");
this._selectionMode = mode;
this._isSelectionWithCheckboxes = false;
this._selection = this._createSelection();
this._updateSelectColumn();
this.createAction("onSelectionChanged", {
excludeValidators: ["disabled", "readOnly"]
});
if (!this._dataPushedHandler) {
this._dataPushedHandler = this._handleDataPushed.bind(this);
this._dataController.pushed.add(this._dataPushedHandler)
}
};
_proto._handleDataPushed = function(changes) {
this._deselectRemovedOnPush(changes);
this._updateSelectedOnPush(changes)
};
_proto._deselectRemovedOnPush = function(changes) {
const isDeferredSelection = this.option("selection.deferred");
let removedKeys = changes.filter(change => "remove" === change.type).map(change => change.key);
if (isDeferredSelection) {
const selectedKeys = this._dataController.items().filter(item => item.isSelected).map(item => item.key);
removedKeys = removedKeys.filter(key => selectedKeys.find(selectedKey => (0, _common.equalByValue)(selectedKey, key)))
}
removedKeys.length && this.deselectRows(removedKeys)
};
_proto._updateSelectedOnPush = function(changes) {
const isDeferredSelection = this.option("selection.deferred");
if (isDeferredSelection) {
return
}
const updateChanges = changes.filter(change => "update" === change.type);
const data = this.getSelectedRowsData();
(0, _array_utils.applyBatch)({
keyInfo: this._selection.options,
data: data,
changes: updateChanges
})
};
_proto._getSelectionConfig = function() {
var _a;
const dataController = this._dataController;
const columnsController = this._columnsController;
const selectionOptions = null !== (_a = this.option("selection")) && void 0 !== _a ? _a : {};
const {
deferred: deferred
} = selectionOptions;
const scrollingMode = this.option("scrolling.mode");
const virtualPaging = "virtual" === scrollingMode || "infinite" === scrollingMode;
const allowSelectAll = this.option("selection.allowSelectAll");
const legacyScrollingMode = this.option("scrolling.legacyMode");
return {
selectedKeys: this.option("selectedRowKeys"),
mode: this._selectionMode,
deferred: deferred,
alwaysSelectByShift: selectionOptions.alwaysSelectByShift,
maxFilterLengthInRequest: selectionOptions.maxFilterLengthInRequest,
selectionFilter: this.option("selectionFilter"),
ignoreDisabledItems: true,
isVirtualPaging: virtualPaging,
allowLoadByRange() {
const hasGroupColumns = columnsController.getGroupColumns().length > 0;
return virtualPaging && !legacyScrollingMode && !hasGroupColumns && allowSelectAll && !deferred
},
key: () => null === dataController || void 0 === dataController ? void 0 : dataController.key(),
keyOf: item => null === dataController || void 0 === dataController ? void 0 : dataController.keyOf(item),
dataFields() {
var _a;
return null === (_a = dataController.dataSource()) || void 0 === _a ? void 0 : _a.select()
},
load(options) {
var _a;
return (null === (_a = dataController.dataSource()) || void 0 === _a ? void 0 : _a.load(options)) || (new _deferred.Deferred).resolve([])
},
plainItems: cached => dataController.items(true),
isItemSelected: item => item.selected,
isSelectableItem: item => "data" === (null === item || void 0 === item ? void 0 : item.rowType) && !item.isNewRow,
getItemData: item => (0, _type.isDefined)(null === item || void 0 === item ? void 0 : item.rowType) ? (null === item || void 0 === item ? void 0 : item.oldData) || (null === item || void 0 === item ? void 0 : item.data) : item,
filter: () => dataController.getCombinedFilter(deferred),
totalCount: () => dataController.totalCount(),
getLoadOptions(loadItemIndex, focusedItemIndex, shiftItemIndex) {
var _a, _b;
const {
sort: sort,
filter: filter
} = null !== (_b = null === (_a = dataController.dataSource()) || void 0 === _a ? void 0 : _a.lastLoadOptions()) && void 0 !== _b ? _b : {};
let minIndex = Math.min(loadItemIndex, focusedItemIndex);
let maxIndex = Math.max(loadItemIndex, focusedItemIndex);
if ((0, _type.isDefined)(shiftItemIndex)) {
minIndex = Math.min(shiftItemIndex, minIndex);
maxIndex = Math.max(shiftItemIndex, maxIndex)
}
const take = maxIndex - minIndex + 1;
return {
skip: minIndex,
take: take,
filter: filter,
sort: sort
}
},
onSelectionChanged: this._updateSelectedItems.bind(this)
}
};
_proto._updateSelectColumn = function() {
const columnsController = this._columnsController;
const isSelectColumnVisible = this.isSelectColumnVisible();
columnsController.addCommandColumn({
type: "selection",
command: "select",
visible: isSelectColumnVisible,
visibleIndex: -1,
dataType: "boolean",
alignment: "center",
cssClass: "dx-command-select",
width: "auto",
cellTemplate: selectionCellTemplate,
headerCellTemplate: selectionHeaderTemplate
});
columnsController.columnOption("command:select", "visible", isSelectColumnVisible)
};
_proto._createSelection = function() {
const options = this._getSelectionConfig();
return new _selection.default(options)
};
_proto._fireSelectionChanged = function(options) {
const argument = this.option("selection.deferred") ? {
selectionFilter: this.option("selectionFilter")
} : {
selectedRowKeys: this.option("selectedRowKeys")
};
this.selectionChanged.fire(argument);
if (options) {
this.executeAction("onSelectionChanged", options)
}
};
_proto._updateCheckboxesState = function(options) {
const {
isDeferredMode: isDeferredMode
} = options;
const {
selectionFilter: selectionFilter
} = options;
const {
selectedItemKeys: selectedItemKeys
} = options;
const {
removedItemKeys: removedItemKeys
} = options;
if ("onClick" === this.option(SHOW_CHECKBOXES_MODE)) {
if (isDeferredMode ? selectionFilter && isSeveralRowsSelected(this, selectionFilter) : selectedItemKeys.length > 1) {
this.startSelectionWithCheckboxes()
} else if (isDeferredMode ? selectionFilter && !selectionFilter.length : 0 === selectedItemKeys.length && removedItemKeys.length) {
this.stopSelectionWithCheckboxes()
}
}
};
_proto._updateSelectedItems = function(args) {
const that = this;
let selectionChangedOptions;
const isDeferredMode = that.option("selection.deferred");
const selectionFilter = that._selection.selectionFilter();
const dataController = that._dataController;
const items = dataController.items(true);
const visibleItems = dataController.items();
if (!items) {
return
}
const isSelectionWithCheckboxes = that.isSelectionWithCheckboxes();
const changedItemIndexes = that.getChangedItemIndexes(items);
const visibleChangedItemIndexes = that.getChangedItemIndexes(visibleItems);
that._updateCheckboxesState({
selectedItemKeys: args.selectedItemKeys,
removedItemKeys: args.removedItemKeys,
selectionFilter: selectionFilter,
isDeferredMode: isDeferredMode
});
if (changedItemIndexes.length || isSelectionWithCheckboxes !== that.isSelectionWithCheckboxes()) {
dataController.updateItems({
changeType: "updateSelection",
itemIndexes: visibleChangedItemIndexes
})
}
if (isDeferredMode) {
that.option("selectionFilter", selectionFilter);
selectionChangedOptions = {}
} else if (args.addedItemKeys.length || args.removedItemKeys.length) {
that._selectedItemsInternalChange = true;
that.option("selectedRowKeys", args.selectedItemKeys.slice(0));
that._selectedItemsInternalChange = false;
selectionChangedOptions = {
selectedRowsData: args.selectedItems.slice(0),
selectedRowKeys: args.selectedItemKeys.slice(0),
currentSelectedRowKeys: args.addedItemKeys.slice(0),
currentDeselectedRowKeys: args.removedItemKeys.slice(0)
}
}
that._fireSelectionChanged(selectionChangedOptions)
};
_proto.getChangedItemIndexes = function(items) {
const that = this;
const itemIndexes = [];
const isDeferredSelection = this.option("selection.deferred");
for (let i = 0, {
length: length
} = items; i < length; i++) {
const row = items[i];
const isItemSelected = that.isRowSelected(isDeferredSelection ? row.data : row.key);
if (that._selection.isDataItem(row) && row.isSelected !== isItemSelected) {
itemIndexes.push(i)
}
}
return itemIndexes
};
_proto.callbackNames = function() {
return ["selectionChanged"]
};
_proto.optionChanged = function(args) {
_modules$Controller.prototype.optionChanged.call(this, args);
switch (args.name) {
case "selection": {
const oldSelectionMode = this._selectionMode;
this.init();
if ("selection.showCheckBoxesMode" !== args.fullName) {
const selectionMode = this._selectionMode;
let selectedRowKeys = this.option("selectedRowKeys");
if (oldSelectionMode !== selectionMode) {
if ("single" === selectionMode) {
if (selectedRowKeys.length > 1) {
selectedRowKeys = [selectedRowKeys[0]]
}
} else if ("multiple" !== selectionMode) {
selectedRowKeys = []
}
}
this.selectRows(selectedRowKeys).always(() => {
this._fireSelectionChanged()
})
}
this._columnsController.updateColumns();
args.handled = true;
break
}
case "selectionFilter":
this._selection.selectionFilter(args.value);
args.handled = true;
break;
case "selectedRowKeys": {
const value = args.value || [];
if (Array.isArray(value) && !this._selectedItemsInternalChange && (this.component.getDataSource() || !value.length)) {
this.selectRows(value)
}
args.handled = true;
break
}
}
};
_proto.publicMethods = function() {
return ["selectRows", "deselectRows", "selectRowsByIndexes", "getSelectedRowKeys", "getSelectedRowsData", "clearSelection", "selectAll", "deselectAll", "startSelectionWithCheckboxes", "stopSelectionWithCheckboxes", "isRowSelected"]
};
_proto.isRowSelected = function(arg) {
return this._selection.isItemSelected(arg)
};
_proto.isSelectColumnVisible = function() {
return "multiple" === this.option(SELECTION_MODE) && ("always" === this.option(SHOW_CHECKBOXES_MODE) || "onClick" === this.option(SHOW_CHECKBOXES_MODE) || this._isSelectionWithCheckboxes)
};
_proto._isOnePageSelectAll = function() {
return "page" === this.option("selection.selectAllMode")
};
_proto.isSelectAll = function() {
return this._selection.getSelectAllState(this._isOnePageSelectAll())
};
_proto.selectAll = function() {
if ("onClick" === this.option(SHOW_CHECKBOXES_MODE)) {
this.startSelectionWithCheckboxes()
}
return this._selection.selectAll(this._isOnePageSelectAll())
};
_proto.deselectAll = function() {
return this._selection.deselectAll(this._isOnePageSelectAll())
};
_proto.clearSelection = function() {
return this.selectedItemKeys([])
};
_proto.refresh = function() {
var _a;
const selectedRowKeys = null !== (_a = this.option("selectedRowKeys")) && void 0 !== _a ? _a : [];
if (!this.option("selection.deferred") && selectedRowKeys.length) {
return this.selectedItemKeys(selectedRowKeys)
}
return (new _deferred.Deferred).resolve().promise()
};
_proto.selectedItemKeys = function(value, preserve, isDeselect, isSelectAll) {
return this._selection.selectedItemKeys(value, preserve, isDeselect, isSelectAll)
};
_proto.getSelectedRowKeys = function(mode) {
return this._selection.getSelectedItemKeys()
};
_proto.selectRows = function(keys, preserve) {
return this.selectedItemKeys(keys, preserve)
};
_proto.deselectRows = function(keys) {
return this.selectedItemKeys(keys, true, true)
};
_proto.selectRowsByIndexes = function(indexes) {
const items = this._dataController.items();
const keys = [];
if (!Array.isArray(indexes)) {
indexes = Array.prototype.slice.call(arguments, 0)
}(0, _iterator.each)(indexes, (function() {
const item = items[this];
if (item && "data" === item.rowType) {
keys.push(item.key)
}
}));
return this.selectRows(keys)
};
_proto.getSelectedRowsData = function(mode) {
return this._selection.getSelectedItems()
};
_proto.loadSelectedItemsWithFilter = function() {
return this._selection.loadSelectedItemsWithFilter()
};
_proto.changeItemSelection = function(visibleItemIndex, keys, setFocusOnly) {
keys = keys || {};
if (this.isSelectionWithCheckboxes()) {
keys.control = true
}
const loadedItemIndex = visibleItemIndex + this._dataController.getRowIndexOffset() - this._dataController.getRowIndexOffset(true);
return this._selection.changeItemSelection(loadedItemIndex, keys, setFocusOnly)
};
_proto.focusedItemIndex = function(itemIndex) {
const that = this;
if ((0, _type.isDefined)(itemIndex)) {
that._selection._focusedItemIndex = itemIndex
} else {
return that._selection._focusedItemIndex
}
return
};
_proto.isSelectionWithCheckboxes = function() {
return "multiple" === this.option(SELECTION_MODE) && ("always" === this.option(SHOW_CHECKBOXES_MODE) || this._isSelectionWithCheckboxes)
};
_proto.startSelectionWithCheckboxes = function() {
const that = this;
if ("multiple" === that.option(SELECTION_MODE) && !that.isSelectionWithCheckboxes()) {
that._isSelectionWithCheckboxes = true;
that._updateSelectColumn();
return true
}
return false
};
_proto.stopSelectionWithCheckboxes = function() {
const that = this;
if (that._isSelectionWithCheckboxes) {
that._isSelectionWithCheckboxes = false;
that._updateSelectColumn();
return true
}
return false
};
return SelectionController
}(_m_modules.default.Controller);
exports.SelectionController = SelectionController;
const dataSelectionExtenderMixin = Base => function(_Base) {
_inheritsLoose(DataControllerSelectionExtender, _Base);
function DataControllerSelectionExtender() {
return _Base.apply(this, arguments) || this
}
var _proto2 = DataControllerSelectionExtender.prototype;
_proto2.init = function() {
const isDeferredMode = this.option("selection.deferred");
_Base.prototype.init.apply(this, arguments);
if (isDeferredMode) {
this._selectionController._updateCheckboxesState({
isDeferredMode: true,
selectionFilter: this.option("selectionFilter")
})
}
};
_proto2._loadDataSource = function() {
const that = this;
return _Base.prototype._loadDataSource.call(this).always(() => {
that._selectionController.refresh()
})
};
_proto2._processDataItem = function(item, options) {
const hasSelectColumn = this._selectionController.isSelectColumnVisible();
const isDeferredSelection = options.isDeferredSelection = void 0 === options.isDeferredSelection ? this.option("selection.deferred") : options.isDeferredSelection;
const dataItem = _Base.prototype._processDataItem.apply(this, arguments);
dataItem.isSelected = this._selectionController.isRowSelected(isDeferredSelection ? dataItem.data : dataItem.key);
if (hasSelectColumn && dataItem.values) {
for (let i = 0; i < options.visibleColumns.length; i++) {
if ("select" === options.visibleColumns[i].command) {
dataItem.values[i] = dataItem.isSelected;
break
}
}
}
return dataItem
};
_proto2.refresh = function(options) {
const that = this;
const d = new _deferred.Deferred;
_Base.prototype.refresh.apply(this, arguments).done(() => {
if (!options || options.selection) {
that._selectionController.refresh().done(d.resolve).fail(d.reject)
} else {
d.resolve()
}
}).fail(d.reject);
return d.promise()
};
_proto2._handleDataChanged = function(e) {
const hasLoadOperation = this.hasLoadOperation();
_Base.prototype._handleDataChanged.apply(this, arguments);
if (hasLoadOperation && !this._repaintChangesOnly) {
this._selectionController.focusedItemIndex(-1)
}
};
_proto2._applyChange = function(change) {
if (change && "updateSelection" === change.changeType) {
change.items.forEach((item, index) => {
const currentItem = this._items[index];
if (currentItem) {
currentItem.isSelected = item.isSelected;
currentItem.values = item.values
}
});
return
}
return _Base.prototype._applyChange.apply(this, arguments)
};
_proto2._endUpdateCore = function() {
const changes = this._changes;
const isUpdateSelection = changes.length > 1 && changes.every(change => "updateSelection" === change.changeType);
if (isUpdateSelection) {
const itemIndexes = changes.map(change => change.itemIndexes || []).reduce((a, b) => a.concat(b));
this._changes = [{
changeType: "updateSelection",
itemIndexes: itemIndexes
}]
}
_Base.prototype._endUpdateCore.apply(this, arguments)
};
return DataControllerSelectionExtender
}(Base);
exports.dataSelectionExtenderMixin = dataSelectionExtenderMixin;
const contextMenu = Base => function(_Base2) {
_inheritsLoose(ContextMenuControllerSelectionExtender, _Base2);
function ContextMenuControllerSelectionExtender() {
return _Base2.apply(this, arguments) || this
}
var _proto3 = ContextMenuControllerSelectionExtender.prototype;
_proto3._contextMenuPrepared = function(options) {
const dxEvent = options.event;
if (dxEvent.originalEvent && "dxhold" !== dxEvent.originalEvent.type || options.items && options.items.length > 0) {
return
}
processLongTap(this, dxEvent)
};
return ContextMenuControllerSelectionExtender
}(Base);
const columnHeadersSelectionExtenderMixin = Base => function(_Base3) {
_inheritsLoose(ColumnHeadersSelectionExtender, _Base3);
function ColumnHeadersSelectionExtender() {
return _Base3.apply(this, arguments) || this
}
var _proto4 = ColumnHeadersSelectionExtender.prototype;
_proto4.init = function() {
_Base3.prototype.init.call(this);
this._selectionController.selectionChanged.add(this._updateSelectAllValue.bind(this))
};
_proto4._updateSelectAllValue = function() {
const that = this;
const $element = that.element();
const $editor = $element && $element.find(".".concat("dx-select-checkbox"));
if ($element && $editor.length && "multiple" === that.option("selection.mode")) {
const selectAllValue = that._selectionController.isSelectAll();
const hasSelection = false !== selectAllValue;
const isVisible = that.option("selection.allowSelectAll") ? !that._dataController.isEmpty() : hasSelection;
$editor.dxCheckBox("instance").option({
visible: isVisible,
value: selectAllValue
})
}
};
_proto4._handleDataChanged = function(e) {
_Base3.prototype._handleDataChanged.call(this, e);
if (!e || "refresh" === e.changeType || e.repaintChangesOnly && "update" === e.changeType) {
this.waitAsyncTemplates().done(() => {
this._updateSelectAllValue()
})
}
};
_proto4._renderSelectAllCheckBox = function($container, column) {
const that = this;
const isEmptyData = that._dataController.isEmpty();
const groupElement = (0, _renderer.default)("<div>").appendTo($container).addClass("dx-select-checkbox");
that.setAria("label", _message.default.format("dxDataGrid-ariaSelectAll"), groupElement);
that._editorFactoryController.createEditor(groupElement, (0, _extend.extend)({}, column, {
parentType: "headerRow",
dataType: "boolean",
value: this._selectionController.isSelectAll(),
editorOptions: {
visible: !isEmptyData && (that.option("selection.allowSelectAll") || false !== this._selectionController.isSelectAll())
},
tabIndex: that.option("useLegacyKeyboardNavigation") ? -1 : that.option("tabIndex") || 0,
setValue: (value, e) => {
const allowSelectAll = that.option("selection.allowSelectAll");
e.component.option("visible", allowSelectAll || false !== e.component.option("value"));
if (!e.event || this._selectionController.isSelectAll() === value) {
return
}
if (e.value && !allowSelectAll) {
e.component.option("value", false)
} else {
e.value ? this._selectionController.selectAll() : this._selectionController.deselectAll()
}
e.event.preventDefault()
}
}));
return groupElement
};
_proto4._attachSelectAllCheckBoxClickEvent = function($element) {
_events_engine.default.on($element, _click.name, this.createAction(e => {
const {
event: event
} = e;
if (!(0, _renderer.default)(event.target).closest(".".concat("dx-select-checkbox")).length) {
_events_engine.default.trigger((0, _renderer.default)(event.currentTarget).children(".".concat("dx-select-checkbox")), _click.name)
}
event.preventDefault()
}))
};
return ColumnHeadersSelectionExtender
}(Base);
exports.columnHeadersSelectionExtenderMixin = columnHeadersSelectionExtenderMixin;
const rowsViewSelectionExtenderMixin = Base => function(_Base4) {
_inheritsLoose(RowsViewSelectionExtender, _Base4);
function RowsViewSelectionExtender() {
return _Base4.apply(this, arguments) || this
}
var _proto5 = RowsViewSelectionExtender.prototype;
_proto5.renderSelectCheckBoxContainer = function($container, options) {
if ("data" === options.rowType && !options.row.isNewRow) {
$container.addClass("dx-editor-cell");
this._attachCheckBoxClickEvent($container);
this._renderSelectCheckBox($container, options)
} else {
_m_utils.default.setEmptyText($container)
}
};
_proto5._renderSelectCheckBox = function(container, options) {
const groupElement = (0, _renderer.default)("<div>").addClass("dx-select-checkbox").appendTo(container);
this.setAria("label", _message.default.format("dxDataGrid-ariaSelectRow"), groupElement);
this._editorFactoryController.createEditor(groupElement, (0, _extend.extend)({}, options.column, {
parentType: "dataRow",
dataType: "boolean",
lookup: null,
value: options.value,
setValue(value, e) {
var _a;
if ("keydown" === (null === (_a = null === e || void 0 === e ? void 0 : e.event) || void 0 === _a ? void 0 : _a.type)) {
_events_engine.default.trigger(e.element, _click.name, e)
}
},
row: options.row
}));
return groupElement
};
_proto5._attachCheckBoxClickEvent = function($element) {
_events_engine.default.on($element, _click.name, this.createAction((function(e) {
const {
event: event
} = e;
const rowIndex = this.getRowIndex((0, _renderer.default)(event.currentTarget).closest(".".concat("dx-row")));
if (rowIndex >= 0) {
this._selectionController.startSelectionWithCheckboxes();
this._selectionController.changeItemSelection(rowIndex, {
shift: event.shiftKey
});
if ((0, _renderer.default)(event.target).closest(".".concat("dx-select-checkbox")).length) {
this._dataController.updateItems({
changeType: "updateSelection",
itemIndexes: [rowIndex]
})
}
}
})))
};
_proto5._update = function(change) {
const that = this;
const tableElements = that.getTableElements();
if ("updateSelection" === change.changeType) {
if (tableElements.length > 0) {
(0, _iterator.each)(tableElements, (_, tableElement) => {
(0, _iterator.each)(change.itemIndexes || [], (_, index) => {
let $row;
if (change.items[index]) {
$row = that._getRowElements((0, _renderer.default)(tableElement)).eq(index);
if ($row.length) {
const {
isSelected: isSelected
} = change.items[index];
$row.toggleClass("dx-selection", void 0 === isSelected ? false : isSelected).find(".".concat("dx-select-checkbox")).dxCheckBox("option", "value", isSelected);
that.setAria("selected", isSelected, $row)
}
}
})
});
that._updateCheckboxesClass()
}
} else {
_Base4.prototype._update.call(this, change)
}
};
_proto5._createTable = function() {
const that = this;
const selectionMode = that.option("selection.mode");
const $table = _Base4.prototype._createTable.apply(that, arguments);
if ("none" !== selectionMode) {
if ("onLongTap" === that.option(SHOW_CHECKBOXES_MODE) || !_support.touch) {
_events_engine.default.on($table, (0, _index.addNamespace)(_hold.default.name, "dxDataGridRowsView"), ".".concat("dx-data-row"), that.createAction(e => {
processLongTap(that.component, e.event);
e.event.stopPropagation()
}))
}
_events_engine.default.on($table, "mousedown selectstart", that.createAction(e => {
const {
event: event
} = e;
if (event.shiftKey) {
event.preventDefault()
}
}))
}
return $table
};
_proto5._createRow = function(row) {
const $row = _Base4.prototype._createRow.apply(this, arguments);
if (row) {
const {
isSelected: isSelected
} = row;
if (isSelected) {
$row.addClass("dx-selection")
}
const selectionMode = this.option(SELECTION_MODE);
if ("none" !== selectionMode) {
this.setAria("selected", isSelected, $row)
}
}
return $row
};
_proto5._rowClickForTreeList = function(e) {
_Base4.prototype._rowClick.call(this, e)
};
_proto5._rowClick = function(e) {
const that = this;
const dxEvent = e.event;
const isSelectionDisabled = (0, _renderer.default)(dxEvent.target).closest(".".concat("dx-selection-disabled")).length;
if (!that.isClickableElement((0, _renderer.default)(dxEvent.target))) {
if (!isSelectionDisabled && ("multiple" !== that.option(SELECTION_MODE) || "always" !== that.option(SHOW_CHECKBOXES_MODE))) {
if (that._selectionController.changeItemSelection(e.rowIndex, {
control: (0, _index.isCommandKeyPressed)(dxEvent),
shift: dxEvent.shiftKey
})) {
dxEvent.preventDefault();
e.handled = true
}
}
_Base4.prototype._rowClick.call(this, e)
}
};
_proto5.isClickableElement = function($target) {
const isCommandSelect = $target.closest(".".concat("dx-command-select")).length;
return !!isCommandSelect
};
_proto5._renderCore = function(change) {
const deferred = _Base4.prototype._renderCore.call(this, change);
this._updateCheckboxesClass();
return deferred
};
_proto5._updateCheckboxesClass = function() {
const tableElements = this.getTableElements();
const isCheckBoxesHidden = this._selectionController.isSelectColumnVisible() && !this._selectionController.isSelectionWithCheckboxes();
(0, _iterator.each)(tableElements, (_, tableElement) => {
(0, _renderer.default)(tableElement).toggleClass(CHECKBOXES_HIDDEN_CLASS, isCheckBoxesHidden)
})
};
return RowsViewSelectionExtender
}(Base);
exports.rowsViewSelectionExtenderMixin = rowsViewSelectionExtenderMixin;
const selectionModule = {
defaultOptions: () => ({
selection: {
mode: "none",
showCheckBoxesMode: "onClick",
allowSelectAll: true,
selectAllMode: "allPages",
deferred: false,
maxFilterLengthInRequest: 1500,
alwaysSelectByShift: false
},
selectionFilter: [],
selectedRowKeys: []
}),
controllers: {
selection: SelectionController
},
extenders: {
controllers: {
data: dataSelectionExtenderMixin,
contextMenu: contextMenu
},
views: {
columnHeadersView: columnHeadersSelectionExtenderMixin,
rowsView: rowsViewSelectionExtenderMixin
}
}
};
exports.selectionModule = selectionModule;