]> code.citadel.org Git - citadel.git/blob - webcit-ng/static/js/main.js
0ebb577a0529521a8e649ff5ef4dd72355f8b0c3
[citadel.git] / webcit-ng / static / js / main.js
1 // Copyright (c) 2016-2022 by the citadel.org team
2 //
3 // This program is open source software.  Use, duplication, or
4 // disclosure are subject to the GNU General Public License v3.
5
6
7 // This is called at the very beginning of the main page load.
8 ctdl_startup = async() => {
9         response = await fetch("/ctdl/c/info");
10
11         if (response.ok) {
12                 serv_info = await(response.json());
13                 if (serv_info.serv_rev_level < 905) {
14                         alert(_("Citadel server is too old, some functions may not work"));
15                 }
16
17                 update_banner();
18
19                 // What do we do upon landing?
20
21                 if ( (serv_info.serv_supports_guest) || (logged_in) ) {                 // If the Lobby is visible,
22                         gotonext(1);                                                    // go there.
23                 }
24                 else {                                                                  // Otherwise,
25                         display_login_screen("");                                       // display the login modal.
26                 }
27         }
28         else {
29                 document.getElementById("ctdl-main").innerHTML =
30                         "<div class=\"w3-panel w3-red\"><p>"
31                         + _("This program was unable to connect or stay connected to the Citadel server.  Please report this problem to your system administrator.")
32                         + "</div>";
33         }
34 }
35
36
37 // Display a room list in the main div.
38
39 // Update the "banner" div with all relevant info.
40 function update_banner() {
41         detect_logged_in();
42         if (current_room) {
43                 document.getElementById("ctdl_banner_title").innerHTML = current_room;
44                 if (is_room_aide) {
45                         document.getElementById("ctdl_banner_title").innerHTML += "&nbsp;<i class=\"fa fa-user-cog\"></i>";
46                 }
47                 document.title = current_room;
48         }
49         else {
50                 document.getElementById("ctdl_banner_title").innerHTML = serv_info.serv_humannode;
51         }
52         document.getElementById("current_user").innerHTML = current_user ;
53         if (logged_in) {
54                 document.getElementById("lilo").innerHTML = "<a href=\"/ctdl/a/logout\"><i class=\"fa fa-right-from-bracket\"></i>" + _("Log off") + "</a>" ;
55                 document.getElementById("current_user_avatar").innerHTML = render_userpic(current_user);
56         }
57         else {
58                 document.getElementById("lilo").innerHTML = "<a href=\"javascript:display_login_screen('')\"><i class=\"fa fa-right-to-bracket\"></i>" + _("Log in") + "</a>" ;
59                 document.getElementById("current_user_avatar").innerHTML = "<i class=\"fa fa-user-circle fa-3x\"></i>";
60         }
61 }
62
63
64 // goto room
65 function gotoroom(roomname) {
66
67         fetch_room = async() => {
68                 response = await fetch("/ctdl/r/" + escapeHTMLURI(roomname) + "/");
69                 if (response.ok) {
70                         data = await(response.json());
71                         current_room = data.name;
72                         new_messages = data.new_messages;
73                         total_messages = data.total_messages;
74                         current_view = data.current_view;
75                         default_view = data.default_view;
76                         last_seen = data.last_seen;
77                         is_room_aide = data.is_room_aide;
78                         room_mtime = data.room_mtime;
79                         can_delete_messages = data.can_delete_messages;
80                         update_banner();
81                         render_room_view();
82                 }
83         }
84         fetch_room();
85 }
86
87
88 // Goto next room with unread messages
89 // which_oper is 0=ungoto, 1=skip, 2=goto
90 function gotonext(which_oper) {
91         if (which_oper == 2) {                                  // Goto needs to mark messages as seen
92
93                 set_last_read_pointer = async() => {
94                         response = await fetch("/ctdl/r/" + escapeHTMLURI(current_room) + "/slrp?last=" + last_seen);
95                 }
96                 set_last_read_pointer();
97         }
98
99         if ((which_oper == 1) || (which_oper == 2)) {           // Skip or Goto both take us to the "next" room
100                 if (march_list.length == 0) {
101                         load_new_march_list(which_oper);        // we will recurse back here
102                 }
103                 else {
104                         next_room = march_list[0].name;
105                         march_list.splice(0, 1);
106                         gotoroom(next_room);
107                 }
108         }
109
110         // FIXME implement mode 0 (ungoto)
111
112 }
113
114
115 // Called by gotonext() when the march list is empty.
116 function load_new_march_list(which_oper) {
117         fetchm = async() => {
118                 response = await fetch("/ctdl/r/");
119                 march_list = await(response.json());
120                 if (response.ok) {
121                         march_list = march_list.filter(function(room) {
122                                 return room.hasnewmsgs;
123                         });
124                         march_list = march_list.sort(function(a,b) {
125                                 if (a.floor != b.floor) {
126                                         return(a.floor - b.floor);
127                                 }
128                                 if (a.rorder != b.rorder) {
129                                         return(a.rorder - b.rorder);
130                                 }
131                                 return(a.name < b.name);
132                         });
133
134                         // If there are still no rooms with new messages, go to the Lobby.
135                         if (march_list.length == 0) {
136                                 march_list.push({name:"_BASEROOM_",known:true,hasnewmsgs:true,floor:0});
137                         }
138
139                         gotonext(which_oper);
140                 }
141         }
142         fetchm();
143 }
144
145
146 // Activate the "Loading..." modal
147 function activate_loading_modal() {
148         document.getElementById("ctdl_big_modal").innerHTML =
149                   "<div class=\"w3-modal-content\">"
150                 + "  <div class=\"w3-container\">"
151
152                 + "<i class=\"fas fa-spinner fa-spin\"></i>&nbsp;&nbsp;"
153                 + _("Loading messages from server, please wait")
154
155                 + "  </div>"
156                 + "</div>";
157         document.getElementById("ctdl_big_modal").style.display = "block";
158 }
159
160
161 // Disappear the "Loading..." modal
162 function deactivate_loading_modal() {
163         document.getElementById("ctdl_big_modal").style.display = "none";
164 }