nx/nx-dev/ui-markdoc/src/index.ts

151 lines
4.5 KiB
TypeScript

import {
Node,
parse,
RenderableTreeNode,
renderers,
Tokenizer,
transform,
} from '@markdoc/markdoc';
import { load as yamlLoad } from 'js-yaml';
import React, { ReactNode } from 'react';
import { Fence } from './lib/nodes/fence.component';
import { fence } from './lib/nodes/fence.schema';
import { Heading } from './lib/nodes/heading.component';
import { heading } from './lib/nodes/heading.schema';
import { getImageSchema } from './lib/nodes/image.schema';
import { CustomLink } from './lib/nodes/link.component';
import { link } from './lib/nodes/link.schema';
import { Callout } from './lib/tags/callout.component';
import { callout } from './lib/tags/callout.schema';
import { Card, Cards, LinkCard } from './lib/tags/cards.component';
import { card, cards, linkCard } from './lib/tags/cards.schema';
import { GithubRepository } from './lib/tags/github-repository.component';
import { githubRepository } from './lib/tags/github-repository.schema';
import { StackblitzButton } from './lib/tags/stackblitz-button.component';
import { stackblitzButton } from './lib/tags/stackblitz-button.schema';
import { Graph } from './lib/tags/graph.component';
import { graph } from './lib/tags/graph.schema';
import { Iframe } from './lib/tags/iframe.component';
import { iframe } from './lib/tags/iframe.schema';
import { InstallNxConsole } from './lib/tags/install-nx-console.component';
import { installNxConsole } from './lib/tags/install-nx-console.schema';
import { Persona, Personas } from './lib/tags/personas.component';
import { persona, personas } from './lib/tags/personas.schema';
import {
ShortEmbeds,
shortEmbeds,
shortVideo,
ShortVideo,
} from './lib/tags/short-embed';
import { SideBySide } from './lib/tags/side-by-side.component';
import { sideBySide } from './lib/tags/side-by-side.schema';
import { Tab, Tabs } from './lib/tags/tabs.component';
import { tab, tabs } from './lib/tags/tabs.schema';
import { YouTube, youtube } from './lib/tags/youtube.component';
import {
TerminalVideo,
terminalVideo,
} from './lib/tags/terminal-video.component';
import { VideoLink, videoLink } from './lib/tags/video-link.component';
// import { SvgAnimation, svgAnimation } from './lib/tags/svg-animation.component';
import { Pill } from './lib/tags/pill.component';
import { pill } from './lib/tags/pill.schema';
// TODO fix this export
export { GithubRepository } from './lib/tags/github-repository.component';
export const getMarkdocCustomConfig = (
documentFilePath: string
): { config: any; components: any } => ({
config: {
nodes: {
fence,
heading,
image: getImageSchema(documentFilePath),
link,
},
tags: {
callout,
card,
cards,
'link-card': linkCard,
'github-repository': githubRepository,
'stackblitz-button': stackblitzButton,
graph,
iframe,
'install-nx-console': installNxConsole,
persona,
personas,
pill,
'short-embeds': shortEmbeds,
'short-video': shortVideo,
'side-by-side': sideBySide,
tab,
tabs,
youtube,
'terminal-video': terminalVideo,
'video-link': videoLink,
// 'svg-animation': svgAnimation,
},
},
components: {
Callout,
Card,
Cards,
LinkCard,
CustomLink,
Fence,
GithubRepository,
StackblitzButton,
Graph,
Heading,
Iframe,
InstallNxConsole,
Persona,
Personas,
Pill,
ShortEmbeds,
ShortVideo,
SideBySide,
Tab,
Tabs,
YouTube,
TerminalVideo,
VideoLink,
// SvgAnimation,
},
});
const tokenizer = new Tokenizer({
// Per https://markdoc.dev/docs/syntax#comments this will be on by default in a future version
allowComments: true,
});
export const parseMarkdown: (markdown: string) => Node = (markdown) => {
const tokens = tokenizer.tokenize(markdown);
return parse(tokens);
};
export const renderMarkdown: (
documentContent: string,
options: { filePath: string }
) => {
metadata: Record<string, any>;
node: ReactNode;
treeNode: RenderableTreeNode;
} = (documentContent, options = { filePath: '' }) => {
const ast = parseMarkdown(documentContent);
const configuration = getMarkdocCustomConfig(options.filePath);
const treeNode = transform(ast, configuration.config);
return {
metadata: ast.attributes['frontmatter']
? (yamlLoad(ast.attributes['frontmatter']) as Record<string, any>)
: {},
node: renderers.react(transform(ast, configuration.config), React, {
components: configuration.components,
}),
treeNode,
};
};