import { Component, createSignal, onMount, Show } from "solid-js"; import { generateToc, type FileNode, type TocNode } from "../data-loader"; import { useLocation } from "@solidjs/router"; import { FileTreeNode, HeadingNode } from "./FileTree"; interface SidebarProps { isOpen: boolean; onClose: () => void; } /** * 侧边栏组件 */ export const Sidebar: Component = (props) => { const location = useLocation(); const [fileTree, setFileTree] = createSignal([]); const [pathHeadings, setPathHeadings] = createSignal< Record >({}); const [currentFileHeadings, setCurrentFileHeadings] = createSignal( [], ); onMount(async () => { const toc = await generateToc(); setFileTree(toc.fileTree); setPathHeadings(toc.pathHeadings); }); // 根据当前路径更新当前文件的标题列表 onMount(() => { const updateHeadings = () => { const pathname = location.pathname; const headings = pathHeadings()[pathname] || pathHeadings()[`${pathname}.md`]; setCurrentFileHeadings(headings || []); }; updateHeadings(); }); return ( <> {/* 遮罩层 */}
{/* 侧边栏 */} ); };