You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.4 KiB
74 lines
2.4 KiB
import assert from 'assert';
|
|
import { unistUtilVisit, type HastRoot, type UnifiedTransformer } from 'dumi';
|
|
|
|
/**
|
|
* plugin for modify hast tree when docs compiling
|
|
*/
|
|
function rehypeAntd(): UnifiedTransformer<HastRoot> {
|
|
return (tree, vFile) => {
|
|
const { filename } = vFile.data.frontmatter as any;
|
|
|
|
unistUtilVisit.visit(tree, 'element', (node) => {
|
|
if (node.tagName === 'DumiDemoGrid') {
|
|
// replace DumiDemoGrid to DemoWrapper, to implement demo toolbar
|
|
node.tagName = 'DemoWrapper';
|
|
} else if (node.tagName === 'ResourceCards') {
|
|
const propNames = ['title', 'cover', 'description', 'src', 'official'];
|
|
const contentNode = node.children[0];
|
|
|
|
assert(
|
|
contentNode.type === 'text',
|
|
`ResourceCards content must be plain text!\nat ${filename}`,
|
|
);
|
|
|
|
// clear children
|
|
node.children = [];
|
|
|
|
// generate JSX props
|
|
(node as any).JSXAttributes = [
|
|
{
|
|
type: 'JSXAttribute',
|
|
name: 'resources',
|
|
value: JSON.stringify(
|
|
contentNode.value
|
|
.trim()
|
|
.split('\n')
|
|
.reduce<any>((acc, cur) => {
|
|
// match text from ` - 桌面组件 Sketch 模板包`
|
|
const [, isProp, val] = cur.match(/(\s+)?-\s(.+)/)!;
|
|
|
|
if (!isProp) {
|
|
// create items when match title
|
|
acc.push({ [propNames[0]]: val });
|
|
} else {
|
|
// add props when match others
|
|
const prev = acc[acc.length - 1];
|
|
|
|
prev[propNames[Object.keys(prev).length]] = val;
|
|
}
|
|
|
|
return acc;
|
|
}, []),
|
|
),
|
|
},
|
|
];
|
|
} else if (
|
|
node.type === 'element' &&
|
|
node.tagName === 'Table' &&
|
|
/^components/.test(filename)
|
|
) {
|
|
if (!node.properties) return;
|
|
node.properties.className ??= [];
|
|
(node.properties.className as string[]).push('component-api-table');
|
|
} else if (node.type === 'element' && (node.tagName === 'Link' || node.tagName === 'a')) {
|
|
const { tagName } = node;
|
|
node.properties.sourceType = tagName;
|
|
node.tagName = 'LocaleLink';
|
|
} else if (node.type === 'element' && node.tagName === 'video') {
|
|
node.tagName = 'VideoPlayer';
|
|
}
|
|
});
|
|
};
|
|
}
|
|
|
|
export default rehypeAntd;
|
|
|