devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
156 lines (155 loc) • 5.59 kB
JavaScript
/**
* DevExtreme (esm/ui/widget/ui.search_box_mixin.js)
* Version: 21.1.4
* Build date: Mon Jun 21 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import $ from "../../core/renderer";
import {
extend
} from "../../core/utils/extend";
import messageLocalization from "../../localization/message";
import TextBox from "../text_box";
import errors from "../widget/ui.errors";
import {
Deferred
} from "../../core/utils/deferred";
export default {
_getDefaultOptions: function() {
return extend(this.callBase(), {
searchMode: "",
searchExpr: null,
searchValue: "",
searchEnabled: false,
searchEditorOptions: {}
})
},
_initMarkup: function() {
this._renderSearch();
this.callBase()
},
_renderSearch: function() {
var $element = this.$element();
var searchEnabled = this.option("searchEnabled");
var searchBoxClassName = this._addWidgetPrefix("search");
var rootElementClassName = this._addWidgetPrefix("with-search");
if (!searchEnabled) {
$element.removeClass(rootElementClassName);
this._removeSearchBox();
return
}
var editorOptions = this._getSearchEditorOptions();
if (this._searchEditor) {
this._searchEditor.option(editorOptions)
} else {
$element.addClass(rootElementClassName);
this._$searchEditorElement = $("<div>").addClass(searchBoxClassName).prependTo($element);
this._searchEditor = this._createComponent(this._$searchEditorElement, TextBox, editorOptions)
}
},
_removeSearchBox: function() {
this._$searchEditorElement && this._$searchEditorElement.remove();
delete this._$searchEditorElement;
delete this._searchEditor
},
_getSearchEditorOptions: function() {
var that = this;
var userEditorOptions = that.option("searchEditorOptions");
var searchText = messageLocalization.format("Search");
return extend({
mode: "search",
placeholder: searchText,
tabIndex: that.option("tabIndex"),
value: that.option("searchValue"),
valueChangeEvent: "input",
inputAttr: {
"aria-label": searchText
},
onValueChanged: function(e) {
var searchTimeout = that.option("searchTimeout");
that._valueChangeDeferred = new Deferred;
clearTimeout(that._valueChangeTimeout);
that._valueChangeDeferred.done(function() {
this.option("searchValue", e.value)
}.bind(that));
if (e.event && "input" === e.event.type && searchTimeout) {
that._valueChangeTimeout = setTimeout((function() {
that._valueChangeDeferred.resolve()
}), searchTimeout)
} else {
that._valueChangeDeferred.resolve()
}
}
}, userEditorOptions)
},
_getAriaTarget: function() {
if (this.option("searchEnabled")) {
return this._itemContainer(true)
}
return this.$element()
},
_focusTarget: function() {
if (this.option("searchEnabled")) {
return this._itemContainer(true)
}
return this.callBase()
},
_updateFocusState: function(e, isFocused) {
if (this.option("searchEnabled")) {
this._toggleFocusClass(isFocused, this.$element())
}
this.callBase(e, isFocused)
},
getOperationBySearchMode: function(searchMode) {
return "equals" === searchMode ? "=" : searchMode
},
_cleanAria: function($target) {
this.setAria({
role: null,
activedescendant: null
}, $target);
$target.attr("tabIndex", null)
},
_optionChanged: function(args) {
switch (args.name) {
case "searchEnabled":
case "searchEditorOptions":
this._cleanAria(this.option("searchEnabled") ? this.$element() : this._itemContainer());
this._invalidate();
break;
case "searchExpr":
case "searchMode":
case "searchValue":
if (!this._dataSource) {
errors.log("W1009");
return
}
if ("searchMode" === args.name) {
this._dataSource.searchOperation(this.getOperationBySearchMode(args.value))
} else {
this._dataSource[args.name](args.value)
}
this._dataSource.load();
break;
case "searchTimeout":
break;
default:
this.callBase(args)
}
},
focus: function() {
if (!this.option("focusedElement") && this.option("searchEnabled")) {
this._searchEditor && this._searchEditor.focus();
return
}
this.callBase()
},
_refresh: function() {
if (this._valueChangeDeferred) {
this._valueChangeDeferred.resolve()
}
this.callBase()
}
};