test with gulp and babel

This commit is contained in:
Matteo Manzinello 2019-05-15 09:31:45 +02:00
parent 62170ecf4c
commit f14de7320f
4 changed files with 223 additions and 156 deletions

365
dist/mailgo.js vendored
View File

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

2
dist/mailgo.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -12,22 +12,12 @@ let version = require("./package.json").version;
function js() { function js() {
return src("src/*.js") return src("src/*.js")
.pipe(replace("MAILGO_VERSION", version.toString())) .pipe(replace("MAILGO_VERSION", version.toString()))
.pipe(
babel({
presets: ["@babel/env"]
})
)
.pipe(dest("dist")); .pipe(dest("dist"));
} }
function jsmin() { function jsmin() {
return src("src/*.js") return src("src/*.js")
.pipe(replace("MAILGO_VERSION", version)) .pipe(replace("MAILGO_VERSION", version))
.pipe(
babel({
presets: ["@babel/env"]
})
)
.pipe(terser()) .pipe(terser())
.pipe( .pipe(
rename({ rename({

View File

@ -33,5 +33,5 @@
"dependencies": { "dependencies": {
"@babel/polyfill": "^7.4.4" "@babel/polyfill": "^7.4.4"
}, },
"browserslist": [] "browserslist": "> 0.25%, not dead"
} }