React Redux Auth中间件

时间:2018-07-03 11:57:58

标签: reactjs redux middleware

我正在使用react / redux做一个登录应用程序,这是我的流程。

  • 用户使用电子邮件/密码对登录并收到令牌,我 存储在Cookie中。
  • 一旦有了令牌,就可以通过在/auth端点上进行请求来获取他的凭据,该端点检索他的个人详细信息-名,姓,电子邮件。

我有一个PrivateRoute,用于执行auth检查,但是我想在所有路由上触发auth检查,而不仅仅是私有路由。 这样,如果用户正在查看主页,我仍然可以在导航中显示他的名字(例如) 主要问题似乎是调用auth操作的适当位置。

App.js

import React, { Component } from 'react';
import { BrowserRouter as Router, Route, Switch } from "react-router-dom";
import { Provider } from 'react-redux';
import store from './store';

// Styling
import './App.css';

// Privat route
import PrivateRoute from './routes/PrivateRoute';

// Common
import Navigation from './components/common/Navigation';

// Components
import Login from './components/Login';
import Home from './components/Home';
import Profile from './components/Profile';
import ArticlesList from './components/Profile/ArticlesList';
import ArticleForm from './components/Profile/ArticleForm';

const App = () => (
    <Provider store={store}>
        <Router>
            <Switch>
                {/* Public routes */}
                <Route exact path="/" component={Home} />
                <Route exact path="/login" component={Login} />

                {/* Private routes */}
                <PrivateRoute exact path="/profile" component={Profile} />
                <PrivateRoute exact path="/profile/articles" component={ArticlesList} />
                <PrivateRoute exact path="/profile/articles/new" component={ArticleForm} />
                <PrivateRoute exact path="/profile/articles/:id(\d+)" component={ArticleForm} />
            </Switch>
        </Router>
    </Provider> 
);

export default App;

这是我的 userActions.js 的一部分,其中定义了auth操作

export const auth = () => async dispatch => {
    dispatch({ type: AUTH_USER_REQUEST });

    try{
        let data = await UserService.auth();

        dispatch({
            type: AUTH_USER_SUCCESS,
            payload: data
        });
    }catch(err){
        dispatch({
            type: AUTH_USER_ERROR,
            payload: err.message
        });
    }
}

我的想法之一是创建一个父Route类来进行路由,然后在其中调用auth

1 个答案:

答案 0 :(得分:0)

为了克服它,我通过使用Redux进行了如下操作:

<Switch>
  <Route 
    path="/"
    component={this.props.auth.authenticationInProgress ? BlankPage : 
      (this.props.auth.isAuthenticated ? SegmentPage : LoginPage)}
    exact={true}
  />
  <Route component={NotFoundPage}/>
</Switch>

如果用户登录,则Route呈现SegmentPage。否则,它将呈现LoginPage。触发登录或注销过程后,将切换身份验证并相应地呈现页面。另外,我保持身份验证过程的状态,以便在身份验证检查期间不会向用户显示私有数据。