From ca47a50d32510ab33032512c0a33a4712f4811c5 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 29 Nov 2023 11:32:02 -1000 Subject: [PATCH] Fixing the parameters sent to the mail composer. Reply/ReplyAll/Forward need some things that are not strings and the source arrays seem to still be in scope, so we go with that. Need to tune this up some more. Some things are still missing, such as the references and reply msgnum. --- webcit-ng/static/js/view_mail.js | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/webcit-ng/static/js/view_mail.js b/webcit-ng/static/js/view_mail.js index 3118a6b7a..d5673193a 100644 --- a/webcit-ng/static/js/view_mail.js +++ b/webcit-ng/static/js/view_mail.js @@ -137,6 +137,9 @@ function mail_render_one(msgnum, msg, target_div, include_controls) { ; if (include_controls) { // omit controls if this is a pull quote + + let subject = msg.subj ? escapeJS(msg.subj) : "" ; + outmsg += render_userpic(msg.from) // user avatar + "
" // begin content @@ -156,7 +159,7 @@ function mail_render_one(msgnum, msg, target_div, include_controls) { + "" + "" // Reply-All (mail is always Quoted) - + "" + + `` + " " + _("ReplyAll") + "" @@ -436,6 +439,14 @@ function render_mailbox_display(notify) { // Compose a new mail message (called by the Reply button here, or by the dispatcher in views.js) +// +// is_quoted true or false depending on whether the user selected "reply quoted" (is this appropriate for mail?) +// references list of references, be sure to use this in a reply +// quoted_msgnum if a reply, the msgid of the most recent message in the chain, the one to which we are replying +// m_to an ARRAY of zero or more recipients to pre-insert into the To: field +// m_cc an ARRAY of zero or more recipients to pre-insert into the Cc: field +// m_subject a string to pre-insert into the Subject: field +// function mail_compose(is_quoted, references, quoted_msgnum, m_to, m_cc, m_subject) { let is_reply = 0; @@ -477,10 +488,6 @@ function mail_compose(is_quoted, references, quoted_msgnum, m_to, m_cc, m_subjec // Make the "Write mail" button disappear. We're already there! document.getElementById("ctdl-newmsg-button").style.display = "none"; - // is_quoted true or false depending on whether the user selected "reply quoted" (is this appropriate for mail?) - // references list of references, be sure to use this in a reply - // msgid if a reply, the msgid of the most recent message in the chain, the one to which we are replying - // Now display the screen. (Yes, I combined regular strings + template literals. I just learned template literals. Converting to all template literals would be fine.) compose_screen = // Hidden values that we are storing right here in the document tree for later -- 2.30.2