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

Dedupe calls to route.lazy functions #13260

Merged
merged 4 commits into from
Mar 20, 2025
Merged

Conversation

markdalgleish
Copy link
Member

This PR is in preparation for more granular route.lazy support. This updates the existing logic to ensure calls to route.lazy are deduped, which is how the more granular object-based API is intended to work. This also means that the tests are now updated to be more flexible in terms of the types for route.lazy, rather than testing using the lazy: true flag on the TestRouteObject type. This will make introducing object-based route.lazy tests much easier.

Copy link

changeset-bot bot commented Mar 19, 2025

🦋 Changeset detected

Latest commit: a69ddf1

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 11 packages
Name Type
react-router Patch
@react-router/architect Patch
@react-router/cloudflare Patch
@react-router/dev Patch
react-router-dom Patch
@react-router/express Patch
@react-router/node Patch
@react-router/serve Patch
@react-router/fs-routes Patch
@react-router/remix-routes-option-adapter Patch
create-react-router Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

loader: undefined,
action: undefined,
children: undefined,
id: r.id || `route-${guid++}`,
};
if (r.lazy) {
// @ts-expect-error
enhancedRoute.lazy = (args) => {
Copy link
Member Author

@markdalgleish markdalgleish Mar 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've removed the lazy route helpers since the new approach to deduping means that it's more of a top-level concern within the test, not tied to individual navigations. This simplified the tests quite a bit, and will make it easier to test other types for route.lazy in the future.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That should be fine - the real advantage of the booleans for loader/actions is that they auto-regenerate new promises for each navigation/fetch so you can do out of order resolving and test interruption flows and such. With lazy already taking "first return wins" and now being deduped and effectively a singleton resolution that approach isn't really necessary 👍

Copy link
Member Author

@markdalgleish markdalgleish Mar 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good. That was exactly my thinking too.

@@ -392,7 +392,7 @@ export interface MapRoutePropertiesFunction {
* onto the route. Either they're meaningful to the router, or they'll get
* ignored.
*/
export type ImmutableRouteKey =
export type UnsupportedLazyRouteFunctionKey =
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This rename is in preparation for the additional type for lazy route objects.

@markdalgleish markdalgleish merged commit f1e14a2 into dev Mar 20, 2025
5 checks passed
@markdalgleish markdalgleish deleted the markdalgleish/dedupe-lazy-calls branch March 20, 2025 00:49
Copy link
Contributor

🤖 Hello there,

We just published version 7.4.1-pre.0 which includes this pull request. If you'd like to take it for a test run please try it out and let us know what you think!

Thanks!

Copy link
Contributor

🤖 Hello there,

We just published version 7.4.1 which includes this pull request. If you'd like to take it for a test run please try it out and let us know what you think!

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants