X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit-ng%2Fstatic%2Fjs%2Fmain.js;h=7226f334aad138163ec35b352481a52984efe706;hb=d45e366cffaa9c8b06291ac5d435f6f44cde8213;hp=5aac5f8e66f4efe3456e35c1f8a44bd44c285030;hpb=ac21736a1bf75d8a18234d56447c52afb5f236f3;p=citadel.git diff --git a/webcit-ng/static/js/main.js b/webcit-ng/static/js/main.js index 5aac5f8e6..7226f334a 100644 --- a/webcit-ng/static/js/main.js +++ b/webcit-ng/static/js/main.js @@ -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 @@ -203,3 +204,47 @@ function gotoroom_2(data) { update_banner(); render_room_view(0, 9999999999); } + + +// Goto next room with unread messages +// +function gotonext() { + console.log("march list contains " + march_list.length ); + if (march_list.length == 0) { + load_new_march_list(); // we will recurse back here. make sure length isn't still 0 if no new rooms + } + else { + next_room = march_list[0].name; + march_list.splice(0, 1); + console.log("going to " + next_room); + 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 == true; + }); + 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); + }); + gotonext(); + } + }; + request.send(); + request = null; +}