From 5fcba1bfaf8821fbb01cc7e67e01c553ffebfa39 Mon Sep 17 00:00:00 2001
From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 19 Jul 2024 17:02:03 +0000
Subject: [PATCH] chore(deps): bump mdast-util-to-hast from 13.1.0 to 13.2.0 (#1279)
---
quartz/plugins/index.ts | 114 +++++++++++++++------------------------------------------
1 files changed, 30 insertions(+), 84 deletions(-)
diff --git a/quartz/plugins/index.ts b/quartz/plugins/index.ts
index da55a22..554b117 100644
--- a/quartz/plugins/index.ts
+++ b/quartz/plugins/index.ts
@@ -1,86 +1,15 @@
-import { GlobalConfiguration } from '../cfg'
-import { QuartzComponent } from '../components/types'
-import { StaticResources } from '../resources'
-import { joinStyles } from '../theme'
-import { EmitCallback, PluginTypes } from './types'
-import styles from '../styles/base.scss'
+import { StaticResources } from "../util/resources"
+import { FilePath, FullSlug } from "../util/path"
+import { BuildCtx } from "../util/ctx"
-export type ComponentResources = {
- css: string[],
- beforeDOMLoaded: string[],
- afterDOMLoaded: string[]
-}
-
-export function getComponentResources(plugins: PluginTypes): ComponentResources {
- const allComponents: Set<QuartzComponent> = new Set()
- for (const emitter of plugins.emitters) {
- const components = emitter.getQuartzComponents()
- for (const component of components) {
- allComponents.add(component)
- }
- }
-
- const componentResources = {
- css: new Set<string>(),
- beforeDOMLoaded: new Set<string>(),
- afterDOMLoaded: new Set<string>()
- }
-
- for (const component of allComponents) {
- const { css, beforeDOMLoaded, afterDOMLoaded } = component
- if (css) {
- componentResources.css.add(css)
- }
- if (beforeDOMLoaded) {
- componentResources.beforeDOMLoaded.add(beforeDOMLoaded)
- }
- if (afterDOMLoaded) {
- componentResources.afterDOMLoaded.add(afterDOMLoaded)
- }
- }
-
- return {
- css: [...componentResources.css],
- beforeDOMLoaded: [...componentResources.beforeDOMLoaded],
- afterDOMLoaded: [...componentResources.afterDOMLoaded]
- }
-}
-
-function joinScripts(scripts: string[]): string {
- // wrap with iife to prevent scope collision
- return scripts.map(script => `(function () {${script}})();`).join("\n")
-}
-
-export async function emitComponentResources(cfg: GlobalConfiguration, res: ComponentResources, emit: EmitCallback): Promise<string[]> {
- const fps = await Promise.all([
- emit({
- slug: "index",
- ext: ".css",
- content: joinStyles(cfg.theme, styles, ...res.css)
- }),
- emit({
- slug: "prescript",
- ext: ".js",
- content: joinScripts(res.beforeDOMLoaded)
- }),
- emit({
- slug: "postscript",
- ext: ".js",
- content: joinScripts(res.afterDOMLoaded)
- })
- ])
- return fps
-
-}
-
-export function getStaticResourcesFromPlugins(plugins: PluginTypes) {
+export function getStaticResourcesFromPlugins(ctx: BuildCtx) {
const staticResources: StaticResources = {
css: [],
js: [],
}
- for (const transformer of plugins.transformers) {
- const res = transformer.externalResources ? transformer.externalResources() : {}
+ for (const transformer of ctx.cfg.plugins.transformers) {
+ const res = transformer.externalResources ? transformer.externalResources(ctx) : {}
if (res?.js) {
staticResources.js.push(...res.js)
}
@@ -89,18 +18,35 @@
}
}
+ // if serving locally, listen for rebuilds and reload the page
+ if (ctx.argv.serve) {
+ const wsUrl = ctx.argv.remoteDevHost
+ ? `wss://${ctx.argv.remoteDevHost}:${ctx.argv.wsPort}`
+ : `ws://localhost:${ctx.argv.wsPort}`
+
+ staticResources.js.push({
+ loadTime: "afterDOMReady",
+ contentType: "inline",
+ script: `
+ const socket = new WebSocket('${wsUrl}')
+ // reload(true) ensures resources like images and scripts are fetched again in firefox
+ socket.addEventListener('message', () => document.location.reload(true))
+ `,
+ })
+ }
+
return staticResources
}
-export * from './transformers'
-export * from './filters'
-export * from './emitters'
+export * from "./transformers"
+export * from "./filters"
+export * from "./emitters"
-declare module 'vfile' {
+declare module "vfile" {
// inserted in processors.ts
interface DataMap {
- slug: string
- allSlugs: string[]
- filePath: string
+ slug: FullSlug
+ filePath: FilePath
+ relativePath: FilePath
}
}
--
Gitblit v1.10.0