]> code.citadel.org Git - citadel.git/blob - webcit-ng/static/js/views.js
Removed W3CSS and moved to CSS grid layout. There's a bunch of stuff left to tweak...
[citadel.git] / webcit-ng / static / js / views.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 function is the dispatcher that determines the correct view for a room,
8 // and calls the correct renderer.  Greater/Less than bounds are accepted.
9 function render_room_view(gt_msg, lt_msg) {
10
11         document.getElementById("ctdl-newmsg-button").style.display = "none";           // the view renderer will set this
12
13         // Clear the highlighting out of all the sidebar buttons
14         var items = document.getElementById("ctdl-sidebar").getElementsByTagName("*");
15         for (var i = items.length; i--;) {
16                 if (items[i].id.includes("ctdl-sidebar-button-")) {
17                         items[i].classList.remove("w3-blue");
18                 }
19         }
20
21         switch(current_view) {
22
23                 // The "forum" module displays rooms with the "VIEW_BBS" view as classic style web forums.
24                 case views.VIEW_BBS:
25                         document.getElementById("ctdl-sidebar-button-forums").classList.add("w3-blue");
26                         document.getElementById("ctdl-main").innerHTML = "<div id=\"ctdl-mrp\" class=\"ctdl-msg-reading-pane\"></div>";
27                         forum_readmessages("ctdl-mrp", gt_msg, lt_msg);
28                         break;
29
30                 // The "mail" module displays rooms with the VIEW_MAILBOX view as a webmail program.
31                 case views.VIEW_MAILBOX:
32                         document.getElementById("ctdl-sidebar-button-mail").classList.add("w3-blue");
33                         document.getElementById("ctdl-main").innerHTML = "";
34                         mail_display();
35                         break;
36
37                 default:
38                         document.getElementById("ctdl-main").innerHTML =
39                                 "<center>The view for " + current_room + " is " + current_view + " but there is no renderer.</center>";
40                         break;
41         }
42
43 }
44
45
46 // This gets called when the user clicks the "enter message" or "post message" or "add item" button etc.
47 function entmsg_dispatcher() {
48         switch(current_view) {
49                 case views.VIEW_BBS:
50                         forum_entmsg();
51                         break;
52                 case views.VIEW_MAILBOX:
53                         mail_compose(false, "", "");
54                         break;
55                 default:
56                         break;
57         }
58 }
59