Files
supabase/apps/design-system/lib/toc.ts
Ivan Vasilov 1cd1ebfc7f chire: Sort imports in all packages, cms, design-system and ui-library apps (#41610)
Sorted all imports in all packages, `cms`, `design-system` and
`ui-library` apps by running `pnpm format` on them.

All changes in this PR are done by the script.
2026-02-05 13:54:10 +01:00

79 lines
1.5 KiB
TypeScript

// @ts-nocheck
// TODO: I'll fix this later.
import { toc } from 'mdast-util-toc'
import { remark } from 'remark'
import { visit } from 'unist-util-visit'
const textTypes = ['text', 'emphasis', 'strong', 'inlineCode']
function flattenNode(node) {
const p = []
visit(node, (node) => {
if (!textTypes.includes(node.type)) return
p.push(node.value)
})
return p.join(``)
}
interface Item {
title: string
url: string
items?: Item[]
}
interface Items {
items?: Item[]
}
function getItems(node, current): Items {
if (!node) {
return {}
}
if (node.type === 'paragraph') {
visit(node, (item) => {
if (item.type === 'link') {
current.url = item.url
current.title = flattenNode(node)
}
if (item.type === 'text') {
current.title = flattenNode(node)
}
})
return current
}
if (node.type === 'list') {
current.items = node.children.map((i) => getItems(i, {}))
return current
} else if (node.type === 'listItem') {
const heading = getItems(node.children[0], {})
if (node.children.length > 1) {
getItems(node.children[1], heading)
}
return heading
}
return {}
}
const getToc = () => (node, file) => {
const table = toc(node)
const items = getItems(table.map, {})
file.data = items
}
export type TableOfContents = Items
export async function getTableOfContents(content: string): Promise<TableOfContents> {
const result = await remark().use(getToc).process(content)
return result.data
}