ソースコード
javascript
1import axios from "axios"; 2import { useEffect, useState, memo } from "react"; 3import { useHistory } from "react-router-dom"; 4import ChoiceModal from "./ChoiceModal"; 5 6const StopLog = memo((props) => { 7 8// 質問に関するプログラム → 9 console.log('StopLog'); // ① 10 let history = useHistory(); 11 12 const [id, setId] = useState(); 13 const [name, setName] = useState(); 14 const [color, setColor] = useState(); 15 const [startTime, setStartTime] = useState(); 16 17 useEffect(() => { 18 axios.get("http://localhost:3001/logs", 19 { 20 headers: {accessToken: localStorage.getItem("accessToken")} 21 } 22 ).then((res) => { 23 if (res.data.isInvalid) { 24 history.push("/login"); 25 } else { 26 setId(res.data[0].id); 27 setName(res.data[0].item_name); 28 setColor(res.data[0].color); 29 const timeData = res.data[0].start_time.split(','); 30 setStartTime( 31 new Date(timeData[0], timeData[1]-1, timeData[2], timeData[3], timeData[4]) 32 ); 33 } 34 }); 35 }, [history]); 36 37 // ② 38 console.log(id); 39 console.log(name); 40 console.log(color); 41 console.log(startTime); 42// ← 質問に関するプログラム 43 44 const stop = () => { 45 const stopTime = new Date(); 46 const year = stopTime.getFullYear(); 47 const month = stopTime.getMonth()+1; 48 const date = stopTime.getDate(); 49 const hours = stopTime.getHours(); 50 const minutes = stopTime.getMinutes(); 51 const newMinutes = minutes+2-(minutes+2)%5; 52 const time = `${year},${month},${date},${hours},${newMinutes}`; 53 54 if (new Date(year, month-1, date, hours, newMinutes) - startTime === 0) { 55 axios.delete(`http://localhost:3001/logs`, 56 { 57 data: { 58 id: id 59 } 60 } 61 ).then((res) => { 62 props.changeIsStopLog(); 63 props.changeIsDoing(); 64 }); 65 } else { 66 axios.patch(`http://localhost:3001/logs/${id}/stop`, 67 { 68 finish_time: time 69 }, 70 { 71 headers: {accessToken: localStorage.getItem("accessToken")} 72 } 73 ).then((res) => { 74 if (res.data.isInvalid) { 75 history.push("/login"); 76 } else { 77 props.changeIsDoing(); 78 props.changeIsStopLog(); 79 } 80 }); 81 } 82 } 83 84 return ( 85 <ChoiceModal 86 isOpen={props.isStopLog} 87 title="記録を終了しますか?" 88 no="キャンセル" 89 yes="終了" 90 isIcon={true} 91 name={name} 92 color={color} 93 yesEvent={stop} 94 cancel={props.changeIsStopLog} 95 /> 96 ); 97 98}) 99 100export default StopLog;
質問内容
上記ソースコードの「質問に関するプログラム」部分では、コンポーネントが初回レンダリングされた際、useEffectが実行されてaxiosによりサーバーからデータを取得し、そのデータで4つのstateid
, name
, color
, startTime
を更新する処理を行なっています。
この処理の動作を上記ソースコードの①と②のコンソール出力により確認したところ、以下のように出力されました。
StopLog undefined undefined undefined undefined StopLog 「id」の中身 undefined undefined undefined StopLog 「id」の中身 「name」の中身 undefined undefined StopLog 「id」の中身 「name」の中身 「color」の中身 undefined StopLog 「id」の中身 「name」の中身 「color」の中身 「startTime」の中身
よって、setState関数が1つ実行されるたびにレンダリングされていることがわかります。
何故バッチ処理されず、このような動作になるのでしょうか?
4つ全てのsetState関数が実行された後、レンダリングされるようにし、以下のようなコンソール出力が表示されるようにしたいです。
StopLog undefined undefined undefined undefined StopLog StopLog 「id」の中身 「name」の中身 「color」の中身 「startTime」の中身
回答1件
あなたの回答
tips
プレビュー