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
95df9dc9
Commit
95df9dc9
authored
7 years ago
by
Zayd Radha
Browse files
Options
Downloads
Plain Diff
Merge add keys and smartphone tab
parents
570acc59
74050213
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
-0
4 additions, 0 deletions
public/client.html
public/js/client.js
+63
-14
63 additions, 14 deletions
public/js/client.js
public/style/main.css
+18
-8
18 additions, 8 deletions
public/style/main.css
server.js
+33
-1
33 additions, 1 deletion
server.js
with
118 additions
and
23 deletions
public/client.html
+
4
−
0
View file @
95df9dc9
...
...
@@ -26,8 +26,12 @@
<div
class=
"swiper-wrapper"
>
<div
class =
"keyboard swiper-slide swiper-slide-outer"
id=
"keyboard"
>
</div>
<div
class =
"numpad swiper-slide swiper-slide-outer"
id=
"numpad"
>
</div>
<div
class =
"textfield swiper-slide swiper-slide-outer"
id=
"textfieldcontainer"
>
<textarea
class=
"textfield"
id=
"textfield"
type=
"text"
placeholder=
"Type here and press enter to send to desktop"
></textarea>
</div>
<div
class =
"hotkeys swiper-slide swiper-slide-outer"
id=
"hotkeys"
>
</div>
<div
class=
"swiper-slide swiper-slide-outer"
>
<div
class=
"swiper-container-inner"
>
<div
class=
"swiper-wrapper"
id=
"custom-container"
>
</div>
...
...
This diff is collapsed.
Click to expand it.
public/js/client.js
+
63
−
14
View file @
95df9dc9
...
...
@@ -226,22 +226,71 @@ var emitUrl = function(str) {
interact
(
'
.custom-key
'
).
draggable
(
draggableSettings
);
function
dragMoveListener
(
event
)
{
if
(
move
===
true
){
var
target
=
event
.
target
,
// keep the dragged position in the data-x/data-y attributes
x
=
(
parseFloat
(
target
.
getAttribute
(
'
data-x
'
))
||
0
)
+
event
.
dx
,
y
=
(
parseFloat
(
target
.
getAttribute
(
'
data-y
'
))
||
0
)
+
event
.
dy
;
// translate the element
target
.
style
.
webkitTransform
=
target
.
style
.
transform
=
'
translate(
'
+
x
+
'
px,
'
+
y
+
'
px)
'
;
// update the posiion attributes
target
.
setAttribute
(
'
data-x
'
,
x
);
target
.
setAttribute
(
'
data-y
'
,
y
);
}
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
);
}
else
if
(
event
.
keyCode
===
32
&&
document
.
getElementById
(
'
textfield
'
).
value
===
''
)
{
// space
socket
.
emit
(
'
functionality
'
,
'
Space
'
);
document
.
getElementById
(
'
textfield
'
).
value
=
''
;
}
});
//Purpose: Uses interact.js library to enable keys to move around
interact
(
'
.draggable
'
).
draggable
({
snap
:
{
targets
:
[
interact
.
createSnapGrid
({
x
:
.
05
*
keyboardWidth
,
y
:
.
1
*
keyboardHeight
})
],
range
:
Infinity
},
inertia
:
true
,
// enable inertial throwing
restrict
:
{
restriction
:
"
parent
"
,
// keep the element within the area of it's parent
endOnly
:
true
,
elementRect
:
{
top
:
0
,
left
:
0
,
bottom
:
1
,
right
:
1
}
},
autoScroll
:
true
,
// enable autoScroll
onmove
:
dragMoveListener
,
// call this function on every dragmove event
onend
:
function
(
event
)
{
// call this function on every dragend event
}
});
function
dragMoveListener
(
event
)
{
if
(
move
===
true
){
var
target
=
event
.
target
,
// keep the dragged position in the data-x/data-y attributes
x
=
(
parseFloat
(
target
.
getAttribute
(
'
data-x
'
))
||
0
)
+
event
.
dx
,
y
=
(
parseFloat
(
target
.
getAttribute
(
'
data-y
'
))
||
0
)
+
event
.
dy
;
// translate the element
target
.
style
.
webkitTransform
=
target
.
style
.
transform
=
'
translate(
'
+
x
+
'
px,
'
+
y
+
'
px)
'
;
// update the posiion attributes
target
.
setAttribute
(
'
data-x
'
,
x
);
target
.
setAttribute
(
'
data-y
'
,
y
);
}
}
//Purpose: Event listener on tapping the keys
interact
(
'
.key-button
'
).
on
(
'
tap
'
,
function
(
event
)
{
emitKey
(
event
.
target
.
innerText
);
...
...
This diff is collapsed.
Click to expand it.
public/style/main.css
+
18
−
8
View file @
95df9dc9
...
...
@@ -83,14 +83,12 @@ mark {
.swiper-wrapper
{
height
:
85%
;
width
:
4
00%
;
width
:
5
00%
;
position
:
relative
;
}
.static-bar
{
min-height
:
15%
touch-action
:
none
;
-webkit-user-select
:
none
;
height
:
15%
}
.static-key
{
...
...
@@ -114,6 +112,17 @@ mark {
transform
:
translate
(
0px
,
0px
);
}
.static-key
:active:hover
{
-ms-transform
:
translate
(
0px
,
-40%
);
/* IE 9 */
-webkit-transform
:
translate
(
0px
,
-40%
);
/* Safari */
transform
:
translate
(
0px
,
-40%
);
background-image
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
color-stop
(
0
,
#00bbd4
),
color-stop
(
1
,
#3f51b5
));
background-image
:
-webkit-linear-gradient
(
top
,
#00bbd4
0%
,
#3f51b5
100%
);
background-image
:
linear-gradient
(
to
bottom
,
#00bbd4
0%
,
#3f51b5
100%
);
background-image
:
-webkit-linear-gradient
(
273deg
,
#3f51b5
0%
,
#00bbd4
100%
);
color
:
#fff
;
}
.shift-toggle
{
min-width
:
10%
}
...
...
@@ -164,10 +173,6 @@ mark {
position
:
relative
;
}
#numpad
{
background-color
:
purple
;
}
.touchpad
{
text-align
:
center
;
touch-action
:
none
;
...
...
@@ -206,6 +211,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 @
95df9dc9
...
...
@@ -140,9 +140,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
;
case
'
Space
'
:
robot
.
keyTap
(
'
space
'
);
break
;
}
});
socket
.
on
(
'
text
'
,
function
(
text
)
{
console
.
log
(
'
Typing
'
+
text
);
robot
.
typeString
(
text
);
});
socket
.
on
(
'
saveKey
'
,
function
(
key
)
{
console
.
log
(
key
.
index
.
toString
())
...
...
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