forked from Jahislove/Hargassner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page_1_24h.php
212 lines (206 loc) · 5.79 KB
/
page_1_24h.php
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<?php
require("header.php");
require_once("conf/settings.inc.php");
require_once("conf/firmware.inc.php");
?>
<div id="chart_last24"></div>
<script type="text/javascript">
//********* déclaration des cookies pour stockage visibilité des courbes****************************
//*** creation cookie******
function setCookie(sName, sValue) {
var today = new Date(), expires = new Date();
expires.setTime(today.getTime() + (365*24*60*60*1000));
document.cookie = sName + "=" + encodeURIComponent(sValue) + ";expires=" + expires.toGMTString();
}
//*** lecture cookie******
function getCookie(sName) {
var cookContent = document.cookie, cookEnd, i, j;
var sName = sName + "=";
for(var i=0,c=cookContent.length;i<c;i++) {
j = i + sName.length;
if(cookContent.substring(i, j) == sName) {
cookEnd = cookContent.indexOf(";", j);
if(cookEnd == -1) {
cookEnd = cookContent.length;
}
return decodeURIComponent(cookContent.substring(j, cookEnd));
}
}
return true;
}
//*** lecture des cookies pour chaque serie et affectation dans une variable*******
var etat = [];
for (var k=0;k<7;k++) {
etat[k] = Boolean(getCookie('hargassner-p1c1-serie'+k)); // transforme la string des cookies en booleen , pour chaque serie
}
$(document).ready(function(){
//*** definition du graphe ******************************
Highcharts.setOptions({
lang: {
months: <?php echo $months; ?>,
weekdays: <?php echo $weekdays; ?>,
shortMonths: <?php echo $shortMonths; ?>,
thousandsSep: <?php echo $thousandsSep; ?>,
},
global: {
useUTC: false
}
});
chart_last24 = new Highcharts.Chart({
chart: {
renderTo: 'chart_last24',
type: 'line',
zoomType: 'x',
backgroundColor: null,
events: {
load: requestData('call_ajax_regul') // in header.php
},
},
credits: {
enabled: false,
},
title: {
text: '',
style:{
color: '#4572A7',
},
},
subtitle: {
text: ''
},
legend: {
enabled: true,
backgroundColor: '<?php echo $color_legend; ?>',
borderRadius: 14,
},
xAxis: {
type: 'datetime',
dateTimeLabelFormats: {
day: '%e %B',
}
},
yAxis: { //axe 0
gridLineColor: '#CACACA',
labels: {
format: '{value}',
style: {
color: '#4572A7',
}
},
title: {
text: '',
},
plotBands: [{
color: '#E7FFFF',
from: 0,
to: -30,
}],
height: 450,
// top: 160,
},
tooltip: {
shared: true,
crosshairs: true,
borderRadius: 6,
borderWidth: 1,
// valueSuffix: ' °C',
xDateFormat: '%e %B %H:%M:%S',
},
plotOptions: {
series: {
lineWidth: 1.5,
marker: {
enabled: false,
},
states: {
hover: {
enabled: false,
}
},
events: { //memorisation de l'etat visible des courbes
legendItemClick: function(event) {
var visibility = this.visible ? '' : true; // for boolean => true=true and ''=false
setCookie('hargassner-p1c1-serie' + this.index, visibility);
}
}
},
},
});
//****************************************************************************************************
//*** chargement des données en asynchrone *****************************<h3 style="text-align:left;">
var msg = ' \
Le tableau représente le contenu des données provenant en temps réel de la chaudière par telnet.<br/>\
En cliquant sur une case , cela affiche la courbe correspondant au telnet et a la colonne de la BDD.<br/>\
Dans les premiers firmware on avait donc telnet 10 (t10) = colonne 10 (c10)<br/>\
Cependant au fil des firmwares , Hargassner a modifier l\'ordre des paramètres<br/>\
et la colonne réelle de la BDD ne correspond plus au paramètre telnet,<br/>\
En cliquant , on affiche le numero du paramètre Telnet (t..), la colonne correspondante en BDD (c..) et sa description si connue\
';
chart_last24.showLoading(msg);
//****************************************************************************************************
//*** clic sur tableau *****************************
$(".telnetTable").on('click','tbody.id>tr>td',function(){
if (document.getElementById(this.id).className != 'inactif' ){
if (document.getElementById(this.id).className == 'select'){
document.getElementById(this.id).className = '';
chart_last24.get('t'+this.id).remove();
if (chart_last24.series.length == 0){
chart_last24.showLoading(msg);
};
} else {
chart_last24.hideLoading();
document.getElementById(this.id).className = 'select';
console.log(this.id);
$.ajax({
dataType: "json",
url: 'json_table_telnet.php',
data: 'id=' + this.id + '&periode=1440',
cache: false,
success: function(object) {
chart_last24.addSeries(object);
}
});
}
}
});
});
</script>
<div id="telnet_center">
<table class="telnetTable">
<tbody class="id">
<?php
for($y=0;$y<10;$y++){ // 10 lignes
echo '<tr>';
for($i=0;$i<10;$i++){ // 10 colonnes par ligne
$id = $i+$y*10;
if ($dict[$id]) { //recuperation colonne valide dans le dictionnaire firmware
echo '<td id="'.$id.'"> </td>';
}else {
echo '<td id="'.$id.'" class="inactif"> </td>';
}
}
echo '</tr>';
}
?>
</tbody>
</table>
<table class="telnetTable">
<tbody class="id">
<?php
for($y=0;$y<10;$y++){
echo '<tr>';
for($i=0;$i<10;$i++){
$id = 100+$i+$y*10;
if ($dict[$id]) {
echo '<td id="'.$id.'"> </td>';
}else {
echo '<td id="'.$id.'" class="inactif"> </td>';
}
}
echo '</tr>';
}
?>
</tbody>
</table>
</div>
<?php require("footer.php");?>