mirror of
https://github.com/Pomax/BezierInfo-2.git
synced 2025-02-24 09:33:19 +01:00
88 lines
2.6 KiB
JavaScript
88 lines
2.6 KiB
JavaScript
/**
|
|
* This file is responsible for making sure that the reddit, hn, twitter, etc. linkouts
|
|
* are updated to reflect the section someone is reading, rather than always pointing to
|
|
* base article itself.
|
|
*/
|
|
(function tryToBind() {
|
|
|
|
if (document.querySelectorAll("section h2 a").length < 30) {
|
|
return setTimeout(tryToBind, 300);
|
|
}
|
|
|
|
class Tracker {
|
|
constructor() {
|
|
this.section = false;
|
|
this.hash = false;
|
|
this.socials = ["Reddit","HN","Twitter"];
|
|
}
|
|
|
|
update(data) {
|
|
this.section = data.section;
|
|
this.hash = data.hash;
|
|
this.socials.forEach(social => {
|
|
var a = document.querySelector("a.social." + social.toLowerCase());
|
|
a.href = this["get"+social]();
|
|
});
|
|
}
|
|
|
|
getURL() {
|
|
var url = "https://pomax.github.io/bezierinfo";
|
|
if (this.hash) {
|
|
url += this.hash;
|
|
}
|
|
return encodeURIComponent(url);
|
|
}
|
|
|
|
getTitle() {
|
|
var title = "A Primer on Bézier Curves";
|
|
if (this.section) {
|
|
title = this.section + " - " + title;
|
|
}
|
|
return encodeURIComponent(title);
|
|
}
|
|
|
|
getReddit() {
|
|
var url = this.getURL();
|
|
var title = this.getTitle();
|
|
var text = encodeURIComponent("A free, online book for when you really need to know how to do Bézier things.");
|
|
return `https://www.reddit.com/submit?url=${url}&title=${title}&text=${text}`;
|
|
}
|
|
|
|
getHN() {
|
|
var url = this.getURL();
|
|
var title = this.getTitle();
|
|
return `https://news.ycombinator.com/submitlink?u=${url}&t=${title}`;
|
|
}
|
|
|
|
getTwitter() {
|
|
var url = this.getURL();
|
|
var text = encodeURIComponent(`Reading "${this.section}" by @TheRealPomax over on `) + url;
|
|
return `https://twitter.com/intent/tweet?hashtags=bezier,curves,maths&original_referer=${url}&text=${text}`;
|
|
}
|
|
};
|
|
|
|
|
|
// we set the section and fragmentid based on which ever section's heading is nearest
|
|
// the top of the screen, either just off-screen or in-screen
|
|
var tracker = new Tracker();
|
|
var anchors = Array.from(document.querySelectorAll("section h2 a"));
|
|
var sections = anchors.map(a => a.parentNode);
|
|
var sectionData = sections.map(section => {
|
|
return {
|
|
section: section.textContent,
|
|
hash: section.querySelector("a").hash
|
|
};
|
|
});
|
|
|
|
window.addEventListener("scroll", function(evt) {
|
|
var min = 99999999999999999;
|
|
var element = false;
|
|
sections.forEach( (s,pos) => {
|
|
var v = Math.abs(s.getBoundingClientRect().top);
|
|
if (v < min) { min = v; element = pos; }
|
|
});
|
|
tracker.update(sectionData[element]);
|
|
}, { passive: true });
|
|
|
|
}());
|