-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
149 lines (138 loc) · 3.94 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DMX Lichtschalter</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes" />
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet">
<style>
body {
background: #222;
color: #eee;
}
input[type=range] {
-webkit-appearance: slider-vertical;
height: 200px;
width: 60px;
margin-bottom: 2em;
}
input[type=range]:before {
content: attr(value);
color: #eee;
font-family: monospace;
text-align: center;
width: 60px;
display: block;
color: #fff;
position: absolute;
margin-bottom: 2em;
}
.device {
clear: both;
padding-top: 1em;
}
.channel {
text-align: center;
float: left;
}
.btn {
margin-bottom: 1em;
}
</style>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js"></script>
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script>
function get_html_id(universe, channel) {
return 'channel_' + universe + '_' + channel;
}
var socket = io.connect();
socket.on('init', function (msg) {
$('#presets').empty();
$('#sliders').empty();
setup = msg.setup
devices = msg.devices
/* preset buttons */
for(var preset in setup.presets) {
var html = '<button class="span2 btn btn-info">' + setup.presets[preset].label + '</button>';
var e = $(html)
e.hide().appendTo('#presets').fadeIn();
e.click(function(values) { return function() {
for(var universe in values) {
socket.emit('update', universe, values[universe]);
}
};}(setup.presets[preset].values));
console.log(html);
}
/* blackout button */
var blackout = $('<button class="span2 btn btn-danger">Black Out</button>');
blackout.hide().appendTo('#presets').fadeIn();
blackout.click(function() {
for(var universe in setup.universes) {
var u = {};
for(var i = 0; i < 255; i++) {
u[i] = 0;
}
socket.emit('update', universe, u);
}
});
/* sliders */
for(var universe in setup.universes) {
var html = "<div><h1>" + universe + "</h1>";
for(var device in setup.universes[universe].devices) {
var dev = setup.universes[universe].devices[device];
html += '<div class="device">'
for(var channel in devices[dev.type].channels) {
var channel_id = dev.address + Number(channel)
var html_id = get_html_id(universe, channel_id);
html += '<div class="channel">'
html += '<label for="' + html_id + '">' + devices[dev.type].channels[channel] + '</label>';
html += '<input id="' + html_id + '" type="range" min="0" value="0" max="255">'
html += '</div>'
}
html += '</div>'
}
html += "</div>";
$(html).hide().appendTo('#sliders').fadeIn();
}
$("input").live("change", function(e) {
var i = e.target.id.split('_');
var u = {};
u[i[2]] = e.target.value;
socket.emit('update', i[1], u);
});
socket.emit('request_refresh');
});
socket.on('update', function (universe, update) {
for(var k in update) {
$('#' + get_html_id(universe, k)).attr('value', update[k]);
}
});
</script>
</head>
<body>
<div class="navbar navbar-inverse">
<div class="navbar-inner">
<ul class="nav" id="myTab">
<li class="active"><a href="#home" data-toggle="tab">Home</a></li>
<li><a href="#sliders" data-toggle="tab">Sliders</a></li>
<!--<li><a href="#scripts" data-toggle="tab">Scripts</a></li>-->
</ul>
</div>
</div>
<div class="container-fluid">
<div class="tab-content">
<div id="home" class="tab-pane active">
<div class="row-fluid" id="presets">
</div>
</div>
<div id="sliders" class="tab-pane">
</div>
<div id="scripts" class="tab-pane">
</div>
</div>
</div>
</body>
</html>