Skip to content

Commit abc78fa

Browse files
committed
Added light mode to the UI
1 parent 693e909 commit abc78fa

File tree

2 files changed

+57
-38
lines changed

2 files changed

+57
-38
lines changed

smart_incubator/server/static/css/style.css

+26-11
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@
249249
position: relative;
250250
}
251251

252-
.data p {
252+
.data1 p {
253253
font-size: 400%;
254254
line-height: 1em;
255255
color: #ffffff;
@@ -267,14 +267,26 @@
267267
}
268268

269269
.temperature {
270-
# background: #777;
271-
float: left;
272-
background-color: rgba (25, 25, 75, 0.5);
273-
padding: 10px;
274-
margin: 5px;
275-
height: 60px;
270+
font-size: 400%;
271+
line-height: 1em;
272+
color: #ffffff;
273+
float: left;
274+
background-color: rgba (25, 25, 75, 0.5);
275+
padding: 10px;
276+
margin: 5px;
277+
height: 60px;
276278
}
277279

280+
.light_mode {
281+
float: right;
282+
font-size: 200%;
283+
line-height: 1em;
284+
color: #777;
285+
height: 56px;
286+
width: 56px;
287+
margin-bottom: 0px;
288+
}
289+
278290
.temperature:after {
279291
font-size: 55%;
280292
vertical-align: baseline;
@@ -284,10 +296,13 @@
284296
}
285297

286298
.humidity {
287-
float: left;
288-
padding: 10px;
289-
margin: 5px;
290-
height: 60px;
299+
font-size: 400%;
300+
line-height: 1em;
301+
color: #ffffff;
302+
float: left;
303+
padding: 10px;
304+
margin: 5px;
305+
height: 60px;
291306
}
292307

293308

smart_incubator/server/static/js/script.js

+31-27
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,3 @@
1-
function loadDashboard(){
2-
$.getJSON("/json/all",
3-
function(data) {
4-
$.each(data, function(i, item) {
5-
6-
is_timestamp = new Date(item.device_time*1000).getTime() > 0;
7-
if (is_timestamp) {
8-
var timestamp = item.device_time;
9-
} else {
10-
var k = moment(item.device_time);
11-
var timestamp = (k + k.utcOffset()*60*1000)/1000;
12-
}
13-
var time = moment(timestamp*1000).format("DD-MM-YYYY HH:mm");
14-
15-
$('#main').append('\
16-
<div class="incubator" id="'+item.inc_id+'">\
17-
<h2><a href="/graph/'+item.inc_id+'/1">Incubator '+item.inc_id+'</a></h2>\
18-
<div class="data">\
19-
<p class="temperature">'+item.temperature+'</p><div class="light"></div></div>\
20-
<div class="data">\
21-
<p class="humidity">'+item.humidity+'</p></div>\
22-
<div class="time"><p>'+time+'</p></div>\
23-
</div>');
24-
})
25-
});
26-
}
27-
281
function loadIncubatorForm(incubator_id){
292
$.getJSON("/json/" + incubator_id,
303
function(data) {
@@ -62,6 +35,33 @@ function loadIncubatorForm(incubator_id){
6235
});
6336
}
6437

38+
function loadDashboard(){
39+
$.getJSON("/json/all",
40+
function(data) {
41+
$.each(data, function(i, item) {
42+
43+
is_timestamp = new Date(item.device_time*1000).getTime() > 0;
44+
if (is_timestamp) {
45+
var timestamp = item.device_time;
46+
} else {
47+
var k = moment(item.device_time);
48+
var timestamp = (k + k.utcOffset()*60*1000)/1000;
49+
}
50+
var time = moment(timestamp*1000).format("DD-MM-YYYY HH:mm");
51+
52+
$('#main').append('\
53+
<div class="incubator" id="'+item.inc_id+'">\
54+
<h2><a href="/graph/'+item.inc_id+'/1">Incubator '+item.inc_id+'</a></h2>\
55+
<div class="data">\
56+
<p class="temperature">'+item.temperature+'</p><span class="light"></span></div>\
57+
<div class="data">\
58+
<p class="humidity">'+item.humidity+'</p><p class="light_mode">_</p></div>\
59+
<div class="time"><p>'+time+'</p></div>\
60+
</div>');
61+
})
62+
});
63+
}
64+
6565

6666
function refreshDashboard(){
6767
$.getJSON("/json/all",
@@ -97,6 +97,10 @@ function refreshDashboard(){
9797

9898
$('#' + item.inc_id).find('.humidity').html(item.humidity);
9999
$('#' + item.inc_id).find('.humidity').attr('title', item.humidity + " / " + item.set_hum);
100+
101+
lm = ["DD","LD","LL","DL","MM"]
102+
$('#' + item.inc_id).find('.light_mode').html(lm[item.dd_mode]);
103+
100104

101105
$('#' + item.inc_id).find('.time').find("p").html(item.device_time);
102106
$('#' + item.inc_id).find('.time').attr('title', timestamp);

0 commit comments

Comments
 (0)