|
- import _defineProperty from "@babel/runtime/helpers/defineProperty";
- import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
-
- function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
-
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(source, true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(source).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
-
- import React from 'react';
- import { useSSR } from './useSSR';
- import { composeInitialProps } from './context';
- import { getDisplayName } from './utils';
- export function withSSR() {
- return function Extend(WrappedComponent) {
- function I18nextWithSSR(_ref) {
- var initialI18nStore = _ref.initialI18nStore,
- initialLanguage = _ref.initialLanguage,
- rest = _objectWithoutProperties(_ref, ["initialI18nStore", "initialLanguage"]);
-
- useSSR(initialI18nStore, initialLanguage);
- return React.createElement(WrappedComponent, _objectSpread({}, rest));
- }
-
- I18nextWithSSR.getInitialProps = composeInitialProps(WrappedComponent);
- I18nextWithSSR.displayName = "withI18nextSSR(".concat(getDisplayName(WrappedComponent), ")");
- I18nextWithSSR.WrappedComponent = WrappedComponent;
- return I18nextWithSSR;
- };
- }
|