const V = "MAILGO_VERSION"; const MAILTO = "mailto:"; // mailgo style const mailgoCSS = document.createElement("link"); mailgoCSS.rel = "stylesheet"; mailgoCSS.type = "text/css"; mailgoCSS.href = "https://unpkg.com/mailgo@" + V + "/dist/mailgo.min.css"; document.head.appendChild(mailgoCSS); /** * mailgoInit * the function that creates the mailgo element in DOM */ const mailgoInit = () => { // modal let modal = document.createElement("div"); modal.id = "mailgo"; modal.classList.add("mailgo-modal"); modal.style.display = "none"; // background let modalBackground = document.createElement("div"); modalBackground.className = "mailgo-modal-background"; modal.appendChild(modalBackground); // modal content let modalContent = document.createElement("div"); modalContent.className = "mailgo-modal-content"; modal.appendChild(modalContent); // title (email address) let title = document.createElement("strong"); title.id = "mailgo-title"; title.className = "mailgo-title"; modalContent.appendChild(title); // details let details = document.createElement("div"); details.id = "mailgo-details"; details.className = "mailgo-details"; let detailCc = document.createElement("p"); detailCc.id = "mailgo-cc"; let ccSpan = document.createElement("span"); ccSpan.className = "mailgo-weight-500"; let ccContent = document.createTextNode("cc "); ccSpan.appendChild(ccContent); let ccValue = document.createElement("span"); ccValue.id = "mailgo-cc-value"; detailCc.appendChild(ccSpan); detailCc.appendChild(ccValue); details.appendChild(detailCc); let detailBcc = document.createElement("p"); detailBcc.id = "mailgo-bcc"; let bccSpan = document.createElement("span"); bccSpan.className = "mailgo-weight-500"; let bccContent = document.createTextNode("bcc "); bccSpan.appendChild(bccContent); let bccValue = document.createElement("span"); bccValue.id = "mailgo-bcc-value"; detailBcc.appendChild(bccSpan); detailBcc.appendChild(bccValue); details.appendChild(detailBcc); let detailSubject = document.createElement("p"); detailSubject.id = "mailgo-subject"; let subjectSpan = document.createElement("span"); subjectSpan.className = "mailgo-weight-500"; let subjectContent = document.createTextNode("subject"); subjectSpan.appendChild(subjectContent); let subjectValue = document.createElement("span"); subjectValue.id = "mailgo-subject-value"; detailSubject.appendChild(subjectSpan); detailSubject.appendChild(subjectValue); details.appendChild(detailSubject); let detailBody = document.createElement("p"); detailBody.id = "mailgo-body"; let bodySpan = document.createElement("span"); bodySpan.className = "mailgo-weight-500"; let bodyContent = document.createTextNode("body "); bodySpan.appendChild(bodyContent); let bodyValue = document.createElement("span"); bodyValue.id = "mailgo-body-value"; detailBody.appendChild(bodySpan); detailBody.appendChild(bodyValue); details.appendChild(detailBody); modalContent.appendChild(details); // Gmail let gmail = document.createElement("a"); gmail.id = "mailgo-gmail"; gmail.href = "#mailgo-gmail"; gmail.classList.add("mailgo-open"); gmail.classList.add("mailgo-gmail"); let gmailContent = document.createTextNode("open in "); gmail.appendChild(gmailContent); let gmailSpan = document.createElement("span"); gmailSpan.className = "mailgo-weight-500"; let gmailSpanContent = document.createTextNode("Gmail"); gmailSpan.appendChild(gmailSpanContent); gmail.appendChild(gmailSpan); modalContent.appendChild(gmail); // Outlook let outlook = document.createElement("a"); outlook.id = "mailgo-outlook"; outlook.href = "#mailgo-outlook"; outlook.classList.add("mailgo-open"); outlook.classList.add("mailgo-outlook"); let outlookContent = document.createTextNode("open in "); outlook.appendChild(outlookContent); let outlookSpan = document.createElement("span"); outlookSpan.className = "mailgo-weight-500"; let outlookSpanContent = document.createTextNode("Outlook"); outlookSpan.appendChild(outlookSpanContent); outlook.appendChild(outlookSpan); modalContent.appendChild(outlook); // open default let open = document.createElement("a"); open.id = "mailgo-open"; open.href = "#mailgo-open"; open.classList.add("mailgo-open"); open.classList.add("mailgo-default"); let openSpan = document.createElement("span"); openSpan.className = "mailgo-weight-500"; let openSpanContent = document.createTextNode("open"); openSpan.appendChild(openSpanContent); let openContent = document.createTextNode(" default"); open.appendChild(openSpan); open.appendChild(openContent); modalContent.appendChild(open); // copy let copy = document.createElement("a"); copy.id = "mailgo-copy"; copy.href = "#mailgo-copy"; copy.classList.add("mailgo-copy"); copy.classList.add("mailgo-weight-500"); let copyContent = document.createTextNode("copy"); copy.appendChild(copyContent); modalContent.appendChild(copy); // by let by = document.createElement("a"); by.href = "https://mailgo.js.org?ref=" + window.location.hostname; by.className = "mailgo-by"; by.target = "_blank"; by.rel = "noopener noreferrer"; let textBy = document.createTextNode("mailgo.js.org"); by.appendChild(textBy); modalContent.appendChild(by); // add the modal at the end of the body document.body.appendChild(modal); // every click outside the modal will hide the modal modalBackground.addEventListener("click", hideMailgo, false); }; /** * mailgoRender * function to render a single mailgo */ const mailgoRender = mailgo => { let mail = "", url = "", mailtoHref = "", cc = "", bcc = "", subject = "", bodyMail = ""; // if the element href=^"mailto:" if (mailgo.href && mailgo.href.toLowerCase().startsWith(MAILTO)) { mail = decodeURIComponent( mailgo.href .split("?")[0] .split(MAILTO)[1] .trim() ); mailtoHref = mailgo.href; url = new URL(mailtoHref); let urlParams = new URLSearchParams(url.search); // optional parameters for the email cc = urlParams.get("cc"); bcc = urlParams.get("bcc"); subject = urlParams.get("subject"); bodyMail = urlParams.get("body"); } else { // if the element href="#mailgo" or class="mailgo" // mail = data-address + @ + data-domain mail = mailgo.getAttribute("data-address") + "@" + mailgo.getAttribute("data-domain"); mailtoHref = MAILTO + encodeURIComponent(mail); url = new URL(mailtoHref); // cc = data-cc-address + @ + data-cc-domain cc = mailgo.getAttribute("data-cc-address") + "@" + mailgo.getAttribute("data-cc-domain"); // bcc = data-bcc-address + @ + data-bcc-domain bcc = mailgo.getAttribute("data-bcc-address") + "@" + mailgo.getAttribute("data-bcc-domain"); // subject = data-subject subject = mailgo.getAttribute("data-subject"); // body = data-body bodyMail = mailgo.getAttribute("data-body"); } // validate the email address if (!validateEmail(mail)) return; // if cc, bcc is not valid cc, bcc = "" if (!validateEmail(cc)) cc = ""; if (!validateEmail(bcc)) bcc = ""; // information let titleEl = getE("mailgo-title"); let detailsEl = getE("mailgo-details"); let ccEl = getE("mailgo-cc"); let ccValueEl = getE("mailgo-cc-value"); let bccEl = getE("mailgo-bcc"); let bccValueEl = getE("mailgo-bcc-value"); let subjectEl = getE("mailgo-subject"); let subjectValueEl = getE("mailgo-subject-value"); let bodyEl = getE("mailgo-body"); let bodyValueEl = getE("mailgo-body-value"); // actions let gmailButton = getE("mailgo-gmail"); let outlookButton = getE("mailgo-outlook"); let openButton = getE("mailgo-open"); let copyButton = getE("mailgo-copy"); // the title of the modal (email address) titleEl.textContent = mail; // add the details if provided cc ? ((ccEl.style.display = "block"), (ccValueEl.textContent = cc)) : (ccEl.style.display = "none"); bcc ? ((bccEl.style.display = "block"), (bccValueEl.textContent = bcc)) : (bccEl.style.display = "none"); subject ? ((subjectEl.style.display = "block"), (subjectValueEl.textContent = subject)) : (subjectEl.style.display = "none"); bodyMail ? ((bodyEl.style.display = "block"), (bodyValueEl.textContent = bodyMail)) : (bodyEl.style.display = "none"); // add the actions gmailButton.addEventListener( "click", () => { actions.openGmail(mailtoHref); }, false ); outlookButton.addEventListener( "click", () => { actions.openOutlook(mail, url); }, false ); let encEmail = encodeEmail(mail); openButton.addEventListener( "click", () => { actions.openDefault(encEmail); }, false ); copyButton.addEventListener( "click", event => { actions.copy(mail, copyButton); }, false ); // show the mailgo showMailgo(); // listener keyDown mailgo.addEventListener( "keydown", () => { mailgoKeydown(mail, url, mailtoHref, encEmail, copyButton); }, false ); }; // actions const actions = { openGmail: mailtoHref => { window.open( "https://mail.google.com/mail?extsrc=mailto&url=" + encodeURIComponent(mailtoHref), "_blank" ); }, openOutlook: (mail, url) => { window.open( "https://outlook.office.com/owa/?rru=compose&to=" + encodeURIComponent(mail) + url.search.replace(/^[$]/, "&"), "_blank" ); }, openDefault: encEmail => { mailToEncoded(encEmail); }, copy: (mail, copyButton) => { copyToClipboard(mail); copyButton.textContent = "copied"; let timeout = setTimeout(() => { copyButton.textContent = "copy"; }, 999); } }; /** * mailgoCheckRender * function to check if an element is mailgo-enabled or not referencing to the old * document.querySelectorAll( * 'a[href^="mailto:" i]:not(.no-mailgo), a[href="#mailgo"], a.mailgo' * ); */ const mailgoCheckRender = event => { // the target element let e = event.target; // check if the id=mailgo exists in the body if (!document.contains(getE("mailgo"))) return; if ( // first case: it is an element with "mailto:..." in href and no no-mailgo in classList (e.href && e.href.toLowerCase().startsWith(MAILTO) && !e.classList.contains("no-mailgo")) || // second case: the href=#mailgo (e.href && e.getAttribute("href").toLowerCase() === "#mailgo") || // third case: the classList contains mailgo e.classList.contains("mailgo") ) { // stop the normal execution of the element click event.preventDefault(); // render mailgo mailgoRender(e); } }; /** * mailgoKeydown * function to manage the keydown event when the modal is showing */ const mailgoKeydown = (mail, url, mailtoHref, encEmail, copyButton) => { // if mailgo is not showing do nothing if (!mailgoIsShowing()) return; switch (event.keyCode) { case 27: // Escape hideMailgo(); break; case 71: // g -> open GMail actions.openGmail(mailtoHref); break; case 79: // o -> open Outlook actions.openOutlook(mail, url); break; case 32: case 13: // spacebar or enter -> open default actions.openDefault(encEmail); break; case 67: // c -> copy actions.copy(mail, copyButton); break; default: return; } return; }; // DOMContentLoaded -> mailgoInit (creates the modal) document.addEventListener("DOMContentLoaded", mailgoInit, false); // event listener on body, if the element is mailgo-compatible the mailgo modal will be rendered document.addEventListener("click", mailgoCheckRender, true); // validate the email with regex const validateEmail = email => { let re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; return re.test(email); }; // copy of a string const copyToClipboard = str => { let el = document.createElement("textarea"); el.value = str; el.setAttribute("readonly", ""); el.style.position = "absolute"; el.style.left = "-9999px"; document.body.appendChild(el); let selected = document.getSelection().rangeCount > 0 ? document.getSelection().getRangeAt(0) : false; el.select(); document.execCommand("copy"); document.body.removeChild(el); if (selected) { document.getSelection().removeAllRanges(); document.getSelection().addRange(selected); } }; // show the modal const showMailgo = () => (getE("mailgo").style.display = "flex"); // hide the modal const hideMailgo = () => (getE("mailgo").style.display = "none"); // is the modal hidden? const mailgoIsShowing = () => getE("mailgo").style.display === "flex"; // decrypt email const mailToEncoded = encoded => (window.location.href = MAILTO + atob(encoded)); // encode email const encodeEmail = email => btoa(email); // getE shorthand const getE = id => document.getElementById(id);