status.html 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Status display</title>
  6. <meta name="description"
  7. content="Status display generated by BORA.">
  8. <link rel="stylesheet" href="{{ static_url("style.css") }}">
  9. <link rel="stylesheet" href="{{ static_url("jquery-ui.min.css") }}">
  10. <!--[if IE]>
  11. <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  12. <![endif]-->
  13. </head>
  14. <body>
  15. <div id="page_info">CPS data monitoring. Last refreshed</div>
  16. {% if data['style'] %}
  17. {% for key in data['style'] %}
  18. {% if data['style'][key]['type'] == "data" %}
  19. <div class="databox" style='position: absolute; top: {{ data['style'][key]['top'] }}; left:{{ data['style'][key]['left'] }}; width:{{ data['style'][key]['width'] }}px; height:{{ data['style'][key]['height'] }}px;'
  20. {% if data['style'][key]['condition'] %}
  21. data-cond="{{ data['style'][key]['condition'] }}"
  22. {% else%}
  23. {% end%}
  24. data-type="{{ data['style'][key]['type'] }}" data-lesser="{{ data['style'][key]['lesser'] }}" data-larger="{{ data['style'][key]['larger'] }}" id="{{ key }}">
  25. <p><span style="color: #000; font-size: {{ data['style'][key]['header']['size'] }}; font-weight: {{ data['style'][key]['header']['weight'] }};" class="title">{{ data['style'][key]['header']['title'] }} </span><span style="color: #000; font-size: {{ data['style'][key]['unit']['size'] }}; font-weight: {{ data['style'][key]['unit']['weight'] }};" class="varval"> XXX.XX </span><span class='unit_title'> {{ data['style'][key]['unit']['title'] }}</span></p>
  26. </div>
  27. {% else %}
  28. {% end %}
  29. {% if data['style'][key]['type'] == "ventil" %}
  30. <div style='position: absolute; top: {{ data['style'][key]['top'] }}; left:{{ data['style'][key]['left'] }}; width:{{ data['style'][key]['width'] }}px; height:{{ data['style'][key]['height'] }}px;' data-type="{{ data['style'][key]['type'] }}" data-off="{{ data['style'][key]['off'] }}" data-on="{{ data['style'][key]['on'] }}" class='databox' id="{{ key }}">
  31. <img width='100%' height='100%' src='{{ static_url("ventil_inactive.png") }}'></img>
  32. </div>
  33. {% else %}
  34. {% end %}
  35. {% end %}
  36. {% else %}
  37. {% end %}
  38. <img src="{{ static_url('background.png') }}"></img>
  39. <!-- java script -->
  40. <script src="{{ static_url("jquery-1.12.3.min.js") }}"></script>
  41. <script src="{{ static_url("jquery-ui.min.js") }}"></script>
  42. <script>
  43. jQuery(window).load(function () {
  44. myTimer();
  45. var myVar = setInterval(myTimer, 10000);
  46. function myTimer() {
  47. var dataToSend = {};
  48. $.ajax({
  49. url: '/getdata/',
  50. type: 'GET',
  51. data: dataToSend,
  52. success: function (response) {
  53. //var objresponse = JSON.parse(response);
  54. console.log(response);
  55. for (var key in response) {
  56. console.log(key, response[key]);
  57. data_type = $("#" + key).attr('data-type');
  58. if($("#" + key).length > 0) {
  59. if (data_type == "data") {
  60. $(".varval", "#" + key).text(parseFloat(response[key]).toFixed(2));
  61. var set_color = "green";
  62. var condition_attr = $("#" + key).attr('data-cond');
  63. var lesser_attr = $("#" + key).attr('data-lesser');
  64. var larger_attr = $("#" + key).attr('data-larger');
  65. //console.log(condition_attr);
  66. if (typeof(condition_attr) !== 'undefined' && condition_attr !== false) {
  67. if (response[key] == condition_attr) {
  68. set_color = "red";
  69. }
  70. }
  71. if (typeof(lesser_attr) !== 'undefined' && lesser_attr !== false) {
  72. if (parseFloat(response[key]) < parseFloat(lesser_attr)) {
  73. set_color = "red";
  74. }
  75. }
  76. if (typeof(larger_attr) !== 'undefined' && larger_attr !== false) {
  77. if (parseFloat(response[key]) > parseFloat(larger_attr)) {
  78. set_color = "red";
  79. }
  80. }
  81. $(".varval", "#" + key).css("color", set_color);
  82. $(".unit_title", "#" + key).css("color", set_color);
  83. } else if (data_type == "ventil") {
  84. console.log("The VENTIL way");
  85. var on_attr = $("#" + key).attr('data-on');
  86. var off_attr = $("#" + key).attr('data-off');
  87. if (parseFloat(response[key]) == parseFloat(on_attr)) {
  88. $("img", "#" + key).attr("src", "{{ static_url('ventil_active.png') }}");
  89. }
  90. if (parseFloat(response[key]) == parseFloat(off_attr)) {
  91. $("img", "#" + key).attr("src", "{{ static_url('ventil_inactive.png') }}");
  92. }
  93. }
  94. }
  95. }
  96. var currentdate = new Date();
  97. var datetime = "CPS data monitoring page. Last Sync: " + ( (currentdate.getDate()<10?'0':'').toString() + (currentdate.getDate()).toString() ) + "/"
  98. + ( ((currentdate.getMonth()+1)<10?'0':'').toString() + (currentdate.getMonth()+1)).toString() + "/"
  99. + ( (currentdate.getFullYear()<10?'0':'').toString() + (currentdate.getFullYear()).toString() ) + " @ "
  100. + ( (currentdate.getHours()<10?'0':'').toString() + (currentdate.getHours()).toString() ) + ":"
  101. + ( (currentdate.getMinutes()<10?'0':'').toString() + (currentdate.getMinutes()).toString() ) + ":"
  102. + ( (currentdate.getSeconds()<10?'0':'').toString() + (currentdate.getSeconds()).toString() );
  103. $("#page_info").text(datetime);
  104. console.log(datetime);
  105. },
  106. error: function () {
  107. console.log("Error.")
  108. }
  109. });
  110. }
  111. });
  112. </script>
  113. </body>
  114. </html>