thefoldwithin-earth/public/app.js

140 lines
4.7 KiB
JavaScript
Raw Normal View History

2025-11-08 14:39:26 -06:00
const els = {
body: document.body,
2025-11-08 15:26:01 -06:00
menuBtn: document.getElementById("menuBtn"),
sectionSelect: document.getElementById("sectionSelect"),
sortSelect: document.getElementById("sortSelect"),
searchBox: document.getElementById("searchBox"),
postList: document.getElementById("postList"),
viewer: document.getElementById("viewer"),
content: document.getElementById("content")
2025-11-08 14:55:16 -06:00
};
2025-11-08 15:35:37 -06:00
const staticPages = new Set(["about", "contact", "legal"]);
2025-11-08 15:26:01 -06:00
let indexData = null;
2025-11-08 15:35:37 -06:00
let sidebarOpen = false;
2025-11-08 14:39:26 -06:00
2025-11-08 15:35:37 -06:00
async function init() {
try {
indexData = await (await fetch("index.json")).json();
populateSections();
wireUI();
renderList();
handleHash();
window.addEventListener("hashchange", handleHash);
} catch (e) {
els.viewer.innerHTML = "<h1>Error Loading Index</h1><p>Failed to load site data. Please try refreshing.</p>";
}
2025-11-08 14:55:16 -06:00
}
2025-11-08 15:35:37 -06:00
function populateSections() {
2025-11-08 15:26:01 -06:00
els.sectionSelect.innerHTML = "";
2025-11-08 15:35:37 -06:00
indexData.sections.forEach(s => {
2025-11-08 15:26:01 -06:00
const opt = document.createElement("option");
2025-11-08 15:35:37 -06:00
opt.value = s;
opt.textContent = s;
2025-11-08 15:26:01 -06:00
els.sectionSelect.appendChild(opt);
2025-11-08 14:39:26 -06:00
});
}
2025-11-08 14:17:27 -06:00
2025-11-08 15:35:37 -06:00
function wireUI() {
els.menuBtn.addEventListener("click", () => {
sidebarOpen = !sidebarOpen;
document.body.classList.toggle("sidebar-open", sidebarOpen);
2025-11-08 14:39:26 -06:00
});
2025-11-08 15:35:37 -06:00
els.sectionSelect.addEventListener("change", renderList);
els.sortSelect.addEventListener("change", renderList);
els.searchBox.addEventListener("input", renderList);
els.content.addEventListener("click", () => {
if (window.matchMedia("(max-width:1024px)").matches && document.body.classList.contains("sidebar-open")) {
2025-11-08 15:26:01 -06:00
document.body.classList.remove("sidebar-open");
2025-11-08 15:35:37 -06:00
sidebarOpen = false;
2025-11-08 12:12:47 -06:00
}
2025-11-08 15:26:01 -06:00
});
2025-11-08 14:39:26 -06:00
}
2025-11-08 14:17:27 -06:00
2025-11-08 15:35:37 -06:00
function renderList() {
2025-11-08 15:26:01 -06:00
const section = els.sectionSelect.value;
const sort = els.sortSelect.value;
const query = els.searchBox.value.toLowerCase();
2025-11-08 12:59:27 -06:00
2025-11-08 15:35:37 -06:00
let posts = indexData.flat.filter(p => p.path.split('/')[0] === section);
if (query) posts = posts.filter(p => p.title.toLowerCase().includes(query));
posts.sort((a, b) => sort === "newest" ? b.mtime - a.mtime : a.mtime - b.mtime);
2025-11-08 14:55:16 -06:00
2025-11-08 15:26:01 -06:00
els.postList.innerHTML = "";
2025-11-08 15:35:37 -06:00
for (const p of posts) {
2025-11-08 15:26:01 -06:00
const li = document.createElement("li");
2025-11-08 15:35:37 -06:00
const pin = p.pinned ? "&#9733; " : "";
li.innerHTML = `<a href="#/${p.path}">${pin}${p.title}</a><br><small>${new Date(p.mtime).toISOString().split("T")[0]}</small>`;
2025-11-08 15:26:01 -06:00
els.postList.appendChild(li);
2025-11-08 14:17:27 -06:00
}
2025-11-08 15:26:01 -06:00
}
2025-11-08 13:06:29 -06:00
2025-11-08 15:35:37 -06:00
async function handleHash() {
els.viewer.innerHTML = ""; // Clear viewer to avoid stale content
const rel = location.hash.replace(/^#\//, "");
2025-11-08 15:26:01 -06:00
if (!rel) return renderDefault();
2025-11-08 15:35:37 -06:00
if (rel.endsWith('/')) {
const section = rel.replace(/\/$/, '');
if (staticPages.has(section)) {
renderHTML(section + '/index.html');
} else if (indexData.sections.includes(section)) {
els.sectionSelect.value = section;
renderList();
const sectionPosts = indexData.flat.filter(p => p.path.split('/')[0] === section);
if (sectionPosts.length === 0) {
els.viewer.innerHTML = `<h1>${section.charAt(0).toUpperCase() + section.slice(1)}</h1><p>No posts in this section yet.</p>`;
} else {
const latest = sectionPosts.sort((a, b) => b.mtime - a.mtime)[0];
location.hash = '#/' + latest.path; // Triggers hashchange to load
}
} else {
els.viewer.innerHTML = '<h1>404 Not Found</h1>';
}
} else {
const file = indexData.flat.find(f => f.path === rel);
if (!file) {
els.viewer.innerHTML = '<h1>404 Not Found</h1>';
return;
}
try {
file.ext === ".md" ? await renderMarkdown(file.path) : renderHTML(file.path);
} catch (e) {
els.viewer.innerHTML = '<h1>Error Loading Content</h1><p>Failed to load the file. Please try another.</p>';
}
}
2025-11-08 14:39:26 -06:00
}
2025-11-08 15:35:37 -06:00
async function renderMarkdown(rel) {
const src = await fetch(rel).then(r => { if (!r.ok) throw new Error(); return r.text(); });
2025-11-08 15:26:01 -06:00
const html = marked.parse(src);
els.viewer.innerHTML = `<article>${html}</article>`;
2025-11-08 14:39:26 -06:00
}
2025-11-08 15:35:37 -06:00
function renderHTML(rel) {
2025-11-08 14:39:26 -06:00
const iframe = document.createElement("iframe");
2025-11-08 15:35:37 -06:00
iframe.setAttribute("sandbox", "allow-same-origin allow-scripts allow-forms");
2025-11-08 14:39:26 -06:00
iframe.loading = "eager";
2025-11-08 15:26:01 -06:00
iframe.src = "/" + rel;
2025-11-08 14:39:26 -06:00
els.viewer.appendChild(iframe);
2025-11-08 15:35:37 -06:00
iframe.addEventListener("load", () => {
try {
2025-11-08 15:06:28 -06:00
const d = iframe.contentDocument || iframe.contentWindow.document;
const s = d.createElement("style");
s.textContent = `
2025-11-08 15:26:01 -06:00
html,body{margin:0;padding:0;background:transparent;color:#e6e3d7;font:16px/1.6 Inter,ui-sans-serif;}
main,article,section{max-width:720px;margin:auto;padding:2rem;}
2025-11-08 15:06:28 -06:00
`;
d.head.appendChild(s);
2025-11-08 15:35:37 -06:00
} catch {}
2025-11-08 14:39:26 -06:00
});
}
2025-11-08 15:35:37 -06:00
function renderDefault() {
const latest = [...indexData.flat].sort((a, b) => b.mtime - a.mtime)[0];
2025-11-08 15:26:01 -06:00
if (latest) location.hash = "#/" + latest.path;
}
init();