使用redux保护路由和auth反应路由器v4

时间:2017-12-07 18:23:48

标签: reactjs authentication redux react-router react-router-v4

我正在使用react路由器v4和redux,如果用户没有登录,我想使用私有路径和受保护路由进行重定向。

我有这个路线组件:

class Routes extends Component {

render() {
    const { auth } = this.props;
    // so checks against isAuthenticated can pass
    if (auth.isAuthenticated !== undefined) {
        return (
            <div>
                <Route exact component={() => <Home />} />
                <PublicRoute
                    authed={() => auth.isAuthenticated}
                    path="/login"
                    component={(routerProps) => <Login {...routerProps} />}
                />
                <PublicRoute
                    authed={() => auth.isAuthenticated}
                    path="/register"
                    component={(routerProps) => <Register {...routerProps} />}
                />
                <PrivateRoute
                    authed={() => auth.isAuthenticated}
                    path="/dashboard"
                    component={Dashboard}
                />
            </div>
        );
    } else {
        return <div></div>
    }
  }
}

function mapStateToProps(state) {
  return {
    auth: state.auth
  }
}

export default withRouter(connect(mapStateToProps)(Routes));

它是这样实现的:

class Main extends Component {

constructor(props) {
    super(props);
}

componentDidMount() {
    store.dispatch(checkAuth());
}

render() {
    return (
        <Provider store={store}>
            <Router>
                <Theme>
                    <Routes />
                </Theme>
            </Router>
        </Provider>
    );
  }
}

这是PrivateRoute:

export function PrivateRoute({ component: Component, authed, ...rest }) {
const isAuthenticated = authed();
return (
    <Route
        {...rest}
        render={props =>
            isAuthenticated === true ? (
                <Component {...props} />
            ) : (
                <Redirect
                    to={{
                        pathname: "/login",
                        state: { from: props.location }
                    }}
                />
            )
        }
    />
  );
}

传递auth道具的最佳方法是什么,如果我连接路由组件并从那里传递auth,或者我应该从其他地方传递,也可以连接每个需要它的组件并从那里读取?此方法如何与嵌套路由一起使用,例如/dashboard/settings?感谢

1 个答案:

答案 0 :(得分:3)

实际上,可以使用这种类型的私人路线作出反应,但你应该检查两个时刻:

  1. 我应该检查一下,您没有exact属性,因此/dashboard/panel1/dashboard/panel2之类的所有路由都是私有的

    auth.isAuthenticated}   路径=“/仪表板”   成分= {}控制板 /&GT;

  2. 您将遇到连接问题。有一个简单的解决方法:

    export default connect(mapStateToProps,null,null,{   纯:虚假, })(PrivateRoute);

  3. 此处提供更多信息: React router private routes / redirect not working