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

@marchintosh94/i18n-pro-react

v1.1.2

Published

I18nPro library implementation for React

Downloads

15

Readme

I18nPro React

I18nPro react is a React helper that provides functionalities for internationalization (i18n). It uses the i18nPro library for the actual i18n operations.

📄 Table of Contents

  1. Installation
  2. i18nPro
  3. Usage
  4. License

Installation

npm install @marchintosh94/i18n-pro-react
# or
yarn add @marchintosh94/i18n-pro-react

i18nPro

This is the main library that implements all core functionalities uesd by i18nPro React. Read more about core functionalities and how to use it

🔗I18nPro

Usage

i18nProProvider & i18nProContext

i18nProProvider is a React component that provides the i18nPro instance to the rest of the application using the React Context API. It should be placed at the root of the component tree to ensure that all components have access to the i18nPro functionalities.

i18nProContext is the React Context object that holds the i18nPro instance. It is used by the useI18nPro hook to access the i18nPro instance.

i18nProProvider Props

  • initialSetup: The initial setup object for the i18nPro instance. This object should contain the following properties:
    • locale: The default locale to use.
    • path: The url to get translations or public path to the file containing the translation files. If not provided, you have to provide the messages object.
    • messages: An object containing the translation messages for the default locale. If not provided, you have to provide the path.

Example

import React from 'react';
import { i18nProProvider } from '@marchintosh94/i18n-pro-react';

const initialSetup = {
    locale: 'en',
    path: 'http://localhost:3000/locales/en.json',
};

ReactDOM.render(
    <i18nProProvider initialSetup={initialSetup}>
        <App />
    </i18nProProvider>,
    document.getElementById('root')
);
Using the useI18nProContext context hook
import React from 'react'
import { useI18nProContext } from '@marchintosh94/i18n-pro-react'

const MyComponent = () => {
  const { locale, t, switchLoadLanguage } = useI18nProContext()

  return (
    <div>
      <p>{t('hello')}</p>
      <button onClick={() => switchLoadLanguage('fr', { hello: 'Bonjour' })}>
        Switch to French
      </button>
    </div>
  )
}

useI18nPro

useI18nPro is a custom React hook that provides functionalities for internationalization (i18n).

Return Object

The hook returns an object with the following properties:

  • locale: The current locale.
  • t: A function to translate a given key into the current locale.
  • switchLoadLanguage: A function to change the current language and load the new translations.
  • updateExisitngLocale: A function to update the current locale if it's available in the i18nPro library.

t(value: string, ...args): string

Translates a given key into the current locale.

Parameters
  • value: The key to translate.
  • ...args: The arguments to pass to the i18nPro.t function.
Return Value

The translated string.

switchLoadLanguage(...args): Promise<string>

Changes the current language and loads the new translations.

Parameters
  • ...args: The arguments to pass to the i18nPro.changeLanguage function.
Return Value

A promise that resolves to the updated locale.

updateExisitngLocale(locale: string): string

Updates the current locale if it's available in the i18nPro library.

Parameters
  • locale: The locale to set.
Return Value

The updated locale, or an empty string if the locale was not updated.

withI18nPro Higher-Order Component (Work in progress)

withI18nPro is a higher-order component (HOC) that enhances a component with i18nPro functionality. It uses the useI18nPro hook to provide internationalization (i18n) capabilities to the wrapped component.

Parameters

  • WrappedComponent: The component to be wrapped. This component will receive all the props of the original component, along with the additional props provided by the useI18nPro hook.

Return Value

The HOC returns a new component that renders the WrappedComponent with the additional i18nPro props. The returned component accepts all the props of the WrappedComponent, except for the props provided by the useI18nPro hook.

License

This project is licensed under the MIT License.