-
-
Save arekbartnik/bd367f15ef621f73fc42eb8e06c54977 to your computer and use it in GitHub Desktop.
Strongly-typed NextJS internal links
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const glob = require("glob") | |
const fs = require("fs") | |
const prettier = require("prettier") | |
const basePath = "src/app/pages" | |
glob(`${basePath}/**/*.{tsx,ts}`, undefined, (err, files) => { | |
const pageFiles = files | |
.map(f => | |
f | |
.replace(basePath, "") | |
.replace(/\.\w+$/, "") | |
.replace(/\/index$/, ""), | |
) | |
.filter(f => !f.startsWith("/_")) | |
.map(file => { | |
const paramNames = (file.match(/\[\w+\]/g) || []).map(pathSegment => | |
pathSegment.replace(/[\[\]]/g, ""), | |
) | |
return { | |
routeName: file, | |
routeParams: paramNames, | |
} | |
}) | |
const allTypes = pageFiles.map(typeTemplate) | |
fs.writeFileSync( | |
"src/app/types/routes.ts", | |
prettier.format( | |
` | |
export type InternalRoutes = | ${allTypes.join("\n| ")} | |
`, | |
{ | |
semi: false, | |
parser: "typescript", | |
}, | |
), | |
) | |
}) | |
const typeTemplate = ({routeName, routeParams}) => `{ | |
routeName: "${routeName}"; | |
routeParams${routeParams.length ? "" : "?"}: { | |
${routeParams.map(param => `${param}: string`).join(";\n ")} | |
} | |
}` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react" | |
import {InternalRoutes} from "types/routes" | |
import Link, {LinkProps} from "next/link" | |
export function InternalLink({ | |
routeName, | |
routeParams, | |
...linkProps | |
}: Omit<LinkProps, "href" | "as"> & | |
InternalRoutes & {children: React.ReactChild}) { | |
return ( | |
<Link | |
{...linkProps} | |
href={routeName} | |
as={createUrl(routeName, routeParams)} | |
passHref={true} | |
/> | |
) | |
} | |
function createUrl(routePath: string, routeParams?: Record<string, string>) { | |
if (!routeParams) { | |
return routePath | |
} | |
return routePath.replace(/\[(\w+)\]/g, (_, k) => routeParams[k]) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment