simple_routes 1.0.0-beta.8 copy "simple_routes: ^1.0.0-beta.8" to clipboard
simple_routes: ^1.0.0-beta.8 copied to clipboard

Simple, declarative route and navigation management for go_router.

1.0.0-beta.8 #

  • Hide the full path template and expose a fullPath method on both route classes

1.0.0-beta.7 #

  • Improve migration guide
  • Improve README

1.0.0-beta.6 #

  • Rename fullPath property to fullPathTemplate
  • Rename generate to populatedWith
  • Add joinSegments method to base class and remove toPath extension method
  • Add and improve doc comments

1.0.0-beta.5 #

  • Add isActive method

1.0.0-beta.2 - 4 #

Minor fixes to documentation.

1.0.0-beta.1 #

We have finally reached a stable release! 🎉

Granted, this is just a beta release for the moment, we are confident that it is stable enough to be classified as version 1.

This release includes a significant rework of the API to improve the developer experience and standardize our package conventions.

Please see the Migration Guide for information on how to migrate your code to this version from the pre-release versions.

New Features #

  • Path parameters are now injected automatically, based on the parameters property
  • Query parameters are now appended automatically, based on the query property
  • Extra data is now injected automatically, based on the extra property
  • Automatic leading-slash management - no more worrying about whether or not to add a leading slash to your route's path
  • Get the full path of a DataRoute, with all template parameters populated, using the new generate method

Breaking Changes #

This release includes a few breaking changes.

  • The query parameter of the go method has been removed
  • The push argument of the go method has been removed
  • A new goPath property has been added to the SimpleRoute class and should be used when defining your GoRoutes
  • The inject method has been removed from the DataRoute class
  • The helper methods have all been removed in favor of extensions and class methods

0.0.11 #

  • Update GoRouter to ^12.0.0

0.0.10 #

  • Attempt to fix release workflow (again)

0.0.9 #

  • Add support for pushing routes

0.0.8 #

  • Version bump for release workflow fixes

0.0.7 #

  • Add isCurrentRoute method
  • Add isAncestor method
  • Update description in pubspec.yaml
  • Update README

0.0.6 #

  • Add automated release workflow
  • Update go_router to ^11.1.1

0.0.5 #

  • Fix several small issues in README

0.0.4 #

Breaking Change

  • Change go method to use named parameters for data and query

Instead of writing:

const MyRoute().go(
  context, 
  const MyRouteData('some-value'), 
  {'key': 'value'},
);

You will now need to write it as:

const MyRoute().go(
  context, 
  data: const MyRouteData('some-value'), 
  query: {'key': 'value'},
);

0.0.3 #

  • Add support for injecting query parameters into route paths
  • Add helper method for extracting query param map from GoRouterState
  • Fix bug in route data factory
  • Add and improve tests

0.0.2 #

  • Improve README
  • Remove static route getter from example for consistency

0.0.1 #

Initial Release

  • SimpleRoute and DataRoute base classes for routes
    • path and generated fullPath properties for route configuration
    • go method for navigation via go_router
  • SimpleRouteData base class for route data
    • inject method for injecting route data into the route path
  • ChildRoute interface for structuring route hierarchy
  • SimpleRouteDataFactory base class
    • fromState method for extracting route data from a GoRouterState
    • containsData method for validating GoRouterState has all necessary data components
    • containsKey helper for checking the existence of a parameter key in a GoRouterState
  • Utility functions:
    • join
    • withPrefix
    • setParam extension
7
likes
0
pub points
43%
popularity

Publisher

verified publisherandyhorn.dev

Simple, declarative route and navigation management for go_router.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, go_router, mocktail

More

Packages that depend on simple_routes