Skip to content

Instantly share code, notes, and snippets.

@Pyrolistical
Last active October 4, 2021 00:08
Show Gist options
  • Save Pyrolistical/2a99ef03d7c850a7702ab913427704b3 to your computer and use it in GitHub Desktop.
Save Pyrolistical/2a99ef03d7c850a7702ab913427704b3 to your computer and use it in GitHub Desktop.
// 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