Giter VIP home page Giter VIP logo

Comments (4)

dipesh008 avatar dipesh008 commented on May 27, 2024 1

Thank you @bernabe9

Now it is clear why checked is added. If we can add this to the document, it will help others too.

from redux-react-session.

bernabe9 avatar bernabe9 commented on May 27, 2024

Hi @dipesh008,
Here is a simple example using an alternative of OnEnter with async authorization and redux-react-session: https://github.com/bernabe9/react-router-v4-auth-example

Check out this component PrivateRoute: https://github.com/bernabe9/redux-react-session/blob/master/examples/react-router-v4-example/src/components/PrivateRoute.js

The PrivateRoute component receive a prop authenticated, and then in the render prop of the Route component you can choose what to do depending on the the authenticated prop value.

const PrivateRoute = ({ component, exact = false, path, authenticated }) => (
  <Route
    exact={exact}
    path={path}
    render={props => (
      authenticated ? (
        React.createElement(component, props)
      ) : (
        <Redirect to={{
          pathname: '/login',
          state: { from: props.location }
        }}/>
      )
    )}
  />
);

Hope this helps!

from redux-react-session.

dipesh008 avatar dipesh008 commented on May 27, 2024

@bernabe9

Thanks for the quick response. I checked this example and tried. But the problem is react-redux-session fetches session into store ASYNC way. so I am not getting the value of authenticated true the first time.

from redux-react-session.

bernabe9 avatar bernabe9 commented on May 27, 2024

I know that react-redux-session fetches the session in an async way, for that it provides the flag checked to check if the session was already fetched.

Here is how it is used in the App component:

const App = ({ authenticated, checked }) => (
  <Router>
    { checked &&
      <div>
        <PrivateRoute exact path="/" component={Home} authenticated={authenticated}/>
        <Route path="/login" component={Login}/>
      </div>
    }
  </Router>
);

So, the first time that PrivateRoute is rendered the session was already fetched and you are sure that the value of authenticated is the real value.

from redux-react-session.

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.