devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
1,120 lines (1,119 loc) • 69.6 kB
JavaScript
/**
* DevExtreme (cjs/ui/tree_view/ui.tree_view.base.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";
exports.default = void 0;
var _size = require("../../core/utils/size");
var _renderer = _interopRequireDefault(require("../../core/renderer"));
var _dom_adapter = _interopRequireDefault(require("../../core/dom_adapter"));
var _events_engine = _interopRequireDefault(require("../../events/core/events_engine"));
var _message = _interopRequireDefault(require("../../localization/message"));
var _click = require("../../events/click");
var _common = require("../../core/utils/common");
var _window = require("../../core/utils/window");
var _type = require("../../core/utils/type");
var _extend = require("../../core/utils/extend");
var _iterator = require("../../core/utils/iterator");
var _element = require("../../core/element");
var _check_box = _interopRequireDefault(require("../check_box"));
var _ui = _interopRequireDefault(require("../hierarchical_collection/ui.hierarchical_collection_widget"));
var _index = require("../../events/utils/index");
var _pointer = _interopRequireDefault(require("../../events/pointer"));
var _double_click = require("../../events/double_click");
var _fx = _interopRequireDefault(require("../../animation/fx"));
var _ui2 = _interopRequireDefault(require("../scroll_view/ui.scrollable"));
var _load_indicator = _interopRequireDefault(require("../load_indicator"));
var _deferred = require("../../core/utils/deferred");
var _support = require("../../core/utils/support");
var _get_relative_offset = require("../../renovation/ui/scroll_view/utils/get_relative_offset");
var _consts = require("../../renovation/ui/scroll_view/common/consts");
var _icon = require("../../core/utils/icon");
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
}
}
const WIDGET_CLASS = "dx-treeview";
const NODE_CLASS = "".concat(WIDGET_CLASS, "-node");
const NODE_CONTAINER_CLASS = "".concat(NODE_CLASS, "-container");
const NODE_LOAD_INDICATOR_CLASS = "".concat(NODE_CLASS, "-loadindicator");
const OPENED_NODE_CONTAINER_CLASS = "".concat(NODE_CLASS, "-container-opened");
const IS_LEAF = "".concat(NODE_CLASS, "-is-leaf");
const ITEM_CLASS = "".concat(WIDGET_CLASS, "-item");
const ITEM_WITH_CHECKBOX_CLASS = "".concat(ITEM_CLASS, "-with-checkbox");
const ITEM_WITH_CUSTOM_EXPANDER_ICON_CLASS = "".concat(ITEM_CLASS, "-with-custom-expander-icon");
const CUSTOM_EXPANDER_ICON_ITEM_CONTAINER_CLASS = "".concat(WIDGET_CLASS, "-custom-expander-icon-item-container");
const ITEM_WITHOUT_CHECKBOX_CLASS = "".concat(ITEM_CLASS, "-without-checkbox");
const ITEM_DATA_KEY = "".concat(ITEM_CLASS, "-data");
const TOGGLE_ITEM_VISIBILITY_CLASS = "".concat(WIDGET_CLASS, "-toggle-item-visibility");
const CUSTOM_COLLAPSE_ICON_CLASS = "".concat(WIDGET_CLASS, "-custom-collapse-icon");
const CUSTOM_EXPAND_ICON_CLASS = "".concat(WIDGET_CLASS, "-custom-expand-icon");
const LOAD_INDICATOR_CLASS = "".concat(WIDGET_CLASS, "-loadindicator");
const LOAD_INDICATOR_WRAPPER_CLASS = "".concat(WIDGET_CLASS, "-loadindicator-wrapper");
const TOGGLE_ITEM_VISIBILITY_OPENED_CLASS = "".concat(WIDGET_CLASS, "-toggle-item-visibility-opened");
const SELECT_ALL_ITEM_CLASS = "".concat(WIDGET_CLASS, "-select-all-item");
const INVISIBLE_STATE_CLASS = "dx-state-invisible";
const DISABLED_STATE_CLASS = "dx-state-disabled";
const SELECTED_ITEM_CLASS = "dx-state-selected";
const EXPAND_EVENT_NAMESPACE = "dxTreeView_expand";
const DATA_ITEM_ID = "data-item-id";
const ITEM_URL_CLASS = "dx-item-url";
const CHECK_BOX_CLASS = "dx-checkbox";
const CHECK_BOX_ICON_CLASS = "dx-checkbox-icon";
const ROOT_NODE_CLASS = "".concat(WIDGET_CLASS, "-root-node");
const EXPANDER_ICON_STUB_CLASS = "".concat(WIDGET_CLASS, "-expander-icon-stub");
const TreeViewBase = _ui.default.inherit({
_supportedKeys: function(e) {
const click = e => {
const $itemElement = (0, _renderer.default)(this.option("focusedElement"));
if (!$itemElement.length) {
return
}
e.target = $itemElement;
e.currentTarget = $itemElement;
this._itemClickHandler(e, $itemElement.children("." + ITEM_CLASS));
const expandEventName = this._getEventNameByOption(this.option("expandEvent"));
const expandByClick = expandEventName === (0, _index.addNamespace)(_click.name, "dxTreeView_expand");
if (expandByClick) {
this._expandEventHandler(e)
}
};
const select = e => {
e.preventDefault();
const $focusedElement = (0, _renderer.default)(this.option("focusedElement"));
const checkboxInstance = this._getCheckBoxInstance($focusedElement);
if (!checkboxInstance.option("disabled")) {
const currentState = checkboxInstance.option("value");
this._updateItemSelection(!currentState, $focusedElement.find("." + ITEM_CLASS).get(0), true)
}
};
const toggleExpandedNestedItems = function(state, e) {
if (!this.option("expandAllEnabled")) {
return
}
e.preventDefault();
const $rootElement = (0, _renderer.default)(this.option("focusedElement"));
if (!$rootElement.length) {
return
}
const rootItem = this._getItemData($rootElement.find(".".concat(ITEM_CLASS)));
this._toggleExpandedNestedItems([rootItem], state)
};
return (0, _extend.extend)(this.callBase(), {
enter: this._showCheckboxes() ? select : click,
space: this._showCheckboxes() ? select : click,
asterisk: toggleExpandedNestedItems.bind(this, true),
minus: toggleExpandedNestedItems.bind(this, false)
})
},
_toggleExpandedNestedItems: function(items, state) {
if (!items) {
return
}
for (let i = 0, len = items.length; i < len; i++) {
const item = items[i];
const node = this._dataAdapter.getNodeByItem(item);
this._toggleExpandedState(node, state);
this._toggleExpandedNestedItems(item.items, state)
}
},
_getNodeElement: function(node, cache) {
const key = this._encodeString(node.internalFields.key);
if (cache) {
if (!cache.$nodeByKey) {
cache.$nodeByKey = {};
this.$element().find(".".concat(NODE_CLASS)).each((function() {
const $node = (0, _renderer.default)(this);
const key = $node.attr(DATA_ITEM_ID);
cache.$nodeByKey[key] = $node
}))
}
return cache.$nodeByKey[key] || (0, _renderer.default)()
}
const element = this.$element().get(0).querySelector("[".concat(DATA_ITEM_ID, '="').concat(key, '"]'));
return (0, _renderer.default)(element)
},
_activeStateUnit: "." + ITEM_CLASS,
_widgetClass: function() {
return WIDGET_CLASS
},
_getDefaultOptions: function() {
const defaultOptions = (0, _extend.extend)(this.callBase(), {
animationEnabled: true,
dataStructure: "tree",
deferRendering: true,
expandAllEnabled: false,
hasItemsExpr: "hasItems",
selectNodesRecursive: true,
expandNodesRecursive: true,
showCheckBoxesMode: "none",
expandIcon: null,
collapseIcon: null,
selectAllText: _message.default.format("dxList-selectAll"),
onItemSelectionChanged: null,
onItemExpanded: null,
onItemCollapsed: null,
scrollDirection: "vertical",
useNativeScrolling: true,
virtualModeEnabled: false,
rootValue: 0,
focusStateEnabled: false,
selectionMode: "multiple",
expandEvent: "dblclick",
selectByClick: false,
createChildren: null,
onSelectAllValueChanged: null
});
return (0, _extend.extend)(true, defaultOptions, {
integrationOptions: {
useDeferUpdateForTemplates: false
}
})
},
_defaultOptionsRules: function() {
return this.callBase().concat([{
device: function() {
return !_support.nativeScrolling
},
options: {
useNativeScrolling: false
}
}])
},
_initSelectedItems: _common.noop,
_syncSelectionOptions: _common.asyncNoop,
_fireSelectionChanged: function() {
const selectionChangePromise = this._selectionChangePromise;
(0, _deferred.when)(selectionChangePromise).done(function() {
this._createActionByOption("onSelectionChanged", {
excludeValidators: ["disabled", "readOnly"]
})()
}.bind(this))
},
_createSelectAllValueChangedAction: function() {
this._selectAllValueChangedAction = this._createActionByOption("onSelectAllValueChanged", {
excludeValidators: ["disabled", "readOnly"]
})
},
_fireSelectAllValueChanged: function(value) {
this._selectAllValueChangedAction({
value: value
})
},
_checkBoxModeChange: function(value, previousValue) {
const searchEnabled = this.option("searchEnabled");
const previousSelectAllEnabled = this._selectAllEnabled(previousValue);
const previousItemsContainer = this._itemContainer(searchEnabled, previousSelectAllEnabled);
this._detachClickEvent(previousItemsContainer);
this._detachExpandEvent(previousItemsContainer);
if ("none" === previousValue || "none" === value) {
return
}
const selectAllExists = this._$selectAllItem && this._$selectAllItem.length;
switch (value) {
case "selectAll":
if (!selectAllExists) {
this._createSelectAllValueChangedAction();
this._renderSelectAllItem()
}
break;
case "normal":
if (selectAllExists) {
this._$selectAllItem.remove();
delete this._$selectAllItem
}
}
},
_removeSelection: function() {
const that = this;
(0, _iterator.each)(this._dataAdapter.getFullData(), (function(_, node) {
if (!that._hasChildren(node)) {
return
}
that._dataAdapter.toggleSelection(node.internalFields.key, false, true)
}))
},
_optionChanged: function(args) {
const {
name: name,
value: value,
previousValue: previousValue
} = args;
switch (name) {
case "selectAllText":
if (this._$selectAllItem) {
this._$selectAllItem.dxCheckBox("instance").option("text", value)
}
break;
case "showCheckBoxesMode":
this._checkBoxModeChange(value, previousValue);
this._invalidate();
break;
case "scrollDirection":
this.getScrollable().option("direction", value);
break;
case "useNativeScrolling":
this.getScrollable().option("useNative", value);
break;
case "items":
delete this._$selectAllItem;
this.callBase(args);
break;
case "dataSource":
this.callBase(args);
this._initDataAdapter();
this._filter = {};
break;
case "hasItemsExpr":
this._initAccessors();
this.repaint();
break;
case "expandEvent":
this._attachExpandEvent();
break;
case "deferRendering":
case "dataStructure":
case "rootValue":
case "createChildren":
case "expandNodesRecursive":
case "onItemSelectionChanged":
case "onItemExpanded":
case "onItemCollapsed":
case "expandAllEnabled":
case "animationEnabled":
case "virtualModeEnabled":
case "selectByClick":
break;
case "selectionMode":
this._initDataAdapter();
this.callBase(args);
break;
case "onSelectAllValueChanged":
this._createSelectAllValueChangedAction();
break;
case "selectNodesRecursive":
this._dataAdapter.setOption("recursiveSelection", args.value);
this.repaint();
break;
case "expandIcon":
case "collapseIcon":
this.repaint();
break;
default:
this.callBase(args)
}
},
_initDataSource: function() {
if (this._useCustomChildrenLoader()) {
this._loadChildrenByCustomLoader(null).done(function(newItems) {
if (newItems && newItems.length) {
this.option("items", newItems)
}
}.bind(this))
} else {
this.callBase();
this._isVirtualMode() && this._initVirtualMode()
}
},
_initVirtualMode: function() {
const filter = this._filter;
if (!filter.custom) {
filter.custom = this._dataSource.filter()
}
if (!filter.internal) {
filter.internal = [this.option("parentIdExpr"), this.option("rootValue")]
}
},
_useCustomChildrenLoader: function() {
return (0, _type.isFunction)(this.option("createChildren")) && this._isDataStructurePlain()
},
_loadChildrenByCustomLoader: function(parentNode) {
const invocationResult = this.option("createChildren").call(this, parentNode);
if (Array.isArray(invocationResult)) {
return (new _deferred.Deferred).resolve(invocationResult).promise()
}
if (invocationResult && (0, _type.isFunction)(invocationResult.then)) {
return (0, _deferred.fromPromise)(invocationResult)
}
return (new _deferred.Deferred).resolve([]).promise()
},
_combineFilter: function() {
if (!this._filter.custom || !this._filter.custom.length) {
return this._filter.internal
}
return [this._filter.custom, this._filter.internal]
},
_dataSourceLoadErrorHandler: function() {
this._renderEmptyMessage()
},
_init: function() {
this._filter = {};
this.callBase();
this._initStoreChangeHandlers()
},
_dataSourceChangedHandler: function(newItems) {
const items = this.option("items");
if (this._initialized && this._isVirtualMode() && items.length) {
return
}
this.option("items", newItems)
},
_removeTreeViewLoadIndicator: function() {
if (!this._treeViewLoadIndicator) {
return
}
this._treeViewLoadIndicator.remove();
this._treeViewLoadIndicator = null
},
_createTreeViewLoadIndicator: function() {
this._treeViewLoadIndicator = (0, _renderer.default)("<div>").addClass(LOAD_INDICATOR_CLASS);
this._createComponent(this._treeViewLoadIndicator, _load_indicator.default, {});
return this._treeViewLoadIndicator
},
_dataSourceLoadingChangedHandler: function(isLoading) {
let resultFilter;
if (this._isVirtualMode()) {
resultFilter = this._combineFilter();
this._dataSource.filter(resultFilter)
}
if (isLoading && !this._dataSource.isLoaded()) {
this.option("items", []);
const $wrapper = (0, _renderer.default)("<div>").addClass(LOAD_INDICATOR_WRAPPER_CLASS);
this._createTreeViewLoadIndicator().appendTo($wrapper);
this.itemsContainer().append($wrapper);
if (this._isVirtualMode() && this._dataSource.filter() !== resultFilter) {
this._dataSource.filter([])
}
} else {
this._removeTreeViewLoadIndicator()
}
},
_initStoreChangeHandlers: function() {
if ("plain" !== this.option("dataStructure")) {
return
}
this._dataSource && this._dataSource.store().on("inserted", newItem => {
this.option().items = this.option("items").concat(newItem);
this._dataAdapter.addItem(newItem);
if (!this._dataAdapter.isFiltered(newItem)) {
return
}
this._updateLevel(this._parentIdGetter(newItem))
}).on("removed", removedKey => {
const node = this._dataAdapter.getNodeByKey(removedKey);
if ((0, _type.isDefined)(node)) {
this.option("items")[this._dataAdapter.getIndexByKey(node.internalFields.key)] = 0;
this._markChildrenItemsToRemove(node);
this._removeItems();
this._dataAdapter.removeItem(removedKey);
this._updateLevel(this._parentIdGetter(node))
}
})
},
_markChildrenItemsToRemove: function(node) {
const keys = node.internalFields.childrenKeys;
(0, _iterator.each)(keys, (_, key) => {
this.option("items")[this._dataAdapter.getIndexByKey(key)] = 0;
this._markChildrenItemsToRemove(this._dataAdapter.getNodeByKey(key))
})
},
_removeItems: function() {
const items = (0, _extend.extend)(true, [], this.option("items"));
let counter = 0;
(0, _iterator.each)(items, (index, item) => {
if (!item) {
this.option("items").splice(index - counter, 1);
counter++
}
})
},
_updateLevel: function(parentId) {
const $container = this._getContainerByParentKey(parentId);
this._renderItems($container, this._dataAdapter.getChildrenNodes(parentId))
},
_getOldContainer: function($itemElement) {
if ($itemElement.length) {
return $itemElement.children(".".concat(NODE_CONTAINER_CLASS))
}
const scrollable = this.getScrollable();
if (scrollable) {
return (0, _renderer.default)(scrollable.content()).children()
}
return (0, _renderer.default)()
},
_getContainerByParentKey: function(parentId) {
const node = this._dataAdapter.getNodeByKey(parentId);
const $itemElement = node ? this._getNodeElement(node) : [];
this._getOldContainer($itemElement).remove();
const $container = this._renderNodeContainer($itemElement);
if (this._isRootLevel(parentId)) {
const scrollable = this.getScrollable();
if (!scrollable) {
this._renderScrollableContainer()
}(0, _renderer.default)(scrollable.content()).append($container)
}
return $container
},
_isRootLevel: function(parentId) {
return parentId === this.option("rootValue")
},
_getAccessors: function() {
const accessors = this.callBase();
accessors.push("hasItems");
return accessors
},
_getDataAdapterOptions: function() {
var _this$_dataSource, _this$_dataSource$loa, _this$_dataSource$loa2;
return {
rootValue: this.option("rootValue"),
multipleSelection: !this._isSingleSelection(),
recursiveSelection: this._isRecursiveSelection(),
recursiveExpansion: this.option("expandNodesRecursive"),
selectionRequired: this.option("selectionRequired"),
dataType: this.option("dataStructure"),
sort: this._dataSource && this._dataSource.sort(),
langParams: null === (_this$_dataSource = this._dataSource) || void 0 === _this$_dataSource ? void 0 : null === (_this$_dataSource$loa = _this$_dataSource.loadOptions) || void 0 === _this$_dataSource$loa ? void 0 : null === (_this$_dataSource$loa2 = _this$_dataSource$loa.call(_this$_dataSource)) || void 0 === _this$_dataSource$loa2 ? void 0 : _this$_dataSource$loa2.langParams
}
},
_initMarkup() {
this._renderScrollableContainer();
this._renderEmptyMessage(this._dataAdapter.getRootNodes());
this.callBase();
this._setAriaRole()
},
_setAriaRole() {
const {
items: items
} = this.option();
if (null !== items && void 0 !== items && items.length) {
this.setAria({
role: "tree"
})
}
},
_renderContentImpl: function() {
const $nodeContainer = this._renderNodeContainer();
(0, _renderer.default)(this.getScrollable().content()).append($nodeContainer);
if (!this.option("items") || !this.option("items").length) {
return
}
this._renderItems($nodeContainer, this._dataAdapter.getRootNodes());
this._attachExpandEvent();
if (this._selectAllEnabled()) {
this._createSelectAllValueChangedAction();
this._renderSelectAllItem($nodeContainer)
}
},
_isVirtualMode: function() {
return this.option("virtualModeEnabled") && this._isDataStructurePlain() && !!this.option("dataSource")
},
_isDataStructurePlain: function() {
return "plain" === this.option("dataStructure")
},
_fireContentReadyAction: function() {
const dataSource = this.getDataSource();
const skipContentReadyAction = dataSource && !dataSource.isLoaded() || this._skipContentReadyAndItemExpanded;
const scrollable = this.getScrollable();
if (scrollable && (0, _window.hasWindow)()) {
scrollable.update()
}
if (!skipContentReadyAction) {
this.callBase()
}
if (scrollable && (0, _window.hasWindow)()) {
scrollable.update()
}
},
_renderScrollableContainer: function() {
this._scrollable = this._createComponent((0, _renderer.default)("<div>").appendTo(this.$element()), _ui2.default, {
useNative: this.option("useNativeScrolling"),
direction: this.option("scrollDirection"),
useKeyboard: false
})
},
_renderNodeContainer: function($parent) {
const $container = (0, _renderer.default)("<ul>").addClass(NODE_CONTAINER_CLASS);
this.setAria("role", "group", $container);
if ($parent && $parent.length) {
const itemData = this._getItemData($parent.children("." + ITEM_CLASS));
if (this._expandedGetter(itemData)) {
$container.addClass(OPENED_NODE_CONTAINER_CLASS)
}
$container.appendTo($parent)
}
return $container
},
_createDOMElement: function($nodeContainer, node) {
var _node$internalFields, _node$internalFields$;
const $node = (0, _renderer.default)("<li>").addClass(NODE_CLASS).attr(DATA_ITEM_ID, this._encodeString(node.internalFields.key)).prependTo($nodeContainer);
const attrs = {
role: "treeitem",
label: this._displayGetter(node.internalFields.item) || "",
level: this._getLevel($nodeContainer)
};
const hasChildNodes = !!(null !== node && void 0 !== node && null !== (_node$internalFields = node.internalFields) && void 0 !== _node$internalFields && null !== (_node$internalFields$ = _node$internalFields.childrenKeys) && void 0 !== _node$internalFields$ && _node$internalFields$.length);
if (hasChildNodes) {
attrs.expanded = node.internalFields.expanded || false
}
this.setAria(attrs, $node);
return $node
},
_getLevel: function($nodeContainer) {
const parent = $nodeContainer.parent();
return parent.hasClass("dx-scrollable-content") ? 1 : parseInt(parent.attr("aria-level")) + 1
},
_showCheckboxes: function() {
return "none" !== this.option("showCheckBoxesMode")
},
_hasCustomExpanderIcons: function() {
return this.option("expandIcon") || this.option("collapseIcon")
},
_selectAllEnabled: function(showCheckBoxesMode) {
const mode = null !== showCheckBoxesMode && void 0 !== showCheckBoxesMode ? showCheckBoxesMode : this.option("showCheckBoxesMode");
return "selectAll" === mode && !this._isSingleSelection()
},
_renderItems: function($nodeContainer, nodes) {
const length = nodes.length - 1;
for (let i = length; i >= 0; i--) {
this._renderItem(i, nodes[i], $nodeContainer)
}
this._renderedItemsCount += nodes.length
},
_renderItem: function(nodeIndex, node, $nodeContainer) {
const $node = this._createDOMElement($nodeContainer, node);
const nodeData = node.internalFields;
const showCheckBox = this._showCheckboxes();
$node.addClass(showCheckBox ? ITEM_WITH_CHECKBOX_CLASS : ITEM_WITHOUT_CHECKBOX_CLASS);
$node.toggleClass("dx-state-invisible", false === nodeData.item.visible);
if (this._hasCustomExpanderIcons()) {
$node.addClass(ITEM_WITH_CUSTOM_EXPANDER_ICON_CLASS);
$nodeContainer.addClass(CUSTOM_EXPANDER_ICON_ITEM_CONTAINER_CLASS)
}
this.setAria("selected", nodeData.selected, $node);
this._toggleSelectedClass($node, nodeData.selected);
if (nodeData.disabled) {
this.setAria("disabled", nodeData.disabled, $node)
}
this.callBase(this._renderedItemsCount + nodeIndex, nodeData.item, $node);
const parent = this._getNode(node.internalFields.parentKey);
if (!parent) {
$node.addClass(ROOT_NODE_CLASS)
}
if (false !== nodeData.item.visible) {
this._renderChildren($node, node)
}
},
_setAriaSelectionAttribute: _common.noop,
_renderChildren: function($node, node) {
if (!this._hasChildren(node)) {
this._addLeafClass($node);
(0, _renderer.default)("<div>").addClass(EXPANDER_ICON_STUB_CLASS).appendTo(this._getItem($node));
return
}
if (this._hasCustomExpanderIcons()) {
this._renderCustomExpanderIcons($node, node)
} else {
this._renderDefaultExpanderIcons($node, node)
}
if (this._shouldRenderSublevel(node.internalFields.expanded)) {
this._loadSublevel(node).done(childNodes => {
this._renderSublevel($node, this._getActualNode(node), childNodes)
})
}
},
_shouldRenderSublevel: function(expanded) {
return expanded || !this.option("deferRendering")
},
_getActualNode: function(cachedNode) {
return this._dataAdapter.getNodeByKey(cachedNode.internalFields.key)
},
_hasChildren: function(node) {
if (this._isVirtualMode() || this._useCustomChildrenLoader()) {
return false !== this._hasItemsGetter(node.internalFields.item)
}
return this.callBase(node)
},
_loadSublevel: function(node) {
const deferred = new _deferred.Deferred;
const childrenNodes = this._getChildNodes(node);
if (childrenNodes.length) {
deferred.resolve(childrenNodes)
} else {
this._loadNestedItems(node).done(items => {
deferred.resolve(this._dataAdapter.getNodesByItems(items))
})
}
return deferred.promise()
},
_getItemExtraPropNames: () => ["url", "linkAttr"],
_addContent: function($container, itemData) {
const {
html: html,
url: url
} = itemData;
if (url) {
$container.html(html);
const link = this._getLinkContainer(this._getIconContainer(itemData), this._getTextContainer(itemData), itemData);
$container.append(link)
} else {
this.callBase($container, itemData)
}
},
_postprocessRenderItem(args) {
const {
itemData: itemData,
itemElement: itemElement
} = args;
if (this._showCheckboxes()) {
this._renderCheckBox(itemElement, this._getNode(itemData))
}
this.callBase(args)
},
_renderSublevel: function($node, node, childNodes) {
const $nestedNodeContainer = this._renderNodeContainer($node, node);
const childNodesByChildrenKeys = childNodes.filter(childNode => -1 !== node.internalFields.childrenKeys.indexOf(childNode.internalFields.key));
this._renderItems($nestedNodeContainer, childNodesByChildrenKeys);
if (childNodesByChildrenKeys.length && !node.internalFields.selected) {
const firstChild = childNodesByChildrenKeys[0];
this._updateParentsState(firstChild, this._getNodeElement(firstChild))
}
this._normalizeIconState($node, childNodesByChildrenKeys.length);
if (node.internalFields.expanded) {
$nestedNodeContainer.addClass(OPENED_NODE_CONTAINER_CLASS)
}
},
_executeItemRenderAction: function(itemIndex, itemData, itemElement) {
const node = this._getNode(itemElement);
this._getItemRenderAction()({
itemElement: itemElement,
itemIndex: itemIndex,
itemData: itemData,
node: this._dataAdapter.getPublicNode(node)
})
},
_addLeafClass: function($node) {
$node.addClass(IS_LEAF)
},
_expandEventHandler: function(e) {
const $nodeElement = (0, _renderer.default)(e.currentTarget.parentNode);
if (!$nodeElement.hasClass(IS_LEAF)) {
this._toggleExpandedState(e.currentTarget, void 0, e)
}
},
_attachExpandEvent: function() {
const expandedEventName = this._getEventNameByOption(this.option("expandEvent"));
const $itemsContainer = this._itemContainer();
this._detachExpandEvent($itemsContainer);
_events_engine.default.on($itemsContainer, expandedEventName, this._itemSelector(), this._expandEventHandler.bind(this))
},
_detachExpandEvent(itemsContainer) {
_events_engine.default.off(itemsContainer, ".".concat("dxTreeView_expand"), this._itemSelector())
},
_getEventNameByOption: function(name) {
const event = "click" === name ? _click.name : _double_click.name;
return (0, _index.addNamespace)(event, "dxTreeView_expand")
},
_getNode: function(identifier) {
if (!(0, _type.isDefined)(identifier)) {
return null
}
if (identifier.internalFields) {
return identifier
}
if ((0, _type.isPrimitive)(identifier)) {
return this._dataAdapter.getNodeByKey(identifier)
}
const itemElement = (0, _renderer.default)(identifier).get(0);
if (!itemElement) {
return null
}
if (_dom_adapter.default.isElementNode(itemElement)) {
return this._getNodeByElement(itemElement)
}
return this._dataAdapter.getNodeByItem(itemElement)
},
_getNodeByElement: function(itemElement) {
const $node = (0, _renderer.default)(itemElement).closest("." + NODE_CLASS);
const key = this._decodeString($node.attr(DATA_ITEM_ID));
return this._dataAdapter.getNodeByKey(key)
},
_toggleExpandedState: function(itemElement, state, e) {
const node = this._getNode(itemElement);
if (!node) {
return (new _deferred.Deferred).reject().promise()
}
if (node.internalFields.disabled) {
return (new _deferred.Deferred).reject().promise()
}
const currentState = node.internalFields.expanded;
if (currentState === state) {
return (new _deferred.Deferred).resolve().promise()
}
if (this._hasChildren(node)) {
const $node = this._getNodeElement(node);
if ($node.find(".".concat(NODE_LOAD_INDICATOR_CLASS, ":not(.").concat("dx-state-invisible", ")")).length) {
return (new _deferred.Deferred).reject().promise()
}
if (!currentState && !this._nodeHasRenderedChildren($node)) {
this._createLoadIndicator($node)
}
}
if (!(0, _type.isDefined)(state)) {
state = !currentState
}
this._dataAdapter.toggleExpansion(node.internalFields.key, state);
return this._updateExpandedItemsUI(node, state, e)
},
_nodeHasRenderedChildren($node) {
const $nodeContainer = $node.children(".".concat(NODE_CONTAINER_CLASS));
return $nodeContainer.not(":empty").length
},
_getItem: function($node) {
return $node.children(".".concat(ITEM_CLASS)).eq(0)
},
_createLoadIndicator: function($node) {
const $treeviewItem = this._getItem($node);
this._createComponent((0, _renderer.default)("<div>").addClass(NODE_LOAD_INDICATOR_CLASS), _load_indicator.default, {}).$element().appendTo($treeviewItem);
const $icon = $treeviewItem.children(".".concat(TOGGLE_ITEM_VISIBILITY_CLASS, ",.").concat(CUSTOM_EXPAND_ICON_CLASS));
$icon.hide()
},
_renderExpanderIcon: function($node, node, $icon, iconClass) {
$icon.appendTo(this._getItem($node));
$icon.addClass(iconClass);
if (node.internalFields.disabled) {
$icon.addClass("dx-state-disabled")
}
this._renderToggleItemVisibilityIconClick($icon, node)
},
_renderDefaultExpanderIcons: function($node, node) {
const $treeViewItem = this._getItem($node);
const $icon = (0, _renderer.default)("<div>").addClass(TOGGLE_ITEM_VISIBILITY_CLASS).appendTo($treeViewItem);
if (node.internalFields.expanded) {
$icon.addClass(TOGGLE_ITEM_VISIBILITY_OPENED_CLASS);
$node.parent().addClass(OPENED_NODE_CONTAINER_CLASS)
}
if (node.internalFields.disabled) {
$icon.addClass("dx-state-disabled")
}
this._renderToggleItemVisibilityIconClick($icon, node)
},
_renderCustomExpanderIcons: function($node, node) {
const {
expandIcon: expandIcon,
collapseIcon: collapseIcon
} = this.option();
const $expandIcon = (0, _icon.getImageContainer)(null !== expandIcon && void 0 !== expandIcon ? expandIcon : collapseIcon);
const $collapseIcon = (0, _icon.getImageContainer)(null !== collapseIcon && void 0 !== collapseIcon ? collapseIcon : expandIcon);
this._renderExpanderIcon($node, node, $expandIcon, CUSTOM_EXPAND_ICON_CLASS);
this._renderExpanderIcon($node, node, $collapseIcon, CUSTOM_COLLAPSE_ICON_CLASS);
const isNodeExpanded = node.internalFields.expanded;
if (isNodeExpanded) {
$node.parent().addClass(OPENED_NODE_CONTAINER_CLASS)
}
this._toggleCustomExpanderIcons($expandIcon, $collapseIcon, isNodeExpanded)
},
_renderToggleItemVisibilityIconClick: function($icon, node) {
const eventName = (0, _index.addNamespace)(_click.name, this.NAME);
_events_engine.default.off($icon, eventName);
_events_engine.default.on($icon, eventName, e => {
this._toggleExpandedState(node.internalFields.key, void 0, e);
return false
})
},
_toggleCustomExpanderIcons: function($expandIcon, $collapseIcon, isNodeExpanded) {
$collapseIcon.toggle(isNodeExpanded);
$expandIcon.toggle(!isNodeExpanded)
},
_updateExpandedItemsUI: function(node, state, e) {
const $node = this._getNodeElement(node);
const isHiddenNode = !$node.length || state && $node.is(":hidden");
if (this.option("expandNodesRecursive") && isHiddenNode) {
const parentNode = this._getNode(node.internalFields.parentKey);
if (parentNode) {
this._updateExpandedItemsUI(parentNode, state, e)
}
}
if (!this._hasCustomExpanderIcons()) {
const $icon = this._getItem($node).children(".".concat(TOGGLE_ITEM_VISIBILITY_CLASS));
$icon.toggleClass(TOGGLE_ITEM_VISIBILITY_OPENED_CLASS, state)
} else if (this._nodeHasRenderedChildren($node)) {
const $item = this._getItem($node);
const $childExpandIcons = $item.children(".".concat(CUSTOM_EXPAND_ICON_CLASS));
const $childCollapseIcons = $item.children(".".concat(CUSTOM_COLLAPSE_ICON_CLASS));
this._toggleCustomExpanderIcons($childExpandIcons, $childCollapseIcons, state)
}
const $nodeContainer = $node.children(".".concat(NODE_CONTAINER_CLASS));
const nodeContainerExists = $nodeContainer.length > 0;
const completionCallback = new _deferred.Deferred;
if (!state || nodeContainerExists && !$nodeContainer.is(":empty")) {
this._animateNodeContainer(node, state, e, completionCallback);
return completionCallback.promise()
}
if (0 === node.internalFields.childrenKeys.length && (this._isVirtualMode() || this._useCustomChildrenLoader())) {
this._loadNestedItemsWithUpdate(node, state, e, completionCallback);
return completionCallback.promise()
}
this._renderSublevel($node, node, this._getChildNodes(node));
this._fireContentReadyAction();
this._animateNodeContainer(node, state, e, completionCallback);
return completionCallback.promise()
},
_loadNestedItemsWithUpdate: function(node, state, e, completionCallback) {
const $node = this._getNodeElement(node);
this._loadNestedItems(node).done(items => {
const actualNodeData = this._getActualNode(node);
this._renderSublevel($node, actualNodeData, this._dataAdapter.getNodesByItems(items));
if (!items || !items.length) {
completionCallback.resolve();
return
}
this._fireContentReadyAction();
this._animateNodeContainer(actualNodeData, state, e, completionCallback)
})
},
_loadNestedItems: function(node) {
if (this._useCustomChildrenLoader()) {
const publicNode = this._dataAdapter.getPublicNode(node);
return this._loadChildrenByCustomLoader(publicNode).done(newItems => {
if (!this._areNodesExists(newItems)) {
this._appendItems(newItems)
}
})
}
if (!this._isVirtualMode()) {
return (new _deferred.Deferred).resolve([]).promise()
}
this._filter.internal = [this.option("parentIdExpr"), node.internalFields.key];
this._dataSource.filter(this._combineFilter());
return this._dataSource.load().done(newItems => {
if (!this._areNodesExists(newItems)) {
this._appendItems(newItems)
}
})
},
_areNodesExists: function(newItems, items) {
const keyOfRootItem = this.keyOf(newItems[0]);
const fullData = this._dataAdapter.getFullData();
return !!this._dataAdapter.getNodeByKey(keyOfRootItem, fullData)
},
_appendItems: function(newItems) {
this.option().items = this.option("items").concat(newItems);
this._initDataAdapter()
},
_animateNodeContainer: function(node, state, e, completionCallback) {
const $node = this._getNodeElement(node);
const $nodeContainer = $node.children(".".concat(NODE_CONTAINER_CLASS));
if (node && completionCallback && 0 === $nodeContainer.length) {
completionCallback.resolve()
}
$nodeContainer.addClass(OPENED_NODE_CONTAINER_CLASS);
const nodeHeight = (0, _size.getHeight)($nodeContainer);
_fx.default.stop($nodeContainer, true);
_fx.default.animate($nodeContainer, {
type: "custom",
duration: this.option("animationEnabled") ? 400 : 0,
from: {
maxHeight: state ? 0 : nodeHeight
},
to: {
maxHeight: state ? nodeHeight : 0
},
complete: function() {
$nodeContainer.css("maxHeight", "none");
$nodeContainer.toggleClass(OPENED_NODE_CONTAINER_CLASS, state);
this.setAria("expanded", state, $node);
this.getScrollable().update();
this._fireExpandedStateUpdatedEvent(state, node, e);
if (completionCallback) {
completionCallback.resolve()
}
}.bind(this)
})
},
_fireExpandedStateUpdatedEvent: function(isExpanded, node, e) {
if (!this._hasChildren(node) || this._skipContentReadyAndItemExpanded) {
return
}
const optionName = isExpanded ? "onItemExpanded" : "onItemCollapsed";
if ((0, _type.isDefined)(e)) {
this._itemDXEventHandler(e, optionName, {
node: this._dataAdapter.getPublicNode(node)
})
} else {
const target = this._getNodeElement(node);
this._itemEventHandler(target, optionName, {
event: e,
node: this._dataAdapter.getPublicNode(node)
})
}
},
_normalizeIconState: function($node, hasNewItems) {
const $loadIndicator = $node.find(".".concat(NODE_LOAD_INDICATOR_CLASS));
if ($loadIndicator.length) {
var _LoadIndicator$getIns;
null === (_LoadIndicator$getIns = _load_indicator.default.getInstance($loadIndicator)) || void 0 === _LoadIndicator$getIns ? void 0 : _LoadIndicator$getIns.option("visible", false)
}
const $treeViewItem = this._getItem($node);
const $toggleItem = $treeViewItem.children(".".concat(CUSTOM_COLLAPSE_ICON_CLASS, ",.").concat(TOGGLE_ITEM_VISIBILITY_CLASS));
if (hasNewItems) {
$toggleItem.show();
return
}
$toggleItem.removeClass(TOGGLE_ITEM_VISIBILITY_CLASS);
$node.addClass(IS_LEAF)
},
_emptyMessageContainer: function() {
const scrollable = this.getScrollable();
return scrollable ? (0, _renderer.default)(scrollable.content()) : this.callBase()
},
_renderContent: function() {
const items = this.option("items");
if (items && items.length) {
this._contentAlreadyRendered = true
}
this.callBase()
},
_renderSelectAllItem: function($container) {
const {
selectAllText: selectAllText,
focusStateEnabled: focusStateEnabled
} = this.option();
$container = $container || this.$element().find(".".concat(NODE_CONTAINER_CLASS)).first();
this._$selectAllItem = (0, _renderer.default)("<div>").addClass(SELECT_ALL_ITEM_CLASS);
const value = this._dataAdapter.isAllSelected();
this._createComponent(this._$selectAllItem, _check_box.default, {
value: value,
elementAttr: {
"aria-label": "Select All"
},
text: selectAllText,
focusStateEnabled: focusStateEnabled,
onValueChanged: this._onSelectAllCheckboxValueChanged.bind(this),
onInitialized: _ref => {
let {
component: component
} = _ref;
component.registerKeyHandler("enter", () => {
component.option("value", !component.option("value"))
})
}
});
this._toggleSelectedClass(this._$selectAllItem, value);
$container.before(this._$selectAllItem)
},
_onSelectAllCheckboxValueChanged: function(args) {
this._toggleSelectAll(args);
this._fireSelectAllValueChanged(args.value)
},
_toggleSelectAll: function(args) {
this._dataAdapter.toggleSelectAll(args.value);
this._updateItemsUI();
this._fireSelectionChanged()
},
_renderCheckBox: function($node, node) {
const $checkbox = (0, _renderer.default)("<div>").appendTo($node);
this._createComponent($checkbox, _check_box.default, {
value: node.internalFields.selected,
onValueChanged: this._changeCheckboxValue.bind(this),
focusStateEnabled: false,
elementAttr: {
"aria-label": "Check State"
},
disabled: this._disabledGetter(node)
})
},
_toggleSelectedClass: function($node, value) {
$node.toggleClass("dx-state-selected", !!value)
},
_toggleNodeDisabledState: function(node, state) {
const $node = this._getNodeElement(node);
const $item = $node.find("." + ITEM_CLASS).eq(0);
this._dataAdapter.toggleNodeDisabledState(node.internalFields.key, state);
$item.toggleClass("dx-state-disabled", !!state);
if (this._showCheckboxes()) {
const checkbox = this._getCheckBoxInstance($node);
checkbox.option("disabled", !!state)
}
},
_itemOptionChanged: function(item, property, value) {
const node = this._dataAdapter.getNodeByItem(item);
if (property === this.option("disabledExpr")) {
this._toggleNodeDisabledState(node, value)
}
},
_changeCheckboxValue: function(e) {
const $node = (0, _renderer.default)(e.element).closest(".".concat(NODE_CLASS));
const $item = this._getItem($node);
const item = this._getItemData($item);
const node = this._getNodeByElement($item);
const value = e.value;
if (node && node.internalFields.selected === value) {
return
}
this._updateItemSelection(value, item, e.event)
},
_isSingleSelection: function() {
return "single" === this.option("selectionMode")
},
_isRecursiveSelection: function() {
return this.option("selectNodesRecursive") && "single" !== this.option("selectionMode")
},
_isLastSelectedBranch: function(publicNode, selectedNodesKeys, deep) {
const keyIndex = selectedNodesKeys.indexOf(publicNode.key);
if (keyIndex >= 0) {
selectedNodesKeys.splice(keyIndex, 1)
}
if (deep) {
(0, _iterator.each)(publicNode.children, function(_, childNode) {
this._isLastSelectedBranch(childNode, selectedNodesKeys, true)
}.bind(this))
}
if (publicNode.parent) {
this._isLastSelectedBranch(publicNode.parent, selectedNodesKeys)
}
return 0 === selectedNodesKeys.length
},
_isLastRequired: function(node) {
const selectionRequired = this.option("selectionRequired");
const isSingleMode = this._isSingleSelection();
const selectedNodesKeys = this.getSelectedNodeKeys();
if (!selectionRequired) {
return
}
if (isSingleMode) {
return 1 === selectedNodesKeys.length
} else {
return this._isLastSelectedBranch(node.internalFields.publicNode, selectedNodesKeys.slice(), true)
}
},
_updateItemSelection: function(value, itemElement, dxEvent) {
const node = this._getNode(itemElement);
if (!node || false === node.visible) {
return false
}
if (node.internalFields.selected === value) {
return true
}
if (!value && this._isLastRequired(node)) {
if (this._showCheckboxes()) {
const $node = this._getNodeElement(node);
this._getCheckBoxInstance($node).option("value", true)
}
return false
}
if (value && this._isSingleSelection()) {
const selectedKeys = this.getSelectedNodeKeys();
(0, _iterator.each)(selectedKeys, (index, key) => {
this._dataAdapter.toggleSelection(key, false);
this._updateItemsUI();
this._fireItemSelectionChanged(this._getNode(key))
})
}
this._dataAdapter.toggleSelection(node.internalFields.key, value);
const isAllSelected = this._dataAdapter.isAllSelected();
const needFireSelectAllChanged = this._selectAllEnabled() && this._$selectAllItem.dxC