mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 05:43:01 +00:00
151 lines
No EOL
4.9 KiB
JavaScript
151 lines
No EOL
4.9 KiB
JavaScript
"use strict";
|
|
|
|
import os from "os";
|
|
import fs from "fs";
|
|
import path from "path";
|
|
|
|
import debug from "debug";
|
|
import htmlentities from "html-entities";
|
|
import phin from "phin";
|
|
import CleanCSS from "clean-css";
|
|
import { minify as minify_html } from "html-minifier-terser";
|
|
|
|
import moondoc_runner from "./lib/moondoc_runner.mjs";
|
|
import HTMLPicture from "./lib/HTMLPicture.mjs";
|
|
import FileFetcher from "./lib/FileFetcher.mjs";
|
|
const file_fetcher = new FileFetcher();
|
|
|
|
// HACK: Make sure __dirname is defined when using es6 modules. I forget where I found this - a PR with a source URL would be great!
|
|
const __dirname = import.meta.url.slice(7, import.meta.url.lastIndexOf("/"));
|
|
|
|
const is_production = typeof process.env.NODE_ENV === "string" && process.env.NODE_ENV === "production";
|
|
|
|
var nextid = 0;
|
|
|
|
const image_filename_format = (_id, src, width, format, _options) => {
|
|
const extension = path.extname(src);
|
|
const name = path.basename(src, extension);
|
|
return `${name}-${width}w.${format}`;
|
|
};
|
|
|
|
async function shortcode_image(src, alt) {
|
|
|
|
return HTMLPicture(
|
|
src, alt,
|
|
`./_site/img`, `/img`
|
|
);
|
|
}
|
|
|
|
async function shortcode_image_url(src) {
|
|
const src_parsed = path.parse(src);
|
|
const target = path.join(`./_site/img`, src_parsed.base);
|
|
if(!fs.existsSync(path.dirname(target)))
|
|
await fs.promises.mkdir(target_dir, { recursive: true });
|
|
await fs.promises.copyFile(src, target);
|
|
|
|
return path.join(`/img`, src_parsed.base);
|
|
}
|
|
|
|
async function shortcode_image_urlpass(src) {
|
|
let target_dir = `./_site/img`;
|
|
if(!fs.existsSync(target_dir))
|
|
await fs.promises.mkdir(target_dir, { recursive: true });
|
|
let filename = path.basename(src);
|
|
// Generally speaking we optimise PNGs *very* well with oxipng/Zopfli,
|
|
// and the Image plugin doesn't respect this
|
|
await fs.promises.copyFile(src, path.join(target_dir, filename));
|
|
return `/img/${filename}`;
|
|
}
|
|
|
|
async function shortcode_gallerybox(content, src) {
|
|
return `<div class="keen-slider__slide"><figure class="gallery-item">
|
|
<!-- ${await shortcode_image(src, "", "gallerybox-thumb", "300w")} -->
|
|
${await shortcode_image(src, "", "", "1920w")}
|
|
|
|
<figcaption>${content}</figcaption>
|
|
</figure></div>`;
|
|
// <a class="gallerybox-prev" href="#${id_prev}">❰</a>
|
|
// <a class="gallerybox-next" href="#${id_next}">❱</a>
|
|
}
|
|
|
|
async function fetch(url) {
|
|
return (await phin({
|
|
url,
|
|
headers: {
|
|
"user-agent": `WorldEditAdditionsStaticBuilder/${pkg_obj.version} (Node.js/${process.version}; ${os.platform()} ${os.arch()}) eleventy/${pkg_obj.devDependencies["@11ty/eleventy"].replace(/\^/, "")}`
|
|
},
|
|
followRedirects: true,
|
|
parse: "string"
|
|
})).body;
|
|
}
|
|
|
|
function fetch_file(url) {
|
|
return file_fetcher.fetch_file(url);
|
|
}
|
|
|
|
function do_minify_css(source, output_path) {
|
|
if(!output_path.endsWith(".css") || !is_production) return source;
|
|
|
|
const result = new CleanCSS({
|
|
level: 2
|
|
}).minify(source).styles.trim();
|
|
console.log(`MINIFY ${output_path}`, source.length, `→`, result.length, `(${((1 - (result.length / source.length)) * 100).toFixed(2)}% reduction)`);
|
|
return result;
|
|
}
|
|
|
|
async function do_minify_html(source, output_path) {
|
|
if(!output_path.endsWith(".html") || !is_production) return source;
|
|
|
|
const result = await minify_html(source, {
|
|
collapseBooleanAttributes: true,
|
|
collapseWhitespace: true,
|
|
collapseInlineTagWhitespace: true,
|
|
continueOnParseError: true,
|
|
decodeEntities: true,
|
|
keepClosingSlash: true,
|
|
minifyCSS: true,
|
|
quoteCharacter: `"`,
|
|
removeComments: true,
|
|
removeAttributeQuotes: true,
|
|
removeRedundantAttributes: true,
|
|
removeScriptTypeAttributes: true,
|
|
removeStyleLinkTypeAttributes: true,
|
|
sortAttributes: true,
|
|
sortClassName: true,
|
|
useShortDoctype: true
|
|
});
|
|
|
|
console.log(`MINIFY ${output_path}`, source.length, `→`, result.length, `(${((1 - (result.length / source.length)) * 100).toFixed(2)}% reduction)`);
|
|
|
|
return result;
|
|
}
|
|
|
|
if(is_production) console.log("Production environment detected, minifying content");
|
|
|
|
export default function config(eleventyConfig) {
|
|
moondoc_runner(
|
|
path.resolve(__dirname, "_site/api/index.html")
|
|
);
|
|
|
|
eleventyConfig.addTransform("cssmin", do_minify_css);
|
|
eleventyConfig.addTransform("htmlmin", do_minify_html);
|
|
|
|
eleventyConfig.addPassthroughCopy("img2brush/img2brush.js");
|
|
eleventyConfig.addAsyncShortcode("fetch", fetch);
|
|
eleventyConfig.addFilter("fetch_file", fetch_file);
|
|
|
|
// eleventyConfig.addPassthroughCopy("images");
|
|
// eleventyConfig.addPassthroughCopy("css");
|
|
eleventyConfig.addShortcode("image", shortcode_image);
|
|
eleventyConfig.addJavaScriptFunction("image", shortcode_image);
|
|
// eleventyConfig.addNunjucksAsyncShortcode("image_url", shortcode_image_url);
|
|
eleventyConfig.addAsyncShortcode("image_url", shortcode_image_url);
|
|
eleventyConfig.addAsyncShortcode("image_urlpass", shortcode_image_urlpass);
|
|
eleventyConfig.addNunjucksAsyncShortcode("image_urlpass", shortcode_image_urlpass);
|
|
eleventyConfig.addPairedShortcode("gallerybox", shortcode_gallerybox);
|
|
|
|
eleventyConfig.addPassthroughCopy({
|
|
"node_modules/keen-slider/keen-slider.es.js": "./keen-slider.es.js"
|
|
});
|
|
|
|
} |