devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
152 lines (151 loc) • 5.26 kB
JavaScript
/**
* DevExtreme (esm/ui/text_box/text_box.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/
*/
import $ from "../../core/renderer";
import {
getWindow
} from "../../core/utils/window";
var window = getWindow();
import {
extend
} from "../../core/utils/extend";
import registerComponent from "../../core/component_registrator";
import TextEditor from "./ui.text_editor";
import {
normalizeKeyName
} from "../../events/utils/index";
import {
getOuterWidth,
getWidth
} from "../../core/utils/size";
var ignoreKeys = ["backspace", "tab", "enter", "pageUp", "pageDown", "end", "home", "leftArrow", "rightArrow", "downArrow", "upArrow", "del"];
var TEXTBOX_CLASS = "dx-textbox";
var SEARCHBOX_CLASS = "dx-searchbox";
var ICON_CLASS = "dx-icon";
var SEARCH_ICON_CLASS = "dx-icon-search";
var TextBox = TextEditor.inherit({
ctor: function(element, options) {
if (options) {
this._showClearButton = options.showClearButton
}
this.callBase.apply(this, arguments)
},
_getDefaultOptions: function() {
return extend(this.callBase(), {
value: "",
mode: "text",
maxLength: null
})
},
_initMarkup: function() {
this.$element().addClass(TEXTBOX_CLASS);
this.callBase();
this.setAria("role", "textbox")
},
_renderInputType: function() {
this.callBase();
this._renderSearchMode()
},
_useTemplates: function() {
return false
},
_renderProps: function() {
this.callBase();
this._toggleMaxLengthProp()
},
_toggleMaxLengthProp: function() {
var maxLength = this._getMaxLength();
if (maxLength && maxLength > 0) {
this._input().attr("maxLength", maxLength)
} else {
this._input().removeAttr("maxLength")
}
},
_renderSearchMode: function() {
var $element = this._$element;
if ("search" === this.option("mode")) {
$element.addClass(SEARCHBOX_CLASS);
this._renderSearchIcon();
if (void 0 === this._showClearButton) {
this._showClearButton = this.option("showClearButton");
this.option("showClearButton", true)
}
} else {
$element.removeClass(SEARCHBOX_CLASS);
this._$searchIcon && this._$searchIcon.remove();
this.option("showClearButton", void 0 === this._showClearButton ? this.option("showClearButton") : this._showClearButton);
delete this._showClearButton
}
},
_renderSearchIcon: function() {
var $searchIcon = $("<div>").addClass(ICON_CLASS).addClass(SEARCH_ICON_CLASS);
$searchIcon.prependTo(this._input().parent());
this._$searchIcon = $searchIcon
},
_getLabelContainerWidth: function() {
if (this._$searchIcon) {
var $inputContainer = this._input().parent();
return getWidth($inputContainer) - this._getLabelBeforeWidth()
}
return this.callBase()
},
_getLabelBeforeWidth: function() {
var labelBeforeWidth = this.callBase();
if (this._$searchIcon) {
labelBeforeWidth += getOuterWidth(this._$searchIcon)
}
return labelBeforeWidth
},
_optionChanged: function(args) {
switch (args.name) {
case "maxLength":
this._toggleMaxLengthProp();
break;
case "mode":
this.callBase(args);
this._updateLabelWidth();
break;
case "mask":
this.callBase(args);
this._toggleMaxLengthProp();
break;
default:
this.callBase(args)
}
},
_onKeyDownCutOffHandler: function(e) {
var actualMaxLength = this._getMaxLength();
if (actualMaxLength && !e.ctrlKey && !this._hasSelection()) {
var $input = $(e.target);
var key = normalizeKeyName(e);
this._cutOffExtraChar($input);
return $input.val().length < actualMaxLength || ignoreKeys.includes(key) || "" !== window.getSelection().toString()
} else {
return true
}
},
_onChangeCutOffHandler: function(e) {
var $input = $(e.target);
if (this.option("maxLength")) {
this._cutOffExtraChar($input)
}
},
_cutOffExtraChar: function($input) {
var actualMaxLength = this._getMaxLength();
var textInput = $input.val();
if (actualMaxLength && textInput.length > actualMaxLength) {
$input.val(textInput.substr(0, actualMaxLength))
}
},
_getMaxLength: function() {
var isMaskSpecified = !!this.option("mask");
return isMaskSpecified ? null : this.option("maxLength")
}
});
registerComponent("dxTextBox", TextBox);
export default TextBox;