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

@betof/react-typefull-translate

v1.3.2

Published

A type-safe hook for translating messages

Downloads

55

Readme

@betof/react-typefull-translate

A type-safe React hook for internationalized translations.

Features

  • Type Safety: Leverages TypeScript to ensure correct usage of translation keys and replacement values.
  • Dynamic Placeholders: Easily embed variables within your translations (e.g., Hello, {{name}}!).
  • Customizable: Hook provides flexibility for integration into your project's translation workflows.

To ensure type safety and seamless usage with the hook, follow these guidelines when creating your messages:

  • Object Structure: Organize your translations within an object. Each top-level key represents a translation key, and nested objects define translations for different languages.
const messages = {
     welcome: { ... },  // Translation key: 'welcome'
     goodbye: { ... },  // Translation key: 'goodbye'
     // ... more translation keys
} as const;
  • Language Codes: Use standard language codes (e.g., 'en', 'ptBr', 'es') as keys for the nested language objects.
const messages = {
   welcome: {
     en: "Welcome!", 
     ptBr: "Bem-vindo!",
     // ... more languages
   }
} as const;
  • Placeholders: Utilize double curly braces to define dynamic placeholders in your translations.
const messages = {
   itemCount: {
      en: "You have {{count}} items.",
      ptBr: "Você tem {{count}} itens.",
   }
} as const;
  • Type Safety with 'as const': Declare your messages object using as const to help TypeScript infer the exact literal types, aiding type safety within the translation hook.
export const messages = {
  // ... your translations
} as const; 

Installation

npm install @betof/react-typefull-translate

Quick Start

  1. Declare the messages and languages
// translations.ts
export type Language = "en" | "ptBr" | "es"

export const messages = {
  welcome: {
    en: "Welcome back, {{username}}!",
    ptBr: "Bem-vindo de volta, {{username}}!",
    es: "¡Bienvenido de nuevo, {{username}}!",
  }
} as const;
  1. Create your hook
// useTranslate.ts
import { useCreateTranslate } from '@betof/react-typefull-translate';
import { type Language, messages } from "./translations";

export const useTranslate = () => {
    const language: Language = "ptBr"; // Get it from your store/url...
    return useCreateTranslate(messages, language);
};
  1. Use the hook
// App.tsx
import { useTranslate } from "./useTranslate";

export const App = () => {
  const { t } = useTranslate();

  return (
    <div>
      <h1>{t('welcome', { username: 'Bob' })}</h1> {/* Output will be ""Bem-vindo de volta, Bob!"" */}
    </div>
  );
}

Sample dynamic language with Zustand

// translations.ts
export type Language = "en" | "ptBr" | "es"

export const messages = {
  welcome: {
    en: "Welcome back, {{username}}!",
    ptBr: "Bem-vindo de volta, {{username}}!",
    es: "¡Bienvenido de nuevo, {{username}}!",
  }
} as const;
// useTranslate.ts
import { create } from "zustand";
import { useCallback } from "react";
import { useCreateTranslate } from '@betof/react-typefull-translate';
import { type Language, messages } from "./translations";

type UseLanguageStore = {
  language: Language;
  changeLanguage(newLanguage: Language): void;
};
export const useLanguage = create<UseLanguageStore>()((set) => ({
  language: "ptBr",
  changeLanguage: (newLanguage) => set({ language: newLanguage }),
}));

export const useTranslate = () => {
  const language = useLanguage(useCallback((s) => s.language, []));
  return useCreateTranslate(messages, language);
};
// App.tsx
import { useLanguage, useTranslate } from "./useTranslate";

import { type Language } from "./translations";
import { useCallback } from "react";

const LANGUAGES: Language[] = ["ptBr", "en", "es"];

export const App = () => {
  const { t } = useTranslate();
  const changeLanguage = useLanguage(useCallback((s) => s.changeLanguage, []));

  return (
    <div>
      {LANGUAGES.map((lang) => (
        <button onClick={() => changeLanguage(lang)}> {lang} </button>
      ))}
      
      <h1>{t("welcome", { username: "Bob" })}</h1>
    </div>
  );
};