]> code.citadel.org Git - citadel.git/blob - webcit-ng/static/js/view_mail.js
Separate out the display name and email addresses in the JSON output of a message...
[citadel.git] / webcit-ng / static / js / view_mail.js
1 // This module handles the view for "mailbox" rooms.
2 //
3 // Copyright (c) 2016-2022 by the citadel.org team
4 //
5 // This program is open source software.  Use, duplication, or
6 // disclosure are subject to the GNU General Public License v3.
7
8
9 var selected_message = 0;                                                       // Remember the last message that was selected
10 var RefreshMailboxInterval;                                                     // We store our refresh timer here
11
12
13 // Render a message into the mailbox view
14 function mail_render_one(msg, target_div) {
15         let div = "FIXME";
16         console.log(msg);
17         try {
18                 outmsg =
19                   "<div class=\"ctdl-mmsg-wrapper\">"                           // begin message wrapper
20                 + "<div class=\"ctdl-avatar\" onClick=\"javascript:user_profile('" + msg.from + "');\">"
21                 + "<img src=\"/ctdl/u/" + msg.from + "/userpic\" width=\"32\" "
22                 + "onerror=\"this.parentNode.innerHTML='&lt;i class=&quot;fa fa-user-circle fa-2x&quot;&gt;&lt;/i&gt; '\">"
23                 + "</div>"                                                      // end avatar
24                 + "<div class=\"ctdl-mmsg-content\">"                           // begin content
25                 + "<div class=\"ctdl-msg-header\">"                             // begin header
26                 + "<span class=\"ctdl-msg-header-info\">"                       // begin header info on left side
27                 + "<span class=\"ctdl-username\" onClick=\"javascript:user_profile('" + msg.from + "');\">"
28                 + msg.from
29                 + "</a></span>"                                                 // end username
30                 + "<span class=\"ctdl-msgdate\">"
31                 + string_timestamp(msg.time,0)
32                 + "</span>"                                                     // end msgdate
33                 + "</span>"                                                     // end header info on left side
34                 + "<span class=\"ctdl-msg-header-buttons\">"                    // begin buttons on right side
35         
36                 + "<span class=\"ctdl-msg-button\">"                            // Reply (mail is always Quoted)
37                 + "<a href=\"javascript:mail_compose(true,'"+msg.wefw+"','"+msg.msgn+"');\">"
38                 + "<i class=\"fa fa-reply\"></i> " 
39                 + _("Reply")
40                 + "</a></span>"
41         
42                 if (can_delete_messages) {
43                         outmsg +=
44                         "<span class=\"ctdl-msg-button\">"
45                         + "<a href=\"javascript:forum_delete_message('"+div+"','"+msg.msgnum+"');\">"
46                         + "<i class=\"fa fa-trash\"></i> " 
47                         + _("Delete")
48                         + "</a></span>";
49                 }
50         
51                 outmsg +=
52                   "</span>";                                                    // end buttons on right side
53                 if (msg.subj) {
54                         outmsg +=
55                         "<br><span class=\"ctdl-msgsubject\">" + msg.subj + "</span>";
56                 }
57                 outmsg +=
58                   "</div>"                                                      // end header
59                 + "<div class=\"ctdl-msg-body\" id=\"" + div + "_body\">"       // begin body
60                 + msg.text
61                 + "</div>"                                                      // end body
62                 + "</div>"                                                      // end content
63                 + "</div>"                                                      // end wrapper
64                 ;
65         }
66         catch(err) {
67                 outmsg = "<div class=\"ctdl-mmsg-wrapper\">" + err.message + "</div>";
68         }
69
70         target_div.innerHTML = outmsg;
71 }
72
73
74 // display an individual message
75 function mail_display_message(msgnum, target_div) {
76         url = "/ctdl/r/" + escapeHTMLURI(current_room) + "/" + msgnum + "/json";
77         mail_fetch_msg = async() => {
78                 response = await fetch(url);
79                 msg = await(response.json());
80                 if (response.ok) {
81                         mail_render_one(msg, target_div);
82                 }
83         }
84         mail_fetch_msg();
85 }
86
87
88 // A message has been selected...
89 function select_message(msgnum) {
90         // unhighlight any previously selected message
91         try {
92                 document.getElementById("ctdl-msgsum-" + selected_message).classList.remove("w3-blue");
93         }
94         catch {
95         }
96
97         // highlight the newly selected message
98         document.getElementById("ctdl-msgsum-" + msgnum).classList.add("w3-blue");
99         //document.getElementById("ctdl-msgsum-" + msgnum).scrollIntoView();
100
101         // display the message if it isn't already displayed
102         if (selected_message != msgnum) {
103                 selected_message = msgnum;
104                 mail_display_message(msgnum, document.getElementById("ctdl-mailbox-reading-pane"));
105         }
106 }
107
108
109 // render one row in the mailbox table (this could be called from one of several places)
110 function mail_render_row(msg) {
111         row     = "<tr "
112                 + "id=\"ctdl-msgsum-" + msg["msgnum"] + "\" "
113                 + "onClick=\"select_message(" + msg["msgnum"] + ");\" "
114                 //+ "onmouseenter=\"console.log('mouse in');\" "
115                 //+ "onmouseleave=\"console.log('mouse out');\""
116                 + ">"
117                 + "<td class=\"ctdl-mail-subject\">" + msg["subject"] + "</td>"
118                 + "<td class=\"ctdl-mail-sender\">" + msg["author"] + "</td>"
119                 + "<td class=\"ctdl-mail-date\">" + string_timestamp(msg["time"],1) + "</td>"
120                 + "<td class=\"ctdl-mail-msgnum\">" + msg["msgnum"] + "</td>"
121                 + "</tr>";
122         return(row);
123 }
124
125
126 // Set up the mailbox view
127 function mail_display() {
128
129         // Put the "enter new message" button into the navbar
130         document.getElementById("ctdl-newmsg-button").innerHTML = "<i class=\"fa fa-edit\"></i>" + _("Write mail");
131         document.getElementById("ctdl-newmsg-button").style.display = "block";
132
133         document.getElementById("ctdl-main").innerHTML
134                 = "<div id=\"ctdl-mailbox-grid-container\" class=\"ctdl-mailbox-grid-container\">"
135                 + "<div id=\"ctdl-mailbox-pane\" class=\"ctdl-mailbox-pane\"></div>"
136                 + "<div id=\"ctdl-mailbox-reading-pane\" class=\"ctdl-mailbox-reading-pane\"></div>"
137                 + "</div>"
138         ;
139
140         render_mailbox_display();
141         try {                                                   // if this was already set up, clear it so there aren't multiple
142                 clearInterval(RefreshMailboxInterval);
143         }
144         catch {
145         }
146         RefreshMailboxInterval = setInterval(refresh_mail_display, 10000);
147 }
148
149
150 // Refresh the mailbox, either for the first time or whenever needed
151 function refresh_mail_display() {
152
153         // If the "ctdl-mailbox-pane" no longer exists, the user has navigated to a different part of the site,
154         // so cancel the refresh.
155         try {
156                 document.getElementById("ctdl-mailbox-pane").innerHTML;
157         }
158         catch {
159                 console.log("ending refresh_mail_display()");
160                 clearInterval(RefreshMailboxInterval);
161                 return;
162         }
163
164         // Ask the server if the room has been written to since our last look at it.
165         url = "/ctdl/r/" + escapeHTMLURI(current_room) + "/stat";
166         fetch_stat = async() => {
167                 response = await fetch(url);
168                 stat = await(response.json());
169                 if (stat.room_mtime > room_mtime) {
170                         room_mtime = stat.room_mtime;
171                         render_mailbox_display();
172                 }
173         }
174         fetch_stat();
175 }
176
177
178 // This is where the rendering of the message list in the mailbox view is performed.
179 function render_mailbox_display() {
180
181         url = "/ctdl/r/" + escapeHTMLURI(current_room) + "/mailbox";
182         fetch_mailbox = async() => {
183                 response = await fetch(url);
184                 msgs = await(response.json());
185                 if (response.ok) {
186
187                         box =   "<table class=\"ctdl-mailbox-table\" width=100%><tr>"
188                                 + "<th>" + _("Subject") + "</th>"
189                                 + "<th>" + _("Sender") + "</th>"
190                                 + "<th>" + _("Date") + "</th>"
191                                 + "<th>#</th>"
192                                 + "</tr>";
193
194                         for (var i=0; i<msgs.length; ++i) {
195                                 box += mail_render_row(msgs[i]);
196                         }
197
198                         box +=  "</table>";
199                         document.getElementById("ctdl-mailbox-pane").innerHTML = box;
200
201                         if (selected_message > 0) {                     // if we had a message selected, keep it selected
202                                 select_message(selected_message);
203                         }
204                 }
205         }
206         fetch_mailbox();
207 }
208
209
210 // Compose a new mail message (called by the Reply button here, or by the dispatcher in views.js)
211 function mail_compose(is_quoted, references, msgid) {
212
213         document.getElementById("ctdl-main").innerHTML
214                 = "<div id=\"ctdl-compose-mail\" class=\"ctdl-compose-mail\">"
215
216                 + "<table border=\"1\" width=\"100%\">"
217                 + "<tr><td>is_quoted</td><td>" + is_quoted + "</td></tr>"
218                 + "<tr><td>references</td><td>" + references + "</td></tr>"
219                 + "<tr><td>msgid</td><td>" + msgid + "</td></tr>"
220                 + "<tr><td>from</td><td>" + current_user + "</td></tr>"
221                 + "<tr><td>to</td><td></td></tr>"
222                 + "<tr><td>subject</td><td></td></tr></table>"
223                 + "<div class=\"ctdl-msg-body\" id=\"ctdl-editor-body\" style=\"padding:5px;\" contenteditable=\"true\">"
224                 + "</div>"
225         ;
226
227 }