1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-09-24 19:38:27 +02:00
mkdocs-material/tools/index.ts

220 lines
6.3 KiB
TypeScript
Raw Normal View History

2021-02-18 22:18:45 +01:00
/*
* Copyright (c) 2016-2021 Martin Donath <martin.donath@squidfunk.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
2021-02-21 14:58:26 +01:00
import { createHash } from "crypto"
import * as fs from "fs/promises"
2021-02-18 22:18:45 +01:00
import { minify as minhtml } from "html-minifier"
2021-02-21 11:59:38 +01:00
import * as path from "path"
2021-02-21 14:58:26 +01:00
import { concat, defer, from, merge, of } from "rxjs"
import {
concatMap,
map,
switchMap,
takeWhile
} from "rxjs/operators"
2021-02-21 14:34:17 +01:00
import { extendDefaultPlugins, optimize } from "svgo"
2021-02-18 22:18:45 +01:00
2021-02-20 18:03:53 +01:00
import { copyAll } from "./copy"
import { base, resolve } from "./resolve"
2021-02-20 18:46:28 +01:00
import {
transformScript,
transformStyle
} from "./transform"
2021-02-18 22:18:45 +01:00
2021-02-21 11:59:38 +01:00
/* ----------------------------------------------------------------------------
* Helper functions
* ------------------------------------------------------------------------- */
/**
* Replace file extension
*
* @param file - File
* @param extension - New extension
*
* @returns File with new extension
*/
function ext(file: string, extension: string): string {
return file.replace(path.extname(file), extension)
}
2021-02-21 14:34:17 +01:00
/**
* Optimize SVG data
*
* This function will just pass-through non-SVG data, which makes the pipeline
* much simpler, as we can reuse it for the license texts.
*
* @param data - SVG data
*
* @returns Minified SVG data
*/
function minsvg(data: string): string {
const result = optimize(data, {
plugins: extendDefaultPlugins([
{ name: "removeDimensions", active: true },
{ name: "removeViewBox", active: false }
])
})
return result.data || data
}
2021-02-18 22:18:45 +01:00
/* ----------------------------------------------------------------------------
* Program
* ------------------------------------------------------------------------- */
2021-02-20 18:03:53 +01:00
/* Copy all dependencies */
const dependencies$ = concat(
2021-02-18 22:18:45 +01:00
/* Copy Material Design icons */
...["*.svg", "../LICENSE"]
.map(pattern => copyAll(pattern, {
2021-02-20 18:03:53 +01:00
src: "node_modules/@mdi/svg/svg",
2021-02-21 14:34:17 +01:00
out: `${base}/.icons/material`,
...process.argv.includes("--optimize") && {
transform: async data => minsvg(data)
}
2021-02-18 22:18:45 +01:00
})),
/* Copy GitHub octicons */
...["*.svg", "../../LICENSE"]
.map(pattern => copyAll(pattern, {
2021-02-20 18:03:53 +01:00
src: "node_modules/@primer/octicons/build/svg",
2021-02-21 14:34:17 +01:00
out: `${base}/.icons/octicons`,
...process.argv.includes("--optimize") && {
transform: async data => minsvg(data)
}
2021-02-18 22:18:45 +01:00
})),
/* Copy FontAwesome icons */
...["**/*.svg", "../LICENSE.txt"]
.map(pattern => copyAll(pattern, {
2021-02-20 18:03:53 +01:00
src: "node_modules/@fortawesome/fontawesome-free/svgs",
2021-02-21 14:34:17 +01:00
out: `${base}/.icons/fontawesome`,
...process.argv.includes("--optimize") && {
transform: async data => minsvg(data)
}
2021-02-18 22:18:45 +01:00
}))
)
2021-02-20 18:03:53 +01:00
/* Copy all assets */
2021-02-18 22:18:45 +01:00
const assets$ = concat(
2021-02-20 18:03:53 +01:00
/* Copy icons, images and configurations */
2021-02-18 22:18:45 +01:00
...[".icons/*.svg", "assets/images/*", "**/*.{py,yml}"]
.map(pattern => copyAll(pattern, {
2021-02-20 18:03:53 +01:00
src: "src",
out: base
2021-02-18 22:18:45 +01:00
})),
2021-02-20 18:03:53 +01:00
/* Copy and minify template files */
copyAll("**/*.html", {
src: "src",
out: base,
2021-02-21 14:34:17 +01:00
transform: async data => {
2021-02-20 18:03:53 +01:00
const metadata = require("../package.json")
const banner =
"{#-\n" +
" This file was automatically generated - do not edit\n" +
"-#}\n"
/* Normalize line feeds and minify HTML */
2021-02-21 14:34:17 +01:00
const html = data.replace(/\r\n/gm, "\n")
2021-02-20 18:03:53 +01:00
return banner + minhtml(html, {
collapseBooleanAttributes: true,
includeAutoGeneratedTags: false,
minifyCSS: true,
minifyJS: true,
removeComments: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true
})
/* Remove empty lines without collapsing everything */
.replace(/^\s*[\r\n]/gm, "")
/* Write theme version into template */
.replace("$md-name$", metadata.name)
.replace("$md-version$", metadata.version)
}
})
2021-02-18 22:18:45 +01:00
)
2021-02-20 18:03:53 +01:00
/* Transform stylesheets with SASS and PostCSS */
2021-02-21 11:59:38 +01:00
const stylesheets$ = resolve("**/[!_]*.scss", { cwd: "src" })
2021-02-18 22:18:45 +01:00
.pipe(
2021-02-20 18:03:53 +01:00
concatMap(file => transformStyle({
src: `src/${file}`,
2021-02-21 11:59:38 +01:00
out: ext(`${base}/${file}`, ".css")
2021-02-20 18:03:53 +01:00
}))
2021-02-18 22:18:45 +01:00
)
2021-02-20 18:03:53 +01:00
2021-02-21 14:34:17 +01:00
/* Transform stylesheets with SASS and PostCSS */
const javascripts$ = resolve("**/{bundle,search}.ts", { cwd: "src" })
.pipe(
concatMap(file => transformScript({
src: `src/${file}`,
out: ext(`${base}/${file}`, ".js")
}))
)
2021-02-21 14:58:26 +01:00
/* Add content hashes to assets and replace occurrences */
const manifest$ = defer(() => resolve(`${base}/**/*.{css,js}`)
.pipe(
takeWhile(() => process.argv.includes("--optimize")),
concatMap(asset => from(fs.readFile(asset, "utf8"))
.pipe(
map(data => createHash("sha256").update(data).digest("hex")),
switchMap(hash => of(`${asset}`, `${asset}.map`)
.pipe(
switchMap(file => fs.rename(
file,
file.replace(/\b(?=\.)/, `.${hash.slice(0, 8)}.min`)
))
)
)
)
)
)
)
2021-02-21 14:34:17 +01:00
/* Copy Lunr.js search stemmers and segmenter */
const stemmers$ = ["min/*.js", "tinyseg.js"]
.map(pattern => copyAll(pattern, {
src: "node_modules/lunr-languages",
out: `${base}/assets/javascripts/lunr`
}))
2021-02-20 18:46:28 +01:00
2021-02-21 14:34:17 +01:00
/* ------------------------------------------------------------------------- */
/* Put everything together */
2021-02-20 18:03:53 +01:00
concat(
dependencies$,
2021-02-21 11:59:38 +01:00
merge(
assets$,
stylesheets$,
javascripts$
2021-02-21 14:34:17 +01:00
),
manifest$,
stemmers$
2021-02-20 18:03:53 +01:00
)
2021-02-21 11:59:38 +01:00
.subscribe()
// .subscribe(console.log)