feat: make automatic docs routing
This commit is contained in:
parent
146b43cffb
commit
5201dbeda9
@ -11,46 +11,8 @@ import DocsLayout from "./DocsLayout";
|
|||||||
import ErrorBoundary from "./ErrorHandler";
|
import ErrorBoundary from "./ErrorHandler";
|
||||||
import DynamicLayout from "./DynamicLayout";
|
import DynamicLayout from "./DynamicLayout";
|
||||||
|
|
||||||
import DocsIntroduction, {
|
|
||||||
tableOfContents as docsIntroductionToc,
|
|
||||||
} from "./docs/docs/introduction.mdx";
|
|
||||||
import DocsInstallation, {
|
|
||||||
tableOfContents as docsInstallationToc,
|
|
||||||
} from "./docs/docs/installation.mdx";
|
|
||||||
|
|
||||||
import ComponentsButton, {
|
|
||||||
tableOfContents as componentsButtonToc,
|
|
||||||
} from "./docs/components/Button.mdx";
|
|
||||||
import ComponentsCheckbox, {
|
|
||||||
tableOfContents as componentsCheckboxToc,
|
|
||||||
} from "./docs/components/Checkbox.mdx";
|
|
||||||
import ComponentsDialog, {
|
|
||||||
tableOfContents as componentsDialogToc,
|
|
||||||
} from "./docs/components/Dialog.mdx";
|
|
||||||
import ComponentsDrawer, {
|
|
||||||
tableOfContents as componentsDrawerToc,
|
|
||||||
} from "./docs/components/Drawer.mdx";
|
|
||||||
import ComponentsInput, {
|
|
||||||
tableOfContents as componentsInputToc,
|
|
||||||
} from "./docs/components/Input.mdx";
|
|
||||||
import ComponentsLabel, {
|
|
||||||
tableOfContents as componentsLabelToc,
|
|
||||||
} from "./docs/components/Label.mdx";
|
|
||||||
import ComponentsSwitch, {
|
|
||||||
tableOfContents as componentsSwitchToc,
|
|
||||||
} from "./docs/components/Switch.mdx";
|
|
||||||
import ComponentsTabs, {
|
|
||||||
tableOfContents as componentsTabsToc,
|
|
||||||
} from "./docs/components/Tabs.mdx";
|
|
||||||
import ComponentsToast, {
|
|
||||||
tableOfContents as componentsToastToc,
|
|
||||||
} from "./docs/components/Toast.mdx";
|
|
||||||
import ComponentsTooltip, {
|
|
||||||
tableOfContents as componentsTooltipToc,
|
|
||||||
} from "./docs/components/Tooltip.mdx";
|
|
||||||
|
|
||||||
import { ForwardedRef, forwardRef, useContext, useEffect, useRef } from "react";
|
|
||||||
import { HeadingContext } from "./HeadingContext";
|
import { HeadingContext } from "./HeadingContext";
|
||||||
|
import { ForwardedRef, forwardRef, useContext, useEffect, useRef } from "react";
|
||||||
|
|
||||||
function buildThresholdList() {
|
function buildThresholdList() {
|
||||||
let thresholds = [];
|
let thresholds = [];
|
||||||
@ -134,121 +96,48 @@ const overrideComponents = {
|
|||||||
h6: forwardRef<HTMLHeadingElement, any>(HashedHeaders("h6")),
|
h6: forwardRef<HTMLHeadingElement, any>(HashedHeaders("h6")),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const docsModules = import.meta.glob("./docs/**/*.mdx");
|
||||||
|
|
||||||
|
const routes = Object.keys(docsModules).map((path) => {
|
||||||
|
const sfPath = path.replace("./docs", "").replace(".mdx", "");
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Route
|
||||||
|
key={path}
|
||||||
|
path={path.replace("./docs", "/docs").replace(".mdx", "")}
|
||||||
|
lazy={async () => {
|
||||||
|
const { default: C, tableOfContents } = await import(
|
||||||
|
`./docs${sfPath}.mdx`
|
||||||
|
);
|
||||||
|
return {
|
||||||
|
Component: () => (
|
||||||
|
<DynamicLayout toc={tableOfContents}>
|
||||||
|
<C components={overrideComponents} />
|
||||||
|
</DynamicLayout>
|
||||||
|
),
|
||||||
|
};
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
const router = createBrowserRouter(
|
const router = createBrowserRouter(
|
||||||
createRoutesFromElements(
|
createRoutesFromElements(
|
||||||
<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
|
<Route
|
||||||
index
|
path="components"
|
||||||
element={
|
loader={() => redirect("/docs/components/button")}
|
||||||
<DynamicLayout toc={docsIntroductionToc}>
|
|
||||||
<DocsIntroduction />
|
|
||||||
</DynamicLayout>
|
|
||||||
}
|
|
||||||
/>
|
/>
|
||||||
<Route
|
{routes}
|
||||||
path="installation"
|
|
||||||
element={
|
|
||||||
<DynamicLayout toc={docsInstallationToc}>
|
|
||||||
<DocsInstallation />
|
|
||||||
</DynamicLayout>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
<Route path="components">
|
|
||||||
<Route index loader={() => redirect("/docs/components/button")} />
|
|
||||||
<Route
|
|
||||||
path="button"
|
|
||||||
element={
|
|
||||||
<DynamicLayout toc={componentsButtonToc}>
|
|
||||||
<ComponentsButton components={overrideComponents} />
|
|
||||||
</DynamicLayout>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
<Route
|
|
||||||
path="checkbox"
|
|
||||||
element={
|
|
||||||
<DynamicLayout toc={componentsCheckboxToc}>
|
|
||||||
<ComponentsCheckbox components={overrideComponents} />
|
|
||||||
</DynamicLayout>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
<Route
|
|
||||||
path="dialog"
|
|
||||||
element={
|
|
||||||
<DynamicLayout toc={componentsDialogToc}>
|
|
||||||
<ComponentsDialog components={overrideComponents} />
|
|
||||||
</DynamicLayout>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
<Route
|
|
||||||
path="drawer"
|
|
||||||
element={
|
|
||||||
<DynamicLayout toc={componentsDrawerToc}>
|
|
||||||
<ComponentsDrawer components={overrideComponents} />
|
|
||||||
</DynamicLayout>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
<Route
|
|
||||||
path="input"
|
|
||||||
element={
|
|
||||||
<DynamicLayout toc={componentsInputToc}>
|
|
||||||
<ComponentsInput components={overrideComponents} />
|
|
||||||
</DynamicLayout>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
<Route
|
|
||||||
path="label"
|
|
||||||
element={
|
|
||||||
<DynamicLayout toc={componentsLabelToc}>
|
|
||||||
<ComponentsLabel components={overrideComponents} />
|
|
||||||
</DynamicLayout>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
<Route
|
|
||||||
path="switch"
|
|
||||||
element={
|
|
||||||
<DynamicLayout toc={componentsSwitchToc}>
|
|
||||||
<ComponentsSwitch components={overrideComponents} />
|
|
||||||
</DynamicLayout>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
<Route
|
|
||||||
path="tabs"
|
|
||||||
element={
|
|
||||||
<DynamicLayout toc={componentsTabsToc}>
|
|
||||||
<ComponentsTabs components={overrideComponents} />
|
|
||||||
</DynamicLayout>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
<Route
|
|
||||||
path="toast"
|
|
||||||
element={
|
|
||||||
<DynamicLayout toc={componentsToastToc}>
|
|
||||||
<ComponentsToast components={overrideComponents} />
|
|
||||||
</DynamicLayout>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
<Route
|
|
||||||
path="tooltip"
|
|
||||||
element={
|
|
||||||
<DynamicLayout toc={componentsTooltipToc}>
|
|
||||||
<ComponentsTooltip components={overrideComponents} />
|
|
||||||
</DynamicLayout>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
</Route>
|
|
||||||
</Route>
|
</Route>
|
||||||
</Route>
|
</Route>
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
return (
|
return <RouterProvider router={router} />;
|
||||||
<>
|
|
||||||
<RouterProvider router={router} />
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default App;
|
export default App;
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
export default {
|
const docsModules = import.meta.glob('./docs/**/*.mdx');
|
||||||
mainNav: [
|
|
||||||
|
const mainNav = [
|
||||||
{
|
{
|
||||||
path: "/docs",
|
path: "/docs",
|
||||||
name: "Docs",
|
name: "Docs",
|
||||||
@ -15,72 +16,24 @@ export default {
|
|||||||
name: "Github",
|
name: "Github",
|
||||||
eq: () => false
|
eq: () => false
|
||||||
}
|
}
|
||||||
],
|
];
|
||||||
sideNav: {
|
|
||||||
"Documents": [
|
|
||||||
{
|
|
||||||
path: "/docs",
|
|
||||||
name: "Introduction",
|
|
||||||
eq: (pathname: string) => pathname === "/docs"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/docs/installation",
|
|
||||||
name: "Installation",
|
|
||||||
eq: (pathname: string) => pathname === "/docs/installation"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Components": [
|
|
||||||
{
|
|
||||||
path: "/docs/components/button",
|
|
||||||
name: "Button",
|
|
||||||
eq: (pathname: string) => pathname === "/docs/components/button"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/docs/components/checkbox",
|
|
||||||
name: "Checkbox",
|
|
||||||
eq: (pathname: string) => pathname === "/docs/components/checkbox"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/docs/components/dialog",
|
|
||||||
name: "Dialog",
|
|
||||||
eq: (pathname: string) => pathname === "/docs/components/dialog"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/docs/components/drawer",
|
|
||||||
name: "Drawer",
|
|
||||||
eq: (pathname: string) => pathname === "/docs/components/drawer"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/docs/components/input",
|
|
||||||
name: "Input",
|
|
||||||
eq: (pathname: string) => pathname === "/docs/components/input"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/docs/components/label",
|
|
||||||
name: "Label",
|
|
||||||
eq: (pathname: string) => pathname === "/docs/components/label"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/docs/components/switch",
|
|
||||||
name: "Switch",
|
|
||||||
eq: (pathname: string) => pathname === "/docs/components/switch"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/docs/components/tabs",
|
|
||||||
name: "Tabs",
|
|
||||||
eq: (pathname: string) => pathname === "/docs/components/tabs"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/docs/components/toast",
|
|
||||||
name: "Toast",
|
|
||||||
eq: (pathname: string) => pathname === "/docs/components/toast"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/docs/components/tooltip",
|
|
||||||
name: "Tooltip",
|
|
||||||
eq: (pathname: string) => pathname === "/docs/components/tooltip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
const sideNav: Record<string, ({ path: string; name: string; eq: (path: string) => boolean })[]> = {
|
||||||
|
"Documents": [],
|
||||||
|
"Components": []
|
||||||
|
};
|
||||||
|
|
||||||
|
Object.keys(docsModules).forEach((path) => {
|
||||||
|
const name = (path.split('/').pop() ?? '').replace('.mdx', '');
|
||||||
|
const section = path.includes('/components/') ? "Components" : "Documents";
|
||||||
|
sideNav[section].push({
|
||||||
|
path: path.replace('./docs', '/docs').replace('.mdx', ''),
|
||||||
|
name: name.charAt(0).toUpperCase() + name.slice(1),
|
||||||
|
eq: (pathname: string) => pathname === path.replace('./docs', '/docs').replace('.mdx', '')
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
export default {
|
||||||
|
mainNav,
|
||||||
|
sideNav
|
||||||
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user