React Router 4で認証済みルートを実装する方法は?


122

私は認証されたルートを実装しようとしていましたが、React Router 4はこれが機能しないようになりました:

<Route exact path="/" component={Index} />
<Route path="/auth" component={UnauthenticatedWrapper}>
    <Route path="/auth/login" component={LoginBotBot} />
</Route>
<Route path="/domains" component={AuthenticatedWrapper}>
    <Route exact path="/domains" component={DomainsIndex} />
</Route>

エラーは:

警告:を同じルートで使用<Route component>しないでください<Route children><Route children>無視されます

その場合、これを実装する正しい方法は何ですか?

react-router(v4)ドキュメントに表示されます。

<Router>
    <div>
    <AuthButton/>
    <ul>
        <li><Link to="/public">Public Page</Link></li>
        <li><Link to="/protected">Protected Page</Link></li>
    </ul>
    <Route path="/public" component={Public}/>
    <Route path="/login" component={Login}/>
    <PrivateRoute path="/protected" component={Protected}/>
    </div>
</Router>

しかし、たくさんのルートをグループ化しながらこれを達成することは可能ですか?


更新

わかりました、いくつかの調査の後、私はこれを思いつきました:

import React, {PropTypes} from "react"
import {Route} from "react-router-dom"

export default class AuthenticatedRoute extends React.Component {
  render() {
    if (!this.props.isLoggedIn) {
      this.props.redirectToLogin()
      return null
    }
    return <Route {...this.props} />
  }
}

AuthenticatedRoute.propTypes = {
  isLoggedIn: PropTypes.bool.isRequired,
  component: PropTypes.element,
  redirectToLogin: PropTypes.func.isRequired
}

render()間違っていると感じてアクションをディスパッチするのは正しいですか。componentDidMountまたは他のフックでも本当に正しく見えませんか?


サーバー側レンダリングを使用しない場合は、comonetWillMountで実行するのが最適です。
mfahadi 2017

@mfahadi、入力ありがとうございます。まだSSRを使用していませんが、将来使用したい場合はレンダリングで保持しますか?また、ユーザーがでリダイレクトされた場合componentWillMount、一瞬でもレンダリングされた出力が表示されますか?
Jiew Meng 2017

componentWillMount()SSRで呼ばれていないと言って本当にすみません、呼ばれcomponentDidMount()ていないということです。componentWillMount()前に呼び出されrender()、ユーザは新しいコンポーネントの何も表示されませんので、。チェックするのに最適な場所です。
mfahadi 2017

1
ディスパッチアクションを呼び出す代わりに<Redirect to="/auth"> 、ドキュメントからを使用することもできます
Fuzail l'Corder

回答:


238

Redirectコンポーネントを使用したいとします。この問題にはいくつかの異なるアプローチがあります。ここに私が好きなものがありauthedます。プロップを受け取り、そのプロップに基づいてレンダリングするPrivateRouteコンポーネントがあります。

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

これで、Routesは次のようになります

<Route path='/' exact component={Home} />
<Route path='/login' component={Login} />
<Route path='/register' component={Register} />
<PrivateRoute authed={this.state.authed} path='/dashboard' component={Dashboard} />

まだ混乱している場合は、この投稿 を参考にしてください- 保護されたルートとReact Router v4による認証


2
これは私の解決策に似ていますが、を使用しています<Redirect /><Redirect />私の場合、問題はreduxで動作しないようです?アクションをディスパッチする必要があります
Jiew Meng 2017

3
理由はわかりませんが、追加するとstate: {from: props.location}}}が発生しましたmaximum call stack exceeded。私はそれを取り除かなければなりませんでした。このオプションが便利な理由を説明してください@Tyler McGinnis?
マーピー

@KeitIGそれは奇妙です。どこから来たのかがわかるので便利です。たとえば、ユーザーに認証を要求し、認証が完了したら、リダイレクトする前に、アクセスしようとしていたページにユーザーを戻します。
タイラーマクギニス2017

6
@farazこれは({component: Component, ...rest})構文を説明します。私も同じ質問でしたlol!stackoverflow.com/a/43484565/6502003
protoEvangelion 2017年

2
@TylerMcGinnisプロップをコンポーネントに渡すためにレンダリング関数を使用する必要がある場合はどうでしょうか?
Cバウアー

16

Tnx Tyler McGinnisによるソリューション。私はタイラー・マクギニスのアイデアからアイデアを作りました。

const DecisionRoute = ({ trueComponent, falseComponent, decisionFunc, ...rest }) => {
  return (
    <Route
      {...rest}

      render={
        decisionFunc()
          ? trueComponent
          : falseComponent
      }
    />
  )
}

このように実装できます

<DecisionRoute path="/signin" exact={true}
            trueComponent={redirectStart}
            falseComponent={SignInPage}
            decisionFunc={isAuth}
          />

decisionFuncは、trueまたはfalseを返す関数です。

const redirectStart = props => <Redirect to="/orders" />

8

(状態管理にReduxを使用)

ユーザーが任意のURLにアクセスしようとした場合、最初にアクセストークンが利用可能かどうかを確認します。ログインページにリダイレクトされない場合は、ユーザーがログインページを使用してログインすると、それをローカルストレージとredux状態に保存します。(localstorageまたはcookies ..私たちはこのトピックを今のところ文脈から外します)。
更新された状態のredux状態とprivateroutesが再レンダリングされるため。これでアクセストークンが取得されたので、ホームページにリダイレクトします。

デコードされた認証ペイロードデータをredux状態で保存し、それを渡してコンテキストを反応させます。(コンテキストを使用する必要はありませんが、ネストされた子コンポーネントの認証にアクセスするには、すべての子コンポーネントをreduxに接続する代わりに、コンテキストから簡単にアクセスできます)。

特別な役割を必要としないすべてのルートは、ログイン後に直接アクセスできます。adminのような役割が必要な場合(権限のないコンポーネントにリダイレクトされない場合に、彼が目的の役割を持っているかどうかをチェックする保護されたルートを作成しました)

役割に基づいてボタンまたは何かを無効にする必要がある場合は、コンポーネントのいずれでも同様です。

単にあなたはこの方法で行うことができます

const authorization = useContext(AuthContext);
const [hasAdminRole] = checkAuth({authorization, roleType:"admin"});
const [hasLeadRole] = checkAuth({authorization, roleType:"lead"});
<Button disable={!hasAdminRole} />Admin can access</Button>
<Button disable={!hasLeadRole || !hasAdminRole} />admin or lead can access</Button>

したがって、ユーザーがlocalstorageにダミートークンを挿入しようとするとどうなるでしょうか。アクセストークンがあるので、ホームコンポーネントにリダイレクトします。私のホームコンポーネントはデータを取得するために残りの呼び出しを行います。jwtトークンはダミーだったため、残りの呼び出しは不正なユーザーを返します。だから私はログアウトを呼び出します(これはlocalstorageをクリアし、再びログインページにリダイレクトします)。ホームページに静的データがあり、API呼び出しを行わない場合(ホームページをロードする前にトークンがREALかどうかを確認できるように、バックエンドにトークン検証API呼び出しが必要です)

index.js

import React from 'react';
import ReactDOM from 'react-dom';
import { Router, Route, Switch } from 'react-router-dom';
import history from './utils/history';


import Store from './statemanagement/store/configureStore';
import Privateroutes from './Privateroutes';
import Logout from './components/auth/Logout';

ReactDOM.render(
  <Store>
    <Router history={history}>
      <Switch>
        <Route path="/logout" exact component={Logout} />
        <Route path="/" exact component={Privateroutes} />
        <Route path="/:someParam" component={Privateroutes} />
      </Switch>
    </Router>
  </Store>,
  document.querySelector('#root')
);

History.js

import { createBrowserHistory as history } from 'history';

export default history({});

Privateroutes.js

import React, { Fragment, useContext } from 'react';
import { Route, Switch, Redirect } from 'react-router-dom';
import { connect } from 'react-redux';
import { AuthContext, checkAuth } from './checkAuth';
import App from './components/App';
import Home from './components/home';
import Admin from './components/admin';
import Login from './components/auth/Login';
import Unauthorized from './components/Unauthorized ';
import Notfound from './components/404';

const ProtectedRoute = ({ component: Component, roleType, ...rest })=> { 
const authorization = useContext(AuthContext);
const [hasRequiredRole] = checkAuth({authorization, roleType});
return (
<Route
  {...rest}
  render={props => hasRequiredRole ? 
  <Component {...props} /> :
   <Unauthorized {...props} />  } 
/>)}; 

const Privateroutes = props => {
  const { accessToken, authorization } = props.authData;
  if (accessToken) {
    return (
      <Fragment>
       <AuthContext.Provider value={authorization}>
        <App>
          <Switch>
            <Route exact path="/" component={Home} />
            <Route path="/login" render={() => <Redirect to="/" />} />
            <Route exact path="/home" component={Home} />
            <ProtectedRoute
            exact
            path="/admin"
            component={Admin}
            roleType="admin"
          />
            <Route path="/404" component={Notfound} />
            <Route path="*" render={() => <Redirect to="/404" />} />
          </Switch>
        </App>
        </AuthContext.Provider>
      </Fragment>
    );
  } else {
    return (
      <Fragment>
        <Route exact path="/login" component={Login} />
        <Route exact path="*" render={() => <Redirect to="/login" />} />
      </Fragment>
    );
  }
};

// my user reducer sample
// const accessToken = localStorage.getItem('token')
//   ? JSON.parse(localStorage.getItem('token')).accessToken
//   : false;

// const initialState = {
//   accessToken: accessToken ? accessToken : null,
//   authorization: accessToken
//     ? jwtDecode(JSON.parse(localStorage.getItem('token')).accessToken)
//         .authorization
//     : null
// };

// export default function(state = initialState, action) {
// switch (action.type) {
// case actionTypes.FETCH_LOGIN_SUCCESS:
//   let token = {
//                  accessToken: action.payload.token
//               };
//   localStorage.setItem('token', JSON.stringify(token))
//   return {
//     ...state,
//     accessToken: action.payload.token,
//     authorization: jwtDecode(action.payload.token).authorization
//   };
//    default:
//         return state;
//    }
//    }

const mapStateToProps = state => {
  const { authData } = state.user;
  return {
    authData: authData
  };
};

export default connect(mapStateToProps)(Privateroutes);

checkAuth.js

import React from 'react';

export const AuthContext = React.createContext();

export const checkAuth = ({ authorization, roleType }) => {
  let hasRequiredRole = false;

  if (authorization.roles ) {
    let roles = authorization.roles.map(item =>
      item.toLowerCase()
    );

    hasRequiredRole = roles.includes(roleType);
  }

  return [hasRequiredRole];
};

デコードされたJWTトークンのサンプル

{
  "authorization": {
    "roles": [
      "admin",
      "operator"
    ]
  },
  "exp": 1591733170,
  "user_id": 1,
  "orig_iat": 1591646770,
  "email": "hemanthvrm@stackoverflow",
  "username": "hemanthvrm"
}

そして、どうやって直接アクセスを処理しSigninますか?ユーザーがサインインしていないことを知っている場合、サインインに直接アクセスするオプションが必要ですよね?
carkod

@carkod ...デフォルトでは、彼がいずれかのルートにアクセスしようとすると、サインインページにリダイレクトされます...(彼はトークンを持っていないため)
Hemanthvrm

@carkod ..ユーザーがログアウトをクリックするか、jwtリフレッシュトークンが期限切れになると、ログアウト関数を呼び出します。ここで、localstorageをクリアしてウィンドウをリフレッシュします...したがって、localstorageにはトークンがありません。.自動的にログインページにリダイレクトされます
Hemanthvrm

reduxを使用しているユーザーには、より良いバージョンがあります。数
Hemanthvrm

3

react-router-domをインストールする

次に、有効なユーザー用と無効なユーザー用の2つのコンポーネントを作成します。

app.jsでこれを試してください

import React from 'react';

import {
BrowserRouter as Router,
Route,
Link,
Switch,
Redirect
} from 'react-router-dom';

import ValidUser from "./pages/validUser/validUser";
import InValidUser from "./pages/invalidUser/invalidUser";
const loggedin = false;

class App extends React.Component {
 render() {
    return ( 
      <Router>
      <div>
        <Route exact path="/" render={() =>(
          loggedin ? ( <Route  component={ValidUser} />)
          : (<Route component={InValidUser} />)
        )} />

        </div>
      </Router>
    )
  }
}
export default App;

4
ルートごと?これはスケーリングしません。
ジムG.

3

@Tyler McGinnisの回答に基づいています。ES6構文とラップされたコンポーネントを持つネストされたルートを使用して別のアプローチを作成しました:

import React, { cloneElement, Children } from 'react'
import { Route, Redirect } from 'react-router-dom'

const PrivateRoute = ({ children, authed, ...rest }) =>
  <Route
    {...rest}
    render={(props) => authed ?
      <div>
        {Children.map(children, child => cloneElement(child, { ...child.props }))}
      </div>
      :
      <Redirect to={{ pathname: '/', state: { from: props.location } }} />}
  />

export default PrivateRoute

そしてそれを使う:

<BrowserRouter>
  <div>
    <PrivateRoute path='/home' authed={auth}>
      <Navigation>
        <Route component={Home} path="/home" />
      </Navigation>
    </PrivateRoute>

    <Route exact path='/' component={PublicHomePage} />
  </div>
</BrowserRouter>

2

久しぶりのことですが、私はプライベートルートとパブリックルートのnpmパッケージに取り組んでいます

プライベートルートを作成する方法は次のとおりです。

<PrivateRoute exact path="/private" authed={true} redirectTo="/login" component={Title} text="This is a private route"/>

また、認証されていないユーザーのみがアクセスできるパブリックルートを作成することもできます

<PublicRoute exact path="/public" authed={false} redirectTo="/admin" component={Title} text="This route is for unauthed users"/>

お役に立てば幸いです。


メインのApp.jsに、2つのパブリックルート、2つのプライベートルート、2つのPropsRouteなど、すべてのインポートとラップを含むより多くの例を提供できますか?ありがとう
MH

2

私は-を使用して実装しました

<Route path='/dashboard' render={() => (
    this.state.user.isLoggedIn ? 
    (<Dashboard authenticate={this.authenticate} user={this.state.user} />) : 
    (<Redirect to="/login" />)
)} />

認証プロップはコンポーネントに渡されます。たとえば、ユーザー状態を変更できるサインアップを使用します。完全なAppRoutes-

import React from 'react';
import { Switch, Route } from 'react-router-dom';
import { Redirect } from 'react-router';

import Home from '../pages/home';
import Login from '../pages/login';
import Signup from '../pages/signup';
import Dashboard from '../pages/dashboard';

import { config } from '../utils/Config';

export default class AppRoutes extends React.Component {

    constructor(props) {
        super(props);

        // initially assuming that user is logged out
        let user = {
            isLoggedIn: false
        }

        // if user is logged in, his details can be found from local storage
        try {
            let userJsonString = localStorage.getItem(config.localStorageKey);
            if (userJsonString) {
                user = JSON.parse(userJsonString);
            }
        } catch (exception) {
        }

        // updating the state
        this.state = {
            user: user
        };

        this.authenticate = this.authenticate.bind(this);
    }

    // this function is called on login/logout
    authenticate(user) {
        this.setState({
            user: user
        });

        // updating user's details
        localStorage.setItem(config.localStorageKey, JSON.stringify(user));
    }

    render() {
        return (
            <Switch>
                <Route exact path='/' component={Home} />
                <Route exact path='/login' render={() => <Login authenticate={this.authenticate} />} />
                <Route exact path='/signup' render={() => <Signup authenticate={this.authenticate} />} />
                <Route path='/dashboard' render={() => (
                    this.state.user.isLoggedIn ? 
                            (<Dashboard authenticate={this.authenticate} user={this.state.user} />) : 
                            (<Redirect to="/login" />)
                )} />
            </Switch>
        );
    }
} 

ここで完全なプロジェクトを確認してください:https : //github.com/varunon9/hello-react


1

ためらいは、独自のコンポーネントを作成してからrenderメソッドでディスパッチすることですか?コンポーネントのrenderメソッドを使用するだけで両方を回避でき<Route>ます。<AuthenticatedRoute>本当に望んでいない限り、コンポーネントを作成する必要はありません。以下のように簡単にすることができます。コンポーネント{...routeProps}のプロパティを<Route>子コンポーネント(<MyComponent>この場合)に送信し続けることを確認して、スプレッドに注意してください。

<Route path='/someprivatepath' render={routeProps => {

   if (!this.props.isLoggedIn) {
      this.props.redirectToLogin()
      return null
    }
    return <MyComponent {...routeProps} anotherProp={somevalue} />

} />

React Router V4レンダードキュメントを参照してください

専用のコンポーネントを作成したい場合は、順調に進んでいるように見えます。React Router V4は純粋に宣言型ルーティングであるため(説明にそのとおりです)、リダイレクトコードを通常のコンポーネントライフサイクルの外に置くことで問題が解決されるとは思いません。React Router自体のコードを見ると、サーバー側レンダリングであるかどうかに応じて、componentWillMountまたはいずれかにcomponentDidMount応じてリダイレクトを実行します。以下のコードは非常にシンプルで、リダイレクトロジックをどこに配置するかを理解するのに役立ちます。

import React, { PropTypes } from 'react'

/**
 * The public API for updating the location programatically
 * with a component.
 */
class Redirect extends React.Component {
  static propTypes = {
    push: PropTypes.bool,
    from: PropTypes.string,
    to: PropTypes.oneOfType([
      PropTypes.string,
      PropTypes.object
    ])
  }

  static defaultProps = {
    push: false
  }

  static contextTypes = {
    router: PropTypes.shape({
      history: PropTypes.shape({
        push: PropTypes.func.isRequired,
        replace: PropTypes.func.isRequired
      }).isRequired,
      staticContext: PropTypes.object
    }).isRequired
  }

  isStatic() {
    return this.context.router && this.context.router.staticContext
  }

  componentWillMount() {
    if (this.isStatic())
      this.perform()
  }

  componentDidMount() {
    if (!this.isStatic())
      this.perform()
  }

  perform() {
    const { history } = this.context.router
    const { push, to } = this.props

    if (push) {
      history.push(to)
    } else {
      history.replace(to)
    }
  }

  render() {
    return null
  }
}

export default Redirect

1

私の以前の答えはスケーラブルではありません。これが私が良いアプローチだと思うものです-

あなたのルート

<Switch>
  <Route
    exact path="/"
    component={matchStateToProps(InitialAppState, {
      routeOpen: true // no auth is needed to access this route
    })} />
  <Route
    exact path="/profile"
    component={matchStateToProps(Profile, {
      routeOpen: false // can set it false or just omit this key
    })} />
  <Route
    exact path="/login"
    component={matchStateToProps(Login, {
      routeOpen: true
    })} />
  <Route
    exact path="/forgot-password"
    component={matchStateToProps(ForgotPassword, {
      routeOpen: true
    })} />
  <Route
    exact path="/dashboard"
    component={matchStateToProps(DashBoard)} />
</Switch>

アイデアはcomponent、認証が必要ない場合は元のコンポーネントを返すか、すでに認証されている場合はデフォルトのコンポーネント(ログインなど)を返すプロップでラッパーを使用することです。

const matchStateToProps = function(Component, defaultProps) {
  return (props) => {
    let authRequired = true;

    if (defaultProps && defaultProps.routeOpen) {
      authRequired = false;
    }

    if (authRequired) {
      // check if loginState key exists in localStorage (Your auth logic goes here)
      if (window.localStorage.getItem(STORAGE_KEYS.LOGIN_STATE)) {
        return <Component { ...defaultProps } />; // authenticated, good to go
      } else {
        return <InitialAppState { ...defaultProps } />; // not authenticated
      }
    }
    return <Component { ...defaultProps } />; // no auth is required
  };
};

認証が必要ない場合は、コンポーネントをmatchStateToProps関数に渡さないでください。これにより、routeOpenフラグの必要性がなくなります
Dheeraj

1

これが簡単でクリーンな保護ルートです

const ProtectedRoute 
  = ({ isAllowed, ...props }) => 
     isAllowed 
     ? <Route {...props}/> 
     : <Redirect to="/authentificate"/>;
const _App = ({ lastTab, isTokenVerified })=> 
    <Switch>
      <Route exact path="/authentificate" component={Login}/>
      <ProtectedRoute 
         isAllowed={isTokenVerified} 
         exact 
         path="/secrets" 
         component={Secrets}/>
      <ProtectedRoute 
         isAllowed={isTokenVerified} 
         exact 
         path="/polices" 
         component={Polices}/>
      <ProtectedRoute 
         isAllowed={isTokenVerified} 
         exact 
         path="/grants" component={Grants}/>
      <Redirect from="/" to={lastTab}/>
    </Switch>

isTokenVerified 認証トークンをチェックするメソッド呼び出しであり、基本的にはブール値を返します。


これは、コンポーネントまたは子をルートに渡す場合に機能することがわかった唯一のソリューションです。
ショーン

注:ProtectedRoute関数でisTokenVerified()を呼び出しただけで、すべてのルートでisAllowedプロップを渡す必要はありませんでした。
ショーン

1

どうやってReactとTypescriptで解決したのか。それが役に立てば幸い !

import * as React from 'react';
import { Route, RouteComponentProps, RouteProps, Redirect } from 'react-router';

const PrivateRoute: React.SFC<RouteProps> = ({ component: Component, ...rest }) => {
    if (!Component) {
      return null;
    }
    const isLoggedIn = true; // Add your provider here
    return (
      <Route
        {...rest}
            render={(props: RouteComponentProps<{}>) => isLoggedIn ? (<Component {...props} />) : (<Redirect to={{ pathname: '/', state: { from: props.location } }} />)}
      />
    );
  };

export default PrivateRoute;








<PrivateRoute component={SignIn} path="/signin" />


0
const Root = ({ session }) => {
  const isLoggedIn = session && session.getCurrentUser
  return (
    <Router>
      {!isLoggedIn ? (
        <Switch>
          <Route path="/signin" component={<Signin />} />
          <Redirect to="/signin" />
        </Switch>
      ) : (
        <Switch>
          <Route path="/" exact component={Home} />
          <Route path="/about" component={About} />
          <Route path="/something-else" component={SomethingElse} />
          <Redirect to="/" />
        </Switch>
      )}
    </Router>
  )
}

0

私もいくつかの答えを探していました。ここですべての答えは非常に良いですが、ユーザーがアプリケーションを開いた後でアプリケーションを起動した場合にどのように使用するかについての答えはありません。(私は一緒にクッキーを使用すると言うつもりでした)。

異なるprivateRouteコンポーネントを作成する必要もありません。以下は私のコードです

    import React, { Component }  from 'react';
    import { Route, Switch, BrowserRouter, Redirect } from 'react-router-dom';
    import { Provider } from 'react-redux';
    import store from './stores';
    import requireAuth from './components/authentication/authComponent'
    import SearchComponent from './components/search/searchComponent'
    import LoginComponent from './components/login/loginComponent'
    import ExampleContainer from './containers/ExampleContainer'
    class App extends Component {
    state = {
     auth: true
    }


   componentDidMount() {
     if ( ! Cookies.get('auth')) {
       this.setState({auth:false });
     }
    }
    render() {
     return (
      <Provider store={store}>
       <BrowserRouter>
        <Switch>
         <Route exact path="/searchComponent" component={requireAuth(SearchComponent)} />
         <Route exact path="/login" component={LoginComponent} />
         <Route exact path="/" component={requireAuth(ExampleContainer)} />
         {!this.state.auth &&  <Redirect push to="/login"/> }
        </Switch>
       </BrowserRouter>
      </Provider>);
      }
     }
    }
    export default App;

そしてこれがauthComponentです

import React  from 'react';
import { withRouter } from 'react-router';
import * as Cookie from "js-cookie";
export default function requireAuth(Component) {
class AuthenticatedComponent extends React.Component {
 constructor(props) {
  super(props);
  this.state = {
   auth: Cookie.get('auth')
  }
 }
 componentDidMount() {
  this.checkAuth();
 }
 checkAuth() {
  const location = this.props.location;
  const redirect = location.pathname + location.search;
  if ( ! Cookie.get('auth')) {
   this.props.history.push(`/login?redirect=${redirect}`);
  }
 }
render() {
  return Cookie.get('auth')
   ? <Component { ...this.props } />
   : null;
  }
 }
 return  withRouter(AuthenticatedComponent)
}

私が書いたブログの下で、そこにも詳細な説明があります。

ReactJSで保護されたルートを作成する


0

最終的に私の組織に最適なソリューションの詳細は以下のとおりです。それは、sysadminルートのレンダリングのチェックを追加し、ユーザーがページ内にいることが許可されていない場合は、ユーザーをアプリケーションの別のメインパスにリダイレクトするだけです。

SysAdminRoute.tsx

import React from 'react';
import { Route, Redirect, RouteProps } from 'react-router-dom';
import AuthService from '../services/AuthService';
import { appSectionPageUrls } from './appSectionPageUrls';
interface IProps extends RouteProps {}
export const SysAdminRoute = (props: IProps) => {
    var authService = new AuthService();
    if (!authService.getIsSysAdmin()) { //example
        authService.logout();
        return (<Redirect to={{
            pathname: appSectionPageUrls.site //front-facing
        }} />);
    }
    return (<Route {...props} />);
}

私たちの実装には、一般向けの/ site、ログインしているクライアント/ app、および/ sysadminのsys管理ツールの3つの主要なルートがあります。「認証」に基づいてリダイレクトされ、これは/ sysadminのページです。

SysAdminNav.tsx

<Switch>
    <SysAdminRoute exact path={sysadminUrls.someSysAdminUrl} render={() => <SomeSysAdminUrl/> } />
    //etc
</Switch>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.