ページの読み込みが開始されたときにユーザーが署名されるかどうかを判断することはできませんが、回避策があります。
あなたはできる最後の認証状態を記憶セッション間とタブの間、それを永続化するのlocalStorageに。
次に、ページの読み込みが開始されると、楽観的にユーザーが自動的に再サインインすると想定し、確認できるまで(つまり、onAuthStateChanged
発砲後)ダイアログを延期できます。それ以外の場合、localStorage
キーが空の場合は、ダイアログをすぐに表示できます。
firebase onAuthStateChanged
イベントは、ページが読み込まれてから約2秒後に発生します。
// User signed out in previous session, show dialog immediately because there will be no auto-login
if (!localStorage.getItem('myPage.expectSignIn')) showDialog() // or redirect to sign-in page
firebase.auth().onAuthStateChanged(user => {
if (user) {
// User just signed in, we should not display dialog next time because of firebase auto-login
localStorage.setItem('myPage.expectSignIn', '1')
} else {
// User just signed-out or auto-login failed, we will show sign-in form immediately the next time he loads the page
localStorage.removeItem('myPage.expectSignIn')
// Here implement logic to trigger the login dialog or redirect to sign-in page, if necessary. Don't redirect if dialog is already visible.
// e.g. showDialog()
}
})
私はこれを
Reactと
react-routerで使用してい
ます。上記のコードを
componentDidMount
Appルートコンポーネントに追加しました。そこには、レンダリングで、いくつかあります
PrivateRoutes
<Router>
<Switch>
<PrivateRoute
exact path={routes.DASHBOARD}
component={pages.Dashboard}
/>
...
そして、これが私のPrivateRouteの実装方法です。
export default function PrivateRoute(props) {
return firebase.auth().currentUser != null
? <Route {...props}/>
: localStorage.getItem('myPage.expectSignIn')
// if user is expected to sign in automatically, display Spinner, otherwise redirect to login page.
? <Spinner centered size={400}/>
: (
<>
Redirecting to sign in page.
{ location.replace(`/login?from=${props.path}`) }
</>
)
}
// Using router Redirect instead of location.replace
// <Redirect
// from={props.path}
// to={{pathname: routes.SIGN_IN, state: {from: props.path}}}
// />