Last active
June 9, 2020 08:51
-
-
Save nirsky/6021d4a8c1c728872348aefa2adcd0eb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Class | |
componentWillReceiveProps(nextProps) { | |
if (nextProps.count !== this.props.count) { | |
console.log('count changed', nextProps.count); | |
} | |
} | |
//Hooks | |
//Printing 1st iteration: | |
useEffect(() => { | |
console.log('count changed', props.count); | |
}, [props.count]) | |
//Skipping first iteration (exactly like componentWillReceiveProps): | |
const isFirstRun = useRef(true); | |
useEffect (() => { | |
if (isFirstRun.current) { | |
isFirstRun.current = false; | |
return; | |
} | |
console.log('count changed', props.count); | |
}, [props.count]); | |
//Class | |
componentDidUpdate() { | |
console.log('Just updated..'); | |
} | |
//Hooks | |
useEffect(() => { | |
console.log('Just updated...'); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @borm , by not working I guess you mean that it prints the first iteration, while
componentWillReceiveProps
will skip it.You’re actually right on that.
There’s a small workaround to skip the first render using
useRef
, this StackOverflow question shows an example:Sorry for the confusion, updated the gist.