preact-jsx-i18n
v1.0.0
Published
Localization for Preact using JSX components
Downloads
4
Maintainers
Readme
preact-jsx-i18n 🌎
Localization for Preact using JSX components
This library makes it possible to use JSX components as localization inputs. This may seem messy, but is actually very useful in practice. For simple JSON texts with variables that render to strings, preact-localization or preact-i18n are still options.
This tool is particularly interesting when used in conjunction with string-to-jsx-loader. The two tools combined provide a good compromise between simple translation files and flexibility.
Install
$ npm install -S preact-jsx-i18n
Getting Started
- Create a dictionary. Typically JSON files, we'll call ours
fr.js
:
module.exports = {
news: {
title: <b>Nouvelles du Monde</b>,
totalStories: {
none: [<i>Aucun</i>, ' article'],
one: 'Un article',
many: ({ count }) => [count, 'articles'],
},
},
}
- Expose the dictionary to your whole app via
<IntlProvider>
:
import { IntlProvider } from 'preact-jsx-i18n'
import dictionary from './fr'
render(
<IntlProvider dictionary={dictionary}>
<App />
</IntlProvider>
)
- Use
<Text />
to translate string literals:
import { Text } from 'preact-jsx-i18n'
// Assume the "stories" prop is a list of news stories.
const App = ({ stories = [] }) => (
<div class="app">
<h1>
{/* Default fallback text example: */}
<Text id="news.title">World News</Text>
</h1>
<footer>
{/* Pluralization example: */}
<Text
id="news.totalStories"
plural={stories.length}
count={stories.length}
/>
</footer>
</div>
)
That's it!
JSX
As seen in the examples, the dictionary
can either:
- Be a single JSX component
- Be a single string
- Be an array of JSX components and strings
If the text requires a variable, a function needs to be returned.
Fallback Text
Rendering our example app with an empty dictionary (or without the Provider) will attempt to use any text contained within <Text>..</Text>
as fallback text.
In our example, this would mean rendering without a dictionary for news.title
would produce <h1>World News</h1>
.
If we provide a dictionary that has a title
key inside a news
object, that value will be rendered instead.
Pluralization and Templating
In our example, <footer>
is using <Text>
as a convenient way to do pluralization and templating. In our dictionary, news.totalStories
is an Object with pluralization keys. The values in that object will be selected based on an integer plural
prop passed to <Text>
.
Any dictionary value (including pluralization values) can contain arbitrary JSX, or a function with variables that returns JSX. These placeholders get replaced with matched keys in an object passed as the fields
prop. In our example, the "many" plural form is such a template - it will render "5 articles"
when count={5}
.
The available forms for specifying pluralization values are as follows:
"key": { "none": "no apples", "one": "apple", "many": "apples" }
Taking <Text id="news.totalStories" ..>
from our example:
<.. plural={0}>
rendersAucun article
(no articles)<.. plural={1}>
rendersUn article
(one article)<.. plural={2} count={2}>
renders2 articles
<.. plural={3} count={3}>
renders3 articles