Web/node/blog.js

81 lines
3.7 KiB
JavaScript
Raw Normal View History

2019-10-09 15:51:43 +02:00
const {
JSDOM
} = require("jsdom");
const fs = require("fs");
2019-10-20 15:56:22 +02:00
const converter = require("./showdown")(2);
2019-10-09 15:51:43 +02:00
2021-03-19 07:55:18 +01:00
let folder = `${__dirname}/../`;
2020-04-02 21:54:20 +02:00
console.log("Refreshing blog sub-sites...");
2021-03-19 07:55:18 +01:00
fs.readFile(`${folder}index.html`, function (_, html) {
let templateDom = new JSDOM(html);
2021-03-11 03:21:23 +01:00
// remove all non-blog stuff from the template (which is just our index.html)
let noBlog = templateDom.window.document.getElementsByClassName("no-blog");
while (noBlog.length > 0)
noBlog[0].parentNode.removeChild(noBlog[0]);
2021-03-11 03:21:23 +01:00
// change all relative links to move to the parent directory (since we're in blog/)
let elements = templateDom.window.document.getElementsByTagName("*");
for (let i = 0; i < elements.length; i++) {
let element = elements[i];
if (element.src && element.src.startsWith("./"))
2021-03-19 07:55:18 +01:00
element.src = `../${element.src.substring(2)}`;
2021-03-11 03:21:23 +01:00
if (element.href && element.href.startsWith("./"))
2021-03-19 07:55:18 +01:00
element.href = `../${element.href.substring(2)}`;
2021-03-11 03:21:23 +01:00
}
let template = templateDom.serialize();
2021-03-19 07:55:18 +01:00
fs.readFile(`${folder}blog/src/posts.json`, function (_, data) {
let json = JSON.parse(data.toString());
2020-04-02 21:54:20 +02:00
for (let i = 0; i < json.length; i++) {
let post = json[i];
2021-03-19 07:55:18 +01:00
fs.readFile(`${folder}blog/src/${post.id}.md`, function (_, content) {
2020-04-02 21:54:20 +02:00
let dom = new JSDOM(template);
let document = dom.window.document;
2020-04-02 21:54:20 +02:00
2021-03-19 07:55:18 +01:00
document.title += ` - ${post.name}`;
2020-04-02 21:54:20 +02:00
document.querySelector('meta[property="og:title"]').setAttribute("content", post.name);
document.querySelector('meta[name="description"]').setAttribute("content", post.summary);
document.querySelector('meta[property="og:description"]').setAttribute("content", post.summary);
2020-05-06 19:54:21 +02:00
let last = getAdjacentPost(json, i, -1);
let next = getAdjacentPost(json, i, 1);
2021-03-19 07:55:18 +01:00
document.getElementById("nav-items").innerHTML = /*html*/ `
<a class="nav-item nav-link" href="/#blog">Back to Main Page</a>
${last ? /*html*/ `<a class="nav-item nav-link" href="/blog/${last.id}">Previous ${post.cat} Post</a>` : ""}
${next ? /*html*/ `<a class="nav-item nav-link" href="/blog/${next.id}">Next ${post.cat} Post</a>` : ""}
`;
2020-04-02 21:54:20 +02:00
2021-03-19 07:55:18 +01:00
document.getElementById("main").innerHTML = /*html*/ `
<div class="list-display rounded">
<div class="blog-isolated">
<h1>${post.name}</h1>
<div id="blog-post-${post.id}">
${post.archived ? /*html*/ `<p><i>This post has been archived.</i></p>` : ""}
${converter.makeHtml(content.toString())}
</div>
<span class="text-muted project-status blog-isolated-status">${post.date}</span>
${post.discuss ? /*html*/ `<a href="${post.discuss}" class="blog-discuss" id="blog-discuss-${post.id}">Discuss this post</a>` : ""}
</div>
</div>
`;
2020-04-02 21:54:20 +02:00
let ret = dom.serialize();
2021-03-19 07:55:18 +01:00
fs.mkdir(`${folder}blog`, function () {
fs.writeFile(`${folder}blog/${post.id}.html`, ret, function () {});
2021-03-11 03:21:23 +01:00
});
2020-04-02 21:54:20 +02:00
});
}
2019-10-09 15:51:43 +02:00
});
2020-05-06 19:54:21 +02:00
});
function getAdjacentPost(json, index, move) {
2021-03-17 03:07:12 +01:00
let cat = json[index].cat;
2020-05-06 19:54:21 +02:00
while (true) {
index += move;
let post = json[index];
if (!post)
break;
2021-03-19 07:55:18 +01:00
if (post.cat === cat && !post.archived)
2020-05-06 19:54:21 +02:00
return post;
}
}