actuel-inactuel/assets/dist/script.js

181 lines
5.9 KiB
JavaScript
Raw Permalink Normal View History

2024-01-26 08:52:00 +01:00
"use strict";
2024-11-30 18:49:45 +01:00
var verticalUnit = getUnit("--unit--vertical");
function getUnit(id) {
var remFactor = 16;
var rawUnit = getComputedStyle(document.documentElement).getPropertyValue(id) || "1.7rem";
var remUnit = parseFloat(rawUnit);
var pxUnit = remUnit * remFactor;
return pxUnit;
2024-01-26 08:52:00 +01:00
}
2024-12-02 17:31:52 +01:00
// Throttle found here : https://gist.github.com/ionurboz/51b505ee3281cd713747b4a84d69f434
function throttle(func, wait, options) {
var context, args, result;
var timeout = null;
var previous = 0;
if (!options) options = {};
var later = function later() {
previous = options.leading === false ? 0 : Date.now();
timeout = null;
result = func.apply(context, args);
if (!timeout) context = args = null;
};
2024-11-30 18:49:45 +01:00
return function () {
2024-12-02 17:31:52 +01:00
var now = Date.now();
if (!previous && options.leading === false) previous = now;
var remaining = wait - (now - previous);
context = this;
args = arguments;
if (remaining <= 0 || remaining > wait) {
if (timeout) {
clearTimeout(timeout);
timeout = null;
}
previous = now;
result = func.apply(context, args);
if (!timeout) context = args = null;
} else if (!timeout && options.trailing !== false) {
timeout = setTimeout(later, remaining);
2024-11-30 18:49:45 +01:00
}
2024-12-02 17:31:52 +01:00
return result;
2024-11-30 18:49:45 +01:00
};
2024-01-26 08:52:00 +01:00
}
2024-04-07 07:29:27 +02:00
function setWindowHeightFactor() {
var windowHeight = window.innerHeight;
var min = 650;
var delta = windowHeight - min;
var factor = roundToNearestHalf(delta / 300) + 1;
2024-11-30 18:49:45 +01:00
document.querySelector(":root").style.setProperty("--window-height-factor", factor);
2024-04-07 07:29:27 +02:00
}
function roundToNearestHalf(num) {
var round = Math.round(num * 2) / 2;
return Math.max(round, 0);
}
2024-11-30 18:49:45 +01:00
function toggleLogoState() {
var scrollY = window.scrollY || window.pageYOffset;
if (scrollY > 10) {
document.querySelector("#main-header").classList.add("minimized");
} else {
document.querySelector("#main-header").classList.remove("minimized");
}
}
2024-12-02 17:31:52 +01:00
function toggleFooterState() {
if (scrollY > 90) {
document.querySelector("#main-footer").classList.add("main-footer--background");
} else {
document.querySelector("#main-footer").classList.remove("main-footer--background");
}
}
2024-11-30 18:49:45 +01:00
function fixFootNotes() {
var footnotes = document.querySelectorAll('a[href^="#sdfootnote"]');
footnotes.forEach(function (footnote) {
var href = footnote.href;
footnote.classList.add("footnote");
if (href.includes("sym")) {
footnote.id = footnote.hash.replace("sym", "anc").replace("#", "");
2025-02-07 10:49:53 +01:00
} else if (href.includes("anc")) {
2024-11-30 18:49:45 +01:00
footnote.id = footnote.hash.replace("anc", "sym").replace("#", "");
2024-01-26 08:52:00 +01:00
}
2024-11-30 18:49:45 +01:00
});
}
function removeAccents(str) {
var from = "áäâàãåčçćďéěëèêẽĕȇíìîïňñóöòôõøðřŕšťúůüùûýÿžþÞĐđ߯a·/_,:;";
var to = "aaaaaacccdeeeeeeeeiiiinnooooooorrstuuuuuyyzbBDdBAa------";
for (var i = 0, l = from.length; i < l; i++) {
str = str.replace(new RegExp(from.charAt(i), "g"), to.charAt(i));
}
return str;
}
function slugify(str) {
return removeAccents(str.toLowerCase());
}
function subscribe(event) {
event.preventDefault();
2025-02-07 10:49:53 +01:00
var emailInput = document.querySelector("#subscribe-form input");
if (emailInput.value.toLowerCase().match(/^[^\s@]+@[^\s@]+\.[^\s@]+$/)) {
2024-11-30 18:49:45 +01:00
var header = {
method: "POST",
2025-02-07 10:49:53 +01:00
body: JSON.stringify(emailInput.value)
2024-11-30 18:49:45 +01:00
};
2025-02-07 10:49:53 +01:00
fetch("/subscribe.json", header).then(function (res) {
return res.json();
}).then(function (data) {
var formNode = emailInput.parentNode.parentNode;
formNode.outerHTML = "<p>" + data.message + "</p>";
});
2024-11-30 18:49:45 +01:00
} else {
2025-02-07 10:49:53 +01:00
emailInput.value = "E-mail invalide. Recommencez.";
2024-01-26 08:52:00 +01:00
}
2024-11-30 18:49:45 +01:00
}
var panelNav = document.querySelector(".panel");
var navOverlay = document.querySelector("#nav-overlay");
var openNavBtn = document.querySelector("button.open-nav");
var closeNavBtn = document.querySelector(".panel-close");
function closeNav() {
panelNav.classList.remove("panel--visible");
navOverlay.classList.remove("nav-overlay--visible");
document.body.classList.remove("no-scroll");
}
document.addEventListener("DOMContentLoaded", function () {
2025-02-07 10:49:53 +01:00
ragadjust("h1, h2, h4, h5", ["all"]);
2024-04-07 07:29:27 +02:00
window.window.scrollTo({
top: 0
});
2024-12-02 17:31:52 +01:00
var handleScroll = throttle(function () {
2024-01-26 08:52:00 +01:00
toggleLogoState();
2024-12-02 17:31:52 +01:00
if (window.innerWidth <= 680) {
toggleFooterState();
}
}, 100);
window.addEventListener("scroll", handleScroll);
2024-11-30 18:49:45 +01:00
setWindowHeightFactor();
window.addEventListener("resize", function () {
setWindowHeightFactor();
});
fixFootNotes();
window.addEventListener("keyup", function (event) {
if (event.key === "Escape") {
closeNav();
}
});
document.querySelectorAll(".panel").forEach(function (panel) {
panel.addEventListener("click", function (event) {
event.stopPropagation();
});
});
var navSortBtns = document.querySelectorAll("nav .sort-btn");
var navSections = document.querySelectorAll(".panel__all-texts, .panel__collection");
navSortBtns.forEach(function (sortBtn) {
sortBtn.addEventListener("click", function () {
navSortBtns.forEach(function (btn) {
return btn.classList.remove("active");
});
sortBtn.classList.add("active");
var sections = {
"sort-btn--all": ".panel__all-texts",
"sort-btn--years": ".panel__collection--years",
"sort-btn--categories": ".panel__collection--categories"
};
navSections.forEach(function (navSection) {
return navSection.classList.add("hidden");
});
Object.keys(sections).forEach(function (key) {
if (sortBtn.classList.contains(key)) {
document.querySelector(sections[key]).classList.remove("hidden");
}
});
});
});
openNavBtn.addEventListener("click", function () {
panelNav.classList.add("panel--visible");
navOverlay.classList.add("nav-overlay--visible");
document.body.classList.add("no-scroll");
});
closeNavBtn.addEventListener("click", function () {
closeNav();
});
navOverlay.addEventListener("click", function () {
closeNav();
});
2024-03-12 17:12:03 +01:00
});