refactor static and asset emission to be actual emitter plugins
This commit is contained in:
		@@ -13,12 +13,12 @@ export const AliasRedirects: QuartzEmitterPlugin = () => ({
 | 
			
		||||
  getQuartzComponents() {
 | 
			
		||||
    return []
 | 
			
		||||
  },
 | 
			
		||||
  async emit(contentFolder, _cfg, content, _resources, emit): Promise<FilePath[]> {
 | 
			
		||||
  async emit({argv}, content, _resources, emit): Promise<FilePath[]> {
 | 
			
		||||
    const fps: FilePath[] = []
 | 
			
		||||
 | 
			
		||||
    for (const [_tree, file] of content) {
 | 
			
		||||
      const ogSlug = canonicalizeServer(file.data.slug!)
 | 
			
		||||
      const dir = path.relative(contentFolder, file.dirname ?? contentFolder)
 | 
			
		||||
      const dir = path.relative(argv.directory, file.dirname ?? argv.directory)
 | 
			
		||||
 | 
			
		||||
      let aliases: CanonicalSlug[] = []
 | 
			
		||||
      if (file.data.frontmatter?.aliases) {
 | 
			
		||||
 
 | 
			
		||||
@@ -0,0 +1,36 @@
 | 
			
		||||
import { globbyStream } from "globby"
 | 
			
		||||
import {
 | 
			
		||||
  FilePath, slugifyFilePath,
 | 
			
		||||
} from "../../path"
 | 
			
		||||
import { QuartzEmitterPlugin } from "../types"
 | 
			
		||||
import path from "path"
 | 
			
		||||
import fs from "fs"
 | 
			
		||||
 | 
			
		||||
export const Assets: QuartzEmitterPlugin = () => ({
 | 
			
		||||
  name: "Assets",
 | 
			
		||||
  getQuartzComponents() {
 | 
			
		||||
    return []
 | 
			
		||||
  },
 | 
			
		||||
  async emit({ argv }, _content, _resources, _emit): Promise<FilePath[]> {
 | 
			
		||||
    // glob all non MD/MDX/HTML files in content folder and copy it over
 | 
			
		||||
    const assetsPath = path.join(argv.output, "assets")
 | 
			
		||||
 | 
			
		||||
    const fps: FilePath[] = []
 | 
			
		||||
    for await (const rawFp of globbyStream("**", {
 | 
			
		||||
      ignore: ["**/*.md"],
 | 
			
		||||
      cwd: argv.directory,
 | 
			
		||||
    })) {
 | 
			
		||||
      const fp = rawFp as FilePath
 | 
			
		||||
      const ext = path.extname(fp)
 | 
			
		||||
      const src = path.join(argv.directory, fp) as FilePath
 | 
			
		||||
      const name = (slugifyFilePath(fp as FilePath) + ext) as FilePath
 | 
			
		||||
      const dest = path.join(assetsPath, name) as FilePath
 | 
			
		||||
      const dir = path.dirname(dest) as FilePath
 | 
			
		||||
      await fs.promises.mkdir(dir, { recursive: true }) // ensure dir exists
 | 
			
		||||
      await fs.promises.copyFile(src, dest)
 | 
			
		||||
      fps.push(path.join("assets", fp) as FilePath)
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return fps
 | 
			
		||||
  },
 | 
			
		||||
})
 | 
			
		||||
 
 | 
			
		||||
@@ -68,7 +68,8 @@ export const ContentIndex: QuartzEmitterPlugin<Partial<Options>> = (opts) => {
 | 
			
		||||
  opts = { ...defaultOptions, ...opts }
 | 
			
		||||
  return {
 | 
			
		||||
    name: "ContentIndex",
 | 
			
		||||
    async emit(_contentDir, cfg, content, _resources, emit) {
 | 
			
		||||
    async emit(ctx, content, _resources, emit) {
 | 
			
		||||
      const cfg = ctx.cfg.configuration
 | 
			
		||||
      const emitted: FilePath[] = []
 | 
			
		||||
      const linkIndex: ContentIndex = new Map()
 | 
			
		||||
      for (const [_tree, file] of content) {
 | 
			
		||||
 
 | 
			
		||||
@@ -22,7 +22,8 @@ export const ContentPage: QuartzEmitterPlugin<FullPageLayout> = (opts) => {
 | 
			
		||||
    getQuartzComponents() {
 | 
			
		||||
      return [Head, Header, Body, ...header, ...beforeBody, Content, ...left, ...right, Footer]
 | 
			
		||||
    },
 | 
			
		||||
    async emit(_contentDir, cfg, content, resources, emit): Promise<FilePath[]> {
 | 
			
		||||
    async emit(ctx, content, resources, emit): Promise<FilePath[]> {
 | 
			
		||||
      const cfg = ctx.cfg.configuration
 | 
			
		||||
      const fps: FilePath[] = []
 | 
			
		||||
      const allFiles = content.map((c) => c[1].data)
 | 
			
		||||
      for (const [tree, file] of content) {
 | 
			
		||||
 
 | 
			
		||||
@@ -22,9 +22,10 @@ export const FolderPage: QuartzEmitterPlugin<FullPageLayout> = (opts) => {
 | 
			
		||||
    getQuartzComponents() {
 | 
			
		||||
      return [Head, Header, Body, ...header, ...beforeBody, Content, ...left, ...right, Footer]
 | 
			
		||||
    },
 | 
			
		||||
    async emit(_contentDir, cfg, content, resources, emit): Promise<FilePath[]> {
 | 
			
		||||
    async emit(ctx, content, resources, emit): Promise<FilePath[]> {
 | 
			
		||||
      const fps: FilePath[] = []
 | 
			
		||||
      const allFiles = content.map((c) => c[1].data)
 | 
			
		||||
      const cfg = ctx.cfg.configuration
 | 
			
		||||
 | 
			
		||||
      const folders: Set<CanonicalSlug> = new Set(
 | 
			
		||||
        allFiles.flatMap((data) => {
 | 
			
		||||
 
 | 
			
		||||
@@ -3,3 +3,5 @@ export { TagPage } from "./tagPage"
 | 
			
		||||
export { FolderPage } from "./folderPage"
 | 
			
		||||
export { ContentIndex } from "./contentIndex"
 | 
			
		||||
export { AliasRedirects } from "./aliases"
 | 
			
		||||
export { Assets } from "./assets"
 | 
			
		||||
export { Static } from "./static"
 | 
			
		||||
							
								
								
									
										21
									
								
								quartz/plugins/emitters/static.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								quartz/plugins/emitters/static.ts
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,21 @@
 | 
			
		||||
import { globby } from "globby"
 | 
			
		||||
import {
 | 
			
		||||
  FilePath, QUARTZ
 | 
			
		||||
} from "../../path"
 | 
			
		||||
import { QuartzEmitterPlugin } from "../types"
 | 
			
		||||
import path from "path"
 | 
			
		||||
import fs from "fs"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
export const Static: QuartzEmitterPlugin = () => ({
 | 
			
		||||
  name: "Static",
 | 
			
		||||
  getQuartzComponents() {
 | 
			
		||||
    return []
 | 
			
		||||
  },
 | 
			
		||||
  async emit({ argv }, _content, _resources, _emit): Promise<FilePath[]> {
 | 
			
		||||
    const staticPath = path.join(QUARTZ, "static")
 | 
			
		||||
    const fps = await globby("*", { cwd: staticPath })
 | 
			
		||||
    await fs.promises.cp(staticPath, path.join(argv.output, "static"), { recursive: true })
 | 
			
		||||
    return fps.map(fp => path.join("static", fp)) as FilePath[]
 | 
			
		||||
  },
 | 
			
		||||
})
 | 
			
		||||
@@ -21,9 +21,10 @@ export const TagPage: QuartzEmitterPlugin<FullPageLayout> = (opts) => {
 | 
			
		||||
    getQuartzComponents() {
 | 
			
		||||
      return [Head, Header, Body, ...header, ...beforeBody, Content, ...left, ...right, Footer]
 | 
			
		||||
    },
 | 
			
		||||
    async emit(_contentDir, cfg, content, resources, emit): Promise<FilePath[]> {
 | 
			
		||||
    async emit(ctx, content, resources, emit): Promise<FilePath[]> {
 | 
			
		||||
      const fps: FilePath[] = []
 | 
			
		||||
      const allFiles = content.map((c) => c[1].data)
 | 
			
		||||
      const cfg = ctx.cfg.configuration
 | 
			
		||||
 | 
			
		||||
      const tags: Set<string> = new Set(allFiles.flatMap((data) => data.frontmatter?.tags ?? []))
 | 
			
		||||
      const tagDescriptions: Record<string, ProcessedContent> = Object.fromEntries(
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user