Last active
October 4, 2021 00:08
-
-
Save Pyrolistical/2a99ef03d7c850a7702ab913427704b3 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
// BAD | |
const LocaleContext = React.createContext(); | |
const OverrideLocaleContext = React.createContext() | |
const App = () => { | |
const [locale, setLocale] = useState('english'); | |
return <LocaleContext.Provider value={locale}> | |
<Navigation /> | |
</LocaleContext.Provider>; | |
}; | |
const Navigation = () => { | |
return <OverrideLocaleContext.Provider value="french"> | |
<Link href="/href">About</Link> | |
</OverrideLocaleContext.Provider>; | |
}; | |
const Link = ({ href, children }) => { | |
const locale = useContext(LocaleContext); | |
const overrideLocale = useContext(OverrideLocaleContext); | |
return <a href={href}>{translate(overrideLocale || locale, children)}</a>; | |
}; | |
// GOOD | |
const LocaleContext = React.createContext(); | |
const App = () => { | |
const [locale, setLocale] = useState('english'); | |
return <LocaleContext.Provider value={locale}> | |
<Navigation /> | |
</LocaleContext.Provider>; | |
}; | |
const Navigation = () => { | |
return <LocaleContext.Provider value="french"> | |
<Link href="/href">About</Link> | |
</LocaleContext.Provider>; | |
}; | |
const Link = ({ href, children }) => { | |
// uses closest Provider value, which is french | |
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