]> code.citadel.org Git - citadel.git/blobdiff - webcit-ng/static/js/main.js
Rooms with new messages boldface in room list
[citadel.git] / webcit-ng / static / js / main.js
index 0170a987aba037465982c312e67a0320ecb8ad7e..3c89914ac57b5d17a071a242eed388f9ded622fc 100644 (file)
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2016-2017 by the citadel.org team
+// Copyright (c) 2016-2019 by the citadel.org team
 //
 // This program is open source software; you can redistribute it and/or modify
 // it under the terms of the GNU General Public License version 3.
@@ -20,6 +20,7 @@ var current_user = _("Not logged in.");
 var serv_info;
 var last_seen = 0;
 var messages_per_page = 20;
+var march_list = [] ;
 
 
 // Placeholder for when we add i18n later
@@ -150,8 +151,10 @@ function display_room_list_renderer(data) {
                }
                new_roomlist_text = new_roomlist_text +
                        "<li>"
+                       + (data[i].hasnewmsgs ? "<b>" : "")
                        + "<a href=\"javascript:gotoroom('" + escapeJS(escapeHTML(data[i].name)) + "');\">"
                        + escapeHTML(data[i].name)
+                       + (data[i].hasnewmsgs ? "</b>" : "")
                        + "</a></li>"
                ;
        }
@@ -201,5 +204,49 @@ function gotoroom_2(data) {
        default_view = data.default_view;
        last_seen = data.last_seen;
        update_banner();
-       render_room_view();
+       render_room_view(0, 9999999999);
+}
+
+
+// Goto next room with unread messages
+//
+function gotonext() {
+       if (march_list.length == 0) {
+               load_new_march_list();          // we will recurse back here
+       }
+       else {
+               next_room = march_list[0].name;
+               march_list.splice(0, 1);
+               console.log("going to " + next_room + " , " + march_list.length + " rooms remaining in march list");
+               gotoroom(next_room);
+       }
+}
+
+
+// Called by gotonext() when the march list is empty.
+//
+function load_new_march_list() {
+       var request = new XMLHttpRequest();
+       request.open("GET", "/ctdl/r/", true);
+       request.onreadystatechange = function() {
+               if ((this.readyState === 4) && ((this.status / 100) == 2)) {
+                       march_list = (JSON.parse(this.responseText));
+                       march_list = march_list.filter(function(room) {
+                               return room.hasnewmsgs;
+                       });
+                       march_list = march_list.sort(function(a,b) {
+                               if (a.floor != b.floor) {
+                                       return(a.floor - b.floor);
+                               }
+                               if (a.rorder != b.rorder) {
+                                       return(a.rorder - b.rorder);
+                               }
+                               return(a.name < b.name);
+                       });
+                       march_list.push({name:"_BASEROOM_",known:true,hasnewmsgs:true,floor:0});
+                       gotonext();
+               }
+       };
+       request.send();
+       request = null;
 }