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-redux-translates

v3.5.18

Published

Localization library for handling translations in React

Downloads

9

Readme

react-redux-translate

INSTALLATION

npm i --save react-redux-translates

IMPLEMENTATION

Make sure to work in a redux environment

# This example is done with the old redux version but can also be implemented with redux toolkit
npm i --save [email protected] [email protected] [email protected]
npm i --save-dev @redux-devtools/[email protected]
  1. Create a utils/index.js file and add the following configurations
import { renderToStaticMarkup } from "react-dom/server"

// IMPORT TRANSLATIONS JSON FILE HERE FROM WHERE THEY ARE
import US from "@translations/us.translations.json"
import FR from "@translations/fr.translations.json"

// DEFINE LANGUAGES
const languages = [
  { name: "en-US", code: "us", translation: US },
  { name: "fr-FR", code: "fr", translation: FR }
  // ADD THE LANGUAGES YOU NEED HERE...
]
export const activateTranslations = addtranslate => languages.map(({ translation, code }) => addtranslate(translation, code))
export const initialize = () => ({
  languages: languages.map(({ name, code }) => ({ name, code })),
  translation: US,
  options: { renderToStaticMarkup }
})

  1. Create a minimal redux configuration within a store folder with an index.js and also create 2 folders reducer and middlewares within the store folder with also an index.js

2.1 - store/index.js

import middlewares from "./middlewares"
import reducer from "./reducers"
import { composeWithDevTools } from "@redux-devtools/extension"
import { legacy_createStore as createStore } from "redux"

const options = {
  // OPTIMIZE REDUX DEVTOOL DUE TO SIZE OF STATE
  maxAge: 20,
  trace: false,
  shouldRecordChanges: false
}

const composeEnhancers = composeWithDevTools(options)
const isProd = process.env.NODE_ENV === "production"
export const store = isProd ? createStore(reducer(), middlewares) : createStore(reducer(), composeEnhancers(middlewares))

2.2 - store/reducer/index.js

import { combineReducers } from "redux"
import { localizeReducer } from "react-redux-translates"

const reducer = () => combineReducers({ localize: localizeReducer })

export default reducer

2.3 - store/middlewares/index.js

import thunk from "redux-thunk"
import { applyMiddleware } from "redux"

// IMPORT MIDDLEWARES
export default applyMiddleware(thunk)

  1. then within the index.js make sure to wrap the <App> with <LocalizeProvider>
import React from "react"
import { render } from "react-dom"

// TRANSLATION IMPORTS
import { LocalizeProvider } from "react-redux-translates"
import { initialize } from "@utils"
// REDUX IMPORTS
import { Provider } from "react-redux"
import { store } from "./store"

// COMPONENTS
import App from "./components/App"

const rootElement = document.getElementById("root")
const appRender = (
  <Provider store={store}>
    <LocalizeProvider store={store} initialize={initialize()}>
      <App />
    </LocalizeProvider>
  </Provider>
)

render(appRender, rootElement)

  1. Import Translations into App.js
import React, { useEffect } from "react"
import { withLocalize, getTranslate } from "react-redux-translates"
import { activateTranslations } from "@utils"

const App = ({
  addTranslationForLanguage,
  setActiveLanguage,
  languages,
  translate
}) => {
  // USE ONCE
  useEffect(() => {
    activateTranslations(addTranslationForLanguage)
  }, [])

  // MAIN RENDER WITH EXAMPLE OF PROPS PASSED THROUGH FOOTER
  return (
    <>
      <Header  />
      <Footer setActiveLanguage={setActiveLanguage} languages={languages} />
    </>
  )
}

const mapStateToProps = state => ({
  translate: getTranslate(state.localize),
})

export default withLocalize(mapStateToProps)(App))

  1. Usage within component Header.js for example
import React from "react"
import { useDispatch, useSelector } from "react-redux"

const Header = () => {
  // HOOKS
  const translate = useSelector(state => getTranslate(state.localize))

  return (
    <header>
      <h1>{translate("some.translation.string")}</h1>
    </header>
  )
}

export default Header