devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
159 lines (158 loc) • 5.97 kB
JavaScript
/**
* DevExtreme (ui/text_area.js)
* Version: 18.1.3
* Build date: Tue May 15 2018
*
* Copyright (c) 2012 - 2018 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
"use strict";
var $ = require("../core/renderer"),
eventsEngine = require("../events/core/events_engine"),
noop = require("../core/utils/common").noop,
registerComponent = require("../core/component_registrator"),
extend = require("../core/utils/extend").extend,
eventUtils = require("../events/utils"),
pointerEvents = require("../events/pointer"),
TextBox = require("./text_box");
var TEXTAREA_CLASS = "dx-textarea",
TEXTEDITOR_INPUT_CLASS = "dx-texteditor-input";
var TextArea = TextBox.inherit({
_getDefaultOptions: function() {
return extend(this.callBase(), {
spellcheck: true,
minHeight: void 0,
maxHeight: void 0,
autoResizeEnabled: false
})
},
_initMarkup: function() {
this.$element().addClass(TEXTAREA_CLASS);
this.callBase();
this.setAria("multiline", "true")
},
_renderContentImpl: function() {
this._updateInputHeight();
this.callBase()
},
_renderInput: function() {
this.callBase();
this._renderScrollHandler()
},
_createInput: function() {
var $input = $("<textarea>");
this._applyInputAttributes($input, this.option("inputAttr"));
return $input
},
_applyInputAttributes: function($input, customAttributes) {
$input.attr(customAttributes).addClass(TEXTEDITOR_INPUT_CLASS)
},
_renderScrollHandler: function() {
var $input = this._input(),
eventY = 0;
eventsEngine.on($input, eventUtils.addNamespace(pointerEvents.down, this.NAME), function(e) {
eventY = eventUtils.eventData(e).y
});
eventsEngine.on($input, eventUtils.addNamespace(pointerEvents.move, this.NAME), function(e) {
var scrollTopPos = $input.scrollTop(),
scrollBottomPos = $input.prop("scrollHeight") - $input.prop("clientHeight") - scrollTopPos;
if (0 === scrollTopPos && 0 === scrollBottomPos) {
return
}
var currentEventY = eventUtils.eventData(e).y;
var isScrollFromTop = 0 === scrollTopPos && eventY >= currentEventY,
isScrollFromBottom = 0 === scrollBottomPos && eventY <= currentEventY,
isScrollFromMiddle = scrollTopPos > 0 && scrollBottomPos > 0;
if (isScrollFromTop || isScrollFromBottom || isScrollFromMiddle) {
e.isScrollingEvent = true;
e.stopPropagation()
}
eventY = currentEventY
})
},
_renderDimensions: function() {
var $element = this.$element();
var element = $element.get(0);
var width = this._getOptionValue("width", element);
var height = this._getOptionValue("height", element);
var minHeight = this.option("minHeight");
var maxHeight = this.option("maxHeight");
$element.css({
minHeight: void 0 !== minHeight ? minHeight : "",
maxHeight: void 0 !== maxHeight ? maxHeight : "",
width: width,
height: height
})
},
_resetDimensions: function() {
this.$element().css({
height: "",
minHeight: "",
maxHeight: ""
})
},
_renderEvents: function() {
if (this.option("autoResizeEnabled")) {
eventsEngine.on(this._input(), eventUtils.addNamespace("input paste", this.NAME), this._updateInputHeight.bind(this))
}
this.callBase()
},
_refreshEvents: function() {
eventsEngine.off(this._input(), eventUtils.addNamespace("input paste", this.NAME));
this.callBase()
},
_updateInputHeight: function() {
var $input = this._input();
if (!this.option("autoResizeEnabled") || void 0 !== this.option("height")) {
$input.css("height", "");
return
}
this._resetDimensions();
$input.css("height", 0);
var heightDifference = this._$element.outerHeight() - $input.outerHeight();
this._renderDimensions();
var minHeight = this.option("minHeight"),
maxHeight = this.option("maxHeight"),
inputHeight = $input[0].scrollHeight;
if (void 0 !== minHeight) {
inputHeight = Math.max(inputHeight, minHeight - heightDifference)
}
if (void 0 !== maxHeight) {
inputHeight = Math.min(inputHeight, maxHeight - heightDifference)
}
$input.css("height", inputHeight)
},
_renderInputType: noop,
_visibilityChanged: function(visible) {
if (visible) {
this._updateInputHeight()
}
},
_optionChanged: function(args) {
switch (args.name) {
case "autoResizeEnabled":
this._refreshEvents();
this._updateInputHeight();
break;
case "value":
case "height":
this.callBase(args);
this._updateInputHeight();
break;
case "minHeight":
case "maxHeight":
this._renderDimensions();
this._updateInputHeight();
break;
case "visible":
this.callBase(args);
args.value && this._updateInputHeight();
break;
default:
this.callBase(args)
}
}
});
registerComponent("dxTextArea", TextArea);
module.exports = TextArea;
module.exports.default = module.exports;