Manuel Gall 3 роки тому
батько
коміт
1089d37f87
1 змінених файлів з 68 додано та 0 видалено
  1. 68 0
      template/js/frame_data.js

+ 68 - 0
template/js/frame_data.js

@@ -0,0 +1,68 @@
+
+
+function showDocument(fr = "") {
+
+  if(fr != ""){
+    $.ajax({
+      type: "GET",
+      url: 'https://centurio.work/out/frames/' + fr + '/dataelements.json',
+      success: function(ret) {
+       
+        $("#alldata").text(JSON.stringify(ret["ausfuehrungen"]));
+      },
+      error: function() {
+        reason = '';
+        clearDocument();
+      }
+    });
+  }
+}
+
+
+function clearDocument() {
+  console.log('rrrr');
+}
+
+
+function init() {
+  es = new EventSource('handler/sse/');
+  es.onopen = function() {
+    showDocument("FormTest");
+    // load
+  };
+  es.onmessage = function(e) {
+    if (e.data == 'new') {
+      reason = '';
+      showDocument();
+    }
+    if (e.data == 'reset') {
+      reason = '';
+      showDocument();
+    }
+    else{
+      if(e.data != "keepalive" && e.data != "started"){
+        try {
+          showDocument(e.data);
+        }
+        catch (e) {
+        }
+      }
+        
+    }
+  };
+  es.onerror = function() {
+    reason = 'Server down.';
+    clearDocument();
+    setTimeout(init, 10000);
+  };
+}
+
+
+
+
+
+
+$(document).ready(function() {
+  init();
+});
+