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

HttpNavigationManager no longer uses NavigationException #61306

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

ilonatommy
Copy link
Member

Description

  • Guard throwing NavigationException with AppContext switch. Naming updates are welcome.
  • Keep catches it in the places where they are, without AppContext.
  • Add internal event listener that triggers httpContext redirection.
  • Test for no interactivity SSR scenario.
  • Removal of "routing/not-found-ssr" etc, they don't exist and should not be on Routing test cases page.

Fixes #59451

@ilonatommy ilonatommy added area-blazor Includes: Blazor, Razor Components feature-blazor-navigation labels Apr 3, 2025
@ilonatommy ilonatommy added this to the 10.0-preview4 milestone Apr 3, 2025
@ilonatommy ilonatommy requested a review from javiercn April 3, 2025 13:34
@ilonatommy ilonatommy self-assigned this Apr 3, 2025
@ilonatommy ilonatommy requested a review from a team as a code owner April 3, 2025 13:34
Comment on lines +26 to +33
if (ThrowNavigationException)
{
throw new NavigationException(absoluteUriString);
}
else
{
_onNavigateTo?.Invoke(this, new NavigationEventArgs(absoluteUriString));
}
Copy link
Member

Choose a reason for hiding this comment

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

We need to do something similar to RemoteNavigationManager when we are running during SSR, otherwise AddRazorComponents().AddInteractiveComponents() won't work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-blazor Includes: Blazor, Razor Components feature-blazor-navigation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Reconcile NavigationManager behavior to no longer use NavigationException
2 participants