2023-08-16 22:04:15 -07:00
|
|
|
import { FilePath, QUARTZ, joinSegments } from "../../util/path"
|
2023-07-23 17:07:19 -07:00
|
|
|
import { QuartzEmitterPlugin } from "../types"
|
|
|
|
import fs from "fs"
|
2023-08-16 22:04:15 -07:00
|
|
|
import { glob } from "../../util/glob"
|
2024-02-09 15:07:32 +00:00
|
|
|
import DepGraph from "../../depgraph"
|
2023-07-23 17:07:19 -07:00
|
|
|
|
|
|
|
export const Static: QuartzEmitterPlugin = () => ({
|
|
|
|
name: "Static",
|
|
|
|
getQuartzComponents() {
|
|
|
|
return []
|
|
|
|
},
|
2024-02-09 15:07:32 +00:00
|
|
|
async getDependencyGraph({ argv, cfg }, _content, _resources) {
|
|
|
|
const graph = new DepGraph<FilePath>()
|
|
|
|
|
|
|
|
const staticPath = joinSegments(QUARTZ, "static")
|
|
|
|
const fps = await glob("**", staticPath, cfg.configuration.ignorePatterns)
|
|
|
|
for (const fp of fps) {
|
|
|
|
graph.addEdge(
|
|
|
|
joinSegments("static", fp) as FilePath,
|
|
|
|
joinSegments(argv.output, "static", fp) as FilePath,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return graph
|
|
|
|
},
|
2024-01-18 18:56:14 +00:00
|
|
|
async emit({ argv, cfg }, _content, _resources): Promise<FilePath[]> {
|
2023-08-02 23:04:26 -07:00
|
|
|
const staticPath = joinSegments(QUARTZ, "static")
|
2023-08-02 22:10:13 -07:00
|
|
|
const fps = await glob("**", staticPath, cfg.configuration.ignorePatterns)
|
2023-11-15 09:43:30 -08:00
|
|
|
await fs.promises.cp(staticPath, joinSegments(argv.output, "static"), {
|
|
|
|
recursive: true,
|
|
|
|
dereference: true,
|
|
|
|
})
|
2023-08-11 23:25:44 -07:00
|
|
|
return fps.map((fp) => joinSegments(argv.output, "static", fp)) as FilePath[]
|
2023-07-23 17:07:19 -07:00
|
|
|
},
|
|
|
|
})
|