React-intl for non components

时间:2017-12-13 04:05:47

标签: reactjs react-intl

目前我有以下代码将react-intl暴露给非组件,但它会将intl的错误抛出为undefined。

我创建了一个单独的组件作为'CurrentLocale'并注入了int-intl。导出函数t将使用来自CurrentLocale上下文的intl formatMessage。

import React from 'react';
import {injectIntl} from 'react-intl';
import PropTypes from 'prop-types';
import { flow } from 'lodash';

class CurrentLocale extends React.Component {


    constructor(props,context){

        super();
        console.log(context,props);
        console.log(this.formatMessage);
        const { intl } = this.context.intl;//this.props;

        this.formatMessage = intl.formatMessage;
    }

    render() {
        return false;
    }
}
CurrentLocale.contextTypes={
    intl:PropTypes.object,
};


injectIntl(CurrentLocale);

function intl() {
    return new CurrentLocale();
}

function formatMessage(...args) {
    return intl().formatMessage(...args);
}


const t = opts => {
    const id = opts.id;
    const type = opts.type;
    const values = opts.values;
    let t;

    switch (type){

        case 'message':
        default:
            t = formatMessage(id, values);
    }

    return t;
}

export default t;

t在另一个普通的javascript文件中被称为

import t from './locale/t';
t( { type: 'message', id:'button.Next'});

以下是错误消息。 enter image description here 提前谢谢。

5 个答案:

答案 0 :(得分:4)

还有另一种非常简单的方法,用于解决类似的问题:为非组件提供对intl对象的访问:

import { IntlProvider, addLocaleData } from 'react-intl';
import localeDataDE from 'react-intl/locale-data/de';
import localeDataEN from 'react-intl/locale-data/en';
import { formMessages } from '../../../store/i18n'; // I defined some messages here
import { Locale } from '../../../../utils'; //I set the locale fom here

addLocaleData([...localeDataEN, ...localeDataDE]);
const locale = Locale.setLocale(); //my own methods to retrieve locale
const messages = Locale.setMessages(); //getting messages from the json file.
const intlProvider = new IntlProvider({ locale, messages });
const { intl } = intlProvider.getChildContext();

export const SCHEMA = {
  salutation: {
    label: intl.formatMessage(formMessages.salutationLabel),
    errormessages: {
      required: intl.formatMessage(formMessages.salutationError),
    },
  },
  academic_title_code: {
    label: intl.formatMessage(formMessages.academicTitleLabel),
  },
};

它的工作就像一个魅力!

答案 1 :(得分:1)

此行:const { intl } = this.context.intl;应为const { intl } = this.context;

以下是某人做与您完全相同的事情的参考文章:https://github.com/yahoo/react-intl/issues/983#issuecomment-342314143

在上面,作者基本上创建了一个导出的单例,而不是每次都像上面那样创建一个新实例。这可能是你想要考虑的事情。

答案 2 :(得分:1)

还有另一种方法可以解决与非组件使用react-intl formatMessage 类似的问题。

创建一个 LocaleStore.js 存储文件。

 import _formatMessage from "format-message";

    export default class LocaleStore {

      formatMessage = (id, values) => {
        if (!(id in this.messages)) {
          console.warn("Id not found in intl list: " + id);
          return id;
        }
        return _formatMessage(this.messages[id], values);
      };
    }

导入LocaleStore您的 CombinedStores.js

import LocaleStore from "./stores/LocaleStore";
import en from "./translations/en";
import de from "./translations/de";
import Global from "./stores/global"
const locale = new LocaleStore("en", {
  en,
  de
});
export default {
global:new Global(locale) 
}

现在您可以在 GlobalStore.js

中使用它
    class GlobalStore {
    constructor(locale) {
     this.locale = locale;
    }

   formatMessage=(message_is,formatLanguage="en")=> {
     return  this.locale.formatMessage(message_id, formatLanguage);
    }
  }

答案 3 :(得分:0)

有一种新的方法可以使用createIntl轻松实现,它返回一个可以在React组件外部使用的对象。这是来自documentation的示例。

import {createIntl, createIntlCache, RawIntlProvider} from 'react-intl'

// This is optional but highly recommended
// since it prevents memory leak
const cache = createIntlCache()

const intl = createIntl({
  locale: 'fr-FR',
  messages: {}
}, cache)

// Call imperatively
intl.formatNumber(20)

// Pass it to IntlProvider
<RawIntlProvider value={intl}>{foo}</RawIntlProvider>

我亲自将intl对象存储在Redux存储中,以便可以在应用程序中的任何位置访问它。

答案 4 :(得分:0)

我更喜欢使用useIntl hook

然后我可以像这样简单地获取值:

import { useIntl } from "react-intl";

const intl = useIntl()
intl.formatMessage({ id: 'myId' }),

https://formatjs.io/docs/react-intl/api/#useintl-hook