devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
115 lines (112 loc) • 4.92 kB
JavaScript
/**
* DevExtreme (cjs/ui/tree_list/ui.tree_list.focus.js)
* Version: 21.2.4
* Build date: Mon Dec 06 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
;
var _uiTree_list = _interopRequireDefault(require("./ui.tree_list.core"));
var _extend = require("../../core/utils/extend");
var _deferred = require("../../core/utils/deferred");
var _uiGrid_core = require("../grid_core/ui.grid_core.focus");
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
}
}
function findIndex(items, callback) {
var result = -1;
items.forEach((function(node, index) {
if (callback(node)) {
result = index
}
}));
return result
}
_uiTree_list.default.registerModule("focus", (0, _extend.extend)(true, {}, _uiGrid_core.focusModule, {
extenders: {
controllers: {
data: {
changeRowExpand: function(key) {
if (this.option("focusedRowEnabled") && this.isRowExpanded(key)) {
if (this._isFocusedRowInside(key)) {
this.option("focusedRowKey", key)
}
}
return this.callBase.apply(this, arguments)
},
_isFocusedRowInside: function(parentKey) {
var focusedRowKey = this.option("focusedRowKey");
var rowIndex = this.getRowIndexByKey(focusedRowKey);
var focusedRow = rowIndex >= 0 && this.getVisibleRows()[rowIndex];
var parent = focusedRow && focusedRow.node.parent;
while (parent) {
if (parent.key === parentKey) {
return true
}
parent = parent.parent
}
return false
},
getParentKey: function(key) {
var dataSource = this._dataSource;
var node = this.getNodeByKey(key);
var d = new _deferred.Deferred;
if (node) {
d.resolve(node.parent ? node.parent.key : void 0)
} else {
dataSource.load({
filter: [dataSource.getKeyExpr(), "=", key]
}).done((function(items) {
var parentData = items[0];
if (parentData) {
d.resolve(dataSource.parentKeyOf(parentData))
} else {
d.reject()
}
})).fail(d.reject)
}
return d.promise()
},
expandAscendants: function(key) {
var that = this;
var dataSource = that._dataSource;
var d = new _deferred.Deferred;
that.getParentKey(key).done((function(parentKey) {
if (dataSource && void 0 !== parentKey && parentKey !== that.option("rootValue")) {
dataSource._isNodesInitializing = true;
that.expandRow(parentKey);
dataSource._isNodesInitializing = false;
that.expandAscendants(parentKey).done(d.resolve).fail(d.reject)
} else {
d.resolve()
}
})).fail(d.reject);
return d.promise()
},
getPageIndexByKey: function(key) {
var that = this;
var dataSource = that._dataSource;
var d = new _deferred.Deferred;
that.expandAscendants(key).done((function() {
dataSource.load({
parentIds: []
}).done((function(nodes) {
var offset = findIndex(nodes, (function(node) {
return that.keyOf(node.data) === key
}));
var pageIndex = -1;
if (offset >= 0) {
pageIndex = Math.floor(offset / that.pageSize())
}
d.resolve(pageIndex)
})).fail(d.reject)
})).fail(d.reject);
return d.promise()
}
}
}
}
}));