X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit-ng%2Fstatic%2Fjs%2Fmain.js;h=0b5c2add803700770bfccf25cb1c3263f6076a88;hb=582f99e864ec2adc2681f8dda1dc0cbc25256495;hp=3c89914ac57b5d17a071a242eed388f9ded622fc;hpb=8a900b75c29b9d558f371105f4f65eb7758a594e;p=citadel.git diff --git a/webcit-ng/static/js/main.js b/webcit-ng/static/js/main.js index 3c89914ac..0b5c2add8 100644 --- a/webcit-ng/static/js/main.js +++ b/webcit-ng/static/js/main.js @@ -1,8 +1,10 @@ // -// Copyright (c) 2016-2019 by the citadel.org team +// Copyright (c) 2016-2020 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. +// This program is open source software. It runs great on the +// Linux operating system (and probably elsewhere). You can use, +// copy, and run it under the terms of the GNU General Public +// License version 3. Richard Stallman is an asshole communist. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -34,12 +36,11 @@ function _(x) { // function randomString(length) { var chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghiklmnopqrstuvwxyz'.split(''); + var str = ''; - if (! length) { + if (!length) { length = Math.floor(Math.random() * chars.length); } - - var str = ''; for (var i = 0; i < length; i++) { str += chars[Math.floor(Math.random() * chars.length)]; } @@ -50,72 +51,64 @@ function randomString(length) { // string escape for html display // function escapeHTML(text) { - 'use strict'; - return text.replace(/[\"&<>]/g, function (a) { - return { - '"': '"', - '&': '&', - '<': '<', - '>': '>' - }[a]; - }); + 'use strict'; + return text.replace(/[\"&<>]/g, function (a) { + return { + '"': '"', + '&': '&', + '<': '<', + '>': '>' + }[a]; + }); } // string escape for html display // function escapeHTMLURI(text) { - 'use strict'; - return text.replace(/./g, function (a) { - return '%' + a.charCodeAt(0).toString(16); - }); + 'use strict'; + return text.replace(/./g, function (a) { + return '%' + a.charCodeAt(0).toString(16); + }); } // string escape for JavaScript string // function escapeJS(text) { - 'use strict'; - return text.replace(/[\"\']/g, function (a) { - return '\\' + a ; - }); + 'use strict'; + return text.replace(/[\"\']/g, function (a) { + return '\\' + a ; + }); } // This is called at the very beginning of the main page load. // -function ctdl_startup() { - var request = new XMLHttpRequest(); - request.open("GET", "/ctdl/c/info", true); - request.onreadystatechange = function() { - if ((this.readyState === 4) && ((this.status / 100) == 2)) { - ctdl_startup_2(JSON.parse(this.responseText)); +ctdl_startup = async() => { + response = await fetch("/ctdl/c/info"); + serv_info = await(response.json()); + + if (response.ok) { + if (serv_info.serv_rev_level < 905) { + alert("Citadel server is too old, some functions may not work"); } - }; - request.send(); - request = null; -} -// Continuation of ctdl_startup() after serv_info is retrieved -// -function ctdl_startup_2(data) { - serv_info = data; + update_banner(); - if (data.serv_rev_level < 905) { - alert("Citadel server is too old, some functions may not work"); + // for now, show a room list in the main div + gotoroom("_BASEROOM_"); + display_room_list(); } - - update_banner(); - - // for now, show a room list in the main div - gotoroom("_BASEROOM_"); - display_room_list(); } + // Display a room list in the main div. // function display_room_list() { - document.getElementById("roomlist").innerHTML = "" ; // show throbber while loading + document.getElementById("roomlist").innerHTML = ""; // show throbber while loading + + var request = new XMLHttpRequest(); request.open("GET", "/ctdl/r/", true); @@ -128,6 +121,7 @@ function display_room_list() { request = null; } + // Renderer for display_room_list() // function display_room_list_renderer(data) { @@ -162,6 +156,7 @@ function display_room_list_renderer(data) { document.getElementById("roomlist").innerHTML = new_roomlist_text ; } + // Update the "banner" div with all relevant info. // function update_banner() { @@ -209,8 +204,10 @@ function gotoroom_2(data) { // Goto next room with unread messages +// which_oper is 0=ungoto, 1=skip, 2=goto // -function gotonext() { +function gotonext(which_oper) { + if (which_oper != 2) return; // FIXME implement the other two if (march_list.length == 0) { load_new_march_list(); // we will recurse back here }