summaryrefslogtreecommitdiffstats
path: root/src/pages/_app.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/_app.tsx')
-rw-r--r--src/pages/_app.tsx30
1 files changed, 29 insertions, 1 deletions
diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx
index 8194b10..fde93eb 100644
--- a/src/pages/_app.tsx
+++ b/src/pages/_app.tsx
@@ -1,9 +1,37 @@
+import { useEffect, useRef } from 'react';
+import { useRouter } from 'next/router';
+import { i18n } from '@lingui/core';
+import { I18nProvider } from '@lingui/react';
import { AppPropsWithLayout } from '@ts/types/app';
+import { initTranslation } from '@utils/helpers/i18n';
import '../styles/globals.scss';
+initTranslation(i18n);
+
function MyApp({ Component, pageProps }: AppPropsWithLayout) {
+ const router = useRouter();
+ const locale: string = router.locale || router.defaultLocale!;
+ const firstRender = useRef(true);
+
+ if (pageProps.translation && firstRender.current) {
+ i18n.load(locale, pageProps.translation);
+ i18n.activate(locale);
+ firstRender.current = false;
+ }
+
+ useEffect(() => {
+ if (pageProps.translation) {
+ i18n.load(locale, pageProps.translation);
+ i18n.activate(locale);
+ }
+ }, [locale, pageProps.translation]);
+
const getLayout = Component.getLayout ?? ((page) => page);
- return getLayout(<Component {...pageProps} />);
+ return (
+ <I18nProvider i18n={i18n}>
+ {getLayout(<Component {...pageProps} />)}
+ </I18nProvider>
+ );
}
export default MyApp;