mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-07-09 03:04:20 -04:00
77 lines
2.3 KiB
TypeScript
77 lines
2.3 KiB
TypeScript
/*
|
|
* Kyoo - A portable and vast media library solution.
|
|
* Copyright (c) Kyoo.
|
|
*
|
|
* See AUTHORS.md and LICENSE file in the project root for full license information.
|
|
*
|
|
* Kyoo is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* any later version.
|
|
*
|
|
* Kyoo is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Kyoo. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { readCookie } from "@kyoo/models/src/account-internal";
|
|
import i18next, { type InitOptions } from "i18next";
|
|
import type { AppContext, AppInitialProps, AppProps } from "next/app";
|
|
import { type ComponentType, useState } from "react";
|
|
import { I18nextProvider } from "react-i18next";
|
|
import resources from "../../../translations";
|
|
|
|
export const withTranslations = (
|
|
AppToTranslate: ComponentType<AppProps> & {
|
|
getInitialProps: (ctx: AppContext) => Promise<AppInitialProps>;
|
|
},
|
|
) => {
|
|
const i18n = i18next.createInstance();
|
|
const commonOptions: InitOptions = {
|
|
interpolation: {
|
|
escapeValue: false,
|
|
},
|
|
returnEmptyString: false,
|
|
fallbackLng: "en",
|
|
resources,
|
|
};
|
|
|
|
const AppWithTranslations = (props: AppProps) => {
|
|
const [li18n] = useState(() => {
|
|
if (typeof window === "undefined") return i18n;
|
|
i18next.init({
|
|
...commonOptions,
|
|
lng: props.pageProps.__lang,
|
|
});
|
|
i18next.systemLanguage = props.pageProps?.__sysLang;
|
|
return i18next;
|
|
});
|
|
|
|
return (
|
|
<I18nextProvider i18n={li18n}>
|
|
<AppToTranslate {...props} />
|
|
</I18nextProvider>
|
|
);
|
|
};
|
|
AppWithTranslations.getInitialProps = async (ctx: AppContext) => {
|
|
const props: AppInitialProps = await AppToTranslate.getInitialProps(ctx);
|
|
const sysLng = ctx.router.locale || ctx.router.defaultLocale || "en";
|
|
const lng = readCookie(ctx.ctx.req?.headers.cookie, "language") || sysLng;
|
|
await i18n.init({
|
|
...commonOptions,
|
|
lng,
|
|
});
|
|
i18n.systemLanguage = sysLng;
|
|
props.pageProps ??= {};
|
|
props.pageProps.__lang = lng;
|
|
props.pageProps.__sysLang = sysLng;
|
|
return props;
|
|
};
|
|
|
|
return AppWithTranslations;
|
|
};
|