-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Lift static handler creation and pass context through query/queryRoute #4790
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 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/server-runtime": patch | ||
--- | ||
|
||
Fix performance regression with ctreation of `@remix-run/router` static handler |
This file contains 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 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 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 |
---|---|---|
|
@@ -35,25 +35,24 @@ export const createRequestHandler: CreateRequestHandlerFunction = ( | |
mode | ||
) => { | ||
let routes = createRoutes(build.routes); | ||
let dataRoutes = createStaticHandlerDataRoutes(build.routes); | ||
let serverMode = isServerMode(mode) ? mode : ServerMode.Production; | ||
let staticHandler = unstable_createStaticHandler(dataRoutes); | ||
|
||
return async function requestHandler(request, loadContext = {}) { | ||
let url = new URL(request.url); | ||
let matches = matchServerRoutes(routes, url.pathname); | ||
|
||
let staticHandler = unstable_createStaticHandler( | ||
createStaticHandlerDataRoutes(build.routes, loadContext) | ||
); | ||
|
||
let response: Response; | ||
if (url.searchParams.has("_data")) { | ||
let routeId = url.searchParams.get("_data")!; | ||
|
||
response = await handleDataRequestRR( | ||
serverMode, | ||
staticHandler!, | ||
staticHandler, | ||
routeId, | ||
request | ||
request, | ||
loadContext | ||
); | ||
|
||
if (build.entry.module.handleDataRequest) { | ||
|
@@ -70,16 +69,18 @@ export const createRequestHandler: CreateRequestHandlerFunction = ( | |
) { | ||
response = await handleResourceRequestRR( | ||
serverMode, | ||
staticHandler!, | ||
staticHandler, | ||
matches.slice(-1)[0].route.id, | ||
request | ||
request, | ||
loadContext | ||
); | ||
} else { | ||
response = await handleDocumentRequestRR( | ||
serverMode, | ||
build, | ||
staticHandler!, | ||
request | ||
staticHandler, | ||
request, | ||
loadContext | ||
); | ||
} | ||
|
||
|
@@ -99,10 +100,14 @@ async function handleDataRequestRR( | |
serverMode: ServerMode, | ||
staticHandler: StaticHandler, | ||
routeId: string, | ||
request: Request | ||
request: Request, | ||
loadContext: AppLoadContext | ||
) { | ||
try { | ||
let response = await staticHandler.queryRoute(request, routeId); | ||
let response = await staticHandler.queryRoute(request, { | ||
routeId, | ||
requestContext: loadContext, | ||
}); | ||
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. Send the context through |
||
|
||
if (isRedirectResponse(response)) { | ||
// We don't have any way to prevent a fetch request from following | ||
|
@@ -204,11 +209,14 @@ async function handleDocumentRequestRR( | |
serverMode: ServerMode, | ||
build: ServerBuild, | ||
staticHandler: StaticHandler, | ||
request: Request | ||
request: Request, | ||
loadContext: AppLoadContext | ||
) { | ||
let context; | ||
try { | ||
context = await staticHandler.query(request); | ||
context = await staticHandler.query(request, { | ||
requestContext: loadContext, | ||
}); | ||
} catch (error) { | ||
if (!request.signal.aborted && serverMode !== ServerMode.Test) { | ||
console.error(error); | ||
|
@@ -364,13 +372,17 @@ async function handleResourceRequestRR( | |
serverMode: ServerMode, | ||
staticHandler: StaticHandler, | ||
routeId: string, | ||
request: Request | ||
request: Request, | ||
loadContext: AppLoadContext | ||
) { | ||
try { | ||
// Note we keep the routeId here to align with the Remix handling of | ||
// resource routes which doesn't take ?index into account and just takes | ||
// the leaf match | ||
let response = await staticHandler.queryRoute(request, routeId); | ||
let response = await staticHandler.queryRoute(request, { | ||
routeId, | ||
requestContext: loadContext, | ||
}); | ||
// callRouteLoader/callRouteAction always return responses | ||
invariant( | ||
isResponse(response), | ||
|
This file contains 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
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.
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.
No longer comes from the closure scope and instead passes straight through