]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - js/unrealircd-admin.js
Add start of Notes functionality
[irc/unrealircd/unrealircd-webpanel.git] / js / unrealircd-admin.js
index ee370b12b74866239fcb3813b36ad9398458f666..688fc3b5a3a596753f800ff92a39b55019350097 100644 (file)
@@ -63,6 +63,8 @@ function toggle_checkbox(source) {
     }
 }
 
+/* Popup notifications */
+
 function generate_notif(title, body)
 {
     /* generate a random number between 1000 and 90000 to use as an id */
@@ -76,7 +78,7 @@ function generate_notif(title, body)
     toast.role = 'alert';
     toast.ariaLive = 'assertive';
     toast.ariaAtomic = 'true';
-    toast.setAttribute('data-delay', '5000');
+    toast.setAttribute('data-delay', '10000');
 
     const header = document.createElement('div');
     header.classList.add('toast-header');
@@ -85,8 +87,9 @@ function generate_notif(title, body)
     theTitle.classList.add('mr-auto');
     theTitle.textContent = title;
     
-    const notiftime = document.createElement('small');
-    notiftime.textContent = "Just now"; // always just now I think right :D
+    const notiftime = document.createElement('div');
+    notiftime.classList.add('badge', 'rounded-pill', 'badge-primary', 'ml-1');
+    notiftime.textContent = 'Just now'; // always just now I think right :D
 
     const closebutton = document.createElement('button');
     closebutton.type = 'button';
@@ -115,9 +118,6 @@ function generate_notif(title, body)
     $('#' + toast.id).toast('show');
 }
 
-$("#myModal").on('shown.bs.modal', function(){
-    $("#CloseButton").focus();
-});
 function StreamNotifs(e)
 {
     var data;
@@ -130,10 +130,48 @@ function StreamNotifs(e)
     msg = data.msg;
     generate_notif(title, msg);
 }
+
 function StartStreamNotifs(url)
 {
     if (!!window.EventSource) {
         var source = new EventSource(url);
         source.addEventListener('message', StreamNotifs, false);
     }
-}
\ No newline at end of file
+}
+
+/* Log streamer */
+function NewLogEntry(e)
+{
+    var data;
+    try {
+        data = JSON.parse(e.data);
+    } catch(e) {
+        return;
+    }
+
+    if (data.sync_option != "sync_now")
+    {
+        var sync = (data.sync_option == "no_sync") ? false : true;
+        delete data.sync_option;
+
+        data_list_table.row.add({
+            'Time':data.timestamp,
+            'Level':data.level,
+            'Subsystem':data.subsystem,
+            'Event':data.event_id,
+            'Message':data.msg,
+            'Raw':JSON.stringify(data)});
+
+        if (!sync)
+            return;
+    }
+    data_list_table.draw(true);
+    data_list_table.rows().invalidate();
+    data_list_table.searchPanes.rebuildPane();
+}
+
+function StartLogStream(url)
+{
+    var source = new EventSource(url);
+    source.addEventListener('message', NewLogEntry, false);
+}