feat: add route hierarchy with dynamic titles (#24550) (CP: 25.2)#24582
Merged
Conversation
Introduces a new, instance-free mechanism for resolving page titles and logical route hierarchies in Vaadin applications. The main focus is on enabling dynamic page titles and hierarchical navigation aids (like breadcrumbs and menus) without requiring instantiation of navigation target components. This is achieved through new annotations, interfaces, and supporting APIs for stateless resolution of titles and parent routes. * Introduced the `@DynamicPageTitle` annotation, allowing routes to specify a `PageTitleGenerator` for computing their titles without needing to instantiate the route component. This enables dynamic titles for navigation elements like menus and breadcrumbs. * Added the `PageTitleGenerator` interface and `PageTitleContext` record, providing a stateless, parameter-driven way to generate page titles for routes. * Added the `@RouteParent` annotation and supporting APIs, allowing routes to declare their logical parent statically or via a resolver, again without requiring instantiation. * Extended `RouteConfiguration` with methods to resolve a route's logical parent and hierarchy statelessly, supporting the new navigation aids. * Updated `Instantiator` and `DefaultInstantiator` to support application-wide default `PageTitleGenerator` resolution, integrating the new mechanism with the dependency injection system. * Enhanced `MenuRegistry` and related utilities to use the new title and hierarchy resolution APIs, allowing navigation aids to display correct, dynamic titles and hierarchies for all routes. --------- Co-authored-by: totally-not-ai[bot] <290682512+totally-not-ai[bot]@users.noreply.github.com> Co-authored-by: Artur Signell <artur@vaadin.com>
|
Artur-
approved these changes
Jun 11, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.



This PR cherry-picks changes from the original PR #24550 to branch 25.2.
Original PR description