Hooks: useEffect + context
See original GitHub issueCan I use useEffect()
in conjunction with useContext()
.
Meaning, I would like the useEffect()
to rerun when the context changes.
For example:
const MyComponent = (props) => {
const ctx = useContext(MyContext)
useEffect( () => {
//do some useful operation, when the ctx changes.
}, [ctx])
}
Do you want to request a feature or report a bug? possibly a bug
What is the current behavior? ctx does not work with useEffect.
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem. Your bug will get fixed much faster if we can run your code and it doesn’t have dependencies other than React. Paste the link to your JSFiddle (https://jsfiddle.net/Luktwrdm/) or CodeSandbox (https://codesandbox.io/s/new) example below:
What is the expected behavior?
Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React? 16.7.0-alpha.0
Issue Analytics
- State:
- Created 5 years ago
- Reactions:4
- Comments:5 (1 by maintainers)
Ideally you would do this:
But if you really want to do what you’re doing, then this will do the job:
Total nitpick: I don’t think you have to spread the result - it could just be:
😃