Last active
March 18, 2022 18:40
-
-
Save oun/395fabdc24cacbd78b1b37422b07e2c2 to your computer and use it in GitHub Desktop.
Use React-Intl API outside React component
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 { IntlProvider } from 'react-intl'; | |
const language = 'en'; | |
// Usually messages is declared in another file. | |
const messages = { | |
greeting: 'Hello' | |
} | |
export const mesg = defineMessages({ | |
greeting: { | |
id: 'greeting', | |
defaultMessage: 'Whats up' | |
} | |
}; | |
const { intl } = new IntlProvider({ locale: language, messages: messages }, {}).getChildContext(); | |
intl.formatMessage(mesg.greeting); // "Hello" | |
intl.formatNumber(1000); // "1,000" |
With the new update to react-intl, this no longer works. Anyone have an update?
https://github.com/formatjs/react-intl/blob/master/docs/API.md#createintl
Hello, I found this createIntl method but I can't understand how to make it work in a Non React file.
Would anyone have a hint on how to implement it ?
Ok, found out. When they write :
// Call imperatively
intl.formatNumber(20)// Pass it to IntlProvider
{foo}
It means you can do one of them, both, but they are separate ways of using it. It's more : the first one OR the other.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With the new update to react-intl, this no longer works. Anyone have an update?