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