-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 fix router notfound create 404.razor
- Loading branch information
Showing
4 changed files
with
89 additions
and
30 deletions.
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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
@page "/404" | ||
@inject IStringLocalizer<SharedResource> L | ||
<PageTitle>Not found</PageTitle> | ||
<MudPaper Class="pa-16 ma-2" Elevation="3" Style="max-width: 100%; | ||
height: 475px; | ||
margin: 0; | ||
border-radius: 8px; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center;"> | ||
|
||
<h1 style="font-size: 48px; margin: 0;"> | ||
404 Error. | ||
</h1> | ||
<p style=" font-size: 16px; width: 35%; margin: 16px auto 24px; text-align: center;"> We can't find the page you're looking for.</p> | ||
<MudButton Variant="Variant.Filled" Size="Size.Small" Href="/">@L["Go Home"]</MudButton> | ||
</MudPaper> | ||
|
||
@code { | ||
|
||
} |
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,43 @@ | ||
@page "/Error" | ||
@using System.Diagnostics | ||
|
||
<PageTitle>Error</PageTitle> | ||
<MudPaper Class="pa-16 ma-2" Elevation="3" Style="max-width: 100%; | ||
height: 475px; | ||
margin: 0; | ||
border-radius: 8px; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center;"> | ||
<h1 class="text-danger">Error.</h1> | ||
<h2 class="text-danger">An error occurred while processing your request.</h2> | ||
|
||
@if (ShowRequestId) | ||
{ | ||
<p> | ||
<strong>Request ID:</strong> <code>@RequestId</code> | ||
</p> | ||
} | ||
|
||
<h3>Development Mode</h3> | ||
<p> | ||
Swapping to <strong>Development</strong> environment will display more detailed information about the error that occurred. | ||
</p> | ||
<p> | ||
<strong>The Development environment shouldn't be enabled for deployed applications.</strong> | ||
It can result in displaying sensitive information from exceptions to end users. | ||
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong> | ||
and restarting the app. | ||
</p> | ||
</MudPaper> | ||
@code { | ||
[CascadingParameter] | ||
private HttpContext? HttpContext { get; set; } | ||
|
||
private string? RequestId { get; set; } | ||
private bool ShowRequestId => !string.IsNullOrEmpty(RequestId); | ||
|
||
protected override void OnInitialized() => | ||
RequestId = Activity.Current?.Id ?? HttpContext?.TraceIdentifier; | ||
} |