Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 

28 рядки
1.8 KiB

  1. import _defineProperty from "@babel/runtime/helpers/defineProperty";
  2. import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
  3. 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; }
  4. 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; }
  5. import React from 'react';
  6. import { useSSR } from './useSSR';
  7. import { composeInitialProps } from './context';
  8. import { getDisplayName } from './utils';
  9. export function withSSR() {
  10. return function Extend(WrappedComponent) {
  11. function I18nextWithSSR(_ref) {
  12. var initialI18nStore = _ref.initialI18nStore,
  13. initialLanguage = _ref.initialLanguage,
  14. rest = _objectWithoutProperties(_ref, ["initialI18nStore", "initialLanguage"]);
  15. useSSR(initialI18nStore, initialLanguage);
  16. return React.createElement(WrappedComponent, _objectSpread({}, rest));
  17. }
  18. I18nextWithSSR.getInitialProps = composeInitialProps(WrappedComponent);
  19. I18nextWithSSR.displayName = "withI18nextSSR(".concat(getDisplayName(WrappedComponent), ")");
  20. I18nextWithSSR.WrappedComponent = WrappedComponent;
  21. return I18nextWithSSR;
  22. };
  23. }