You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							29 lines
						
					
					
						
							1.9 KiB
						
					
					
				
			
		
		
	
	
							29 lines
						
					
					
						
							1.9 KiB
						
					
					
				| import _defineProperty from "@babel/runtime/helpers/defineProperty";
 | |
| import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
 | |
| var _excluded = ["initialI18nStore", "initialLanguage"];
 | |
| 
 | |
| 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(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
 | |
| 
 | |
| import { createElement } 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, _excluded);
 | |
| 
 | |
|       useSSR(initialI18nStore, initialLanguage);
 | |
|       return createElement(WrappedComponent, _objectSpread({}, rest));
 | |
|     }
 | |
| 
 | |
|     I18nextWithSSR.getInitialProps = composeInitialProps(WrappedComponent);
 | |
|     I18nextWithSSR.displayName = "withI18nextSSR(".concat(getDisplayName(WrappedComponent), ")");
 | |
|     I18nextWithSSR.WrappedComponent = WrappedComponent;
 | |
|     return I18nextWithSSR;
 | |
|   };
 | |
| } |