1.4.0 • Published 5 years ago

react-i18next-components v1.4.0

Weekly downloads
7
License
ISC
Repository
github
Last release
5 years ago

react-i18next-components

A collection of React components and utilities to simplify react-i18next.

Getting Started:

configureI18n

First you'll need to configure the initialization of the i18n React provider. We provide some defaults on top of the i18next configuration but you can override any property as necessary. Options and their defaults can be found here.

Reference on how locale files should be structured can be found here.

The call to configureI18n must be made before the use of any formatting component.

import { configureI18n } from 'react-i18next-components';
import App from './App'; // your entry page
import ​en from './locales/en';

const App extends React.Component {
  componentWillMount() {
    configureI18n({
      lng: 'en',
      resources: {
        en: {
          translation: en
        },
      }
    })
  }

  render() {
    // ...
  }
}
);

How to use:

All formatting elements can either be used by themeselves which will render a React fragment with the formatted content or with the render prop pattern to inject formatting into elements like text inputs.

Use as standalone component:

import { FormattedMessage } from 'react-i18next-components';

<FormattedMesage id="path.to.key" />;

Use with render prop:

import { FormattedMessage } from 'react-i18next-components';

<FormattedMesage id="path.to.key">
  {text => (
    <input type="text" placeholder={text} />
  )}
</FormattedMessage>

Components:

FormattedMessage

Given an id prop which indicates the path to the translation in your language file, the component will render the correct translation.

Prop NameType
idString
optionsObject
import { FormattedMessage } from 'react-i18next-components';

<FormattedMesage id="path.to.hello" />;

// "Hello"

<FormattedMesage id="path.to.hello" options={{ name: 'Alec' }} />;

// "Hello Alec"

FormattedDictionary

Given any number of props each of which contain a path to a translation in your language file, the component will pass data in the same shape as the props to a child function. This component only supports the render prop pattern.

Prop NameType
...String
optionsObject
import { FormattedDictionary } from 'react-i18next-components';

<FormattedDictionary greeting="path.to.hello" closing="path.to.goodbye">
  {({greeting, closing}) => <p>{greeting}, {closing}</p>}
</FormattedDictionary>

// Hello, Goodbye

<FormattedDictionary greeting="path.to.hello" closing="path.to.goodbye" options={{ greeting: {name: 'Alec' }}}>
  {({greeting, closing}) => <p>{greeting}, {closing}</p>}
</FormattedDictionary>

// Hello Alec, Goodbye

FormattedDate

Given a value prop in any timestamp format, the component will render a formatted date or time in any format supported by moment.js. By default this component will render a date.

Prop NameType
valueAny string supported by moment.js.
formatAny localized format string supported by moment.js.
import { FormattedDate } from 'react-i18next-components';

<FormattedDate value={Date.now()} />;

// "December 1, 2018"

<FormattedDate value={Date.now()} format="l" />;

// "12/01/2018"

<FormattedDate value={Date.now()} format="LLL" />;

// "December 1, 2018 1:08 PM"

FormattedTime

Given a value prop in any timestamp format, the component will render a formatted date or time in any format supported by moment.js. This component is similar to FormattedDate but it's default will be to render a time instead of a date.

Prop NameType
valueAny string supported by moment.js.
formatAny localized format string supported by moment.js.
import { FormattedTime } from 'react-i18next-components';

<FormattedTime value={Date.now()} />;

// "5:00 PM"

<FormattedTime value={Date.now()} format="LTS" />;

// "5:00:00 PM"

FormattedRelativeTime

Given a value prop in any timestamp format, the component will render a human readable string displaying the relative time to the current time regardless of whether it's in the past or future. This string will automatically be translated based on the locale passed to lng on initialization.

Prop NameType
valueAny string supported by moment.js.
import { FormattedRelativeTime } from 'react-i18next-components';

<FormattedRelativeTime value={1544227200} />;

// "in 7 days"

Contributing

Install locally:

This will install all dependencies and linting hooks.

npm install

Run tests:

We use a Jest test runner with enzyme.

npm test

Run locally:

Running this will spin up a local webpack server that watches for changes and will automatically rebuild the project for you.

npm start

Run locally against another project:

  1. Navigate into your application and make sure all existing depdencies are installed.
cd my-app
npm install
  1. Link the local version of the library to your application so that npm points to your local version rather than the app's node_modules folder.
npm link ../path/to/react-i18next-components
  1. Add the library to your apps dependency list in it's package.json, the version number should reflect the version in your local version of the library. Note, attempting to run npm install at this point may fail if the added version hasn't been published to the npm repository.
// ...
dependencies: {
  "react-i18next-components": "@latest",
}
// ...
  1. Import the components you want to test in your app.
import { FormattedMessage } from 'react-i18next-components';

// ...
const MyComponent = () => {
  return <FormattedMessage />;
};
  1. When you're finished developing you can unlink the project to re-point to the remote version of the package.
cd my-app
npm unlink ../path/to/react-i18next-components
1.4.0

5 years ago

1.3.0

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago