-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (78 loc) · 2.13 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!doctype html>
<html>
<head>
<title>Qmi backend log explorer</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: monospace;
font-size: 13px;
}
#controller {
position: fixed;
padding: 10px;
background-color: rgba(0, 153, 51, 0.8);
bottom: 0px;
right: 0px;
}
#controller span.subscribe {
color: white;
}
#messages {
list-style-type: none;
margin: 0;
padding: 0;
}
#messages li {
padding: 5px 10px;
}
#messages li:nth-child(odd) {
background: #eee;
}
</style>
</head>
<body>
<div id="controller">
<div>
<input id="host" autocomplete="off" placeholder="hostname" />
<input id="ui" autocomplete="off" placeholder="user id (default is all)" />
<input type="button" id="btnSubscribe" value="Subscribe" />
<input type="button" id="btnClear" value="Clear" />
<input type="checkbox" id="chkAutoScroll" />Auto Scroll?
</div>
<span class="subscribe"></span>
</div>
<ul id="messages"></ul>
<script src="/socket.io/socket.io.js"></script>
<script src="https://code.jquery.com/jquery-1.11.1.js"></script>
<script>
var socket = io();
$(function () {
subscribe();
$("#btnSubscribe").on("click", function(){
subscribe();
});
$("#btnClear").on("click", function(){
$("#messages").empty();
});
});
function subscribe(){
var host = ($("#host").val() || "qmi17").toLowerCase();
var ui = ($("#ui").val() || "all").toLowerCase();
socket.removeAllListeners();
socket.on(host + "," + ui, function(msg){
var li = $('<li>').text(msg);
$('#messages').append(li);
if($("#chkAutoScroll").is(":checked")){
window.scrollTo(0, document.body.scrollHeight);
}
});
$("span.subscribe").text("Subscribe <" + host + "," + ui + ">");
}
</script>
</body>
</html>