| | |
| | | |
| | | import style from '../styles/listPage.scss' |
| | | import { PageList } from "../PageList" |
| | | import { clientSideSlug } from "../../path" |
| | | import { canonicalizeServer } from "../../path" |
| | | |
| | | function FolderContent(props: QuartzComponentProps) { |
| | | const { tree, fileData, allFiles } = props |
| | | const folderSlug = clientSideSlug(fileData.slug!) |
| | | const folderSlug = canonicalizeServer(fileData.slug!) |
| | | const allPagesInFolder = allFiles.filter(file => { |
| | | const fileSlug = file.slug ?? "" |
| | | const prefixed = fileSlug.startsWith(folderSlug) |
| | |
| | | ...props, |
| | | allFiles: allPagesInFolder |
| | | } |
| | | |
| | | |
| | | // @ts-ignore |
| | | const content = toJsxRuntime(tree, { Fragment, jsx, jsxs, elementAttributeNameCase: 'html' }) |
| | | return <div class="popover-hint"> |