devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
154 lines (153 loc) • 5.03 kB
JavaScript
/**
* DevExtreme (ui/autocomplete.js)
* Version: 20.1.7
* Build date: Tue Aug 25 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
"use strict";
var $ = require("../core/renderer");
var noop = require("../core/utils/common").noop;
var registerComponent = require("../core/component_registrator");
var extend = require("../core/utils/extend").extend;
var DropDownList = require("./drop_down_editor/ui.drop_down_list");
var Deferred = require("../core/utils/deferred").Deferred;
var AUTOCOMPLETE_CLASS = "dx-autocomplete";
var AUTOCOMPLETE_POPUP_WRAPPER_CLASS = "dx-autocomplete-popup-wrapper";
var Autocomplete = DropDownList.inherit({
_supportedKeys: function() {
var item = this._list ? this._list.option("focusedElement") : null;
var parent = this.callBase();
item = item && $(item);
return extend({}, parent, {
upArrow: function(e) {
e.preventDefault();
e.stopPropagation();
if (item && !this._calcNextItem(-1)) {
this._clearFocusedItem();
return false
}
return true
},
downArrow: function(e) {
e.preventDefault();
e.stopPropagation();
if (item && !this._calcNextItem(1)) {
this._clearFocusedItem();
return false
}
return true
},
enter: function() {
if (!item) {
this.close()
}
parent.enter.apply(this, arguments);
return this.option("opened")
}
})
},
_getDefaultOptions: function() {
return extend(this.callBase(), {
minSearchLength: 1,
maxItemCount: 10,
noDataText: "",
showDropDownButton: false,
searchEnabled: true
})
},
_initMarkup: function() {
this.callBase();
this.$element().addClass(AUTOCOMPLETE_CLASS);
this.setAria("autocomplete", "inline")
},
_displayGetterExpr: function() {
return this.option("valueExpr")
},
_popupConfig: function() {
return extend(this.callBase(), {
closeOnOutsideClick: function(e) {
return !$(e.target).closest(this.$element()).length
}.bind(this)
})
},
_renderDimensions: function() {
this.callBase();
this._dimensionChanged()
},
_popupWrapperClass: function() {
return this.callBase() + " " + AUTOCOMPLETE_POPUP_WRAPPER_CLASS
},
_listConfig: function() {
return extend(this.callBase(), {
pageLoadMode: "none"
})
},
_listItemClickHandler: function(e) {
var value = this._displayGetter(e.itemData);
this.option("value", value);
this.close()
},
_setListDataSource: function() {
if (!this._list) {
return
}
this._list.option("selectedItems", []);
this.callBase()
},
_refreshSelected: noop,
_searchCanceled: function() {
this.callBase();
this.close()
},
_loadItem: function(value, cache) {
var selectedItem = this._getItemFromPlain(value, cache);
return (new Deferred).resolve(selectedItem).promise()
},
_dataSourceOptions: function() {
return {
paginate: true,
pageSize: this.option("maxItemCount")
}
},
_searchDataSource: function() {
this._dataSource.pageSize(this.option("maxItemCount"));
this.callBase();
this._clearFocusedItem()
},
_clearFocusedItem: function() {
if (this._list) {
this._list.option("focusedElement", null);
this._list.option("selectedIndex", -1)
}
},
_renderValueEventName: function() {
return "input keyup"
},
_valueChangeEventHandler: function(e) {
var value = this._input().val() || null;
return this.callBase(e, value)
},
_optionChanged: function(args) {
switch (args.name) {
case "maxItemCount":
this._searchDataSource();
break;
case "valueExpr":
this._compileDisplayGetter();
this._setListOption("displayExpr", this._displayGetterExpr());
this.callBase(args);
break;
default:
this.callBase(args)
}
},
reset: function() {
this.callBase();
this.close()
}
});
registerComponent("dxAutocomplete", Autocomplete);
module.exports = Autocomplete;
module.exports.default = module.exports;