Giter Site home page Giter Site logo

codexhalls's Introduction

Development

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.

Internalization (i18n)

i18n in Client Components

Use the useTranslation() hook from DictionaryProvider.

"use client";

import { useTranslation } from "@/components/DictionaryProvider/DictionaryProvider";

export const ClientComponent = () => {
  const t = useTranslation();

  return <p>{t["title"]}</p>;
};

i18n in Server Components

Method 1: Prop Drilling

Since we cannot use react context in server components there is no way to pass down the dictionary translation data from the root layout without prop drilling. This will change once Next.js implements createServerContext and we'll update according but for now you have to just prop drill. The earliest you can start prop drilling is in the RootLayout (app/layout.tsx) but it won't always be possible so see method 2.

Method 2: getDictionary()

If you do not want to prop drill or it is not possible, then you just have to request the translation data again:

import { getDictionary } from "@/utils/get-dictionary";

export default async function ServerComponent({ params }: { params: LParam }) {
  const t = await getDictionary(params.lang);
  return (
    <div>
      <h1>{t["title"]}</h1>
      {// try to prop drill if you need to pass it down again versus calling getDictionary() again in AnotherServerComponent}
      <AnotherServerComponent dictionary={t}></AnotherServerComponent>
    </div>
  );
}

Generally you want to avoid requesting this data again and again so try your best to prop drill until we get Server Context.

codexhalls's People

Contributors

holxsam avatar

Watchers

 avatar

Forkers

julie-do

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.