2023-06-08 12:27:32 +07:00
|
|
|
import { ComponentType, JSX } from "preact"
|
2023-08-17 12:09:11 +07:00
|
|
|
import { StaticResources } from "../util/resources"
|
2023-06-08 12:27:32 +07:00
|
|
|
import { QuartzPluginData } from "../plugins/vfile"
|
|
|
|
import { GlobalConfiguration } from "../cfg"
|
2023-06-10 13:06:02 +07:00
|
|
|
import { Node } from "hast"
|
2023-06-04 02:07:19 +07:00
|
|
|
|
2023-06-08 12:27:32 +07:00
|
|
|
export type QuartzComponentProps = {
|
|
|
|
externalResources: StaticResources
|
|
|
|
fileData: QuartzPluginData
|
|
|
|
cfg: GlobalConfiguration
|
2023-07-03 03:08:29 +07:00
|
|
|
children: (QuartzComponent | JSX.Element)[]
|
2023-12-19 00:48:40 +07:00
|
|
|
tree: Node
|
2023-06-20 10:37:45 +07:00
|
|
|
allFiles: QuartzPluginData[]
|
2023-07-23 07:27:41 +07:00
|
|
|
displayClass?: "mobile-only" | "desktop-only"
|
2023-07-05 06:48:36 +07:00
|
|
|
} & JSX.IntrinsicAttributes & {
|
2023-07-23 07:27:41 +07:00
|
|
|
[key: string]: any
|
|
|
|
}
|
2023-06-08 12:27:32 +07:00
|
|
|
|
|
|
|
export type QuartzComponent = ComponentType<QuartzComponentProps> & {
|
2023-07-23 07:27:41 +07:00
|
|
|
css?: string
|
|
|
|
beforeDOMLoaded?: string
|
|
|
|
afterDOMLoaded?: string
|
2023-06-04 02:07:19 +07:00
|
|
|
}
|
2023-06-12 13:26:43 +07:00
|
|
|
|
2023-07-23 07:27:41 +07:00
|
|
|
export type QuartzComponentConstructor<Options extends object | undefined = undefined> = (
|
|
|
|
opts: Options,
|
|
|
|
) => QuartzComponent
|