2023-07-16 06:02:12 +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"
|
|
|
|
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
|
|
|
|
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-06-04 16:35:45 +00:00
|
|
|
console.log(` Transformers: ${pluginNames('transformers').join(", ")}`)
|
|
|
|
console.log(` Filters: ${pluginNames('filters').join(", ")}`)
|
|
|
|
console.log(` Emitters: ${pluginNames('emitters').join(", ")}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
// clean
|
2023-07-05 07:16:06 +00:00
|
|
|
perf.addEvent('clean')
|
|
|
|
await rimraf(output)
|
|
|
|
console.log(`Cleaned output directory \`${output}\` in ${perf.timeSince('clean')}`)
|
2023-06-04 16:35:45 +00:00
|
|
|
|
|
|
|
// glob
|
|
|
|
perf.addEvent('glob')
|
|
|
|
const fps = await globby('**/*.md', {
|
|
|
|
cwd: argv.directory,
|
|
|
|
ignore: cfg.configuration.ignorePatterns,
|
|
|
|
gitignore: true,
|
|
|
|
})
|
2023-06-06 05:14:17 +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-16 06:02:12 +00:00
|
|
|
const filePaths = fps.map(fp => `${argv.directory}${path.sep}${fp}` as FilePath)
|
2023-06-04 16:35:45 +00:00
|
|
|
const parsedFiles = await parseMarkdown(cfg.plugins.transformers, argv.directory, filePaths, argv.verbose)
|
|
|
|
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[] = []
|
|
|
|
wss.on('connection', ws => connections.push(ws))
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
async function rebuild(fp: string, action: 'add' | 'change' | 'unlink') {
|
|
|
|
perf.addEvent('rebuild')
|
|
|
|
if (!ignored(fp)) {
|
|
|
|
console.log(chalk.yellow(`Detected change in ${fp}, rebuilding...`))
|
|
|
|
const fullPath = `${argv.directory}${path.sep}${fp}` as FilePath
|
|
|
|
if (action === 'add' || action === 'change') {
|
|
|
|
const [parsedContent] = await parseMarkdown(cfg.plugins.transformers, argv.directory, [fullPath], argv.verbose)
|
|
|
|
contentMap.set(fullPath, parsedContent)
|
|
|
|
} else if (action === 'unlink') {
|
|
|
|
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)
|
|
|
|
console.log(chalk.green(`Done rebuilding in ${perf.timeSince('rebuild')}`))
|
|
|
|
connections.forEach(conn => conn.send('rebuild'))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const watcher = chokidar.watch('.', {
|
|
|
|
persistent: true,
|
|
|
|
cwd: argv.directory,
|
|
|
|
ignoreInitial: true,
|
|
|
|
})
|
|
|
|
|
|
|
|
watcher
|
|
|
|
.on('add', fp => rebuild(fp, 'add'))
|
|
|
|
.on('change', fp => rebuild(fp, 'change'))
|
|
|
|
.on('unlink', fp => rebuild(fp, 'unlink'))
|
|
|
|
|
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-20 06:03:59 +00:00
|
|
|
const statusString = (status >= 200 && status < 300) ?
|
2023-07-22 23:06:36 +00:00
|
|
|
chalk.green(`[${status}]`) :
|
2023-07-20 06:03:59 +00:00
|
|
|
(status >= 300 && status < 400) ?
|
2023-07-22 23:06:36 +00:00
|
|
|
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-06-04 16:35:45 +00:00
|
|
|
console.log('hint: exit with ctrl+c')
|
|
|
|
}
|
|
|
|
}
|