UNPKG

react-intl

Version:

Internationalize React apps. This library provides React components and an API to format dates, numbers, and strings, including pluralization and handling translations.

32 lines (31 loc) 1.32 kB
"use strict"; /* * Copyright 2015, Yahoo Inc. * Copyrights licensed under the New BSD License. * See the accompanying LICENSE file for terms. */ Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = tslib_1.__importStar(require("react")); var injectIntl_1 = tslib_1.__importDefault(require("./injectIntl")); var FormattedPlural = function (props) { var value = props.value, other = props.other, children = props.children, _a = props.intl, formatPlural = _a.formatPlural, Text = _a.textComponent; var pluralCategory = formatPlural(value, props); var formattedPlural = props[pluralCategory] || other; if (typeof children === 'function') { return children(formattedPlural); } if (Text) { return React.createElement(Text, null, formattedPlural); } // Work around @types/react where React.FC cannot return string return formattedPlural; }; FormattedPlural.defaultProps = { type: 'cardinal', }; FormattedPlural.displayName = 'FormattedPlural'; // Explicitly annotate type here to workaround API extractor's inability to handle `import('./someModule')` // type annotations when rolling up DTS file. var FormattedPluralWithIntl = injectIntl_1.default(FormattedPlural); exports.default = FormattedPluralWithIntl;