gmi-web/to-html.js

109 lines
3.3 KiB
JavaScript
Raw Normal View History

2021-01-29 06:15:23 +00:00
const fs = require("fs");
const path = require("path");
2021-01-30 16:32:44 +00:00
2021-01-28 23:07:57 +00:00
const TOKENS_EXT = /\.tokens\.json$/;
2021-01-29 00:24:22 +00:00
// https://developer.mozilla.org/en-US/docs/Web/Media/Formats
2021-01-29 22:32:30 +00:00
const IMG_EXT = (exports.IMG_EXT = /\.(apng|avif|gif|jpg|jpeg|jfif|pjpeg|pjp|png|svg|webp)$/);
const AUDIO_EXT = (exports.AUDIO_EXT = /\.(mp3|wav|aac|aacp|mpeg|off|flac)$/);
const VIDEO_EXT = (exports.VIDEO_EXT = /\.(mp4|webm)$/);
2021-01-30 16:32:44 +00:00
const BASE_STYLE = (exports.BASE_STYLE =
2021-01-29 22:32:30 +00:00
"<style>p,a,pre,h1,h2,h3,ul,blockquote,img,audio,video{display:block;max-width:100%;margin:0;padding:0;overflow-wrap:anywhere;}</style>");
2021-01-29 00:24:22 +00:00
2021-01-29 23:17:25 +00:00
const toHTML = (exports.toHTML = (file, options) => {
const tokens = JSON.parse(file.contents.toString("utf8"));
const title = tokens[0].h1;
return `<!DOCTYPE html>
2021-01-29 22:32:30 +00:00
<html style="${options.override}">
2021-01-29 23:17:25 +00:00
${head(file.path, title, options)}
2021-01-29 22:32:30 +00:00
<body>
2021-01-29 23:17:25 +00:00
${gemtext(tokens, options)}
2021-01-29 22:32:30 +00:00
</body>
</html>
2021-01-29 23:17:25 +00:00
`;
});
2021-01-29 00:24:22 +00:00
module.exports = (options) => (file, cb) => {
2021-01-29 06:15:23 +00:00
if (!TOKENS_EXT.test(file.path)) return cb(null);
2021-01-29 22:32:30 +00:00
file.contents = Buffer.from(toHTML(file, options));
file.path = file.path.replace(TOKENS_EXT, ".html");
if (options.verbose) console.log(file.path);
return cb(null, file);
};
2021-01-29 00:24:22 +00:00
2021-01-29 23:17:25 +00:00
function head(file, title, options) {
2021-01-29 22:32:30 +00:00
return `<head>
2021-01-28 23:07:57 +00:00
<meta charset="utf-8">
2021-01-29 23:17:25 +00:00
<meta language="${options.language}">
2021-01-28 23:13:02 +00:00
<meta name="viewport" content="width=device-width,initial-scale=1">${
2021-01-29 22:32:30 +00:00
!options.css
? BASE_STYLE
: `\n<meta name="color-scheme" content="dark light">\n<style>${fs.readFileSync(
2021-01-29 06:15:23 +00:00
path.resolve(__dirname, "./gmi.min.css"),
"utf8"
)}</style>`
2021-01-29 23:17:25 +00:00
}${
!options.canonical
? ""
2021-01-29 23:27:39 +00:00
: `<link rel="canonical" href="gemini://${
options.canonical
}/${file.replace(TOKENS_EXT, ".gmi")}">`
2021-01-28 23:13:02 +00:00
}
2021-01-29 23:17:25 +00:00
<title>${title}</title>
2021-01-29 22:32:30 +00:00
</head>
`;
}
2021-01-28 23:07:57 +00:00
2021-01-29 22:32:30 +00:00
function gemtext(tokens, options) {
2021-01-28 23:13:02 +00:00
let body = [];
2021-01-28 23:07:57 +00:00
2021-01-28 23:13:02 +00:00
let cursor = tokens.shift();
2021-01-28 23:07:57 +00:00
while (tokens.length) {
if (cursor.pre) {
2021-01-28 23:13:02 +00:00
body.push(`<pre${cursor.alt ? `title="${cursor.alt}"` : ""}>`);
const closing = tokens.findIndex((token) => token.pre);
body = body.concat(tokens.slice(0, closing).map(({ text }) => text));
body.push("</pre>");
tokens = tokens.slice(closing + 1);
2021-01-28 23:07:57 +00:00
}
if (cursor.li) {
2021-01-28 23:13:02 +00:00
body.push(`<ul>`);
const closing = tokens.findIndex((token) => !token.li);
body = body.concat(tokens.slice(0, closing).map(line));
body.push("</ul>");
tokens = tokens.slice(closing + 1);
2021-01-28 23:07:57 +00:00
}
2021-01-29 00:24:22 +00:00
body.push(line(cursor, options));
2021-01-28 23:13:02 +00:00
cursor = tokens.shift();
2021-01-28 23:07:57 +00:00
}
2021-01-28 23:13:02 +00:00
return body.join("\n");
2021-01-28 23:07:57 +00:00
}
2021-01-29 00:24:22 +00:00
function line(
{ text, href, title, pre, alt, h1, h2, h3, li, quote },
2021-01-29 23:17:25 +00:00
{ images, audio, video }
2021-01-29 00:24:22 +00:00
) {
2021-01-28 23:07:57 +00:00
if (text) return `<p>${text}</p>`;
2021-01-29 00:24:22 +00:00
if (href) {
2021-01-29 23:17:25 +00:00
if (images && IMG_EXT.test(href))
2021-01-29 00:24:22 +00:00
return `<img src="${href}" title="${title}"/>`;
2021-01-29 23:17:25 +00:00
if (audio && AUDIO_EXT.test(href))
2021-01-29 00:24:22 +00:00
return `<audio controls src="${href}" title="${title}"></audio>`;
2021-01-29 23:17:25 +00:00
if (video && VIDEO_EXT.test(href))
2021-01-29 00:24:22 +00:00
return `<video controls src="${href}" title="${title}"/></video>`;
return `<a href="${href}">${title || href}</a>`;
}
2021-01-28 23:07:57 +00:00
if (h1) return `<h1>${h1}</h1>`;
if (h2) return `<h2>${h2}</h2>`;
if (h3) return `<h3>${h3}</h3>`;
if (li) return `<li>${li}</li>`;
if (quote) return `<blockquote>${quote}</blockquote>`;
return `<p><br></p>`;
}
2021-01-29 22:32:30 +00:00
function omit(key, obj) {
const { [key]: omitted, ...rest } = obj;
return rest;
}