Git Product home page Git Product logo

Comments (5)

sophiebits avatar sophiebits commented on April 20, 2024

The usual way to do this on the web is to redirect to /auth/signin?continue=/secret or similar.

from react-router.

ryanflorence avatar ryanflorence commented on April 20, 2024

Interesting use case. I think I agree, the sign in step is a workflow within the secret app state.

I wonder if this is the routers job, or if I should just have a signin component that "secret" uses and my signin route uses it too.

Sent from my iPhone

On Jul 8, 2014, at 3:41 AM, Aliaksei [email protected] wrote:

It would be nice to have functionality (in transition and Router itself) to dispatch specific route without change real URL.

E.g. I have auth flow close to https://github.com/rpflorence/react-nested-router/tree/master/examples/auth-flow . I visit my auth-only page /secret. Then I must be redirected to my auth page and URL in my address bar is /auth/signin. But it would be better for user still see /secret as URL and have some auth Route as activeRoute. In such case if I press Refresh I still have /secret URL and can return to it after sign in. Now I have /auth/signin and can't it.

I see it as something like

// inside my AuthMixin
willTransitionTo: function(transition) {
//...
if (!loggedIn) {
transition.abort();
authService.setTransition(transition);
transition.forward('/auth/signin')
}
}

Reply to this email directly or view it on GitHub.

from react-router.

mjackson avatar mjackson commented on April 20, 2024

I agree with @spicyj. The URL should dictate the UI that's on the page, namely /auth/signin. Where to go after that shouldn't be part of the URL, but should instead be part of the query string. Then, after signin you can:

Router.transitionTo(this.props.query.continue || 'home');

from react-router.

ryanflorence avatar ryanflorence commented on April 20, 2024

I think my comments were ambiguous.

  1. URLs should always have meaning, they represent application states.
  2. We should not allow transitioning to a route w/o changing the URL.
  3. You don't need to save the next url into the url, you can just have "signin" be a workflow within a route, reusing a SigninForm component within an AuthenticatedMixin as well as the signin route handler.

from react-router.

roadhump avatar roadhump commented on April 20, 2024

I suppose you're right. I've investigated some of client and server side frameworks and found that it should not be concern of routing to replace one response with another. I'd like to close this issue.

from react-router.

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.