Last active
October 4, 2021 00:08
-
-
Save Pyrolistical/6fe29dc308ee28742b0ee815cb583752 to your computer and use it in GitHub Desktop.
https://blog.battlefy.com/how-to-escape-react-hooks-hell-a66c0d142c9e context over prop drilling
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
// BEFORE | |
const App = () => { | |
const [locale, setLocale] = useState('english'); | |
return <Navigation locale={locale} />; | |
}; | |
const Navigation = ({ locale }) => { | |
return <Link locale={locale} href="/about">About</Link>; | |
}; | |
const Link = ({ locale, href, children }) => { | |
return <a href={href}>{translate(locale, children)}</a>; | |
}; | |
// AFTER | |
const LocaleContext = React.createContext(); | |
const App = () => { | |
const [locale, setLocale] = useState('english'); | |
return <LocaleContext.Provider value={locale}> | |
<Navigation /> | |
</LocaleContext.Provider>; | |
}; | |
const Navigation = () => { | |
return <Link href="/about">About</Link>; | |
}; | |
const Link = ({ href, children }) => { | |
const locale = useContext(LocaleContext); | |
return <a href={href}>{translate(locale, children)}</a>; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment