Last active
October 4, 2021 04:27
-
-
Save Pyrolistical/96a261bdb64eb4dd3cb3ed2d497fdfbd 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
import {createContext, useContext} from 'react'; | |
const LocaleContext = createContext(); | |
export const ProvideLocale = Locale.Provider; | |
export const useLocale = () => { | |
const locale = useContext(LocaleContext); | |
return locale; | |
}; |
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
import {useMemo} from 'react'; | |
import {useLocale} from './locale'; | |
function translate(locale, englishKey) {..} | |
export const useTranslation = (englishKey) => { | |
const locale = useLocale(); | |
return useMemo(() => translate(locale, englishKey), [locale, englishKey]); | |
}; |
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
import {useTranslation} from './translation'; | |
export const Link = ({ href, children }) => { | |
const translation = useTranslation(children); | |
return <a href={href}>{translation}</a>; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment