Search code examples
reactjsreduxreact-reduxreact-intlbabel-plugin-react-intl

intl.formatMessage not working - react-intl


I am trying to do language translation using react-intl. When I use this <FormattedMessage id='importantNews' />, it is working perfect. But when I use the following code with intl.formatMessage(), it is not working and throwing some errors. I don't know what is wrong in it.

import { injectIntl, FormattedMessage } from 'react-intl';

function HelloWorld(props) {
  const { intl } = props;
  const x = intl.formatMessage('hello') + ' ' + intl.formatMessage('world'); //not working
  const y = <FormattedMessage id='hello' />; //working
  return (
    <button>{x}</button>
  );
}

export default injectIntl(HelloWorld);

My root component is like this,

import ReactDOM from 'react-dom';
import { addLocaleData, IntlProvider } from 'react-intl';
import enLocaleData from 'react-intl/locale-data/en';
import taLocaleData from 'react-intl/locale-data/ta';

import HelloWorld from './hello-world';

addLocaleData([
  ...enLocaleData,
  ...taLocaleData
]);

const messages = {
  en: {
    hello: 'Hello',
    world: 'World'
  },
  ta: {
    hello: 'வணக்கம்',
    world: 'உலகம்'
  }
};

ReactDOM.render(
  <IntlProvider key={'en'} locale={'en'} messages={messages['en']}>
    <HelloWorld />
  </IntlProvider>,
  document.getElementById('root')
);

Can someone help me to solve this issue? Thanks in advance.


Solution

  • You need to call formatMessage with MessageDescriptor, not just id:

    const x = intl.formatMessage({id: 'hello'}) + ' ' + intl.formatMessage({id: 'world'});
    

    To better remember this - component is called with prop id:

    <FormatMessage id="Hello" />
    

    Props are in fact a key-value dictionary:

    // this is the same as above
    <FormatMessage {...{id: 'hello'}} />
    

    Now, formatMessage function accepts the same props as FormatMessage component:

    formatMessage({id: 'hello'})