router: Retain trailing slashes in paths #2163
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This addresses client-side part of #2154 leaving path matching trailing slash insensitive (to be compatible with current behavior). For example
/*path/
would still match bothfoo
andfoo/
. But when clicking on a linkfoo/
, trailing slash would be retained.I think it's sensible to keep matching compatible until server-side for this is figured out.
Since path resolution implementation in router is copied from solidjs router and that one retains trailing slashes, I just fixed regexp recreations in rust code to fully match ones from solidjs router:
https://github.com/solidjs/solid-router/blob/main/src/utils.ts#L5:
(note that trailing slash is retained (match group
$1
) but excessive trailing slashes are trimmed)https://github.com/solidjs/solid-router/blob/main/src/utils.ts#L37:
(matches wildcard pattern optionally from right and removes it along with all trailing slashes in
from
path)