devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
115 lines (113 loc) • 4.44 kB
JavaScript
/**
* DevExtreme (cjs/ui/tree_view/ui.tree_view.search.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 _renderer = _interopRequireDefault(require("../../core/renderer"));
var _component_registrator = _interopRequireDefault(require("../../core/component_registrator"));
var _ui = _interopRequireDefault(require("../widget/ui.search_box_mixin"));
var _text_box = _interopRequireDefault(require("../text_box"));
var _extend = require("../../core/utils/extend");
var _uiTree_view = _interopRequireDefault(require("./ui.tree_view.base"));
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
}
}
_ui.default.setEditorClass(_text_box.default);
const WIDGET_CLASS = "dx-treeview";
const NODE_CONTAINER_CLASS = "".concat(WIDGET_CLASS, "-node-container");
const TreeViewSearch = _uiTree_view.default.inherit(_ui.default).inherit({
_addWidgetPrefix: function(className) {
return "".concat(WIDGET_CLASS, "-").concat(className)
},
_optionChanged: function(args) {
switch (args.name) {
case "searchValue":
if (this._showCheckboxes() && this._isRecursiveSelection()) {
this._removeSelection()
}
this._initDataAdapter();
this._updateSearch();
this._repaintContainer();
this.option("focusedElement", null);
break;
case "searchExpr":
this._initDataAdapter();
this.repaint();
break;
case "searchMode":
this.option("expandNodesRecursive") ? this._updateDataAdapter() : this._initDataAdapter();
this.repaint();
break;
default:
this.callBase(args)
}
},
_updateDataAdapter: function() {
this._setOptionWithoutOptionChange("expandNodesRecursive", false);
this._initDataAdapter();
this._setOptionWithoutOptionChange("expandNodesRecursive", true)
},
_getDataAdapterOptions: function() {
return (0, _extend.extend)(this.callBase(), {
searchValue: this.option("searchValue"),
searchMode: this.option("searchMode") || "contains",
searchExpr: this.option("searchExpr")
})
},
_getNodeContainer: function() {
return this.$element().find(".".concat(NODE_CONTAINER_CLASS)).first()
},
_updateSearch: function() {
if (this._searchEditor) {
const editorOptions = this._getSearchEditorOptions();
this._searchEditor.option(editorOptions)
}
},
_repaintContainer: function() {
const $container = this._getNodeContainer();
let rootNodes;
if ($container.length) {
$container.empty();
rootNodes = this._dataAdapter.getRootNodes();
this._renderEmptyMessage(rootNodes);
this._renderItems($container, rootNodes);
this._fireContentReadyAction()
}
},
_focusTarget: function() {
return this._itemContainer(this.option("searchEnabled"))
},
_cleanItemContainer: function() {
this.$element().empty()
},
_itemContainer: function(isSearchMode, selectAllEnabled) {
var _selectAllEnabled;
null !== (_selectAllEnabled = selectAllEnabled) && void 0 !== _selectAllEnabled ? _selectAllEnabled : selectAllEnabled = this._selectAllEnabled();
if (selectAllEnabled) {
return this._getNodeContainer()
}
if (this._scrollable && isSearchMode) {
return (0, _renderer.default)(this._scrollable.content())
}
return this.callBase()
},
_addWidgetClass: function() {
this.$element().addClass(this._widgetClass())
},
_clean: function() {
this.callBase();
this._removeSearchBox()
}
});
(0, _component_registrator.default)("dxTreeView", TreeViewSearch);
var _default = TreeViewSearch;
exports.default = _default;
module.exports = exports.default;
module.exports.default = exports.default;