You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Routing should be integrated into the Page class and initiating a route should accomplished via a method call on the page object itself instead of via self.navigate. Additionally, route parameters should be automatically available.
The text was updated successfully, but these errors were encountered:
Currently routing requires a standalone table initialized in
Application._initRouter()
:Navigating to a page is accomplished via
self.navigation.navigate(pathname)
A problem is that if a route changes, there is no error or warning of usage sites needing to change (Stringly typed)
Additionally, the parameters of the routes currently have to be parsed by subtypes of
Page
such as inSlugPage
:Routing should be integrated into the
Page
class and initiating a route should accomplished via a method call on the page object itself instead of via self.navigate. Additionally, route parameters should be automatically available.The text was updated successfully, but these errors were encountered: