fix: Fix translation issue for not switching the lang
This commit is contained in:
parent
1675d84cae
commit
693f07528e
@ -1,11 +1,12 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import * as React from "react"
|
||||
import { ThemeProvider as NextThemesProvider } from "next-themes"
|
||||
import * as React from "react";
|
||||
import { ThemeProvider as NextThemesProvider } from "next-themes";
|
||||
|
||||
export function ThemeProvider({
|
||||
children,
|
||||
...props
|
||||
}: React.ComponentProps<typeof NextThemesProvider>) {
|
||||
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
|
||||
// eslint-disable-next-line react/jsx-props-no-spreading
|
||||
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
|
||||
}
|
||||
|
@ -20,7 +20,7 @@ export default async function layout(
|
||||
) {
|
||||
const { params, children } = props;
|
||||
const { lang } = await params;
|
||||
const { resources } = await initI18next({ lng: lang });
|
||||
await initI18next({ lng: lang });
|
||||
return (
|
||||
<html lang={lang} suppressHydrationWarning>
|
||||
<body
|
||||
@ -32,9 +32,7 @@ export default async function layout(
|
||||
enableSystem
|
||||
disableTransitionOnChange
|
||||
>
|
||||
<TranslationsProvider lng={lang} resources={resources}>
|
||||
{children}
|
||||
</TranslationsProvider>
|
||||
<TranslationsProvider lng={lang}>{children}</TranslationsProvider>
|
||||
</ThemeProvider>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -2,16 +2,24 @@
|
||||
|
||||
import { I18nextProvider } from "react-i18next";
|
||||
import { i18nInstance, initI18next, LANGS } from "@/bootstrap/i18n/i18n";
|
||||
import { Resource } from "i18next";
|
||||
import { PropsWithChildren } from "react";
|
||||
import { PropsWithChildren, useEffect, useState } from "react";
|
||||
import storeLang from "@/bootstrap/i18n/store-lang-action";
|
||||
import { i18n } from "i18next";
|
||||
|
||||
export default function TranslationsProvider({
|
||||
children,
|
||||
lng,
|
||||
resources,
|
||||
}: PropsWithChildren & { lng: LANGS; resources: Resource }) {
|
||||
if (!resources) return children;
|
||||
initI18next({ lng, resources });
|
||||
export default function TranslationsProvider(
|
||||
props: PropsWithChildren & { lng: LANGS },
|
||||
) {
|
||||
const { lng, children } = props;
|
||||
const [i18n, setI18n] = useState<i18n>();
|
||||
|
||||
useEffect(() => {
|
||||
(async () => {
|
||||
storeLang(lng);
|
||||
setI18n((await initI18next({ lng })).i18n);
|
||||
})();
|
||||
}, [lng]);
|
||||
|
||||
if (!i18n) return null;
|
||||
|
||||
return <I18nextProvider i18n={i18nInstance}>{children}</I18nextProvider>;
|
||||
}
|
||||
|
9
src/bootstrap/i18n/store-lang-action.ts
Normal file
9
src/bootstrap/i18n/store-lang-action.ts
Normal file
@ -0,0 +1,9 @@
|
||||
"use server";
|
||||
|
||||
import { LANGS } from "@/bootstrap/i18n/i18n";
|
||||
import { cookieName } from "@/bootstrap/i18n/settings";
|
||||
import { cookies } from "next/headers";
|
||||
|
||||
export default async function storeLang(lng: LANGS) {
|
||||
(await cookies()).set(cookieName, lng);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user