2023-07-23 00:27:41 +00:00
|
|
|
import "source-map-support/register.js"
|
2023-06-04 16:35:45 +00:00
|
|
|
import path from "path"
|
|
|
|
import { PerfTimer } from "./perf"
|
|
|
|
import { rimraf } from "rimraf"
|
2023-07-22 23:06:36 +00:00
|
|
|
import { globby, isGitIgnored } from "globby"
|
2023-06-04 16:35:45 +00:00
|
|
|
import chalk from "chalk"
|
|
|
|
import http from "http"
|
|
|
|
import serveHandler from "serve-handler"
|
|
|
|
import { parseMarkdown } from "./processors/parse"
|
|
|
|
import { filterContent } from "./processors/filter"
|
|
|
|
import { emitContent } from "./processors/emit"
|
|
|
|
import cfg from "../quartz.config"
|
2023-07-16 06:02:12 +00:00
|
|
|
import { FilePath } from "./path"
|
2023-07-22 23:06:36 +00:00
|
|
|
import chokidar from "chokidar"
|
2023-07-23 00:27:41 +00:00
|
|
|
import { ProcessedContent } from "./plugins/vfile"
|
|
|
|
import WebSocket, { WebSocketServer } from "ws"
|
2023-06-04 16:35:45 +00:00
|
|
|
|
|
|
|
interface Argv {
|
|
|
|
directory: string
|
|
|
|
verbose: boolean
|
|
|
|
output: string
|
|
|
|
serve: boolean
|
|
|
|
port: number
|
|
|
|
}
|
|
|
|
|
|
|
|
export default async function buildQuartz(argv: Argv, version: string) {
|
|
|
|
console.log(chalk.bgGreen.black(`\n Quartz v${version} \n`))
|
|
|
|
const perf = new PerfTimer()
|
|
|
|
const output = argv.output
|
|
|
|
|
2023-06-04 17:37:43 +00:00
|
|
|
const pluginCount = Object.values(cfg.plugins).flat().length
|
2023-07-23 00:27:41 +00:00
|
|
|
const pluginNames = (key: "transformers" | "filters" | "emitters") =>
|
|
|
|
cfg.plugins[key].map((plugin) => plugin.name)
|
2023-06-04 16:35:45 +00:00
|
|
|
if (argv.verbose) {
|
2023-06-06 05:14:17 +00:00
|
|
|
console.log(`Loaded ${pluginCount} plugins`)
|
2023-07-23 00:27:41 +00:00
|
|
|
console.log(` Transformers: ${pluginNames("transformers").join(", ")}`)
|
|
|
|
console.log(` Filters: ${pluginNames("filters").join(", ")}`)
|
|
|
|
console.log(` Emitters: ${pluginNames("emitters").join(", ")}`)
|
2023-06-04 16:35:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// clean
|
2023-07-23 00:27:41 +00:00
|
|
|
perf.addEvent("clean")
|
2023-07-05 07:16:06 +00:00
|
|
|
await rimraf(output)
|
2023-07-23 00:27:41 +00:00
|
|
|
console.log(`Cleaned output directory \`${output}\` in ${perf.timeSince("clean")}`)
|
2023-06-04 16:35:45 +00:00
|
|
|
|
|
|
|
// glob
|
2023-07-23 00:27:41 +00:00
|
|
|
perf.addEvent("glob")
|
|
|
|
const fps = await globby("**/*.md", {
|
2023-06-04 16:35:45 +00:00
|
|
|
cwd: argv.directory,
|
|
|
|
ignore: cfg.configuration.ignorePatterns,
|
|
|
|
gitignore: true,
|
|
|
|
})
|
2023-07-23 00:27:41 +00:00
|
|
|
console.log(
|
|
|
|
`Found ${fps.length} input files from \`${argv.directory}\` in ${perf.timeSince("glob")}`,
|
|
|
|
)
|
2023-06-04 16:35:45 +00:00
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
const filePaths = fps.map((fp) => `${argv.directory}${path.sep}${fp}` as FilePath)
|
|
|
|
const parsedFiles = await parseMarkdown(
|
|
|
|
cfg.plugins.transformers,
|
|
|
|
argv.directory,
|
|
|
|
filePaths,
|
|
|
|
argv.verbose,
|
|
|
|
)
|
2023-06-04 16:35:45 +00:00
|
|
|
const filteredContent = filterContent(cfg.plugins.filters, parsedFiles, argv.verbose)
|
2023-07-22 23:06:36 +00:00
|
|
|
await emitContent(argv.directory, output, cfg, filteredContent, argv.serve, argv.verbose)
|
2023-06-04 16:35:45 +00:00
|
|
|
console.log(chalk.green(`Done processing ${fps.length} files in ${perf.timeSince()}`))
|
|
|
|
|
|
|
|
if (argv.serve) {
|
2023-07-22 23:06:36 +00:00
|
|
|
const wss = new WebSocketServer({ port: 3001 })
|
|
|
|
const connections: WebSocket[] = []
|
2023-07-23 00:27:41 +00:00
|
|
|
wss.on("connection", (ws) => connections.push(ws))
|
2023-07-22 23:06:36 +00:00
|
|
|
|
|
|
|
const ignored = await isGitIgnored()
|
|
|
|
const contentMap = new Map<FilePath, ProcessedContent>()
|
|
|
|
for (const content of parsedFiles) {
|
|
|
|
const [_tree, vfile] = content
|
|
|
|
contentMap.set(vfile.data.filePath!, content)
|
|
|
|
}
|
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
async function rebuild(fp: string, action: "add" | "change" | "unlink") {
|
|
|
|
perf.addEvent("rebuild")
|
2023-07-22 23:06:36 +00:00
|
|
|
if (!ignored(fp)) {
|
|
|
|
console.log(chalk.yellow(`Detected change in ${fp}, rebuilding...`))
|
|
|
|
const fullPath = `${argv.directory}${path.sep}${fp}` as FilePath
|
2023-07-23 00:27:41 +00:00
|
|
|
if (action === "add" || action === "change") {
|
|
|
|
const [parsedContent] = await parseMarkdown(
|
|
|
|
cfg.plugins.transformers,
|
|
|
|
argv.directory,
|
|
|
|
[fullPath],
|
|
|
|
argv.verbose,
|
|
|
|
)
|
2023-07-22 23:06:36 +00:00
|
|
|
contentMap.set(fullPath, parsedContent)
|
2023-07-23 00:27:41 +00:00
|
|
|
} else if (action === "unlink") {
|
2023-07-22 23:06:36 +00:00
|
|
|
contentMap.delete(fullPath)
|
|
|
|
}
|
|
|
|
|
|
|
|
await rimraf(output)
|
|
|
|
const parsedFiles = [...contentMap.values()]
|
|
|
|
const filteredContent = filterContent(cfg.plugins.filters, parsedFiles, argv.verbose)
|
|
|
|
await emitContent(argv.directory, output, cfg, filteredContent, argv.serve, argv.verbose)
|
2023-07-23 00:27:41 +00:00
|
|
|
console.log(chalk.green(`Done rebuilding in ${perf.timeSince("rebuild")}`))
|
|
|
|
connections.forEach((conn) => conn.send("rebuild"))
|
2023-07-22 23:06:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
const watcher = chokidar.watch(".", {
|
2023-07-22 23:06:36 +00:00
|
|
|
persistent: true,
|
|
|
|
cwd: argv.directory,
|
|
|
|
ignoreInitial: true,
|
|
|
|
})
|
|
|
|
|
|
|
|
watcher
|
2023-07-23 00:27:41 +00:00
|
|
|
.on("add", (fp) => rebuild(fp, "add"))
|
|
|
|
.on("change", (fp) => rebuild(fp, "change"))
|
|
|
|
.on("unlink", (fp) => rebuild(fp, "unlink"))
|
2023-07-22 23:06:36 +00:00
|
|
|
|
2023-06-04 16:35:45 +00:00
|
|
|
const server = http.createServer(async (req, res) => {
|
2023-07-10 02:32:24 +00:00
|
|
|
await serveHandler(req, res, {
|
2023-06-04 16:35:45 +00:00
|
|
|
public: output,
|
2023-06-07 02:48:37 +00:00
|
|
|
directoryListing: false,
|
2023-06-04 16:35:45 +00:00
|
|
|
})
|
2023-07-10 02:32:24 +00:00
|
|
|
const status = res.statusCode
|
2023-07-23 00:27:41 +00:00
|
|
|
const statusString =
|
|
|
|
status >= 200 && status < 300
|
|
|
|
? chalk.green(`[${status}]`)
|
|
|
|
: status >= 300 && status < 400
|
|
|
|
? chalk.yellow(`[${status}]`)
|
|
|
|
: chalk.red(`[${status}]`)
|
2023-07-01 07:03:01 +00:00
|
|
|
console.log(statusString + chalk.grey(` ${req.url}`))
|
2023-06-04 16:35:45 +00:00
|
|
|
})
|
|
|
|
server.listen(argv.port)
|
2023-07-10 02:32:24 +00:00
|
|
|
console.log(chalk.cyan(`Started a Quartz server listening at http://localhost:${argv.port}`))
|
2023-07-23 00:27:41 +00:00
|
|
|
console.log("hint: exit with ctrl+c")
|
2023-06-04 16:35:45 +00:00
|
|
|
}
|
|
|
|
}
|