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.
		
		
		
		
		
			
		
			
				
					57 lines
				
				2.6 KiB
			
		
		
			
		
	
	
					57 lines
				
				2.6 KiB
			| 
											3 years ago
										 | "use strict"; | ||
|  | 
 | ||
|  | exports.__esModule = true; | ||
|  | exports.default = void 0; | ||
|  | 
 | ||
|  | var _react = _interopRequireWildcard(require("react")); | ||
|  | 
 | ||
|  | var _Context = require("./Context"); | ||
|  | 
 | ||
|  | var _Subscription = require("../utils/Subscription"); | ||
|  | 
 | ||
|  | var _useIsomorphicLayoutEffect = require("../utils/useIsomorphicLayoutEffect"); | ||
|  | 
 | ||
|  | function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } | ||
|  | 
 | ||
|  | function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } | ||
|  | 
 | ||
|  | function Provider({ | ||
|  |   store, | ||
|  |   context, | ||
|  |   children, | ||
|  |   serverState | ||
|  | }) { | ||
|  |   const contextValue = (0, _react.useMemo)(() => { | ||
|  |     const subscription = (0, _Subscription.createSubscription)(store); | ||
|  |     return { | ||
|  |       store, | ||
|  |       subscription, | ||
|  |       getServerState: serverState ? () => serverState : undefined | ||
|  |     }; | ||
|  |   }, [store, serverState]); | ||
|  |   const previousState = (0, _react.useMemo)(() => store.getState(), [store]); | ||
|  |   (0, _useIsomorphicLayoutEffect.useIsomorphicLayoutEffect)(() => { | ||
|  |     const { | ||
|  |       subscription | ||
|  |     } = contextValue; | ||
|  |     subscription.onStateChange = subscription.notifyNestedSubs; | ||
|  |     subscription.trySubscribe(); | ||
|  | 
 | ||
|  |     if (previousState !== store.getState()) { | ||
|  |       subscription.notifyNestedSubs(); | ||
|  |     } | ||
|  | 
 | ||
|  |     return () => { | ||
|  |       subscription.tryUnsubscribe(); | ||
|  |       subscription.onStateChange = undefined; | ||
|  |     }; | ||
|  |   }, [contextValue, previousState]); | ||
|  |   const Context = context || _Context.ReactReduxContext; // @ts-ignore 'AnyAction' is assignable to the constraint of type 'A', but 'A' could be instantiated with a different subtype
 | ||
|  | 
 | ||
|  |   return /*#__PURE__*/_react.default.createElement(Context.Provider, { | ||
|  |     value: contextValue | ||
|  |   }, children); | ||
|  | } | ||
|  | 
 | ||
|  | var _default = Provider; | ||
|  | exports.default = _default; |