shareon/src/index.ts

63 lines
2.1 KiB
TypeScript
Raw Normal View History

2020-03-25 13:53:00 -04:00
import './style.scss';
2020-03-25 16:47:00 -04:00
interface PublishPreset {
url: string,
title: string,
extra?: {
media?: null|string,
text?: null|string,
via?: null|string,
}
}
type UrlBuilder = (data: PublishPreset) => string;
const NETWORKS: { [name: string]: UrlBuilder } = {
2020-03-25 17:11:25 -04:00
telegram: (d) => `https://telegram.me/share/url?url=${encodeURIComponent(d.url)}${(d.extra && d.extra.text) ? `&text=${encodeURIComponent(d.extra.text)}` : ''}`,
2020-03-25 17:11:45 -04:00
twitter: (d) => `https://twitter.com/intent/tweet?url=${encodeURIComponent(d.url)}&text=${encodeURIComponent(d.title)}${(d.extra && d.extra.via) ? `&via=${encodeURIComponent(d.extra.via)}` : ''}`,
2020-03-25 16:47:00 -04:00
};
function initShareonChild(child: HTMLElement, preset: PublishPreset) {
if (child) {
child.classList.forEach((cls) => {
if (Object.prototype.hasOwnProperty.call(NETWORKS, cls)) {
const url = NETWORKS[cls](preset);
if (child.tagName.toLowerCase() === 'a') {
child.setAttribute('href', url);
child.setAttribute('rel', 'noopener noreferrer');
child.setAttribute('target', '_blank');
} else {
child.addEventListener('click', () => { window.open(url, '_blank', 'noopener,noreferrer').opener = null; });
}
}
});
}
}
window.onload = () => {
const shareonContainers = document.getElementsByClassName('shareon');
for (let i = 0; i < shareonContainers.length; i += 1) {
const container = shareonContainers[i] as HTMLElement;
for (let j = 0; j < container.children.length; j += 1) {
const child = container.children[j] as HTMLElement;
const preset: PublishPreset = {
url: child.dataset.url || container.dataset.url || window.location.href,
title: child.dataset.title || container.dataset.title || document.title || '',
extra: {
media: child.dataset.media || container.dataset.media || null,
text: child.dataset.text || container.dataset.text || null,
via: child.dataset.via || container.dataset.via || null,
},
};
initShareonChild(
child as HTMLElement,
preset,
);
}
}
};