0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

fix(routing): partially dynamic segments are being truncated (#10379)

* fix(routing): partially dynamic segments are being truncated and affecting routing.

* test: fix "/static should be higher priority than /static-"

* Update .changeset/five-colts-rescue.md

Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>

* test: fix the check that was wrongly deleted.

* other: improve code readability.

---------

Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>
This commit is contained in:
Nworm 2024-03-15 18:27:07 +08:00 committed by GitHub
parent 464bea398b
commit 3776ecf0aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 62 additions and 11 deletions

View file

@ -0,0 +1,5 @@
---
"astro": patch
---
Fixes a routing issue with partially truncated dynamic segments.

View file

@ -401,9 +401,7 @@ function createFileBasedRoutes(
const pathname = segments.every((segment) => segment.length === 1 && !segment[0].dynamic)
? `/${segments.map((segment) => segment[0].content).join('/')}`
: null;
const route = `/${segments
.map(([{ dynamic, content }]) => (dynamic ? `[${content}]` : content))
.join('/')}`.toLowerCase();
const route = joinSegments(segments);
routes.push({
route,
isIndex: item.isIndex,
@ -478,9 +476,7 @@ function createInjectedRoutes({ settings, cwd }: CreateRouteManifestParams): Pri
.flat()
.filter((p) => p.dynamic)
.map((p) => p.content);
const route = `/${segments
.map(([{ dynamic, content }]) => (dynamic ? `[${content}]` : content))
.join('/')}`.toLowerCase();
const route = joinSegments(segments);
routes[priority].push({
type,
@ -536,9 +532,7 @@ function createRedirectRoutes(
.flat()
.filter((p) => p.dynamic)
.map((p) => p.content);
const route = `/${segments
.map(([{ dynamic, content }]) => (dynamic ? `[${content}]` : content))
.join('/')}`.toLowerCase();
const route = joinSegments(segments);
let destination: string;
if (typeof to === 'string') {
@ -899,3 +893,11 @@ function computeRoutePriority(config: AstroConfig): RoutePriorityOverride {
}
return 'legacy';
}
function joinSegments(segments: RoutePart[][]): string {
const arr = segments.map((segment) => {
return segment.map((rp) => (rp.dynamic ? `[${rp.content}]` : rp.content)).join('');
});
return `/${arr.join('/')}`.toLowerCase();
}

View file

@ -144,8 +144,8 @@ describe('routing - createRouteManifest', () => {
assertRouteRelations(getManifestRoutes(manifest), [
['/', '/[...rest]'],
['/static', '/static-'],
['/static-', '/[dynamic]'],
['/static', '/static-[dynamic]'],
['/static-[dynamic]', '/[dynamic]'],
['/static', '/[dynamic]'],
['/static', '/[...rest]'],
['/[dynamic]', '/[...rest]'],
@ -567,4 +567,48 @@ describe('routing - createRouteManifest', () => {
},
]);
});
it('should concatenate each part of the segment. issues#10122', async () => {
const fs = createFs(
{
'/src/pages/a-[b].astro': `<h1>test</h1>`,
'/src/pages/blog/a-[b].233.ts': ``,
},
root
);
const settings = await createBasicSettings({
root: fileURLToPath(root),
output: 'server',
base: '/search',
trailingSlash: 'never',
redirects: {
'/posts/a-[b].233': '/blog/a-[b].233',
},
experimental: {
globalRoutePriority: true,
},
});
settings.injectedRoutes = [
{
pattern: '/[c]-d',
entrypoint: '@lib/legacy/dynamic.astro',
priority: 'normal',
},
];
const manifest = createRouteManifest({
cwd: fileURLToPath(root),
settings,
fsMod: fs,
});
assert.deepEqual(getManifestRoutes(manifest), [
{ type: 'endpoint', route: '/blog/a-[b].233' },
{ type: 'redirect', route: '/posts/a-[b].233' },
{ type: 'page', route: '/[c]-d' },
{ type: 'page', route: '/a-[b]' },
]);
});
});