Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
EECS498-uBoard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EzTunes
EECS498-uBoard
Commits
a7ee36c4
Commit
a7ee36c4
authored
7 years ago
by
Laurel Williams
Browse files
Options
Downloads
Patches
Plain Diff
Add built-in mobile keyboard functionality
parent
cfb0d417
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
public/client.html
+4
-1
4 additions, 1 deletion
public/client.html
public/js/client.js
+25
-0
25 additions, 0 deletions
public/js/client.js
public/style/main.css
+5
-0
5 additions, 0 deletions
public/style/main.css
server.js
+33
-1
33 additions, 1 deletion
server.js
with
67 additions
and
2 deletions
public/client.html
+
4
−
1
View file @
a7ee36c4
...
...
@@ -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"
>
...
...
This diff is collapsed.
Click to expand it.
public/js/client.js
+
25
−
0
View file @
a7ee36c4
...
...
@@ -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
:
{
...
...
This diff is collapsed.
Click to expand it.
public/style/main.css
+
5
−
0
View file @
a7ee36c4
...
...
@@ -203,6 +203,11 @@ mark {
background-color
:
grey
;
float
:
left
;
}
#textfield
{
height
:
100%
;
width
:
100%
;
font-size
:
30px
;
}
.wrapper
{
height
:
100%
;
width
:
100%
;
...
...
This diff is collapsed.
Click to expand it.
server.js
+
33
−
1
View file @
a7ee36c4
...
...
@@ -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
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment