2024-02-25 19:58:21 -05:00
|
|
|
import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "../types"
|
2023-07-01 00:03:01 -07:00
|
|
|
import path from "path"
|
|
|
|
|
2023-07-22 17:27:41 -07:00
|
|
|
import style from "../styles/listPage.scss"
|
2023-07-01 00:03:01 -07:00
|
|
|
import { PageList } from "../PageList"
|
2024-02-11 10:57:24 -08:00
|
|
|
import { stripSlashes, simplifySlug } from "../../util/path"
|
2023-08-20 01:08:18 -07:00
|
|
|
import { Root } from "hast"
|
2023-10-21 21:05:46 -07:00
|
|
|
import { htmlToJsx } from "../../util/jsx"
|
2024-02-04 20:57:10 -08:00
|
|
|
import { i18n } from "../../i18n"
|
2023-07-01 00:03:01 -07:00
|
|
|
|
2024-01-28 07:21:32 +01:00
|
|
|
interface FolderContentOptions {
|
|
|
|
/**
|
|
|
|
* Whether to display number of folders
|
|
|
|
*/
|
|
|
|
showFolderCount: boolean
|
|
|
|
}
|
2023-07-22 17:27:41 -07:00
|
|
|
|
2024-01-28 07:21:32 +01:00
|
|
|
const defaultOptions: FolderContentOptions = {
|
|
|
|
showFolderCount: true,
|
2023-07-01 00:03:01 -07:00
|
|
|
}
|
|
|
|
|
2024-01-28 07:21:32 +01:00
|
|
|
export default ((opts?: Partial<FolderContentOptions>) => {
|
|
|
|
const options: FolderContentOptions = { ...defaultOptions, ...opts }
|
|
|
|
|
2024-02-25 19:58:21 -05:00
|
|
|
const FolderContent: QuartzComponent = (props: QuartzComponentProps) => {
|
2024-02-04 04:55:24 +01:00
|
|
|
const { tree, fileData, allFiles, cfg } = props
|
2024-02-11 10:57:24 -08:00
|
|
|
const folderSlug = stripSlashes(simplifySlug(fileData.slug!))
|
2024-01-28 07:21:32 +01:00
|
|
|
const allPagesInFolder = allFiles.filter((file) => {
|
2024-02-11 10:57:24 -08:00
|
|
|
const fileSlug = stripSlashes(simplifySlug(file.slug!))
|
2024-01-28 07:21:32 +01:00
|
|
|
const prefixed = fileSlug.startsWith(folderSlug) && fileSlug !== folderSlug
|
|
|
|
const folderParts = folderSlug.split(path.posix.sep)
|
|
|
|
const fileParts = fileSlug.split(path.posix.sep)
|
|
|
|
const isDirectChild = fileParts.length === folderParts.length + 1
|
|
|
|
return prefixed && isDirectChild
|
|
|
|
})
|
2024-01-29 07:12:48 +01:00
|
|
|
const cssClasses: string[] = fileData.frontmatter?.cssclasses ?? []
|
|
|
|
const classes = ["popover-hint", ...cssClasses].join(" ")
|
2024-01-28 07:21:32 +01:00
|
|
|
const listProps = {
|
|
|
|
...props,
|
|
|
|
allFiles: allPagesInFolder,
|
|
|
|
}
|
|
|
|
|
|
|
|
const content =
|
|
|
|
(tree as Root).children.length === 0
|
|
|
|
? fileData.description
|
|
|
|
: htmlToJsx(fileData.filePath!, tree)
|
|
|
|
|
|
|
|
return (
|
2024-01-29 07:12:48 +01:00
|
|
|
<div class={classes}>
|
2024-03-31 12:44:20 -04:00
|
|
|
<article>{content}</article>
|
2024-01-29 07:52:04 +01:00
|
|
|
<div class="page-listing">
|
|
|
|
{options.showFolderCount && (
|
2024-02-04 04:55:24 +01:00
|
|
|
<p>
|
2024-02-04 20:57:10 -08:00
|
|
|
{i18n(cfg.locale).pages.folderContent.itemsUnderFolder({
|
|
|
|
count: allPagesInFolder.length,
|
|
|
|
})}
|
2024-02-04 04:55:24 +01:00
|
|
|
</p>
|
2024-01-29 07:52:04 +01:00
|
|
|
)}
|
|
|
|
<div>
|
|
|
|
<PageList {...listProps} />
|
|
|
|
</div>
|
2024-01-28 07:21:32 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
FolderContent.css = style + PageList.css
|
|
|
|
return FolderContent
|
|
|
|
}) satisfies QuartzComponentConstructor
|