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-language-switch

v1.0.13

Published

Simple context-based language-differentiating display and selector components for react.

Downloads

24

Readme

react-language-switch

Simple context-based language-differentiating display and selector components for react. Implements both switches for inline editing and json-based content.

NPM JavaScript Style Guide

Install

npm install --save react-language-switch

Usage

import React from 'react'

import LanguageProvider, { LanguageDisplay, LanguageSelect, LanguageText } from 'react-language-switch'

/*
* Inline-based Component --------------------------------------------
*/
const exampleHeader = {
  title: {
    en: "Example: react-language-switch",
    jp: "事例: react-language-switch",
    de: "Beispiel: react-language-switch"
  },
  meta: [
    {
      name: "description",
      en: "An example page for the react-language-switch library.",
      jp: "Yea my japanese aint good enough for this either...",
      de: "Eine Beispiel Seite für die react-language-switch library."
    }
  ]
}
export function InlineApp() {
  const lang = useLanguage('inline-example')

  return (
      <LanguageProvider
        languages={["en", "jp", "de"]}
        init={'jp'}
        defaultTo={"en"}
        remember={true}
        id="inline-example"
        header={exampleHeader}
      >
        <div className="App">
          <header className="App-header">
            Current Language: {lang.get()}<br />
            <button onClick={() => lang.set('en')}>Change to English</button>
            <LanguageDisplay>
              <en>Hello</en><jp /><de /> {/* If a component at any dom level should
              not be displayed for a specific language, simply add a void language
              tag for that language at that dom level*/}
              <h1>
                <en>Example App</en> {/* Each language tag will only be displayed if 
                the corresponding language is selected. */}
                <jp>事例</jp>
                <de>Beispiel App</de>
              </h1>
              <div className="name-display">
                <en>by Zino J. Vieth</en>
                <jp>ヴィース ジーノ ジョエル からです</jp>
                {/* Omitting German here will cause it to default to the English text*/}
              </div>
            </LanguageDisplay>
            <div>
              <LanguageSelect>
                <en>EN</en>
                &nbsp;|&nbsp;
                <jp>JP</jp>
                &nbsp;|&nbsp;
                <de>DE</de>
              </LanguageSelect>
            </div>
          </header>
        </div>
      </LanguageProvider>
    )
}

/*
* JSON-based Component ----------------------------------------------
*/
const exampleLanguageSetup = {
  id: "json-example",
  remember: true,
  languages: ["en", "jp", "de"],
  init: "en",
  defaultTo: "en",
  header: {
    title: {
        en: "Example: react-language-switch",
        jp: "事例: react-language-switch",
        de: "Beispiel: react-language-switch"
    },
    meta: [
        {
        name: "description",
        en: "An example page for the react-language-switch library.",
        jp: "Yea my japanese aint good enough for this either...",
        de: "Eine Beispiel Seite für die react-language-switch library."
        }
    ]
  },
  content: {
    title: {
      en: "Example App",
      jp: "事例",
      de: "Beispiel App"
    },
    name: {
      en: "by Zino J. Vieth",
      jp: "ヴィース ジーノ ジョエル からです"
      // omitting German here will cause it to default to English
    }
  }
}
export function JsonApp() {

  const lang = useLanguage("json-example")

  return (
    <LanguageProvider
        json={exampleLanguageSetup}
      >
        <div className="App">
          <header className="App-header">
            <h1>
              <LanguageText name="title" />
            </h1>
            <div className="name-display">
              <LanguageText name="name" />
            </div>
            <div>
              <LanguageSelect>
                <en>EN</en>
                &nbsp;|&nbsp;
                <jp>JP</jp>
                &nbsp;|&nbsp;
                <de>DE</de>
              </LanguageSelect>
            </div>
            <button 
              onClick={() => lang.setContent("name", { en: "by some guy", de: "von sonem Typen", jp: "ばかからです" })}
            >Change Name</button>
          </header>
        </div>
      </LanguageProvider>
  )
}

Usage Notes

  • Do not nest LanguageDisplay and LanguageSelect! Both of these functions work recursively to move through the tree of its children.
  • If you are using multiple LanguageProviders with localStorage active in your app, pass each of them a unique id if you want them to be able to remember different language settings.
  • Passing header data via json to the LanguageProvider causes it to use react-helmet to update header/meta tags dynamically. These can be overwritten using react-helmet at a nested level anywhere else in your app. Currently only supports title and meta tag!
  • If you are using multiple LanguageProviders that you pass header-data to, the last to render will always take priority, not the last to be updated! Therefore you should avoid using multiple LanguageProviders to update meta data, unless they update different tags.
  • For the language list, avoid names that are the same as html or jsx tags, if you are planning to use the inline LanguageDisplay component.
  • It is possible, and in certain scenarios necessary, to use both inline and json-based components. For example when wanting to display different text for the LanguageSelector buttons depending on the currently selected language, or when wanting to omitt entire components in some languages while primarily using the json-based component.
  • When using inline componentns, if a component at any dom level should not be displayed for a specific language, simply add a void language tag for that language at that dom level.
  • Generally avoid using multiple of the same language tags at the same dom level when using the inline component, as it may not behave as you expect if you omit any of the language tags listed in the languages list.
  • To use a language of one LanguageProvider within the scope of another LanguageProvider, use the useLanguage hook.
  • If you are using components that iterate over components, avoid using this library's inline components due to their recursive nature (creating a LanguageDisplay component inbetween each dom layer). See the following code for an example.
// DO NOT DO => (because it will most likely lead to incorrect behaviour of your child-iterating component)
<LanguageDisplay>
  <Carousel>
    <div>
      <en>English language content</en>
      <de>German language content</de>
      <jp>Japanese language content</jp>
    </div>
    <div>
      {/*...*/}
    </div>
  </Carousel>
</LanguageDisplay>
// Because this library will generate the following:
<LanguageDisplay>
  <Carousel>
    <LanguageDisplay>
      <div>
        <LanguageDisplay>
          <en>English language content</en>
          <de>German language content</de>
          <jp>Japanese language content</jp>
        </LanguageDisplay>
      </div> 
      <div>
        <LanguageDisplay>
          {/*...*/}
        </LanguageDisplay>
      </div>
      </LanguageDisplay>
  </Carousel>
</LanguageDisplay>

// Optimally you should use the LanguageText component in this case or a custom mapping using the useLanguage hook or simply make sure that LanguageDisplay primarily wraps language tags:
<Carousel>
  <div>
    <LanguageDisplay>
      <en>English language content</en>
      <de>German language content</de>
      <jp>Japanese language content</jp>
    </LanguageDisplay>
  </div>
  <div>
      {/*...*/}
  </div>
</Carousel>

Future Features

  • [ ] JSON-based select component (void element LanguageSelect)
  • [ ] External JSON-fetching
  • [ ] UserAgent / browser language preset

Version History

1.0.13 useLanguage JSON parse error

  • Fixed a json.parse() crash-causing bug.

1.0.12 useLanguage SSR Fix

  • Fixed a bug that caused useLanguage to cause a crash when called in specific situations.

1.0.11 useLanguage Fix

  • Fixed a bug causing useLanguage to continually send storage updates causing a "max render update depth exceeded" error.

1.0.10 Quickfixed SSR Support

1.0.9 Now supports SSR

1.0.8 getContent defaultTo Bugfix

  • Fixed a bug where the app would crash if the defaultTo language would be used when calling useLanguage.getContent()

1.0.7 Quickfixed the Quickfix

1.0.6 getContent Quickfix

1.0.5 Hook Content Getter and Setter

  • Made content accessible through the hook via
const lang = useLanguage("[id]")
lang.getContent("[name]")
lang.setContent(
  "[name]", 
  {
    en: "[english content]", 
    de: "[german content]"
  }
)

1.0.4 Package and Readme Updates

  • Added keywords.
  • Updated usage notes.
  • Added version history.

1.0.3 Quickfix

  • Removed leftover console logs.

1.0.2 Major Fixes

  • Fixed defaultTo bug when using json component.
  • Fixed a bug causing children of LanguageDisplay and LanguageSelect to lose their properties.
  • LanguageText now throws an error when no name-property is passed to it.

1.0.1 Readme Fixes

1.0.0 Original Release

Containing

  • useLanguage
  • inline components: LanguageDisplay, LanguageSelect
  • json component: LanguageText
  • LanguageContext and LanguageProvider (mandatory to use)

License

MIT © ZJVieth