Create web directory to put web stuff in
[matches/MCTX3420.git] / server / gui.js
diff --git a/server/gui.js b/server/gui.js
deleted file mode 100644 (file)
index 911325b..0000000
+++ /dev/null
@@ -1,118 +0,0 @@
-/**
- * @file gui.js
- * @purpose GUI in JavaScript using jQuery and jQuery Flot libraries
- * NEEDS WORK !
- */
-
-$(document).ready(function()
-{
-
-       g_sensors = []
-       g_numSensors = 2
-       g_storeTime = []
-
-       $.fn.pruneSensorData = function(id)
-       {
-               var sensor = g_sensors[id]
-               // remove unwanted values
-               if (g_storeTime[id] != null)
-               {
-                       var last_time = sensor[sensor.length-1][0]
-                       //console.log("Last time: " + String(last_time))
-                       var back_index = 0;
-                       for (back_index = sensor.length-1; back_index > 0; --back_index)
-                       {
-                               if ((last_time - sensor[back_index][0]) > g_storeTime[id])
-                               {
-                                       break;
-                               }
-
-                               //console.log("Keep point " + String(sensor[back_index][0]) + "s ago")
-
-                       }
-                       if (back_index > 0)
-                       {
-                               //console.log("Delete " +String(back_index))
-                               sensor.splice(0, back_index)
-                       }
-               }
-       }
-       
-
-       // update function
-       $.fn.updateSensor = function(json)
-       {
-               //console.log(json.data)
-               var sensor = g_sensors[json.id]
-               var most_recent = null
-               if (sensor.length > 0)
-                       most_recent = sensor[sensor.length-1][0]
-
-               for (var i=0; i < json.data.length; ++i)
-               {
-                       if (json.data[i][0] > most_recent || most_recent == null)
-                       {
-                               sensor.push(json.data[i])
-                               most_recent = json.data[i][0]
-                       }
-               }
-
-               $(this).pruneSensorData(json.id)
-               
-               //console.log("Plot:")
-               //console.log(g_sensors[json.id])
-               $.plot("#sensor"+String(json.id)+"_plot", [g_sensors[json.id]])
-               $.ajax({url : "/api/sensors", data : {id : json.id}, success : function(data) {$(this).updateSensor(data);}});
-               
-               //
-       }
-
-       $.fn.reloadSensor = function(id)
-       {
-               g_storeTime[id] = Number($("#sensor"+String(id)+"_settings").find("#storeTime").val())
-               console.log(String($("#sensor"+String(id)+"_settings").find("#storeTime").val()))
-               
-               
-               
-               $(this).pruneSensorData(id)
-               $.plot("#sensor"+String(id)+"_plot", [g_sensors[id]])
-       }
-
-       $.fn.LoadGUI = function()
-       {
-               //TODO: Get rid of g_numSensors; query the server for sensors?
-
-               // Load the plots
-               plotsHTML = ""
-               for (var i = 0; i < g_numSensors; ++i)
-               {
-                       g_sensors.push([new Array()])
-                       g_storeTime.push(600)
-                       //plotsHTML += "<div id=sensor"+String(i)+"\n"
-                       plotsHTML += "<h2 id=sensor"+String(i)+"_name>Sensor: "+String(i)+"</h2>\n"
-                       plotsHTML += "<div id=sensor"+String(i)+"_plot class=\"plot\" onclick=\"window.open('/api/sensors?id="+String(i)+"&dump')\"> </div>\n"
-                       plotsHTML += "<div id=sensor"+String(i)+"_settings\n"
-                       plotsHTML += "<p> Plot since <input type=text id=storeTime value=\""+String(g_storeTime[i])+"\"/> seconds ago\n"
-                       plotsHTML += "<button id=update onclick=$(document).reloadSensor("+String(i)+")>Update</button></p>\n"
-                       plotsHTML += "<button id=dump onclick=\"window.open('/api/sensors?id="+String(i)+"&dump')\">Dump All Data\n"
-                       plotsHTML += "</div>\n" // end settings
-                       //plotsHTML += "</div>\n" // 
-                       
-               }
-               $("#plots").html(plotsHTML)
-
-       }
-
-
-       
-       $(this).LoadGUI()
-
-       
-
-       for (var i = 0; i < g_numSensors; ++i)
-       {
-               $.ajax({url : "/api/sensors", data : {id : i}, success : function(data) {$(this).updateSensor(data);}})
-
-       }
-});
-

UCC git Repository :: git.ucc.asn.au