mailymaily/src/mailgo.ts

843 lines
22 KiB
TypeScript
Raw Normal View History

2020-04-24 19:51:34 +00:00
// links
const MAILTO: string = "mailto:";
const TEL: string = "tel:";
const CALLTO: string = "callto:";
// mailgo types
const MAIL_TYPE: string = "mail";
const TEL_TYPE: string = "tel";
// default href for links
const DEFAULT_BTN_HREF: string = "javascript:void(0);";
// html tags
const span: string = "span";
// mailgo variables
let url: URL,
mail: string = "",
encEmail: string = "",
cc: string = "",
bcc: string = "",
subject: string = "",
bodyMail: string = "";
// mailgo tel variables
let tel: string = "",
msg: string = "",
telegramUsername: string = "",
skypeUsername: string = "";
// the DOM elements
let title: HTMLElement,
titleTel: HTMLElement,
detailCc: HTMLElement,
detailBcc: HTMLElement,
detailSubject: HTMLElement,
detailBody: HTMLElement,
ccValue: HTMLElement,
bccValue: HTMLElement,
subjectValue: HTMLElement,
bodyValue: HTMLElement;
// mailgo buttons (actions)
let gmail: HTMLLinkElement,
outlook: HTMLLinkElement,
open: HTMLLinkElement,
telegram: HTMLLinkElement,
wa: HTMLLinkElement,
skype: HTMLLinkElement,
call: HTMLLinkElement,
copyMail: HTMLLinkElement,
copyTel: HTMLLinkElement;
/**
* mailgoInit
* the function that creates the mailgo elements in DOM
*/
const mailgoInit = (): void => {
// mailgo mail
{
// modal
let modal = createElement();
modal.style.display = "none";
modal.id = "mailgo";
modal.classList.add("m-modal");
// background
let modalBackground = createElement();
modalBackground.className = "m-modal-back";
modal.appendChild(modalBackground);
// modal content
let modalContent = createElement();
modalContent.className = "m-modal-content";
modal.appendChild(modalContent);
// title (email address)
title = createElement("strong");
title.id = "m-title";
title.className = "m-title";
modalContent.appendChild(title);
// details
let details = createElement();
details.id = "m-details";
details.className = "m-details";
detailCc = createElement("p");
detailCc.id = "m-cc";
let ccSpan = createElement(span);
ccSpan.className = "w-500";
ccSpan.appendChild(createTextNode("cc "));
ccValue = createElement(span);
ccValue.id = "m-cc-value";
detailCc.appendChild(ccSpan);
detailCc.appendChild(ccValue);
details.appendChild(detailCc);
detailBcc = createElement("p");
detailBcc.id = "m-bcc";
let bccSpan = createElement(span);
bccSpan.className = "w-500";
bccSpan.appendChild(createTextNode("bcc "));
bccValue = createElement(span);
bccValue.id = "m-bcc-value";
detailBcc.appendChild(bccSpan);
detailBcc.appendChild(bccValue);
details.appendChild(detailBcc);
detailSubject = createElement("p");
detailSubject.id = "m-subject";
let subjectSpan = createElement(span);
subjectSpan.className = "w-500";
subjectSpan.appendChild(createTextNode("subject "));
subjectValue = createElement(span);
subjectValue.id = "m-subject-value";
detailSubject.appendChild(subjectSpan);
detailSubject.appendChild(subjectValue);
details.appendChild(detailSubject);
detailBody = createElement("p");
detailBody.id = "m-body";
let bodySpan = createElement(span);
bodySpan.className = "w-500";
bodySpan.appendChild(createTextNode("body "));
bodyValue = createElement(span);
bodyValue.id = "m-body-value";
detailBody.appendChild(bodySpan);
detailBody.appendChild(bodyValue);
details.appendChild(detailBody);
modalContent.appendChild(details);
// Gmail
gmail = <HTMLLinkElement>createElement("a");
gmail.id = "m-gmail";
gmail.href = DEFAULT_BTN_HREF;
gmail.classList.add("m-open");
gmail.classList.add("m-gmail");
gmail.appendChild(createTextNode("open in "));
let gmailSpan = createElement(span);
gmailSpan.className = "w-500";
gmailSpan.appendChild(createTextNode("Gmail"));
gmail.appendChild(gmailSpan);
modalContent.appendChild(gmail);
// Outlook
outlook = <HTMLLinkElement>createElement("a");
outlook.id = "m-outlook";
outlook.href = DEFAULT_BTN_HREF;
outlook.classList.add("m-open");
outlook.classList.add("m-outlook");
outlook.appendChild(createTextNode("open in "));
let outlookSpan = createElement(span);
outlookSpan.className = "w-500";
outlookSpan.appendChild(createTextNode("Outlook"));
outlook.appendChild(outlookSpan);
modalContent.appendChild(outlook);
// open default
open = <HTMLLinkElement>createElement("a");
open.id = "m-open";
open.href = DEFAULT_BTN_HREF;
open.classList.add("m-open");
open.classList.add("m-default");
let openSpan = createElement(span);
openSpan.className = "w-500";
openSpan.appendChild(createTextNode("open"));
open.appendChild(openSpan);
open.appendChild(createTextNode(" default"));
modalContent.appendChild(open);
// copy
copyMail = <HTMLLinkElement>createElement("a");
copyMail.id = "m-copy";
copyMail.href = DEFAULT_BTN_HREF;
copyMail.classList.add("m-copy");
copyMail.classList.add("w-500");
copyMail.appendChild(createTextNode("copy"));
modalContent.appendChild(copyMail);
modalContent.appendChild(byElement());
// 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);
}
// mailgo tel
{
// modal
let modal = createElement();
modal.style.display = "none";
modal.id = "mailgo-tel";
modal.classList.add("m-modal");
// background
let modalBackground = createElement();
modalBackground.className = "m-modal-back";
modal.appendChild(modalBackground);
// modal content
let modalContent = createElement();
modalContent.className = "m-modal-content";
modal.appendChild(modalContent);
// title (telephone number)
titleTel = createElement("strong");
titleTel.id = "m-tel-title";
titleTel.className = "m-title";
modalContent.appendChild(titleTel);
// Telegram
telegram = <HTMLLinkElement>createElement("a");
telegram.id = "m-tg";
telegram.href = DEFAULT_BTN_HREF;
telegram.classList.add("m-open");
telegram.classList.add("m-tg");
// by default not display
telegram.style.display = "none";
telegram.appendChild(createTextNode("open in "));
let telegramSpan = createElement(span);
telegramSpan.className = "w-500";
telegramSpan.appendChild(createTextNode("Telegram"));
telegram.appendChild(telegramSpan);
modalContent.appendChild(telegram);
// WhatsApp
wa = <HTMLLinkElement>createElement("a");
wa.id = "m-wa";
wa.href = DEFAULT_BTN_HREF;
wa.classList.add("m-open");
wa.classList.add("m-wa");
wa.appendChild(createTextNode("open in "));
let waSpan = createElement(span);
waSpan.className = "w-500";
waSpan.appendChild(createTextNode("WhatsApp"));
wa.appendChild(waSpan);
modalContent.appendChild(wa);
// Skype
skype = <HTMLLinkElement>createElement("a");
skype.id = "m-skype";
skype.href = DEFAULT_BTN_HREF;
skype.classList.add("m-open");
skype.classList.add("m-skype");
skype.appendChild(createTextNode("open in "));
let skypeSpan = createElement(span);
skypeSpan.className = "w-500";
skypeSpan.appendChild(createTextNode("Skype"));
skype.appendChild(skypeSpan);
modalContent.appendChild(skype);
// call default
call = <HTMLLinkElement>createElement("a");
call.id = "m-call";
call.href = DEFAULT_BTN_HREF;
call.classList.add("m-open");
call.classList.add("m-default");
let callSpan = createElement(span);
callSpan.className = "w-500";
callSpan.appendChild(createTextNode("call"));
call.appendChild(callSpan);
call.appendChild(createTextNode(" as default"));
modalContent.appendChild(call);
// copy
copyTel = <HTMLLinkElement>createElement("a");
copyTel.id = "m-tel-copy";
copyTel.href = DEFAULT_BTN_HREF;
copyTel.classList.add("m-copy");
copyTel.classList.add("w-500");
copyTel.appendChild(createTextNode("copy"));
modalContent.appendChild(copyTel);
modalContent.appendChild(byElement());
// 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);
}
};
/**
* mailgoRender
* function to render a mailgo (mail or tel)
*/
const mailgoRender = (type = MAIL_TYPE, mailgo: any) => {
// mailgo mail
if (type === MAIL_TYPE) {
// if the element href=^"mailto:"
if (mailgo.href && mailgo.href.toLowerCase().startsWith(MAILTO)) {
mail = decodeURIComponent(
mailgo.href.split("?")[0].split(MAILTO)[1].trim()
);
url = new URL(mailgo.href);
let urlParams: URLSearchParams = url.searchParams;
// 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");
url = new URL(MAILTO + encodeURIComponent(mail));
// 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");
2019-09-16 21:06:40 +00:00
}
2020-04-24 19:51:34 +00:00
// validate the email address
if (!validateEmails(mail.split(","))) return;
// if cc, bcc is not valid cc, bcc = ""
if (cc && !validateEmails(cc.split(","))) cc = "";
if (bcc && !validateEmails(bcc.split(","))) bcc = "";
// the title of the modal (email address)
title.innerHTML = mail.split(",").join("<br/>");
// add the details if provided
cc
? ((detailCc.style.display = "block"),
(ccValue.innerHTML = cc.split(",").join("<br/>")))
: (detailCc.style.display = "none");
bcc
? ((detailBcc.style.display = "block"),
(bccValue.innerHTML = bcc.split(",").join("<br/>")))
: (detailBcc.style.display = "none");
subject
? ((detailSubject.style.display = "block"),
(subjectValue.textContent = subject))
: (detailSubject.style.display = "none");
bodyMail
? ((detailBody.style.display = "block"),
(bodyValue.textContent = bodyMail))
: (detailBody.style.display = "none");
// add the actions
gmail.addEventListener("click", openGmail);
outlook.addEventListener("click", openOutlook);
encEmail = encodeEmail(mail);
open.addEventListener("click", openDefault);
copyMail.addEventListener("click", () => copy(mail));
}
// mailgo tel
if (type === TEL_TYPE) {
if (mailgo.href && mailgo.href.toLowerCase().startsWith(TEL)) {
tel = decodeURIComponent(mailgo.href.split("?")[0].split(TEL)[1].trim());
} else if (mailgo.href && mailgo.href.toLowerCase().startsWith(CALLTO)) {
tel = decodeURIComponent(
mailgo.href.split("?")[0].split(CALLTO)[1].trim()
);
} else if (mailgo.hasAttribute("data-tel")) {
tel = mailgo.getAttribute("data-tel");
msg = mailgo.getAttribute("data-msg");
2019-10-27 13:05:42 +00:00
}
2020-04-24 19:51:34 +00:00
// information
// let titleEl = getE("m-tel-title");
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// Telegram username
if (mailgo.hasAttribute("data-telegram")) {
telegramUsername = mailgo.getAttribute("data-telegram");
}
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// Telegram username
if (mailgo.hasAttribute("data-skype")) {
skypeUsername = mailgo.getAttribute("data-skype");
}
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// the title of the modal (tel)
titleTel.innerHTML = tel;
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// add the actions to buttons
wa.addEventListener("click", openWhatsApp);
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
if (telegramUsername) {
setDisplay("m-tg", "block");
telegram.addEventListener("click", openTelegram);
}
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
skype.addEventListener("click", openSkype);
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
call.addEventListener("click", callDefault);
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
copyTel.addEventListener("click", () => copy(tel));
}
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// show the mailgo
showMailgo(type);
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// add listener keyDown
document.addEventListener("keydown", mailgoKeydown);
};
2019-07-19 10:03:21 +00:00
2020-04-24 19:51:34 +00:00
// actions
const openGmail = () => {
// Gmail url
let gmailUrl =
"https://mail.google.com/mail/u/0/?view=cm&source=mailto&to=" +
encodeURIComponent(mail);
2019-07-19 10:03:21 +00:00
2020-04-24 19:51:34 +00:00
// the details if provided
if (cc) gmailUrl = gmailUrl.concat("&cc=" + encodeURIComponent(cc));
if (bcc) gmailUrl = gmailUrl.concat("&bcc=" + encodeURIComponent(bcc));
if (subject) gmailUrl = gmailUrl.concat("&subject=" + subject);
if (bodyMail) gmailUrl = gmailUrl.concat("&body=" + bodyMail);
2020-04-24 19:51:34 +00:00
// open the link
window.open(gmailUrl, "_blank");
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// hide the modal
hideMailgo();
};
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
const openOutlook = () => {
// Outlook url
let outlookUrl =
"https://outlook.live.com/owa/?path=/mail/action/compose&to=" +
encodeURIComponent(mail);
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// the details if provided
if (subject) outlookUrl = outlookUrl.concat("&subject=" + subject);
if (bodyMail) outlookUrl = outlookUrl.concat("&body=" + bodyMail);
2019-07-19 10:03:21 +00:00
2020-04-24 19:51:34 +00:00
// open the link
window.open(outlookUrl, "_blank");
2019-07-19 10:03:21 +00:00
2020-04-24 19:51:34 +00:00
// hide the modal
hideMailgo();
};
2020-04-24 19:51:34 +00:00
const openDefault = () => {
mailToEncoded(encEmail);
hideMailgo();
};
2020-04-24 19:51:34 +00:00
const openTelegram = () => {
// Telegram url
let tgUrl = "https://t.me/" + telegramUsername;
2020-04-24 19:51:34 +00:00
// open the url
window.open(tgUrl, "_blank");
2019-09-16 22:23:41 +00:00
2020-04-24 19:51:34 +00:00
// hide the modal
hideMailgo();
};
2019-10-28 07:36:59 +00:00
2020-04-24 19:51:34 +00:00
const openSkype = () => {
let skype = skypeUsername !== "" ? skypeUsername : tel;
2019-10-28 07:36:59 +00:00
2020-04-24 19:51:34 +00:00
// Telegram url
let skypeUrl = "skype:" + skype;
2019-10-28 07:36:59 +00:00
2020-04-24 19:51:34 +00:00
// open the url
window.open(skypeUrl, "_blank");
// hide the modal
hideMailgo();
};
2019-05-26 11:43:17 +00:00
2020-04-24 19:51:34 +00:00
const openWhatsApp = () => {
// WhatsApp url
let waUrl = "https://wa.me/" + tel;
2019-09-13 20:29:20 +00:00
2020-04-24 19:51:34 +00:00
// the details if provided
if (msg) waUrl + "?text=" + msg;
2019-09-13 20:29:20 +00:00
2020-04-24 19:51:34 +00:00
// open the url
window.open(waUrl, "_blank");
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// hide the modal
hideMailgo();
};
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
const callDefault = () => {
let callUrl = "tel:" + tel;
window.open(callUrl);
hideMailgo();
};
const copy = (content: string) => {
copyToClipboard(content);
let activeCopy: HTMLElement;
// the correct copyButton (mail or tel)
mailgoIsShowing(MAIL_TYPE) ? (activeCopy = copyMail) : (activeCopy = copyTel);
activeCopy.textContent = "copied";
setTimeout(() => {
activeCopy.textContent = "copy";
// hide after the timeout
2019-10-28 07:36:59 +00:00
hideMailgo();
2020-04-24 19:51:34 +00:00
}, 999);
};
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// function that returns if an element is a mailgo
const isMailgo = (element: HTMLElement, type: string = MAIL_TYPE) => {
let href: string = (element as HTMLLinkElement).href;
// mailgo type mail
if (type === MAIL_TYPE) {
return (
// first case: it is an <a> element with "mailto:..." in href and no no-mailgo in classList
(href &&
href.toLowerCase().startsWith(MAILTO) &&
!element.classList.contains("no-mailgo")) ||
(element.hasAttribute("data-address") &&
// second case: the href=#mailgo
((href && element.getAttribute("href").toLowerCase() === "#mailgo") ||
// third case: the classList contains mailgo
(element.classList && element.classList.contains("mailgo"))))
);
}
// mailgo type tel
if (type === TEL_TYPE) {
return (
// first case: it is an <a> element with "tel:..." or "callto:..." in href and no no-mailgo in classList
(href &&
(href.toLowerCase().startsWith(TEL) ||
href.toLowerCase().startsWith(CALLTO)) &&
!element.classList.contains("no-mailgo")) ||
(element.hasAttribute("data-tel") &&
// second case: the href=#mailgo
href &&
element.getAttribute("href").toLowerCase() === "#mailgo") ||
// third case: the classList contains mailgo
(element.classList && element.classList.contains("mailgo"))
);
}
2019-10-27 13:13:52 +00:00
2020-04-24 19:51:34 +00:00
return false;
};
2019-10-27 13:13:52 +00:00
2020-04-24 19:51:34 +00:00
/**
* mailgoCheckRender
* function to check if an element is mailgo-enabled or not referencing to
* mail:
* document.querySelectorAll(
* 'a[href^="mailto:" i]:not(.no-mailgo), a[href="#mailgo"], a.mailgo'
* );
* tel:
* document.querySelectorAll(
* 'a[href^="tel:" i]:not(.no-mailgo), a[href="#mailgo"], a.mailgo'
* );
* or
* document.querySelectorAll(
* 'a[href^="callto:" i]:not(.no-mailgo), a[href="#mailgo"], a.mailgo'
* );
*/
const mailgoCheckRender = (event: Event) => {
// check if the id=mailgo exists in the body
if (
!document.contains(getE("mailgo")) ||
!document.contains(getE("mailgo-tel"))
)
return;
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// if a mailgo is already showing do nothing
if (mailgoIsShowing(MAIL_TYPE) || mailgoIsShowing(TEL_TYPE)) return;
2019-10-27 13:13:52 +00:00
2020-04-24 19:51:34 +00:00
// the path of the event
let path =
(event.composedPath && event.composedPath()) ||
composedPath(event.target as HTMLElement);
2019-10-27 13:13:52 +00:00
2020-04-24 19:51:34 +00:00
if (path) {
path.forEach((element: HTMLElement) => {
if (element instanceof HTMLDocument || element instanceof Window) return;
2019-10-27 13:13:52 +00:00
2020-04-24 19:51:34 +00:00
// go in the event.path to find if the user has clicked on a mailgo element
if (isMailgo(element, MAIL_TYPE)) {
// stop the normal execution of the element click
event.preventDefault();
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// render mailgo
mailgoRender(MAIL_TYPE, element);
2019-10-27 13:13:52 +00:00
2020-04-24 19:51:34 +00:00
return;
}
if (isMailgo(element, TEL_TYPE)) {
// stop the normal execution of the element click
event.preventDefault();
2019-10-27 13:13:52 +00:00
2020-04-24 19:51:34 +00:00
// render mailgo
mailgoRender(TEL_TYPE, element);
2019-10-27 13:13:52 +00:00
2020-04-24 19:51:34 +00:00
return;
}
});
}
2019-10-28 07:36:59 +00:00
2020-04-24 19:51:34 +00:00
return;
};
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
/**
* mailgoKeydown
* function to manage the keydown event when the modal is showing
*/
const mailgoKeydown = (event: KeyboardEvent) => {
// if mailgo is showing
if (mailgoIsShowing(MAIL_TYPE)) {
switch (event.keyCode) {
case 27:
// Escape
hideMailgo();
break;
case 71:
// g -> open GMail
openGmail();
break;
case 79:
// o -> open Outlook
openOutlook();
break;
case 32:
case 13:
// spacebar or enter -> open default
openDefault();
break;
case 67:
// c -> copy
copy(mail);
break;
default:
return;
2019-10-27 13:05:42 +00:00
}
2020-04-24 19:51:34 +00:00
} else if (mailgoIsShowing(TEL_TYPE)) {
switch (event.keyCode) {
case 27:
// Escape
hideMailgo();
break;
case 84:
// t -> open Telegram
openTelegram();
break;
case 87:
// w -> open WhatsApp
openWhatsApp();
break;
case 32:
case 13:
// spacebar or enter -> call default
callDefault();
break;
case 67:
// c -> copy
copy(tel);
break;
default:
return;
2019-10-27 13:05:42 +00:00
}
2020-04-24 19:51:34 +00:00
}
return;
};
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// show the modal
const showMailgo = (type = MAIL_TYPE) => {
// show mailgo type mail
if (type === MAIL_TYPE) {
setDisplay("mailgo", "flex");
return;
2020-04-24 19:51:34 +00:00
}
// show mailgo type tel
if (type === TEL_TYPE) {
setDisplay("mailgo-tel", "flex");
return;
2020-04-24 19:51:34 +00:00
}
};
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// hide the modal
const hideMailgo = () => {
setDisplay("mailgo", "none");
setDisplay("mailgo-tel", "none");
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// remove listener keyDown
document.removeEventListener("keydown", mailgoKeydown);
};
2019-10-28 20:03:22 +00:00
2020-04-24 19:51:34 +00:00
// is the mailgo modal hidden?
const mailgoIsShowing = (type = MAIL_TYPE) => {
return type === MAIL_TYPE
? getDisplay("mailgo") === "flex"
: type === TEL_TYPE
? getDisplay("mailgo-tel") === "flex"
: false;
};
2019-10-28 20:03:22 +00:00
2020-04-24 19:51:34 +00:00
const byElement = () => {
// by
let by: HTMLLinkElement = <HTMLLinkElement>createElement("a");
by.href = "https://mailgo.js.org?ref=mailgo-modal";
by.className = "m-by";
by.target = "_blank";
by.rel = "noopener noreferrer";
by.appendChild(createTextNode("mailgo.js.org"));
2020-04-24 19:51:34 +00:00
return by;
};
2019-11-07 08:20:14 +00:00
2020-04-24 19:51:34 +00:00
// create element
const createElement = (element: string = "div") =>
document.createElement(element);
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// create text node
const createTextNode = (element: string) => document.createTextNode(element);
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// decrypt email
const mailToEncoded = (encoded: string) =>
(window.location.href = MAILTO + atob(encoded));
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// encode email
const encodeEmail = (email: string) => btoa(email);
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// getE shorthand
const getE = (id: string) => document.getElementById(id);
2019-05-26 11:43:17 +00:00
2020-04-24 19:51:34 +00:00
// get display value
const getDisplay = (id: string) => getE(id).style.display;
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// get display value
const setDisplay = (id: string, value: string) =>
(getE(id).style.display = value);
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
// custom composedPath if path or event.composedPath() are not defined
const composedPath = (el: HTMLElement) => {
let path = [];
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
while (el) {
path.push(el);
2019-10-27 13:05:42 +00:00
2020-04-24 19:51:34 +00:00
if (el.tagName === "HTML") {
path.push(document);
path.push(window);
return path;
2019-10-27 13:05:42 +00:00
}
2020-04-24 19:51:34 +00:00
el = el.parentElement;
}
};
2020-04-24 19:51:34 +00:00
// validate a single email with regex
const validateEmail = (email: string) =>
/^(([^<>()[\]\\.,;:\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,}))$/.test(
email
);
// validate an array of emails
const validateEmails = (arr: string[]) => arr.every(validateEmail);
// copy of a string
const copyToClipboard = (str: string) => {
let el: HTMLInputElement = <HTMLInputElement>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);
}
2020-04-24 10:00:23 +00:00
};
2019-10-27 13:05:42 +00:00
2020-04-24 20:03:26 +00:00
const mailgoStyle = () => {
// mailgo style
let mailgoCSS: HTMLStyleElement = <HTMLStyleElement>createElement("style");
mailgoCSS.id = "mailgo-style";
mailgoCSS.type = "text/css";
mailgoCSS.appendChild(createTextNode(`MAILGO_STYLE`));
document.head.appendChild(mailgoCSS);
};
2020-04-24 20:24:24 +00:00
// export default for mailgo
export default (mailgoConfig?: any) => {
2020-04-24 19:51:34 +00:00
// if the window is defined...
if (window && typeof window !== "undefined") {
2020-04-24 20:03:26 +00:00
// add the style for mailgo
mailgoStyle();
2020-04-24 19:51:34 +00:00
// if is set an initEvent add the listener
if (mailgoConfig.initEvent) {
document.addEventListener(mailgoConfig.initEvent, mailgoInit);
} else {
mailgoInit();
}
2020-04-24 19:51:34 +00:00
// event listener on body, if the element is mailgo-compatible the mailgo modal will be rendered
document.addEventListener("click", mailgoCheckRender);
}
};