2023-06-03 19:07:19 +00:00
|
|
|
import { GlobalConfiguration } from '../cfg'
|
|
|
|
import { QuartzComponent } from '../components/types'
|
2023-05-30 15:02:20 +00:00
|
|
|
import { StaticResources } from '../resources'
|
2023-07-02 20:08:29 +00:00
|
|
|
import { joinStyles } from '../theme'
|
2023-06-03 19:07:19 +00:00
|
|
|
import { EmitCallback, PluginTypes } from './types'
|
|
|
|
import styles from '../styles/base.scss'
|
2023-07-01 07:03:01 +00:00
|
|
|
|
2023-06-03 19:07:19 +00:00
|
|
|
export type ComponentResources = {
|
|
|
|
css: string[],
|
|
|
|
beforeDOMLoaded: string[],
|
|
|
|
afterDOMLoaded: string[]
|
|
|
|
}
|
|
|
|
|
2023-07-02 20:08:29 +00:00
|
|
|
export function getComponentResources(plugins: PluginTypes): ComponentResources {
|
2023-06-08 05:27:32 +00:00
|
|
|
const allComponents: Set<QuartzComponent> = new Set()
|
2023-06-03 19:07:19 +00:00
|
|
|
for (const emitter of plugins.emitters) {
|
|
|
|
const components = emitter.getQuartzComponents()
|
|
|
|
for (const component of components) {
|
|
|
|
allComponents.add(component)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-04 17:08:32 +00:00
|
|
|
const componentResources = {
|
|
|
|
css: new Set<string>(),
|
|
|
|
beforeDOMLoaded: new Set<string>(),
|
|
|
|
afterDOMLoaded: new Set<string>()
|
2023-06-03 19:07:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (const component of allComponents) {
|
|
|
|
const { css, beforeDOMLoaded, afterDOMLoaded } = component
|
|
|
|
if (css) {
|
2023-07-04 17:08:32 +00:00
|
|
|
componentResources.css.add(css)
|
2023-06-03 19:07:19 +00:00
|
|
|
}
|
|
|
|
if (beforeDOMLoaded) {
|
2023-07-04 17:08:32 +00:00
|
|
|
componentResources.beforeDOMLoaded.add(beforeDOMLoaded)
|
2023-06-03 19:07:19 +00:00
|
|
|
}
|
|
|
|
if (afterDOMLoaded) {
|
2023-07-04 17:08:32 +00:00
|
|
|
componentResources.afterDOMLoaded.add(afterDOMLoaded)
|
2023-06-03 19:07:19 +00:00
|
|
|
}
|
|
|
|
}
|
2023-07-04 17:08:32 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
css: [...componentResources.css],
|
|
|
|
beforeDOMLoaded: [...componentResources.beforeDOMLoaded],
|
|
|
|
afterDOMLoaded: [...componentResources.afterDOMLoaded]
|
|
|
|
}
|
2023-07-02 20:08:29 +00:00
|
|
|
}
|
2023-06-17 19:07:40 +00:00
|
|
|
|
2023-07-02 20:08:29 +00:00
|
|
|
function joinScripts(scripts: string[]): string {
|
|
|
|
// wrap with iife to prevent scope collision
|
|
|
|
return scripts.map(script => `(function () {${script}})();`).join("\n")
|
|
|
|
}
|
2023-06-03 19:07:19 +00:00
|
|
|
|
2023-07-02 20:08:29 +00:00
|
|
|
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)
|
|
|
|
})
|
|
|
|
])
|
2023-06-03 19:07:19 +00:00
|
|
|
return fps
|
2023-07-02 20:08:29 +00:00
|
|
|
|
2023-06-03 19:07:19 +00:00
|
|
|
}
|
2023-05-30 15:02:20 +00:00
|
|
|
|
|
|
|
export function getStaticResourcesFromPlugins(plugins: PluginTypes) {
|
|
|
|
const staticResources: StaticResources = {
|
|
|
|
css: [],
|
|
|
|
js: [],
|
|
|
|
}
|
|
|
|
|
2023-06-03 19:07:19 +00:00
|
|
|
for (const transformer of plugins.transformers) {
|
2023-06-17 20:08:06 +00:00
|
|
|
const res = transformer.externalResources ? transformer.externalResources() : {}
|
2023-05-30 15:02:20 +00:00
|
|
|
if (res?.js) {
|
2023-07-04 17:08:32 +00:00
|
|
|
staticResources.js.push(...res.js)
|
2023-05-30 15:02:20 +00:00
|
|
|
}
|
|
|
|
if (res?.css) {
|
2023-07-04 17:08:32 +00:00
|
|
|
staticResources.css.push(...res.css)
|
2023-05-30 15:02:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return staticResources
|
|
|
|
}
|
|
|
|
|
|
|
|
export * from './transformers'
|
|
|
|
export * from './filters'
|
|
|
|
export * from './emitters'
|
|
|
|
|
|
|
|
declare module 'vfile' {
|
|
|
|
// inserted in processors.ts
|
|
|
|
interface DataMap {
|
|
|
|
slug: string
|
|
|
|
filePath: string
|
|
|
|
}
|
|
|
|
}
|