feat: use DynamicLayout & import tocs
This commit is contained in:
parent
0e6e314055
commit
74b7ed291b
@ -9,12 +9,21 @@ import MainLayout from "./MainLayout";
|
|||||||
import Home from "./Home";
|
import Home from "./Home";
|
||||||
import DocsLayout from "./DocsLayout";
|
import DocsLayout from "./DocsLayout";
|
||||||
import ErrorBoundary from "./ErrorHandler";
|
import ErrorBoundary from "./ErrorHandler";
|
||||||
|
import DynamicLayout from "./DynamicLayout";
|
||||||
|
|
||||||
import DocsIntroduction from "./docs/docs/introduction.mdx";
|
import DocsIntroduction, {
|
||||||
import DocsInstallation from "./docs/docs/installation.mdx";
|
tableOfContents as docsIntroductionToc,
|
||||||
|
} from "./docs/docs/introduction.mdx";
|
||||||
|
import DocsInstallation, {
|
||||||
|
tableOfContents as docsInstallationToc,
|
||||||
|
} from "./docs/docs/installation.mdx";
|
||||||
|
|
||||||
import ComponentsButton from "./docs/components/Button.mdx";
|
import ComponentsButton, {
|
||||||
import ComponentsCheckbox from "./docs/components/Checkbox.mdx";
|
tableOfContents as componentsButtonToc,
|
||||||
|
} from "./docs/components/Button.mdx";
|
||||||
|
import ComponentsCheckbox, {
|
||||||
|
tableOfContents as componentsCheckboxToc,
|
||||||
|
} from "./docs/components/Checkbox.mdx";
|
||||||
|
|
||||||
const overrideComponents = {
|
const overrideComponents = {
|
||||||
pre: (props: any) => <pre {...props} className={`${props.className} hljs`} />,
|
pre: (props: any) => <pre {...props} className={`${props.className} hljs`} />,
|
||||||
@ -36,17 +45,40 @@ const router = createBrowserRouter(
|
|||||||
<Route path="/" element={<MainLayout />} errorElement={<ErrorBoundary />}>
|
<Route path="/" element={<MainLayout />} errorElement={<ErrorBoundary />}>
|
||||||
<Route index element={<Home />} />
|
<Route index element={<Home />} />
|
||||||
<Route path="docs" element={<DocsLayout />}>
|
<Route path="docs" element={<DocsLayout />}>
|
||||||
<Route index element={<DocsIntroduction />} />
|
<Route
|
||||||
<Route path="installation" element={<DocsInstallation />} />
|
index
|
||||||
|
element={
|
||||||
|
<DynamicLayout toc={docsIntroductionToc}>
|
||||||
|
<DocsIntroduction />
|
||||||
|
</DynamicLayout>
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<Route
|
||||||
|
path="installation"
|
||||||
|
element={
|
||||||
|
<DynamicLayout toc={docsInstallationToc}>
|
||||||
|
<DocsInstallation />
|
||||||
|
</DynamicLayout>
|
||||||
|
}
|
||||||
|
/>
|
||||||
<Route path="components">
|
<Route path="components">
|
||||||
<Route index loader={() => redirect("/docs/components/button")} />
|
<Route index loader={() => redirect("/docs/components/button")} />
|
||||||
<Route
|
<Route
|
||||||
path="button"
|
path="button"
|
||||||
element={<ComponentsButton components={overrideComponents} />}
|
element={
|
||||||
|
<DynamicLayout toc={componentsButtonToc}>
|
||||||
|
<ComponentsButton components={overrideComponents} />
|
||||||
|
</DynamicLayout>
|
||||||
|
}
|
||||||
/>
|
/>
|
||||||
<Route
|
<Route
|
||||||
path="checkbox"
|
path="checkbox"
|
||||||
element={<ComponentsCheckbox components={overrideComponents} />}
|
element={
|
||||||
|
<DynamicLayout toc={componentsCheckboxToc}>
|
||||||
|
<ComponentsCheckbox components={overrideComponents} />
|
||||||
|
</DynamicLayout>
|
||||||
|
}
|
||||||
|
/>
|
||||||
/>
|
/>
|
||||||
</Route>
|
</Route>
|
||||||
</Route>
|
</Route>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user