-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(react): Support wildcard routes on React Router 6 #14205
Conversation
00c3500
to
7989575
Compare
size-limit report 📦
|
e079611
to
cbdebd8
Compare
cbdebd8
to
a5aabf9
Compare
const formattedPath = | ||
// If the path ends with a slash, remove it | ||
reconstructedPath[reconstructedPath.length - 1] === '/' | ||
? reconstructedPath.slice(0, -1) | ||
: // If the path ends with a wildcard, remove it | ||
reconstructedPath.slice(-2) === '/*' | ||
? reconstructedPath.slice(0, -1) | ||
: reconstructedPath; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if a regex replace is less expensive here. Would be interesting to benchmark.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just tried now, looks like it's slower in this case https://jsperf.app/gemolu
Add @grahamhency to changelog for work in #14205
Based on @grahamhency's work at #14076.
Sets correct transaction names when wildcards are used in React Router 6 routes.
This does not fix the usage of the descendant routes (#5997), which we should try to address separately.