react-dialect
v0.6.0
Published
A next-gen translation library for React
Downloads
61
Maintainers
Readme
React Dialect
A next-gen internationalization (i18n) library for React with minimal configuration.
Installation
# Yarn
yarn add --dev react-dialect
# NPM
npm i -D react-dialect
Quick Comparison
Code without i18n
<span className="font-bold text-gray-400">Hello there!</span>
<p className="font-bold text-gray-600">My name is {name} and the year is {year}</p>
<Link to="/profile/about">My Profile</Link>
Code with react-i18next
en.json
(Manually created)
{
"greeting": "Hello there!",
"introduction": "My name is {{name}} and the year is {{year}}",
"myProfile": "My Profile"
}
<span className="font-bold text-gray-400">{t("greeting")}</span>
<p className="font-bold text-gray-600">{t("introduction", { name, year })}</p>
<Link to="/profile/about">{t("myProfile")}</Link>
Code with react-dialect
<Translate as="span" className="font-bold text-gray-400">Hello there!</Translate>
<Translate as "p" className="font-bold text-gray-600">My name is {name} and the year is {year}</Translate>
<Translate as={Link} to="/profile/about">My Profile</Translate>
# Generate translation keys for specified languages (E.g. en.json, fr.json, etc)
# If translation files for languages already exist, new keys are merged into them
npx react-dialect generate
Motivation & Goals
Calling translation functions in JSX (E.g. <span>{t("greeting")}</span>
) is not quite intuitive. I've found myself
spending a good amount of time looking up values of translation keys. Also, for any text to be added, you'd have to
add keys and values to multiple translation files. This can be quite tasking for the average developer who wants to
build and awesome project
I know tools like i18next-scanner, i18next-parser and babel-plugin-i18next-extract exist, but according to i18next, a lot of developers still opt for manual creation.
I wanted an i18n solution where:
- Translation keys are automatically generated, so I don't have to think about them
- Variables are seamlessly interpolated into text without extra effort
- JSX is seamlessly parsed without extra effort
Features
Intuitive Translate Tags
Use natural language in the Translate
tags without the overhead of managing and looking up values for keys.
The Translate
component is polymorphic meaning its props are control by the value of the as
prop
// Natually written JSX strings ✅
<Translate as="p">I love react-dialect</Translate>
<Translate as={Link} to="/profile">Go to profile</Translate>
// Not function calling with keys ❌
<p>{t("loveForReactDialect")}</p>
<Link to="/profile">{t("goToProfile")}</Link>
Automatic Translation Keys Generation
React-dialect
comes with a CLI function which analyzes your source code, looking for instances of the
<Translate></Translate>
component and the translate()
hook function. From these, it generates translation keys
automatically and writes them to your translation files, located in /public/locales
.
- Use the
--remove-unused
flag to remove translation keys which don't exist in your source code anymore - Use the
--show-report
flag to output new translation keys found after execution
npx react-dialect generate
#or
npx react-dialect generate --remove-unused
#or
npx react-dialect generate --show-report
Multiline code strings are converted to single line strings, so using Prettier to format your code isn't an issue.
Seamless Variable Interpolation
Want to insert values into your translations? The same JSX syntax just works with no extra effort!
const [name, setName] = useState("Kwame Opare Asiedu");
const [year, setYear] = useState(2024);
// Ommited component code
<Translate>My name is {name} and the year is {year}</Translate> // It just works!
During generation, react-dialect
includes variable placeholders in the translation keys. Just use the same
placeholders in the translations and you are good to go. The translation key-value pair for the example above for
French would be:
{
"My name is {name} and the year is {year}": "Je m'appelle {name} et l'année est {year}"
}
Lazy Loading Of Translations
React-dialect
will only fetch the translation file for a language when it is first chosen either by the
SwitchLanguage
component of the setCurrentLanguage()
hook function. The translations are cached in memory and are
not re-fetched anytime the language is selected.
This gives the following benefits:
- Translation files are not bundled with your application's source code hence keeping your bundles small.
- Zero load times for base translations, since those are the children of the
Translate
components.
Quickstart
Actually, this is all you need to do even for a production app
Install using
yarn add --dev react-dialect
ornpm i -D react-dialect
Initialize react-dialect using
npx react-dialect init
This creates a
dialect.config.json
file in the root of your project{ content: ["src"], // Root paths of source files (.js, .ts, .jsx, .tsx) languages: ["en", "fr", "ge"], // List of languages to support baseLanguage: "en", // Default language which must be part of "languages" array }
Wrap your app using
TranslationProvider
. Thelanguages
andbaseLanguage
props should be the same as in thedialect.config.json
import {TranslationProvider} from "react-dialect"; import App from "./App.tsx"; ReactDOM.createRoot(document.getElementById("root")!).render( <TranslationProvider languages={["en", "fr", "ge"]} baseLanguage="en"> <App /> </TranslationProvider>, );
Use
Translate
component to display text. This uses<p>
by default. Use theas
prop to specify the root tag/componentimport { Translate as T, SwitchLanguage } from "react-dialect"; import { Link } from "react-router-dom"; const name = "Kwame Opare Asiedu"; export default function Sub() { return ( <div> <SwitchLanguage className="absolute top-4 left-4"/> <T as="p" className="font-bold">My name is {name}</T> <T as={Link} to="/profile">My profile</T> </div> ); }
Note that at this point we haven't generated any translations, but the base text you typed "My name is {name}" will be displayed in the browser when the app is run.
Generate translations for other languages using
npx react-dialect generate
. Translation files will be placed in the/public/locales
directory.Provide translations to the files in
public/locales
directory and switch the language
Congratulations! You've successfully integrated react-dialect
into your workflow.
Roadmap
- [x] Implement a strongly typed polymorphic
Translate
component to replace text tags ✅ - [x] Implement a CLI to statically analyze source code and generate translation keys ✅
- [x] Parse instances of
<Translate>
component, whether imported as default or with an alias ✅ - [x] Parse instances of
translate
function, whether used with default name or destructured with an alias ✅ - [x] Merge new keys into existing translations files ✅
- [x] Optionally remove unused keys (I.e. keys not found in source code) with
--remove-unused
flag ✅ - [x] Optionally display a report of new keys found along with their file paths with
--show-report
flag ✅
- [x] Parse instances of
- [x] Implement a customizable
SwitchLanguage
component ✅ - [x] Generate appropriate type declarations ✅
- [ ] Implement JSX parsing in
Translate
component (Coming soon) - [ ] Provide a service to get values for translation keys (Coming soon)
Supporting
Your support would mean so much and keep the motivation going. Thanks 🤗
Contributors
- Kwame Opare Asiedu (Author)
Changelog
0.5.0
- Added
init
CLI command which creates thedialect.config.json
- Added
0.4.0
- Added shebang header to CLI for use with
npx
- Added shebang header to CLI for use with