-
Notifications
You must be signed in to change notification settings - Fork 2.7k
fix(remix-dev): allow defining multiple routes for the same route module file #3970
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
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
f80267d
Allow multiple routes for same route module
lucasferreira 3e93d21
Update packages/remix-dev/config/routes.ts
lucasferreira 2b86094
Update routes.ts
lucasferreira ed5148e
- Removing redundant IF
lucasferreira 9228db0
Update routes.ts
lucasferreira 3738662
Non unique custom routes ID error and test
lucasferreira 2064c57
Update assets.ts
lucasferreira 9318a4e
Revert "Update assets.ts"
lucasferreira aaeadbb
Merge remote-tracking branch 'upstream/dev' into dev
lucasferreira 1b554a2
Error on collisions with non-custom routeIds
brophdawg11 e7fd378
Merge branch 'dev' into dev
lucasferreira ee48538
Merge branch 'remix-run:dev' into dev
lucasferreira 86b8720
Create big-spoons-grab.md
lucasferreira File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "@remix-run/dev": minor | ||
| --- | ||
|
|
||
| allow defining multiple routes for the same route module file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -257,6 +257,7 @@ | |
| - lpsinger | ||
| - lswest | ||
| - lucasdibz | ||
| - lucasferreira | ||
| - luispagarcia | ||
| - luisrivas | ||
| - luistak | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -54,6 +54,12 @@ export interface DefineRouteOptions { | |
| * Should be `true` if this is an index route that does not allow child routes. | ||
| */ | ||
| index?: boolean; | ||
|
|
||
| /** | ||
| * An optional unique id string for this route. Use this if you need to aggregate | ||
| * two or more routes with the same route file. | ||
| */ | ||
| id?: string; | ||
brophdawg11 marked this conversation as resolved.
Show resolved
Hide resolved
brophdawg11 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| interface DefineRouteChildren { | ||
|
|
@@ -141,14 +147,20 @@ export function defineRoutes( | |
| path: path ? path : undefined, | ||
| index: options.index ? true : undefined, | ||
| caseSensitive: options.caseSensitive ? true : undefined, | ||
| id: createRouteId(file), | ||
| id: options.id || createRouteId(file), | ||
| parentId: | ||
| parentRoutes.length > 0 | ||
| ? parentRoutes[parentRoutes.length - 1].id | ||
| : undefined, | ||
| file, | ||
| }; | ||
|
|
||
| if (route.id in routes) { | ||
| throw new Error( | ||
| `Unable to define routes with duplicate route id: "${route.id}"` | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I adjusted this to account for the (very edge-case) scenario that an auto-generated route id collies with a previously-defined custom id and expanded the tests above to assert the new behavior |
||
| ); | ||
| } | ||
|
|
||
| routes[route.id] = route; | ||
|
|
||
| if (children) { | ||
|
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.