From 1a210f845dca0b17309a57486f15385905dc7b18 Mon Sep 17 00:00:00 2001
From: Sebastian <sebastian.mihalache@thinslices.com>
Date: Fri, 20 Apr 2018 11:46:44 +0300
Subject: [PATCH] feat(component-mail-service): add expected report date to
 reviewer email

---
 packages/component-invite/src/helpers/Invitation.js  | 10 ++++++++++
 .../src/routes/collectionsInvitations/post.js        |  2 ++
 packages/component-mail-service/src/Mail.js          |  8 +++++++-
 .../src/templates/invite-reviewer.html               | 12 ++++++------
 .../src/templates/invite-reviewer.txt                |  2 ++
 5 files changed, 27 insertions(+), 7 deletions(-)

diff --git a/packages/component-invite/src/helpers/Invitation.js b/packages/component-invite/src/helpers/Invitation.js
index e871e3560..855b265cf 100644
--- a/packages/component-invite/src/helpers/Invitation.js
+++ b/packages/component-invite/src/helpers/Invitation.js
@@ -37,6 +37,7 @@ const setupReviewerInvitation = async (
   user,
   mailService,
   invitationId,
+  invitationTimestamp,
 ) => {
   const baseUrl = `${req.protocol}://${req.get('host')}`
   const fragment = await models.Fragment.find(collection.fragments[0])
@@ -52,6 +53,14 @@ const setupReviewerInvitation = async (
   let { abstract, title } = fragment.metadata
   title = title.replace(/<(.|\n)*?>/g, '')
   abstract = abstract ? abstract.replace(/<(.|\n)*?>/g, '') : ''
+  const date = new Date(invitationTimestamp)
+  let expectedDate = date.getDate() + 14
+  date.setDate(expectedDate)
+  expectedDate = date.toLocaleDateString('en-US', {
+    day: 'numeric',
+    month: 'long',
+    year: 'numeric',
+  })
   await mailService.setupReviewerInvitationEmail(
     user,
     baseUrl,
@@ -62,6 +71,7 @@ const setupReviewerInvitation = async (
     authors,
     fragment.id,
     invitationId,
+    expectedDate,
   )
 }
 
diff --git a/packages/component-invite/src/routes/collectionsInvitations/post.js b/packages/component-invite/src/routes/collectionsInvitations/post.js
index 3ee387d35..abffa83d3 100644
--- a/packages/component-invite/src/routes/collectionsInvitations/post.js
+++ b/packages/component-invite/src/routes/collectionsInvitations/post.js
@@ -76,6 +76,7 @@ module.exports = models => async (req, res) => {
           user,
           mailService,
           invitation.id,
+          invitation.timestamp,
         )
       } else {
         return res.status(500).json({
@@ -122,6 +123,7 @@ module.exports = models => async (req, res) => {
         newUser,
         mailService,
         invitation.id,
+        invitation.timestamp,
       )
       return res.status(200).json(newUser)
     }
diff --git a/packages/component-mail-service/src/Mail.js b/packages/component-mail-service/src/Mail.js
index d0cd73a98..b29e60fc3 100644
--- a/packages/component-mail-service/src/Mail.js
+++ b/packages/component-mail-service/src/Mail.js
@@ -147,6 +147,7 @@ module.exports = {
     authors,
     fragmentId,
     invitationId,
+    expectedDate,
   ) => {
     const subject = `${collection.customId}: Review Requested`
     let agreeUrl = `${baseUrl}/projects/${
@@ -155,7 +156,11 @@ module.exports = {
       invitationId,
       agree: true,
     })}`
-    const declineUrl = ''
+    const declineUrl = `${baseUrl}${resetPasswordPath}?${querystring.encode({
+      collectionId: collection.id,
+      agree: false,
+      invitationId,
+    })}`
     if (!invitedUser.isConfirmed) {
       agreeUrl = `${baseUrl}${resetPasswordPath}?${querystring.encode({
         email: invitedUser.email,
@@ -180,6 +185,7 @@ module.exports = {
         submittingAuthor.lastName
       }`,
       authors,
+      expectedDate,
     }
 
     const { htmlBody, textBody } = getEmailBody('invite-reviewer', replacements)
diff --git a/packages/component-mail-service/src/templates/invite-reviewer.html b/packages/component-mail-service/src/templates/invite-reviewer.html
index b038768e0..d286cb63c 100644
--- a/packages/component-mail-service/src/templates/invite-reviewer.html
+++ b/packages/component-mail-service/src/templates/invite-reviewer.html
@@ -202,8 +202,7 @@
                                             <tbody>
                                               <tr>
                                                 <td align="center" class="outer-td" style="padding:0px 0px 0px 0px">
-                                                  <table border="0" cellPadding="0" cellSpacing="0" class="button-css__deep-table___2OZyb wrapper-mobile"
-                                                    style="text-align:center">
+                                                  <table border="0" cellPadding="0" cellSpacing="0" class="button-css__deep-table___2OZyb wrapper-mobile" style="text-align:center">
                                                     <tbody>
                                                       <tr>
                                                         <td align="center" bgcolor="#0d78f2" class="inner-td" style="border-radius:6px;font-size:16px;text-align:center;background-color:inherit">
@@ -238,8 +237,7 @@
                                             <tbody>
                                               <tr>
                                                 <td align="center" class="outer-td" style="padding:0px 0px 0px 0px">
-                                                  <table border="0" cellPadding="0" cellSpacing="0" class="button-css__deep-table___2OZyb wrapper-mobile"
-                                                    style="text-align:center">
+                                                  <table border="0" cellPadding="0" cellSpacing="0" class="button-css__deep-table___2OZyb wrapper-mobile" style="text-align:center">
                                                     <tbody>
                                                       <tr>
                                                         <td align="center" bgcolor="#e4dfdf" class="inner-td" style="border-radius:6px;font-size:16px;text-align:center;background-color:inherit">
@@ -309,7 +307,9 @@
                                     </p>
 
                                     <p>&nbsp;</p>
-
+                                    <p>If you are able to review the manuscript, I would be grateful if you could submit your
+                                      report by {{ expectedDate }}.</p>
+                                    <p>&nbsp;</p>
                                     <p>With many thanks and best regards,
                                       <br /> {{editorName}}
                                       <br /> {{editorEmail}}
@@ -323,7 +323,7 @@
                               <div data-role="module-unsubscribe" class="module unsubscribe-css__unsubscribe___2CDlR" role="module" data-type="unsubscribe"
                                 style="color:#444444;font-size:12px;line-height:20px;padding:16px 16px 16px 16px;text-align:center">
                                 <div class="Unsubscribe--addressLine">
-                                  <p class="Unsubscribe--senderName" style="font-family:Arial,Helvetica, sans-serif;font-size:12px;line-height:20px">[Sender_Name]</p>
+                                  <p class="Unsubscribe--senderName" style="font-family:Arial,Helvetica, sans-serif;font-size:12px;line-height:20px">Hindawi Publishing Corporation</p>
                                   <p style="font-family:Arial,Helvetica, sans-serif;font-size:12px;line-height:20px">
                                     <span class="Unsubscribe--senderAddress">315 Madison Ave, Third Floor, Suite 3070</span>,
                                     <span class="Unsubscribe--senderCity">NEW YORK</span>,
diff --git a/packages/component-mail-service/src/templates/invite-reviewer.txt b/packages/component-mail-service/src/templates/invite-reviewer.txt
index 506e313f9..b12453439 100644
--- a/packages/component-mail-service/src/templates/invite-reviewer.txt
+++ b/packages/component-mail-service/src/templates/invite-reviewer.txt
@@ -26,6 +26,8 @@ opportunity. For more information about our conflicts of interest policies, plea
 see:
 https://www.hindawi.com/ethics/#coi
 
+If you are able to review the manuscript, I would be grateful if you could submit your report by {{ expectedDate }}.
+
 With many thanks and best regards,
 {{editorName}}
 {{editorEmail}}
\ No newline at end of file
-- 
GitLab