2018-11-08
Emulate forceUpdate with React Hooks
programming, react, selfnote, todayilearned
programming, react, selfnote, todayilearned
UPDATE: 2019-02-12
This post would not work any more starting v16.8.0 as pointed out by Dimitar Nestorov in the comment section.
The official React Documentation Is there something like forceUpdate? discourages use of forceUpdate.
Self note...
Today I learned you can use 2nd value in React Hooks method useState to emulate forceUpdate.
Donavon has shared a code snippet on Twitter on how to use React Hooks to emulate forceUpdate.
https://twitter.com/donavon/status/1060538400292421632
Donavon's twit on forceUpdate
Here is the copy/pastable code snippet.
https://gist.github.com/dance2die/59a29c7b9a6be44d59a3f2893dac5c1e
Fork Donavon's code
https://codesandbox.io/s/2jq559vq3r
Here is forceUpdate in action.
I still can't figure out how calling useForceUpdate is able to trigger the re-render as it is not updating any state.
Initially Donavon updated a dummy state but he found out it was unnecessary thus he isn't unsure how it's working, either.
https://twitter.com/donavon/status/1060541358681796608
More questions...
I tried to go thru the code in Chrome devtool but would require understanding React Fiber code to dig it.
Asked the question in Reddit, https://www.reddit.com/r/reactjs/comments/9vgaso/
And /u/acemarke has kindly provided with an explanation.
Reply by /u/acemarke
https://www.reddit.com/r/reactjs/comments/9vgaso/how_does_2nd_value_in_react_hooks_usestates_able/e9by088/
Request for confirmation by rephrase
https://www.reddit.com/r/reactjs/comments/9vgaso/how_does_2nd_value_in_react_hooks_usestates_able/e9c261e/
Confirmation & additional remark
https://www.reddit.com/r/reactjs/comments/9vgaso/how_does_2nd_value_in_react_hooks_usestates_able/e9c6c27/
Photo by freestocks.org on Unsplash