refactor: only compile rewrite rules once (#2018)

pull/2054/head
CHOYSEN 2 years ago committed by GitHub
parent 70ba404cb8
commit bed31d0c21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,31 +6,31 @@ export function resolveRewrites(
pages: string[], pages: string[],
userRewrites: UserConfig['rewrites'] userRewrites: UserConfig['rewrites']
) { ) {
const rewriteEntries = Object.entries(userRewrites || {}) const rewriteRules = Object.entries(userRewrites || {}).map(([from, to]) => ({
const rewrites = rewriteEntries.length toPath: compile(to),
? Object.fromEntries( matchUrl: match(from)
pages }))
.map((src) => {
for (const [from, to] of rewriteEntries) { const pageToRewrite: Record<string, string> = {}
const dest = rewrite(src, from, to) const rewriteToPage: Record<string, string> = {}
if (dest) return [src, dest] if (rewriteRules.length) {
} for (const page of pages) {
}) for (const { matchUrl, toPath } of rewriteRules) {
.filter((e) => e != null) as [string, string][] const res = matchUrl(page)
) if (res) {
: {} const dest = toPath(res.params)
return { pageToRewrite[page] = dest
map: rewrites, rewriteToPage[dest] = page
inv: Object.fromEntries(Object.entries(rewrites).map((a) => a.reverse())) break
}
}
}
} }
}
function rewrite(src: string, from: string, to: string) { return {
const urlMatch = match(from) map: pageToRewrite,
const res = urlMatch(src) inv: rewriteToPage
if (!res) return false }
const toPath = compile(to)
return toPath(res.params)
} }
export const rewritesPlugin = (config: SiteConfig): Plugin => { export const rewritesPlugin = (config: SiteConfig): Plugin => {

Loading…
Cancel
Save