]> code.citadel.org Git - citadel.git/blobdiff - webcit-ng/static/js/view_mail.js
Close attachments window on Cancel
[citadel.git] / webcit-ng / static / js / view_mail.js
index 5558b6dbf7067e35124f8e8ef591d246dd45aa6f..8fac46efaaa8c72ae54ddfdae88925cbf9f98dce 100644 (file)
@@ -13,6 +13,7 @@ var newmail_notify = {
         NO  : 0,                                                               // do not perform new mail notifications
         YES : 1                                                                        // yes, perform new mail notifications
 };
+var num_attachments = 0;                                                       // number of attachments in current composed msg
 
 
 // This is the async back end for mail_delete_selected()
@@ -49,8 +50,8 @@ mail_delete_func = async(table, row) => {
 
 // Delete the selected messages (can be activated by mouse click or keypress)
 function mail_delete_selected() {
-       var table = document.getElementById("ctdl-onscreen-mailbox");
-       var i, row;
+       let table = document.getElementById("ctdl-onscreen-mailbox");
+       let i, row;
        for (i=0; row=table.rows[i]; ++i) {
                if (row.classList.contains("ctdl-mail-selected")) {
                        mail_delete_func(table, row);
@@ -82,22 +83,31 @@ function mail_keypress(event) {
 
 // Handler function for dragging email messages to other folders
 function mail_dragstart(event) {
-       var i;
-       var count = 0;
-       var table = document.getElementById("ctdl-onscreen-mailbox");
+       let i;
+       let count = 0;
+       let table = document.getElementById("ctdl-onscreen-mailbox");
+       let messages_being_dragged = [] ;
 
-       // Figure out how many messages are being dragged
-       for (i=1; row=table.rows[i]; ++i) {
-               if (row.classList.contains("ctdl-mail-selected")) {
-                       count = count + 1;
+       if (event.target.classList.contains("ctdl-mail-selected")) {
+               // The row being dragged IS selected.  See if any OTHER rows are selected, and they will come along for the ride.
+               for (i=1; row=table.rows[i]; ++i) {
+                       if (row.classList.contains("ctdl-mail-selected")) {
+                               count = count + 1;
+                               messages_being_dragged.push(row.id);    // Tell the clipboard what's being moved.
+                       }
                }
        }
+       else {
+               // The row being dragged is NOT selected.  It will be dragged on its own, ignoring the selected rows.
+               count = 1;
+               messages_being_dragged.push(event.target.id);           // Tell the clipboard what's being moved.
+       }
 
        // Set the custom drag image to an envelope + number of messages being dragged
        d = document.getElementById("ctdl_draggo");
-       d.innerHTML = "<font size='+3'><i class='fa fa-envelope' style='color: red'></i> " + count + "</font>"
+       d.innerHTML = "<font size='+2'><i class='fa fa-envelope' style='color: red'></i> " + count + "</font>"
        event.dataTransfer.setDragImage(d, 0, 0);
-       event.dataTransfer.setData("text/html", "blah blah blah");
+       event.dataTransfer.setData("text", messages_being_dragged);
 }
 
 
@@ -167,7 +177,7 @@ function mail_render_one(msgnum, msg, target_div, include_controls) {
                        // Display the To: recipients, if any are present
                        if (msg.rcpt) {
                                outmsg += "<br><span>" + _("To:") + " ";
-                               for (var r=0; r<msg.rcpt.length; ++r) {
+                               for (let r=0; r<msg.rcpt.length; ++r) {
                                        if (r != 0) {
                                                outmsg += ", ";
                                        }
@@ -179,7 +189,7 @@ function mail_render_one(msgnum, msg, target_div, include_controls) {
                        // Display the Cc: recipients, if any are present
                        if (msg.cccc) {
                                outmsg += "<br><span>" + _("Cc:") + " ";
-                               for (var r=0; r<msg.cccc.length; ++r) {
+                               for (let r=0; r<msg.cccc.length; ++r) {
                                        if (r != 0) {
                                                outmsg += ", ";
                                        }
@@ -198,6 +208,29 @@ function mail_render_one(msgnum, msg, target_div, include_controls) {
                          "</div>";                                             // end header
                }
 
+               // Display attachments, if any are present
+               if (msg.part) {
+                       let display_attachments = 0;
+                       for (let r=0; r<msg.part.length; ++r) {
+                               if (msg.part[r].disp == "attachment") {
+                                       if (display_attachments == 0) {
+                                               outmsg += "<ul>";
+                                       }
+                                       display_attachments += 1;
+                                       outmsg += "<li>"
+                                               + "<a href=\"/ctdl/r/" + escapeHTMLURI(current_room) + "/" + msgnum + "/" + msg.part[r].partnum + "/" + escapeHTMLURI(msg.part[r].filename) + "\" target=\"_blank\">"
+                                               + "<i class=\"fa fa-paperclip\"></i>&nbsp;" + msg.part[r].partnum + ": " + msg.part[r].filename
+                                               + " (" + msg.part[r].len + " " + _("bytes") + ")"
+                                               + "</a>"
+                                               + "</li>";
+                               }
+                       }
+                       if (display_attachments > 0) {
+                               outmsg += "</ul><br>";
+                       }
+               }
+
+
                outmsg +=
                  "<div class=\"ctdl-msg-body\" id=\"" + div + "_body\">"       // begin body
                + msg.text
@@ -228,20 +261,6 @@ function mail_display_message(msgnum, target_div, include_controls) {
 }
 
 
-// after a message is selected or deselected, we call this to set or clear the drag handler.
-function enable_or_disable_draggable(row) {
-       if (row.classList.contains("ctdl-mail-selected")) {
-               row.draggable = "true"
-               row.addEventListener("dragstart", mail_dragstart);
-       }
-       else {
-               row.draggable = "false"
-               row.removeEventListener("dragstart", mail_dragstart);
-       }
-}
-
-
-
 // A message has been selected...
 function click_message(event, msgnum) {
        var table = document.getElementById("ctdl-onscreen-mailbox");
@@ -250,7 +269,6 @@ function click_message(event, msgnum) {
        // ctrl + click = toggle an individual message without changing existing selection
        if (event.ctrlKey) {
                document.getElementById("ctdl-msgsum-" + msgnum).classList.toggle("ctdl-mail-selected");
-               enable_or_disable_draggable(document.getElementById("ctdl-msgsum-" + msgnum));
        }
 
        // shift + click = select a range of messages (start with row 1 because row 0 is the header)
@@ -266,7 +284,6 @@ function click_message(event, msgnum) {
                        else {
                                row.classList.remove("ctdl-mail-selected");
                        }
-                       enable_or_disable_draggable(row);
                }
        }
 
@@ -279,7 +296,6 @@ function click_message(event, msgnum) {
                        else {
                                row.classList.remove("ctdl-mail-selected");
                        }
-                       enable_or_disable_draggable(row);
                }
        }
 
@@ -293,11 +309,13 @@ function click_message(event, msgnum) {
 
 // render one row in the mailbox table (this could be called from one of several places)
 function mail_render_row(msg, is_selected) {
-       row     = "<tr "
+       let row = "<tr "
                + "id=\"ctdl-msgsum-" + msg["msgnum"] + "\" "
                + (is_selected ? "class=\"ctdl-mail-selected\" " : "")
                + "onClick=\"click_message(event," + msg["msgnum"] + ");\""
-               + "onselectstart=\"return false;\""
+               + "onselectstart=\"return false;\" "
+               + "draggable=\"true\" "
+               + "ondragstart=\"mail_dragstart(event)\" "
                + ">"
                + "<td class=\"ctdl-mail-subject\">" + msg["subject"] + "</td>"
                + "<td class=\"ctdl-mail-sender\">" + msg["author"] + "</td>"
@@ -496,9 +514,9 @@ function mail_compose(is_quoted, references, quoted_msgnum, m_to, m_cc, m_subjec
                + "<div class=\"ctdl-compose-toolbar\">"
                + "<span class=\"ctdl-msg-button\" onclick=\"mail_send_message()\"><i class=\"fa fa-paper-plane\" style=\"color:green\"></i> " + _("Send message") + "</span>"
                + "<span class=\"ctdl-msg-button\">" + _("Save to Drafts") + "</span>"
-               + "<span class=\"ctdl-msg-button\">" + _("Attachments:") + " 0" + "</span>"
+               + "<span class=\"ctdl-msg-button\" onClick=\"show_or_hide_attachments()\"><i class=\"fa fa-paperclip\" style=\"color:grey\"></i> " + _("Attachments:") + " <span id=\"ctdl_num_attachments\">" + num_attachments + "</span></span>"
                + "<span class=\"ctdl-msg-button\">" + _("Contacts") + "</span>"
-               + "<span class=\"ctdl-msg-button\" onClick=\"gotoroom(current_room)\"><i class=\"fa fa-trash\" style=\"color:red\"></i> " + _("Cancel") + "</span>"
+               + "<span class=\"ctdl-msg-button\" onClick=\"document.getElementById('ctdl_big_modal').style.display='none';gotoroom(current_room)\"><i class=\"fa fa-trash\" style=\"color:red\"></i> " + _("Cancel") + "</span>"
                + "</div>"
        ;
 
@@ -508,6 +526,37 @@ function mail_compose(is_quoted, references, quoted_msgnum, m_to, m_cc, m_subjec
                document.getElementById("ctdl-compose-cc-label").style.display = "block";
                document.getElementById("ctdl-compose-cc-field").style.display = "block";
        }
+
+       // Now the compose screen is set up properly; set up the attachments modal in case the user wants it
+
+       document.getElementById("ctdl_big_modal").innerHTML = ""
+               + "<div id=\"ctdl_attachments_outer\">"
+               + "<div id=\"ctdl_attachments_title\" class=\"ctdl-compose-attachments-title\">"
+               + "<div><h1><i class=\"fa fa-paperclip\" style=\"color:grey\"></i> " + _("Attachments:") + "</h1></div>"
+               + "<div><h1><i class=\"fas fa-window-close\" style=\"color:red\" onClick=\"show_or_hide_attachments()\"></i></h1></div>"
+               + "</div>"
+               + "<br>"
+               + "this is the attachments modal.  there are many like it, but this one is mine."
+               + "</div>"
+       ;
+
+}
+
+
+// Show or hide the attachments window in the composer
+function show_or_hide_attachments() {
+
+       if (document.getElementById("ctdl_big_modal").style.display == "block") {
+               document.getElementById("ctdl_big_modal").style.display = "none";
+       }
+       else {
+               document.getElementById("ctdl_big_modal").style.display = "block";
+               document.getElementById("ctdl_attachments_outer").style.width =
+                       Math.trunc((document.getElementById("ctdl-editor-body").getBoundingClientRect().width) * 0.90).toString() + "px";
+               document.getElementById("ctdl_attachments_outer").style.height =
+                       Math.trunc((document.getElementById("ctdl-editor-body").getBoundingClientRect().height) * 0.90).toString() + "px";
+       }
+
 }