GithubHelp home page GithubHelp logo

Comments (4)

JonasJW avatar JonasJW commented on June 19, 2024

Maybe this is a better example:

AutoRoute(
  path: "/login", 
  page: LoginRoute.page,
  initial: user == null, // Initial if user is not logged in
),
AutoRoute(
  path: "/",
  page: TabbarAutoRoute.page,
  initial: user != null, // Initial if user is logged in
  children: [
    AutoRoute(
      path: 'home',
      page: HomeRoute.page,
      initial: AuthState().currentUid != null,
    ),
    AutoRoute(
      path: 'profile',
      page: ProfileRoute.page,
    ),
  ],
),

Due to the fact that the TabbarAutoRoute has an empty route, it is always initial. Even though the LoginRoute should be initialed if no user is logged in. I think this is a common use case, of course it would be solvable by giving TabbarAutoRoute a not empty path but then the paths for HomeRoute and ProfileRoute have a prefix, which I would like to avoid.

from auto_route_library.

JonasJW avatar JonasJW commented on June 19, 2024

@Milad-Akarie sorry for tagging you but I really was wondering if there is a solution to this so the empty path is not automatically the initial path?

from auto_route_library.

Milad-Akarie avatar Milad-Akarie commented on June 19, 2024

Hey @JonasJW I just wanted to take a look at the possibilities before I reply, they way RouteMatcher works this might need some work, it's not a bug it's just meant to work this way, so changing the implementation might take some work, besides, it might introduce breaking changes.

from your usecase above I think what you need is active redirection based on user status, if that's the case what you need is to use AutoRouteGuard, you can implement and pass your guards to AutoRoute(guards:...) or use the shorthand AutoRute.guarded if you don't intent to have multiple guards.

AutoRoute.guarded(
      page: HomeRoute.page,
      path: '/home',
      initial: true,
      onNavigation: (resolver,_){
         if(user != null){
           resolver.next();
         }else{
           resolver.redirect(LoginRoute(noResult: resolver.next));
         }
       },
)

from auto_route_library.

JonasJW avatar JonasJW commented on June 19, 2024

@Milad-Akarie thanks for the clarification!

I don't think the AutoRouteGuard approach would work in my case because I want users to be allowed to skip the login step, so even unauthenticated users should be able to navigate to the HomePage. It should just show different initial routes to ask not logged-in users to log in or skip and go to HomePage, while for logged-in users, start directly at the HomePage.

However, I found that in my use case a simple RedirectionRoute does the job

RedirectRoute(
  path: "/",
  redirectTo: user != null ? "/home" : "/signin",
),

Thanks for your help!

from auto_route_library.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.