quartz-research-note/quartz/processors/emit.ts

46 lines
1.5 KiB
TypeScript
Raw Normal View History

import path from "path"
import fs from "fs"
import { PerfTimer } from "../perf"
import { getStaticResourcesFromPlugins } from "../plugins"
import { EmitCallback } from "../plugins/types"
import { ProcessedContent } from "../plugins/vfile"
import { FilePath } from "../path"
import { QuartzLogger } from "../log"
import { trace } from "../trace"
import { BuildCtx } from "../ctx"
2023-07-02 20:08:29 +00:00
2023-07-24 00:09:12 +00:00
export async function emitContent(ctx: BuildCtx, content: ProcessedContent[]) {
const { argv, cfg } = ctx
const perf = new PerfTimer()
const log = new QuartzLogger(ctx.argv.verbose)
log.start(`Emitting output files`)
const emit: EmitCallback = async ({ slug, ext, content }) => {
const pathToPage = path.join(argv.output, slug + ext) as FilePath
const dir = path.dirname(pathToPage)
await fs.promises.mkdir(dir, { recursive: true })
await fs.promises.writeFile(pathToPage, content)
return pathToPage
}
2023-07-22 23:06:36 +00:00
let emittedFiles = 0
const staticResources = getStaticResourcesFromPlugins(cfg.plugins)
for (const emitter of cfg.plugins.emitters) {
2023-06-04 17:37:43 +00:00
try {
2023-07-24 00:09:12 +00:00
const emitted = await emitter.emit(ctx, content, staticResources, emit)
2023-06-04 17:37:43 +00:00
emittedFiles += emitted.length
if (ctx.argv.verbose) {
2023-06-04 17:37:43 +00:00
for (const file of emitted) {
console.log(`[emit:${emitter.name}] ${file}`)
}
}
2023-06-04 17:37:43 +00:00
} catch (err) {
trace(`Failed to emit from plugin \`${emitter.name}\``, err as Error)
2023-07-23 18:49:26 +00:00
throw err
}
}
log.end(`Emitted ${emittedFiles} files to \`${argv.output}\` in ${perf.timeSince()}`)
}