Skip to content
Snippets Groups Projects
Commit a7ee36c4 authored by Laurel Williams's avatar Laurel Williams
Browse files

Add built-in mobile keyboard functionality

parent cfb0d417
No related branches found
No related tags found
No related merge requests found
......@@ -23,10 +23,13 @@
</div>
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-wrapper">
<div class = "keyboard swiper-slide" id="keyboard"> </div>
<div class = "numpad swiper-slide" id="numpad"> </div>
<div class = "hotkeys swiper-slide" id="hotkeys"> </div>
<div class = "textfield swiper-slide" id="textfieldcontainer">
<textarea class= "textfield" id="textfield" type="text" placeholder="Type here and press enter to send to desktop"></textarea>
</div>
<div class="swiper-slide">
<div class="swiper-container-inner">
<div class="swiper-wrapper" id="custom-container">
......
......@@ -108,6 +108,31 @@ var emitUrl = function(str) {
}
};
var emitText = function(text) {
if (move === false){
console.log(text);
socket.emit('text', text);
}
};
$( "#textfield" ).keydown(function(event) {
if (event.key === 'Enter') { // enter
emitText(document.getElementById('textfield').value);
event.preventDefault();
if (document.getElementById('textfield').value === '') {
socket.emit('functionality', 'enter');
}
document.getElementById('textfield').value = '';
}
else if (event.key === 'Backspace' && document.getElementById('textfield').value === "") { // backspace
socket.emit('functionality', 'backspace');
}
else if (event.key.startsWith('Arrow') && document.getElementById('textfield').value === "") { // arrow keys
socket.emit('functionality', event.key);
}
});
//Purpose: Uses interact.js library to enable keys to move around
interact('.draggable').draggable({
snap: {
......
......@@ -203,6 +203,11 @@ mark {
background-color: grey;
float: left;
}
#textfield{
height: 100%;
width: 100%;
font-size: 30px;
}
.wrapper{
height: 100%;
width: 100%;
......
......@@ -123,9 +123,41 @@ io.on('connection', function(socket) {
robot.keyTap('backspace');
}
else{
robot.typeString(str)
robot.typeString(str);
}
});
socket.on('functionality', function(type) {
console.log(type);
switch (type) {
case 'backspace':
robot.keyTap('backspace');
break;
case 'enter':
robot.keyTap('enter');
break;
case 'ArrowUp':
robot.keyTap('up');
break;
case 'ArrowDown':
robot.keyTap('down');
break;
case 'ArrowLeft':
robot.keyTap('left');
break;
case 'ArrowRight':
robot.keyTap('right');
break;
}
});
socket.on('text', function(text) {
console.log('Typing ' + text);
if (text === ' ') {
robot.keyTap('space');
}
robot.typeString(text);
});
socket.on('saveKey', function(key) {
var file = fs.readFileSync("configuration.json")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment