cfcf2e2ffd
* wip: scrappy implementation. It works! 🥳
* chore: add code comments on inline utils
* fix: code cleanup, run on experimental.assets
* feat: support ~/assets alias
* fix: spoof `astro:assets` when outside experimental
* test: image paths in dev and prod
* feat: support any vite alias with ctx.resolve
* fix: avoid trying to process absolute paths
* fix: raise helpful error for invalid vite paths
* refactor: revert URL support on emitAsset
* chore: lint
* refactor: expose emitESMImage from assets base
* wip: why doesn't assets exist
* scary chore: make @astrojs/markdoc truly depend on astro
* fix: import emitESMImage straight from dist
* chore: remove type def from assets package
* chore: screw it, just ts ignore
* deps: rollup types
* refactor: optimize images during parse step
* chore: remove unneeded `.flat()`
* fix: use file-based relative paths
* fix: add back helpful error
* chore: changeset
* deps: move astro back to dev dep
* fix: put emit assets behind flag
* chore: change to markdoc patch
90 lines
2.5 KiB
TypeScript
90 lines
2.5 KiB
TypeScript
import type { AstroInstance } from 'astro';
|
|
import type { RenderableTreeNode } from '@markdoc/markdoc';
|
|
import { createComponent, renderComponent, render } from 'astro/runtime/server/index.js';
|
|
// @ts-expect-error Cannot find module 'astro:markdoc-assets' or its corresponding type declarations
|
|
import { Image } from 'astro:markdoc-assets';
|
|
import Markdoc from '@markdoc/markdoc';
|
|
import { MarkdocError, isCapitalized } from '../dist/utils.js';
|
|
|
|
export type TreeNode =
|
|
| {
|
|
type: 'text';
|
|
content: string;
|
|
}
|
|
| {
|
|
type: 'component';
|
|
component: AstroInstance['default'];
|
|
props: Record<string, any>;
|
|
children: TreeNode[];
|
|
}
|
|
| {
|
|
type: 'element';
|
|
tag: string;
|
|
attributes: Record<string, any>;
|
|
children: TreeNode[];
|
|
};
|
|
|
|
export const ComponentNode = createComponent({
|
|
factory(result: any, { treeNode }: { treeNode: TreeNode }) {
|
|
if (treeNode.type === 'text') return render`${treeNode.content}`;
|
|
const slots = {
|
|
default: () =>
|
|
render`${treeNode.children.map((child) =>
|
|
renderComponent(result, 'ComponentNode', ComponentNode, { treeNode: child })
|
|
)}`,
|
|
};
|
|
if (treeNode.type === 'component') {
|
|
return renderComponent(
|
|
result,
|
|
treeNode.component.name,
|
|
treeNode.component,
|
|
treeNode.props,
|
|
slots
|
|
);
|
|
}
|
|
return renderComponent(result, treeNode.tag, treeNode.tag, treeNode.attributes, slots);
|
|
},
|
|
propagation: 'none',
|
|
});
|
|
|
|
const builtInComponents: Record<string, AstroInstance['default']> = {
|
|
Image,
|
|
};
|
|
|
|
export function createTreeNode(
|
|
node: RenderableTreeNode,
|
|
userComponents: Record<string, AstroInstance['default']> = {}
|
|
): TreeNode {
|
|
const components = { ...userComponents, ...builtInComponents };
|
|
|
|
if (typeof node === 'string' || typeof node === 'number') {
|
|
return { type: 'text', content: String(node) };
|
|
} else if (node === null || typeof node !== 'object' || !Markdoc.Tag.isTag(node)) {
|
|
return { type: 'text', content: '' };
|
|
}
|
|
|
|
if (node.name in components) {
|
|
const component = components[node.name];
|
|
const props = node.attributes;
|
|
const children = node.children.map((child) => createTreeNode(child, components));
|
|
|
|
return {
|
|
type: 'component',
|
|
component,
|
|
props,
|
|
children,
|
|
};
|
|
} else if (isCapitalized(node.name)) {
|
|
throw new MarkdocError({
|
|
message: `Unable to render ${JSON.stringify(node.name)}.`,
|
|
hint: 'Did you add this to the "components" prop on your <Content /> component?',
|
|
});
|
|
} else {
|
|
return {
|
|
type: 'element',
|
|
tag: node.name,
|
|
attributes: node.attributes,
|
|
children: node.children.map((child) => createTreeNode(child, components)),
|
|
};
|
|
}
|
|
}
|