mirror of
https://github.com/litruv/lit.ruv.wtf.git
synced 2026-07-24 02:36:02 +10:00
330 lines
15 KiB
JavaScript
330 lines
15 KiB
JavaScript
'use strict';
|
|
|
|
const fs = require('fs').promises;
|
|
const path = require('path');
|
|
const { renderNavLinkItems } = require('./navLinks');
|
|
|
|
/**
|
|
* Generates static blog pages and an index page from markdown post data.
|
|
*/
|
|
class StaticBlogGenerator {
|
|
/**
|
|
* @param {{ siteRootDir: string }} options
|
|
*/
|
|
constructor(options) {
|
|
/** @type {string} */
|
|
this.siteRootDir = options.siteRootDir;
|
|
/** @type {string} */
|
|
this.blogRootDir = path.join(this.siteRootDir, 'blog');
|
|
/** @type {string} */
|
|
this.blogIndexPath = path.join(this.siteRootDir, 'blog.html');
|
|
}
|
|
|
|
/**
|
|
* Generates blog index and post pages.
|
|
*
|
|
* @param {Array<{slug: string, title: string, date: string | null, author: string | null, tags?: string[], content: string}>} posts
|
|
* @returns {Promise<void>}
|
|
*/
|
|
async generate(posts) {
|
|
await fs.rm(this.blogRootDir, { recursive: true, force: true });
|
|
await fs.mkdir(this.blogRootDir, { recursive: true });
|
|
|
|
const indexHtml = this.renderIndexPage(posts);
|
|
await fs.writeFile(this.blogIndexPath, indexHtml, 'utf-8');
|
|
|
|
for (let i = 0; i < posts.length; i++) {
|
|
const post = posts[i];
|
|
const prev = posts[i + 1] || null;
|
|
const next = posts[i - 1] || null;
|
|
const postDir = path.join(this.blogRootDir, post.slug);
|
|
await fs.mkdir(postDir, { recursive: true });
|
|
const postHtml = this.renderPostPage(post, prev, next);
|
|
await fs.writeFile(path.join(postDir, 'index.html'), postHtml, 'utf-8');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {Array<{slug: string, title: string, date: string | null, author: string | null, tags?: string[]}>} posts
|
|
* @returns {string}
|
|
*/
|
|
renderIndexPage(posts) {
|
|
const cardsHtml = posts.map((post) => {
|
|
const dateLabel = post.date ? this.formatDate(post.date) : 'Undated';
|
|
const authorLabel = post.author ? this.escapeHtml(post.author) : 'Unknown author';
|
|
const safeTitle = this.escapeHtml(post.title || post.slug);
|
|
const safeSlug = encodeURIComponent(post.slug);
|
|
const tags = Array.isArray(post.tags) ? post.tags : [];
|
|
const tagsHtml = tags.length > 0
|
|
? `<div class="blog-index-tags">${tags.map((tag) => `<span class="blog-tag">${this.escapeHtml(tag)}</span>`).join('')}</div>`
|
|
: '';
|
|
|
|
return [
|
|
'<article class="blog-index-item">',
|
|
` <h2 class="blog-index-item-title"><a href="/blog/${safeSlug}/">${safeTitle}</a></h2>`,
|
|
` <p class="blog-index-item-meta">${dateLabel} <span aria-hidden="true">-</span> ${authorLabel}</p>`,
|
|
tagsHtml,
|
|
'</article>'
|
|
].join('\n');
|
|
}).join('\n');
|
|
|
|
const content = [
|
|
'<main class="blog-shell">',
|
|
this.renderBrandBar(),
|
|
'<section class="blog-card" aria-labelledby="blog-index-title">',
|
|
' <header class="blog-post-header">',
|
|
' <h1 id="blog-index-title" class="blog-post-title">Blog</h1>',
|
|
' <p class="blog-index-subtitle">Direct links to every post.</p>',
|
|
' </header>',
|
|
` <div class="blog-index-list">${cardsHtml || '<p class="blog-empty">No posts yet.</p>'}</div>`,
|
|
'</section>',
|
|
'</main>'
|
|
].join('\n');
|
|
|
|
return this.renderPageTemplate('Blog', content, '/blog.html');
|
|
}
|
|
|
|
/**
|
|
* Extracts a plain-text description from the first paragraph of markdown content.
|
|
*
|
|
* @param {string} content
|
|
* @returns {string}
|
|
*/
|
|
extractDescription(content) {
|
|
const lines = (content || '').split('\n');
|
|
for (const line of lines) {
|
|
const trimmed = line.trim();
|
|
if (!trimmed || trimmed.startsWith('#') || trimmed.startsWith('!') || trimmed.startsWith('>') || /^[-*_]{3,}$/.test(trimmed) || trimmed.startsWith('```')) continue;
|
|
const plain = trimmed.replace(/[*_`\[\]]/g, '').replace(/!?\[.*?\]\(.*?\)/g, '').trim();
|
|
if (plain.length > 20) return plain.slice(0, 160);
|
|
}
|
|
return 'Read this post on lit.ruv.wtf';
|
|
}
|
|
|
|
/**
|
|
* @param {{slug: string, title: string, date: string | null, author: string | null, tags?: string[], content: string}} post
|
|
* @param {{slug: string, title: string, date: string | null} | null} prev - Older post (lower index)
|
|
* @param {{slug: string, title: string, date: string | null} | null} next - Newer post (higher index)
|
|
* @returns {string}
|
|
*/
|
|
renderPostPage(post, prev = null, next = null) {
|
|
const safeTitle = this.escapeHtml(post.title || post.slug);
|
|
const dateLabel = post.date ? this.formatDate(post.date) : null;
|
|
const authorLabel = post.author ? this.escapeHtml(post.author) : null;
|
|
const tags = Array.isArray(post.tags) ? post.tags : [];
|
|
|
|
const metaBits = [];
|
|
if (dateLabel) metaBits.push(`<span>${dateLabel}</span>`);
|
|
if (authorLabel) metaBits.push(`<span>${authorLabel}</span>`);
|
|
|
|
const tagsHtml = tags.length > 0
|
|
? `<div class="blog-post-tags">${tags.map((tag) => `<span class="blog-tag">${this.escapeHtml(tag)}</span>`).join('')}</div>`
|
|
: '';
|
|
|
|
const markdownJson = JSON.stringify(post.content || '').replace(/<\//g, '<\\/');
|
|
|
|
const prevPeek = prev
|
|
? [
|
|
`<div class="blog-post-peek-wrapper blog-post-peek-wrapper--prev">`,
|
|
`<a class="blog-post-peek blog-post-peek--prev" href="/blog/${encodeURIComponent(prev.slug)}/" aria-label="Older post: ${this.escapeHtml(prev.title)}">`,
|
|
` <div class="blog-post-peek-header">`,
|
|
` <span class="blog-post-peek-direction">← older</span>`,
|
|
` <span class="blog-post-peek-pin" data-peek-pin="prev-out"></span>`,
|
|
` </div>`,
|
|
` <div class="blog-post-peek-body">`,
|
|
` <span class="blog-post-peek-title">${this.escapeHtml(prev.title)}</span>`,
|
|
prev.date ? ` <span class="blog-post-peek-date">${this.formatDate(prev.date)}</span>` : '',
|
|
` </div>`,
|
|
`</a>`,
|
|
`</div>`,
|
|
].join('\n')
|
|
: '<div class="blog-post-peek-wrapper blog-post-peek-wrapper--prev"></div>';
|
|
|
|
const nextPeek = next
|
|
? [
|
|
`<div class="blog-post-peek-wrapper blog-post-peek-wrapper--next">`,
|
|
`<a class="blog-post-peek blog-post-peek--next" href="/blog/${encodeURIComponent(next.slug)}/" aria-label="Newer post: ${this.escapeHtml(next.title)}">`,
|
|
` <div class="blog-post-peek-header">`,
|
|
` <span class="blog-post-peek-pin" data-peek-pin="next-in"></span>`,
|
|
` <span class="blog-post-peek-direction" style="text-align:right">newer →</span>`,
|
|
` </div>`,
|
|
` <div class="blog-post-peek-body">`,
|
|
` <span class="blog-post-peek-title">${this.escapeHtml(next.title)}</span>`,
|
|
next.date ? ` <span class="blog-post-peek-date">${this.formatDate(next.date)}</span>` : '',
|
|
` </div>`,
|
|
`</a>`,
|
|
`</div>`,
|
|
].join('\n')
|
|
: '<div class="blog-post-peek-wrapper blog-post-peek-wrapper--next"></div>';
|
|
|
|
const content = [
|
|
'<main class="blog-shell">',
|
|
this.renderBrandBar(),
|
|
'<div class="blog-post-layout">',
|
|
prevPeek,
|
|
'<article class="blog-card" aria-labelledby="blog-post-title">',
|
|
' <header class="blog-post-header">',
|
|
` <h1 id="blog-post-title" class="blog-post-title">${safeTitle}</h1>`,
|
|
metaBits.length > 0 ? ` <p class="blog-post-meta">${metaBits.join('<span aria-hidden="true">-</span>')}</p>` : '',
|
|
tagsHtml,
|
|
' </header>',
|
|
'<div class="md-hr" role="separator"><span class="md-hr-line"></span><span class="md-hr-arrow"></span></div>',
|
|
' <section class="blog-post-content" data-blog-post-content></section>',
|
|
` <script id="blogPostMarkdown" type="application/json">${markdownJson}</script>`,
|
|
'</article>',
|
|
nextPeek,
|
|
'<svg class="blog-post-splines" aria-hidden="true"></svg>',
|
|
'</div>',
|
|
'</main>'
|
|
].join('\n');
|
|
|
|
const canonicalUrl = `https://lit.ruv.wtf/blog/${encodeURIComponent(post.slug)}/`;
|
|
return this.renderPageTemplate(`${safeTitle} - Blog`, content, `/blog/${encodeURIComponent(post.slug)}/`, {
|
|
description: this.extractDescription(post.content),
|
|
ogTitle: safeTitle,
|
|
ogType: 'article',
|
|
ogUrl: canonicalUrl,
|
|
articlePublishedTime: post.date || null,
|
|
articleAuthor: post.author || null,
|
|
articleTags: tags,
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param {string} title
|
|
* @param {string} bodyHtml
|
|
* @param {string} canonicalPath
|
|
* @returns {string}
|
|
*/
|
|
renderPageTemplate(title, bodyHtml, canonicalPath, og = {}) {
|
|
const escapedTitle = this.escapeHtml(title);
|
|
const canonicalUrl = `https://lit.ruv.wtf${canonicalPath}`;
|
|
const description = this.escapeHtml(og.description || 'lit.ruv.wtf blog posts.');
|
|
const ogTitle = this.escapeHtml(og.ogTitle || title);
|
|
const ogType = og.ogType || 'website';
|
|
const ogUrl = og.ogUrl || canonicalUrl;
|
|
|
|
const ogMeta = [
|
|
` <meta property="og:title" content="${ogTitle}">`,
|
|
` <meta property="og:type" content="${ogType}">`,
|
|
` <meta property="og:url" content="${ogUrl}">`,
|
|
` <meta property="og:description" content="${description}">`,
|
|
` <meta property="og:site_name" content="lit.ruv.wtf">`,
|
|
` <meta name="twitter:card" content="summary">`,
|
|
` <meta name="twitter:title" content="${ogTitle}">`,
|
|
` <meta name="twitter:description" content="${description}">`,
|
|
og.articlePublishedTime ? ` <meta property="article:published_time" content="${og.articlePublishedTime}">` : '',
|
|
og.articleAuthor ? ` <meta property="article:author" content="${this.escapeHtml(og.articleAuthor)}">` : '',
|
|
...(og.articleTags || []).map(t => ` <meta property="article:tag" content="${this.escapeHtml(t)}">`,),
|
|
].filter(Boolean);
|
|
|
|
return [
|
|
'<!DOCTYPE html>',
|
|
'<html lang="en">',
|
|
'<head>',
|
|
' <meta charset="UTF-8">',
|
|
' <meta name="viewport" content="width=device-width, initial-scale=1.0">',
|
|
' <base href="/">',
|
|
` <title>${escapedTitle}</title>`,
|
|
` <meta name="description" content="${description}">`,
|
|
` <link rel="canonical" href="${canonicalUrl}">`,
|
|
...ogMeta,
|
|
` <link rel="alternate" type="application/rss+xml" title="lit.ruv.wtf RSS" href="/rss.xml">`,
|
|
' <link rel="icon" type="image/png" sizes="32x32" href="/logos/32px.png">',
|
|
' <link rel="icon" type="image/png" sizes="64x64" href="/logos/64px.png">',
|
|
' <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism-tomorrow.min.css">',
|
|
' <link rel="stylesheet" href="/styles/main.css">',
|
|
' <script defer src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js"></script>',
|
|
' <script defer src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-javascript.min.js"></script>',
|
|
' <script defer src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-python.min.js"></script>',
|
|
' <script defer src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-typescript.min.js"></script>',
|
|
' <script defer src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-jsx.min.js"></script>',
|
|
' <script defer src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-css.min.js"></script>',
|
|
' <script defer src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-json.min.js"></script>',
|
|
' <script defer src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-bash.min.js"></script>',
|
|
'</head>',
|
|
'<body class="blog-page">',
|
|
'<nav class="quick-links" aria-label="Primary">',
|
|
this.renderHeaderLinks(),
|
|
' <a class="quick-link rss-link" href="/rss.xml" aria-label="RSS feed" title="RSS feed">',
|
|
' <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M6.18 15.64a2.18 2.18 0 0 1 2.18 2.18C8.36 19.01 7.38 20 6.18 20C4.98 20 4 19.01 4 17.82a2.18 2.18 0 0 1 2.18-2.18M4 4.44A15.56 15.56 0 0 1 19.56 20h-2.83A12.73 12.73 0 0 0 4 7.27V4.44m0 5.66a9.9 9.9 0 0 1 9.9 9.9h-2.83A7.07 7.07 0 0 0 4 12.93V10.1z"/></svg>',
|
|
' RSS',
|
|
' </a>',
|
|
'</nav>',
|
|
this.renderScrollTopBar(),
|
|
bodyHtml,
|
|
' <script type="module" src="/scripts/blogPage.js"></script>',
|
|
'</body>',
|
|
'</html>'
|
|
].join('\n');
|
|
}
|
|
|
|
/**
|
|
* @returns {string}
|
|
*/
|
|
renderHeaderLinks() {
|
|
return renderNavLinkItems(' ');
|
|
}
|
|
|
|
/**
|
|
* @returns {string}
|
|
*/
|
|
renderScrollTopBar() {
|
|
return [
|
|
'<header class="blog-scroll-topbar" data-blog-scroll-topbar>',
|
|
' <a class="blog-scroll-logo-link" href="/" aria-label="Back to main site">',
|
|
' <img src="/logos/LogoFull.svg" alt="lit.ruv.wtf" class="blog-scroll-logo" />',
|
|
' </a>',
|
|
' <nav class="blog-scroll-links" aria-label="Scrolled navigation">',
|
|
this.renderHeaderLinks(),
|
|
' </nav>',
|
|
'</header>'
|
|
].join('\n');
|
|
}
|
|
|
|
/**
|
|
* @returns {string}
|
|
*/
|
|
renderBrandBar() {
|
|
return [
|
|
'<a class="blog-logo-link" href="/" aria-label="Back to main site">',
|
|
' <img src="/logos/LogoFull.svg" alt="lit.ruv.wtf" class="blog-logo" />',
|
|
'</a>'
|
|
].join('\n');
|
|
}
|
|
|
|
/**
|
|
* @param {string} dateInput
|
|
* @returns {string}
|
|
*/
|
|
formatDate(dateInput) {
|
|
const parsed = new Date(dateInput);
|
|
if (Number.isNaN(parsed.valueOf())) {
|
|
return this.escapeHtml(dateInput);
|
|
}
|
|
|
|
return new Intl.DateTimeFormat('en-US', {
|
|
year: 'numeric',
|
|
month: 'long',
|
|
day: 'numeric'
|
|
}).format(parsed);
|
|
}
|
|
|
|
/**
|
|
* @param {string} value
|
|
* @returns {string}
|
|
*/
|
|
escapeHtml(value) {
|
|
return String(value)
|
|
.replace(/&/g, '&')
|
|
.replace(/</g, '<')
|
|
.replace(/>/g, '>')
|
|
.replace(/"/g, '"')
|
|
.replace(/'/g, ''');
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
StaticBlogGenerator
|
|
};
|