-
Notifications
You must be signed in to change notification settings - Fork 10.3k
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
Add NotFoundPage
to Router
#60970
base: main
Are you sure you want to change the base?
Add NotFoundPage
to Router
#60970
Conversation
src/Components/Endpoints/src/Rendering/EndpointHtmlRenderer.EventDispatch.cs
Outdated
Show resolved
Hide resolved
src/Components/test/testassets/Components.WasmMinimal/Routes.razor
Outdated
Show resolved
Hide resolved
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.
Looks great!
I think we will also want to update the project templates to use this feature.
In addition to it, I think there's another scenario we want to enable here which is to make sure that it works with UseStatusCodeWithReexecute
UseStatusCodeWithReexecute
allows the app to render a page after a 404 has been set somewhere. We want that to also be possible with a Component page
I did something similar for handling errors a couple releases back. This is the PR with the change for reference #50550
- I suspect we will need to do something similar here.
/cc: @danroth27
@@ -0,0 +1,34 @@ | |||
@ECHO OFF |
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.
This is an improvement in testing templates and a bit that I was missing to debug the results of *Locally
scripts. It could be a separate PR if really needed.
...ectTemplates/content/BlazorWeb-CSharp/BlazorWeb-CSharp/Components/Pages/WeatherDetails.razor
Outdated
Show resolved
Hide resolved
} | ||
else | ||
{ | ||
_notFound.Invoke(this, new NotFoundEventArgs()); |
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.
Didn't realize this, but since NotFoundEventArgs
doesn't have any arguments, we can reuse the same instance privately (like Array.Empty()`) and save allocations
bool requresReexecution = originalStatusCode != context.Response.StatusCode && hasStatusCodePage; | ||
if (requresReexecution) | ||
{ | ||
// If the response is a 404, we don't want to write any content. | ||
// This is because the 404 status code is used by the routing middleware | ||
// to indicate that no endpoint was found for the request. | ||
await bufferWriter.FlushAsync(); | ||
return; | ||
} |
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.
Typo: requiresReexecution
bool requresReexecution = originalStatusCode != context.Response.StatusCode && hasStatusCodePage; | |
if (requresReexecution) | |
{ | |
// If the response is a 404, we don't want to write any content. | |
// This is because the 404 status code is used by the routing middleware | |
// to indicate that no endpoint was found for the request. | |
await bufferWriter.FlushAsync(); | |
return; | |
} | |
bool requiresReexecution = originalStatusCode != context.Response.StatusCode && hasStatusCodePage; | |
if (requiresReexecution) | |
{ | |
// If the response is a 404, we don't want to write any content. | |
// This is because the 404 status code is used by the routing middleware | |
// to indicate that no endpoint was found for the request. | |
await bufferWriter.FlushAsync(); | |
return; | |
} |
@@ -145,7 +162,7 @@ await _renderer.InitializeStandardComponentServicesAsync( | |||
} | |||
|
|||
// Emit comment containing state. | |||
if (!isErrorHandler) | |||
if (!isErrorHandler && !hasStatusCodePage) |
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.
You could combine these two conditions into a variable at the beginning and reuse that through the remainder of the method, it seems that they are used in at least a couple of places
// We cannot set a NotFound code after the response has already started | ||
var navigationManager = _httpContext.RequestServices.GetRequiredService<NavigationManager>(); | ||
navigationManager?.NavigateTo("/not-found"); | ||
return; |
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.
Will this cause the NotFound page to be rendered during streaming rendering?
@"An exception occurred during non-streaming rendering. | ||
This exception will be ignored because the response | ||
is being discarded and the request is being re-executed."); |
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.
I don't think we want to include the line breaks in the log. If you are looking to make this readable, you can break it using +
instead.
Description
NotFoundPage
parameter that can be used to customize the view of page rendered onNotFoundEvent
._notFound
was done, so we use redirection to a hardcodednot-found
page.NotFound
page.app.UseStatusCodePagesWithReExecute("/reexecution-path", createScopeForErrors: true);
Fixes #58815