Skip to content

Instantly share code, notes, and snippets.

@polyglotdev
Created September 24, 2021 21:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save polyglotdev/72c09e466d1d7170642114a9375a5afd to your computer and use it in GitHub Desktop.
Save polyglotdev/72c09e466d1d7170642114a9375a5afd to your computer and use it in GitHub Desktop.
shows how Hooks flow in React
// Hook flow
// https://github.com/donavon/hook-flow
// http://localhost:3000/isolated/examples/hook-flow.js
// PLEASE NOTE: there was a subtle change in the order of cleanup functions
// getting called in React 17:
// https://github.com/kentcdodds/react-hooks/issues/90
import * as React from 'react'
function Child() {
console.log('%c Child: render start', 'color: MediumSpringGreen')
const [count, setCount] = React.useState(() => {
console.log('%c Child: useState(() => 0)', 'color: tomato')
return 0
})
React.useEffect(() => {
console.log('%c Child: useEffect(() => {})', 'color: LightCoral')
return () => {
console.log(
'%c Child: useEffect(() => {}) cleanup 🧹',
'color: LightCoral'
)
}
})
React.useEffect(() => {
console.log(
'%c Child: useEffect(() => {}, [])',
'color: MediumTurquoise'
)
return () => {
console.log(
'%c Child: useEffect(() => {}, []) cleanup 🧹',
'color: MediumTurquoise'
)
}
}, [])
React.useEffect(() => {
console.log('%c Child: useEffect(() => {}, [count])', 'color: HotPink')
return () => {
console.log(
'%c Child: useEffect(() => {}, [count]) cleanup 🧹',
'color: HotPink'
)
}
}, [count])
const element = (
<button onClick={() => setCount((previousCount) => previousCount + 1)}>
{count}
</button>
)
console.log('%c Child: render end', 'color: MediumSpringGreen')
return element
}
function App() {
console.log('%cApp: render start', 'color: MediumSpringGreen')
const [showChild, setShowChild] = React.useState(() => {
console.log('%cApp: useState(() => false)', 'color: tomato')
return false
})
React.useEffect(() => {
console.log('%cApp: useEffect(() => {})', 'color: LightCoral')
return () => {
console.log('%cApp: useEffect(() => {}) cleanup 🧹', 'color: LightCoral')
}
})
React.useEffect(() => {
console.log('%cApp: useEffect(() => {}, [])', 'color: MediumTurquoise')
return () => {
console.log(
'%cApp: useEffect(() => {}, []) cleanup 🧹',
'color: MediumTurquoise'
)
}
}, [])
React.useEffect(() => {
console.log('%cApp: useEffect(() => {}, [showChild])', 'color: HotPink')
return () => {
console.log(
'%cApp: useEffect(() => {}, [showChild]) cleanup 🧹',
'color: HotPink'
)
}
}, [showChild])
const element = (
<>
<label>
<input
type="checkbox"
checked={showChild}
onChange={(e) => setShowChild(e.target.checked)}
/>{' '}
show child
</label>
<div
style={{
padding: 10,
margin: 10,
height: 50,
width: 50,
border: 'solid'
}}
>
{showChild ? <Child /> : null}
</div>
</>
)
console.log('%cApp: render end', 'color: MediumSpringGreen')
return element
}
export default App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment