pswui/packages/react/src/RouteObject.ts
p-sw c27e7bd2c5 feat(react): add configuration documentation
A new configuration documentation file has been added to the react package. This document includes information about the library file, CLI, and the configuration structure. It also contains code examples for enhancing user understanding.
2024-06-11 18:52:02 +09:00

60 lines
1.4 KiB
TypeScript

const docsModules = import.meta.glob("./docs/components/*.mdx");
const mainNav = [
{
path: "/docs",
name: "Docs",
eq: (pathname: string) =>
pathname.startsWith("/docs") && !pathname.startsWith("/docs/components"),
},
{
path: "/docs/components",
name: "Components",
eq: (pathname: string) => pathname.startsWith("/docs/components"),
},
{
path: "https://github.com/p-sw/ui",
name: "Github",
eq: () => false,
},
];
const sideNav: Record<
string,
{ path: string; name: string; eq: (path: string) => boolean }[]
> = {
Documents: [
{
path: "/docs/introduction",
name: "Introduction",
eq: (pathname: string) => pathname === "/docs/introduction",
},
{
path: "/docs/installation",
name: "Installation",
eq: (pathname: string) => pathname === "/docs/installation",
},
{
path: "/docs/configuration",
name: "Configuration",
eq: (pathname: string) => pathname === "/docs/configuration",
},
],
Components: [],
};
Object.keys(docsModules).forEach((path) => {
const name = (path.split("/").pop() ?? "").replace(".mdx", "");
sideNav["Components"].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,
};