devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
87 lines (85 loc) • 3.69 kB
JavaScript
/**
* DevExtreme (events/core/keyboard_processor.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 _renderer = require("../../core/renderer");
var _renderer2 = _interopRequireDefault(_renderer);
var _events_engine = require("../../events/core/events_engine");
var _events_engine2 = _interopRequireDefault(_events_engine);
var _class = require("../../core/class");
var _class2 = _interopRequireDefault(_class);
var _array = require("../../core/utils/array");
var _utils = require("../../events/utils");
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
"default": obj
}
}
var COMPOSITION_START_EVENT = "compositionstart";
var COMPOSITION_END_EVENT = "compositionend";
var KEYDOWN_EVENT = "keydown";
var NAMESPACE = "KeyboardProcessor";
var KeyboardProcessor = _class2.default.inherit({
_keydown: (0, _utils.addNamespace)(KEYDOWN_EVENT, NAMESPACE),
_compositionStart: (0, _utils.addNamespace)(COMPOSITION_START_EVENT, NAMESPACE),
_compositionEnd: (0, _utils.addNamespace)(COMPOSITION_END_EVENT, NAMESPACE),
ctor: function(options) {
var _this = this;
options = options || {};
if (options.element) {
this._element = (0, _renderer2.default)(options.element)
}
if (options.focusTarget) {
this._focusTarget = options.focusTarget
}
this._handler = options.handler;
if (this._element) {
this._processFunction = function(e) {
var isNotFocusTarget = _this._focusTarget && _this._focusTarget !== e.target && (0, _array.inArray)(e.target, _this._focusTarget) < 0;
var shouldSkipProcessing = _this._isComposingJustFinished && 229 === e.which || _this._isComposing || isNotFocusTarget;
_this._isComposingJustFinished = false;
if (!shouldSkipProcessing) {
_this.process(e)
}
};
this._toggleProcessingWithContext = this.toggleProcessing.bind(this);
_events_engine2.default.on(this._element, this._keydown, this._processFunction);
_events_engine2.default.on(this._element, this._compositionStart, this._toggleProcessingWithContext);
_events_engine2.default.on(this._element, this._compositionEnd, this._toggleProcessingWithContext)
}
},
dispose: function() {
if (this._element) {
_events_engine2.default.off(this._element, this._keydown, this._processFunction);
_events_engine2.default.off(this._element, this._compositionStart, this._toggleProcessingWithContext);
_events_engine2.default.off(this._element, this._compositionEnd, this._toggleProcessingWithContext)
}
this._element = void 0;
this._handler = void 0
},
process: function(e) {
this._handler({
keyName: (0, _utils.normalizeKeyName)(e),
key: e.key,
code: e.code,
ctrl: e.ctrlKey,
location: e.location,
metaKey: e.metaKey,
shift: e.shiftKey,
alt: e.altKey,
which: e.which,
originalEvent: e
})
},
toggleProcessing: function(_ref) {
var type = _ref.type;
this._isComposing = type === COMPOSITION_START_EVENT;
this._isComposingJustFinished = !this._isComposing
}
});
module.exports = KeyboardProcessor;