-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
31 lines (30 loc) · 880 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
Hello!
<div id="app"></div>
<script>
const webSocket = new WebSocket("ws://localhost:30000");
webSocket.onopen = function (event) {
// const init = JSON.stringify({event: 'Init'})
webSocket.send('init');
};
webSocket.onmessage = function (resopnse) {
const node = document.getElementById('app')
node.innerHTML = resopnse.data
node.querySelectorAll('[v-click]').forEach(clickable => {
clickable.addEventListener("click", click => {
const event = click.target.attributes['v-click'].value
webSocket.send(event);
});
})
}
</script>
</body>
</html>