mirror of
https://github.com/pxdg-afk/paxad.git
synced 2026-08-22 23:41:06 -04:00
70 lines
2.3 KiB
TypeScript
70 lines
2.3 KiB
TypeScript
import { FilePath, joinSegments, slugifyFilePath } from "../../util/path"
|
|
import { QuartzEmitterPlugin, QuartzPageTypePluginInstance } from "../types"
|
|
import path from "path"
|
|
import fs from "fs"
|
|
import { glob } from "../../util/glob"
|
|
import { Argv, BuildCtx } from "../../util/ctx"
|
|
import { QuartzConfig } from "../../cfg"
|
|
|
|
function getPageTypeExtensions(ctx: BuildCtx): Set<string> {
|
|
const extensions = new Set<string>()
|
|
const pageTypes = (ctx.cfg.plugins.pageTypes ?? []) as unknown as QuartzPageTypePluginInstance[]
|
|
for (const pt of pageTypes) {
|
|
if (pt.fileExtensions) {
|
|
for (const ext of pt.fileExtensions) {
|
|
extensions.add(ext)
|
|
}
|
|
}
|
|
}
|
|
return extensions
|
|
}
|
|
|
|
const filesToCopy = async (argv: Argv, cfg: QuartzConfig, excludeExtensions: Set<string>) => {
|
|
const excludePatterns = ["**/*.md", ...cfg.configuration.ignorePatterns]
|
|
for (const ext of excludeExtensions) {
|
|
excludePatterns.push(`**/*${ext}`)
|
|
}
|
|
return await glob("**", argv.directory, excludePatterns)
|
|
}
|
|
|
|
const copyFile = async (argv: Argv, fp: FilePath) => {
|
|
const src = joinSegments(argv.directory, fp) as FilePath
|
|
|
|
const name = slugifyFilePath(fp)
|
|
const dest = joinSegments(argv.output, name) as FilePath
|
|
|
|
const dir = path.dirname(dest) as FilePath
|
|
await fs.promises.mkdir(dir, { recursive: true })
|
|
|
|
await fs.promises.copyFile(src, dest)
|
|
return dest
|
|
}
|
|
|
|
export const Assets: QuartzEmitterPlugin = () => {
|
|
return {
|
|
name: "Assets",
|
|
async *emit(ctx) {
|
|
const excludeExtensions = getPageTypeExtensions(ctx)
|
|
const fps = await filesToCopy(ctx.argv, ctx.cfg, excludeExtensions)
|
|
for (const fp of fps) {
|
|
yield copyFile(ctx.argv, fp)
|
|
}
|
|
},
|
|
async *partialEmit(ctx, _content, _resources, changeEvents) {
|
|
const excludeExtensions = getPageTypeExtensions(ctx)
|
|
for (const changeEvent of changeEvents) {
|
|
const ext = path.extname(changeEvent.path)
|
|
if (ext === ".md" || excludeExtensions.has(ext)) continue
|
|
|
|
if (changeEvent.type === "add" || changeEvent.type === "change") {
|
|
yield copyFile(ctx.argv, changeEvent.path)
|
|
} else if (changeEvent.type === "delete") {
|
|
const name = slugifyFilePath(changeEvent.path)
|
|
const dest = joinSegments(ctx.argv.output, name) as FilePath
|
|
await fs.promises.unlink(dest)
|
|
}
|
|
}
|
|
},
|
|
}
|
|
}
|