Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mutable THREE objects should retain their values in useState #145

Closed
takuma-hmng8 opened this issue Nov 12, 2024 · 0 comments
Closed

Mutable THREE objects should retain their values in useState #145

takuma-hmng8 opened this issue Nov 12, 2024 · 0 comments

Comments

@takuma-hmng8
Copy link
Member

takuma-hmng8 commented Nov 12, 2024

useRefuseStateも、初期値に関数の実行結果を渡すと、レンダリングのたびに実行してしまう。遅延初期化関数を使うことで回避できる

const testing = (log: string) => {
   console.log("初期化:" + log);
   return log;
};

export const Test = () => {
   const [count, setCount] = useState(0);

   const testRef = useRef(testing("useRef:" + count));
   const [testState] = useState(testing("useState:" + count));
   const [testState2] = useState(() => testing("useState2:" + count));

   return (
      <div>
         <p>state:{count}</p>
         <p>testRef:{testRef.current}</p>
         <p>testState:{testState}</p>
         <p>testState2:{testState2}</p>
         <button onClick={() => setCount((prev) => prev + 1)}>click</button>
      </div>
   );
};

この例では、 const [testState2] = useState(() => testing("useState2:" + count));以外は、setCountのたびにtestingを実行する

ミュータブルなTHREEオブジェクトはuseStateで値を保持するべき

const [scene] = useState(() => new THREE.Scene());
@takuma-hmng8 takuma-hmng8 changed the title ミュータブルなTHREEオブジェクトはuseStateで値を保持するべき Mutable THREE objects should retain their values in useState Nov 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant