実現したいこと
コンポーネントの読み込みタイミングを制御する方法を知りたい
困っていること
_app.js
内で毎回、初期データを取得する用のコンポーネントを入れてどのページでも読み込まれるRoot
があるのでが、このRoot
でaxiosでAPIを叩いて、取得したデータをreduxのstoreに入れる前に他のコンポーネントが読み込まれるのを防ぎたいのですが、制御する方法が分からず困っています。
解決したいこと
Root
内でのaxiosを使ってAPIを叩いた時に、reduxのstoreに値を入れるまで他のコンポーネントがレンダリングされないようにしたいです。
js
1//_app.js 2function App({ Component, pageProps }) { 3 return ( 4 <Provider store={store}> 5 <Root /> 6 <Component {...pageProps} /> 7 </Provider > 8 ) 9} 10 11function Root() { 12 const dispatch = useDispatch(); 13 14 useEffect(() => { 15 const axiosData = async () => { 16 await axios.get(API_PATH) 17 .then(res => { dispatch(setUserAction(res.data)) }) 18 } 19 axiosData(); 20 }, []); 21 22 return <></>; 23}
js
1// users.js 2function Users() { 3 useEffect(() => { 4 const selector = useSelector((state: RootState) => state); 5 const user = selector.user; 6 if (user) { return } 7 // ログアウトしていたらリダイレクトする 8 Router.push('/') 9 }) 10}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。