Projektstart
This commit is contained in:
21
frontend/node_modules/react-i18next/dist/es/withSSR.js
generated
vendored
Normal file
21
frontend/node_modules/react-i18next/dist/es/withSSR.js
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
import { createElement } from 'react';
|
||||
import { useSSR } from './useSSR.js';
|
||||
import { composeInitialProps } from './context.js';
|
||||
import { getDisplayName } from './utils.js';
|
||||
export const withSSR = () => function Extend(WrappedComponent) {
|
||||
function I18nextWithSSR(_ref) {
|
||||
let {
|
||||
initialI18nStore,
|
||||
initialLanguage,
|
||||
...rest
|
||||
} = _ref;
|
||||
useSSR(initialI18nStore, initialLanguage);
|
||||
return createElement(WrappedComponent, {
|
||||
...rest
|
||||
});
|
||||
}
|
||||
I18nextWithSSR.getInitialProps = composeInitialProps(WrappedComponent);
|
||||
I18nextWithSSR.displayName = `withI18nextSSR(${getDisplayName(WrappedComponent)})`;
|
||||
I18nextWithSSR.WrappedComponent = WrappedComponent;
|
||||
return I18nextWithSSR;
|
||||
};
|
||||
Reference in New Issue
Block a user