npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-dialect

v0.6.0

Published

A next-gen translation library for React

Downloads

14

Readme

React Dialect

A next-gen internationalization (i18n) library for React with minimal configuration.

CircleCI License Size Static Badge

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:

  1. Translation files are not bundled with your application's source code hence keeping your bundles small.
  2. 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

  1. Install using yarn add --dev react-dialect or npm i -D react-dialect

  2. 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
    }
  3. Wrap your app using TranslationProvider. The languages and baseLanguage props should be the same as in the dialect.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>,
    );
  4. Use Translate component to display text. This uses <p> by default. Use the as prop to specify the root tag/component

    import { 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.

  5. Generate translations for other languages using npx react-dialect generate. Translation files will be placed in the /public/locales directory.

  6. 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] 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

"Buy Me A Coffee"

Your support would mean so much and keep the motivation going. Thanks 🤗

Contributors

Changelog

  • 0.5.0
    • Added init CLI command which creates the dialect.config.json
  • 0.4.0
    • Added shebang header to CLI for use with npx