mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-08-02 11:41:29 +00:00
plugin integration round 2
This commit is contained in:
66
quartz/index.ts
Normal file
66
quartz/index.ts
Normal file
@@ -0,0 +1,66 @@
|
||||
import path from "path"
|
||||
import { QuartzConfig } from "./cfg"
|
||||
import { PerfTimer } from "./perf"
|
||||
import { rimraf } from "rimraf"
|
||||
import { globby } from "globby"
|
||||
import chalk from "chalk"
|
||||
import http from "http"
|
||||
import serveHandler from "serve-handler"
|
||||
import { createProcessor, parseMarkdown } from "./processors/parse"
|
||||
|
||||
interface Argv {
|
||||
directory: string
|
||||
verbose: boolean
|
||||
output: string
|
||||
clean: boolean
|
||||
serve: boolean
|
||||
port: number
|
||||
}
|
||||
|
||||
export function buildQuartz(cfg: QuartzConfig) {
|
||||
return async (argv: Argv, version: string) => {
|
||||
console.log(chalk.bgGreen.black(`\n Quartz v${version} \n`))
|
||||
const perf = new PerfTimer()
|
||||
const output = path.join(argv.directory, argv.output)
|
||||
|
||||
// clean
|
||||
if (argv.clean) {
|
||||
perf.addEvent('clean')
|
||||
await rimraf(output)
|
||||
if (argv.verbose) {
|
||||
console.log(`Cleaned output directory \`${output}\` in ${perf.timeSince('clean')}`)
|
||||
}
|
||||
}
|
||||
|
||||
// glob
|
||||
perf.addEvent('glob')
|
||||
const fps = await globby('**/*.md', {
|
||||
cwd: argv.directory,
|
||||
ignore: [...cfg.configuration.ignorePatterns, 'quartz/**'],
|
||||
gitignore: true,
|
||||
})
|
||||
|
||||
if (argv.verbose) {
|
||||
console.log(`Found ${fps.length} input files in ${perf.timeSince('glob')}`)
|
||||
}
|
||||
|
||||
const processor = createProcessor(cfg.plugins.transformers)
|
||||
const filePaths = fps.map(fp => `${argv.directory}${path.sep}${fp}`)
|
||||
const parsedFiles = await parseMarkdown(processor, argv.directory, filePaths, argv.verbose)
|
||||
// const filteredContent = filterContent(cfg.plugins.filters, processedContent, argv.verbose)
|
||||
// await emitContent(argv.directory, output, cfg, filteredContent, argv.verbose)
|
||||
console.log(chalk.green(`Done in ${perf.timeSince()}`))
|
||||
|
||||
if (argv.serve) {
|
||||
const server = http.createServer(async (req, res) => {
|
||||
return serveHandler(req, res, {
|
||||
public: output,
|
||||
directoryListing: false
|
||||
})
|
||||
})
|
||||
server.listen(argv.port)
|
||||
console.log(`Started a Quartz server listening at http://localhost:${argv.port}`)
|
||||
console.log('hint: exit with ctrl+c')
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user