mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 21:15:07 +02:00
82 lines
2.9 KiB
JavaScript
82 lines
2.9 KiB
JavaScript
//
|
|
// Created by Anthony Thibault on 2016-09-02
|
|
// Copyright 2016 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
// Sends messages over the EventBridge when text input is required.
|
|
//
|
|
(function () {
|
|
var POLL_FREQUENCY = 500; // ms
|
|
var MAX_WARNINGS = 3;
|
|
var numWarnings = 0;
|
|
var isWindowFocused = true;
|
|
var isKeyboardRaised = false;
|
|
var isNumericKeyboard = false;
|
|
var KEYBOARD_HEIGHT = 200;
|
|
|
|
function shouldRaiseKeyboard() {
|
|
var nodeName = document.activeElement.nodeName;
|
|
var nodeType = document.activeElement.type;
|
|
if (nodeName === "INPUT" && (nodeType === "text" || nodeType === "number" || nodeType === "password")
|
|
|| document.activeElement.nodeName === "TEXTAREA") {
|
|
return true;
|
|
} else {
|
|
// check for contenteditable attribute
|
|
for (var i = 0; i < document.activeElement.attributes.length; i++) {
|
|
if (document.activeElement.attributes[i].name === "contenteditable" &&
|
|
document.activeElement.attributes[i].value === "true") {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
};
|
|
|
|
function shouldSetNumeric() {
|
|
return document.activeElement.type === "number";
|
|
};
|
|
|
|
setInterval(function () {
|
|
var keyboardRaised = shouldRaiseKeyboard();
|
|
var numericKeyboard = shouldSetNumeric();
|
|
|
|
if (isWindowFocused && (keyboardRaised !== isKeyboardRaised || numericKeyboard !== isNumericKeyboard)) {
|
|
|
|
if (typeof EventBridge !== "undefined" && EventBridge !== null) {
|
|
EventBridge.emitWebEvent(
|
|
keyboardRaised ? ("_RAISE_KEYBOARD" + (numericKeyboard ? "_NUMERIC" : "")) : "_LOWER_KEYBOARD"
|
|
);
|
|
} else {
|
|
if (numWarnings < MAX_WARNINGS) {
|
|
console.log("WARNING: No global EventBridge object found");
|
|
numWarnings++;
|
|
}
|
|
}
|
|
|
|
if (!isKeyboardRaised) {
|
|
var delta = document.activeElement.getBoundingClientRect().bottom + 10
|
|
- (document.body.clientHeight - KEYBOARD_HEIGHT);
|
|
if (delta > 0) {
|
|
setTimeout(function () {
|
|
document.body.scrollTop += delta;
|
|
}, 500); // Allow time for keyboard to be raised in QML.
|
|
}
|
|
}
|
|
|
|
isKeyboardRaised = keyboardRaised;
|
|
isNumericKeyboard = numericKeyboard;
|
|
}
|
|
}, POLL_FREQUENCY);
|
|
|
|
window.addEventListener("focus", function () {
|
|
isWindowFocused = true;
|
|
});
|
|
|
|
window.addEventListener("blur", function () {
|
|
isWindowFocused = false;
|
|
isKeyboardRaised = false;
|
|
isNumericKeyboard = false;
|
|
});
|
|
})();
|