fix: simpler route build

This commit is contained in:
p-sw 2024-06-04 11:46:26 +09:00
parent 10c17bb51e
commit 9f7f7a3a8f

View File

@ -106,15 +106,15 @@ const overrideComponents = {
const docsModules = import.meta.glob("./docs/components/*.mdx"); const docsModules = import.meta.glob("./docs/components/*.mdx");
const routes = Object.keys(docsModules).map((path) => { const routes = Object.keys(docsModules).map((path) => {
const sfPath = path.replace("./docs", "").replace(".mdx", ""); const sfPath = path.split("/").pop()?.replace(".mdx", "");
return ( return (
<Route <Route
key={path} key={path}
path={path.replace("./docs", "/docs").replace(".mdx", "")} path={sfPath}
lazy={async () => { lazy={async () => {
const { default: C, tableOfContents } = await import( const { default: C, tableOfContents } = await import(
`./docs${sfPath}.mdx` `./docs/components/${sfPath}.mdx`
); );
return { return {
Component: () => ( Component: () => (
@ -150,13 +150,22 @@ const router = createBrowserRouter(
</DynamicLayout> </DynamicLayout>
} }
/> />
<Route path="components">
<Route <Route
path="components" index
loader={() => redirect("/docs/components/button")} loader={() =>
redirect(
`/docs/components/${Object.keys(docsModules)[0]
.split("/")
.pop()
?.replace(".mdx", "")}`
)
}
/> />
{routes} {routes}
</Route> </Route>
</Route> </Route>
</Route>
) )
); );