Skip to content
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

Merged
merged 1 commit into from
Nov 11, 2024

Conversation

onurtemizkan
Copy link
Collaborator

@onurtemizkan onurtemizkan commented Nov 7, 2024

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.

@onurtemizkan onurtemizkan force-pushed the onur/react-router-6-wildcards branch 2 times, most recently from 00c3500 to 7989575 Compare November 7, 2024 15:13
Copy link
Contributor

github-actions bot commented Nov 7, 2024

size-limit report 📦

Path Size % Change Change
@sentry/browser 22.77 KB - -
@sentry/browser - with treeshaking flags 21.53 KB - -
@sentry/browser (incl. Tracing) 35.26 KB - -
@sentry/browser (incl. Tracing, Replay) 71.98 KB - -
@sentry/browser (incl. Tracing, Replay) - with treeshaking flags 62.35 KB - -
@sentry/browser (incl. Tracing, Replay with Canvas) 76.31 KB - -
@sentry/browser (incl. Tracing, Replay, Feedback) 89.13 KB - -
@sentry/browser (incl. Feedback) 39.92 KB - -
@sentry/browser (incl. sendFeedback) 27.42 KB - -
@sentry/browser (incl. FeedbackAsync) 32.21 KB - -
@sentry/react 25.52 KB - -
@sentry/react (incl. Tracing) 38.22 KB - -
@sentry/vue 26.91 KB - -
@sentry/vue (incl. Tracing) 37.1 KB - -
@sentry/svelte 22.9 KB - -
CDN Bundle 24.12 KB - -
CDN Bundle (incl. Tracing) 37.03 KB - -
CDN Bundle (incl. Tracing, Replay) 71.69 KB - -
CDN Bundle (incl. Tracing, Replay, Feedback) 77.04 KB - -
CDN Bundle - uncompressed 70.68 KB - -
CDN Bundle (incl. Tracing) - uncompressed 109.86 KB - -
CDN Bundle (incl. Tracing, Replay) - uncompressed 222.38 KB - -
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 235.6 KB - -
@sentry/nextjs (client) 38.33 KB - -
@sentry/sveltekit (client) 35.84 KB - -
@sentry/node 133.27 KB - -
@sentry/node - without tracing 95.67 KB - -
@sentry/aws-serverless 105.93 KB +0.01% +2 B 🔺

View base workflow run

@onurtemizkan onurtemizkan force-pushed the onur/react-router-6-wildcards branch 2 times, most recently from e079611 to cbdebd8 Compare November 7, 2024 15:42
@onurtemizkan onurtemizkan force-pushed the onur/react-router-6-wildcards branch from cbdebd8 to a5aabf9 Compare November 7, 2024 15:42
@onurtemizkan onurtemizkan marked this pull request as ready for review November 7, 2024 16:05
Comment on lines +148 to +155
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;
Copy link
Member

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.

Copy link
Collaborator Author

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

@AbhiPrasad AbhiPrasad enabled auto-merge (squash) November 11, 2024 14:37
@AbhiPrasad AbhiPrasad merged commit 127083e into develop Nov 11, 2024
127 of 128 checks passed
@AbhiPrasad AbhiPrasad deleted the onur/react-router-6-wildcards branch November 11, 2024 14:38
AbhiPrasad added a commit that referenced this pull request Nov 11, 2024
Add @grahamhency to changelog for work in
#14205
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants