Skip to content

Instantly share code, notes, and snippets.

@NMinhNguyen
Last active February 27, 2020 02:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NMinhNguyen/9d6863f70b44b953092c842465b3be90 to your computer and use it in GitHub Desktop.
Save NMinhNguyen/9d6863f70b44b953092c842465b3be90 to your computer and use it in GitHub Desktop.
ReactShallowRenderer builds
/** @license React vundefined
* react-test-renderer-shallow.development.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'use strict';
if (process.env.NODE_ENV !== "production") {
(function() {
'use strict';
var reactShallowRenderer = require('react-shallow-renderer');
module.exports = reactShallowRenderer;
})();
}
/** @license React vundefined
* react-test-renderer-shallow.development.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'use strict';
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('react')) :
typeof define === 'function' && define.amd ? define(['react'], factory) :
(global = global || self, global.ReactShallowRenderer = factory(global.React));
}(this, (function (React) { 'use strict';
var ReactInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
var _assign = ReactInternals.assign;
// The Symbol used to tag the ReactElement-like types. If there is no native Symbol
// nor polyfill, then a plain number is used for performance.
var hasSymbol = typeof Symbol === 'function' && Symbol.for;
var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7;
var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca;
var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb;
var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc;
var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2;
var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd;
var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary
// (unstable) APIs that have been removed. Can we remove the symbols?
var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf;
var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf;
var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0;
var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1;
var REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3;
var REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4;
function typeOf(object) {
if (typeof object === 'object' && object !== null) {
var $$typeof = object.$$typeof;
switch ($$typeof) {
case REACT_ELEMENT_TYPE:
var type = object.type;
switch (type) {
case REACT_ASYNC_MODE_TYPE:
case REACT_CONCURRENT_MODE_TYPE:
case REACT_FRAGMENT_TYPE:
case REACT_PROFILER_TYPE:
case REACT_STRICT_MODE_TYPE:
case REACT_SUSPENSE_TYPE:
return type;
default:
var $$typeofType = type && type.$$typeof;
switch ($$typeofType) {
case REACT_CONTEXT_TYPE:
case REACT_FORWARD_REF_TYPE:
case REACT_LAZY_TYPE:
case REACT_MEMO_TYPE:
case REACT_PROVIDER_TYPE:
return $$typeofType;
default:
return $$typeof;
}
}
case REACT_PORTAL_TYPE:
return $$typeof;
}
}
return undefined;
} // AsyncMode is deprecated along with isAsyncMode
var ForwardRef = REACT_FORWARD_REF_TYPE;
function isForwardRef(object) {
return typeOf(object) === REACT_FORWARD_REF_TYPE;
}
function isMemo(object) {
return typeOf(object) === REACT_MEMO_TYPE;
}
/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
var ReactPropTypesSecret_1 = ReactPropTypesSecret;
var printWarning = function() {};
{
var ReactPropTypesSecret$1 = ReactPropTypesSecret_1;
var loggedTypeFailures = {};
var has = Function.call.bind(Object.prototype.hasOwnProperty);
printWarning = function(text) {
var message = 'Warning: ' + text;
if (typeof console !== 'undefined') {
console.error(message);
}
try {
// --- Welcome to debugging React ---
// This error was thrown as a convenience so that you can use this stack
// to find the callsite that caused this warning to fire.
throw new Error(message);
} catch (x) {}
};
}
/**
* Assert that the values match with the type specs.
* Error messages are memorized and will only be shown once.
*
* @param {object} typeSpecs Map of name to a ReactPropType
* @param {object} values Runtime values that need to be type-checked
* @param {string} location e.g. "prop", "context", "child context"
* @param {string} componentName Name of the component for error messages.
* @param {?Function} getStack Returns the component stack.
* @private
*/
function checkPropTypes(typeSpecs, values, location, componentName, getStack) {
{
for (var typeSpecName in typeSpecs) {
if (has(typeSpecs, typeSpecName)) {
var error;
// Prop type validation may throw. In case they do, we don't want to
// fail the render phase where it didn't fail before. So we log it.
// After these have been cleaned up, we'll let them throw.
try {
// This is intentionally an invariant that gets caught. It's the same
// behavior as without this statement except with a better message.
if (typeof typeSpecs[typeSpecName] !== 'function') {
var err = Error(
(componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' +
'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.'
);
err.name = 'Invariant Violation';
throw err;
}
error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret$1);
} catch (ex) {
error = ex;
}
if (error && !(error instanceof Error)) {
printWarning(
(componentName || 'React class') + ': type specification of ' +
location + ' `' + typeSpecName + '` is invalid; the type checker ' +
'function must return `null` or an `Error` but returned a ' + typeof error + '. ' +
'You may have forgotten to pass an argument to the type checker ' +
'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' +
'shape all require an argument).'
);
}
if (error instanceof Error && !(error.message in loggedTypeFailures)) {
// Only monitor this failure once because there tends to be a lot of the
// same error.
loggedTypeFailures[error.message] = true;
var stack = getStack ? getStack() : '';
printWarning(
'Failed ' + location + ' type: ' + error.message + (stack != null ? stack : '')
);
}
}
}
}
}
/**
* Resets warning cache when testing.
*
* @private
*/
checkPropTypes.resetWarningCache = function() {
{
loggedTypeFailures = {};
}
};
var checkPropTypes_1 = checkPropTypes;
/** @license ReactShallowRenderer v16.12.0
* react-shallow-renderer.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
var BEFORE_SLASH_RE = /^(.*)[\\\/]/;
function describeComponentFrame (name, source, ownerName) {
var sourceInfo = '';
if (source) {
var path = source.fileName;
var fileName = path.replace(BEFORE_SLASH_RE, '');
{
// In DEV, include code for a common special case:
// prefer "folder/index.js" instead of just "index.js".
if (/^index\./.test(fileName)) {
var match = path.match(BEFORE_SLASH_RE);
if (match) {
var pathBeforeSlash = match[1];
if (pathBeforeSlash) {
var folderName = pathBeforeSlash.replace(BEFORE_SLASH_RE, '');
fileName = folderName + '/' + fileName;
}
}
}
}
sourceInfo = ' (at ' + fileName + ':' + source.lineNumber + ')';
} else if (ownerName) {
sourceInfo = ' (created by ' + ownerName + ')';
}
return '\n in ' + (name || 'Unknown') + sourceInfo;
}
var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED; // Prevent newer renderers from RTE when used with older react package versions.
// Current owner and dispatcher used to share the same ref,
// but PR #14548 split them out to better support the react-debug-tools package.
if (!ReactSharedInternals.hasOwnProperty('ReactCurrentDispatcher')) {
ReactSharedInternals.ReactCurrentDispatcher = {
current: null
};
}
if (!ReactSharedInternals.hasOwnProperty('ReactCurrentBatchConfig')) {
ReactSharedInternals.ReactCurrentBatchConfig = {
suspense: null
};
}
function error(format) {
{
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
args[_key2 - 1] = arguments[_key2];
}
printWarning$1('error', format, args);
}
}
function printWarning$1(level, format, args) {
{
var hasExistingStack = args.length > 0 && typeof args[args.length - 1] === 'string' && args[args.length - 1].indexOf('\n in') === 0;
if (!hasExistingStack) {
var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
var stack = ReactDebugCurrentFrame.getStackAddendum();
if (stack !== '') {
format += '%s';
args = args.concat([stack]);
}
}
var argsWithFormat = args.map(function (item) {
return '' + item;
}); // Careful: RN currently depends on this prefix
argsWithFormat.unshift('Warning: ' + format); // We intentionally don't use spread (or .apply) directly because it
// breaks IE9: https://github.com/facebook/react/issues/13610
Function.prototype.apply.call(console[level], console, argsWithFormat);
try {
// --- Welcome to debugging React ---
// This error was thrown as a convenience so that you can use this stack
// to find the callsite that caused this warning to fire.
var argIndex = 0;
var message = 'Warning: ' + format.replace(/%s/g, function () {
return args[argIndex++];
});
throw new Error(message);
} catch (x) {}
}
}
// The Symbol used to tag the ReactElement-like types. If there is no native Symbol
// nor polyfill, then a plain number is used for performance.
var hasSymbol$1 = typeof Symbol === 'function' && Symbol.for;
var REACT_PORTAL_TYPE$1 = hasSymbol$1 ? Symbol.for('react.portal') : 0xeaca;
var REACT_FRAGMENT_TYPE$1 = hasSymbol$1 ? Symbol.for('react.fragment') : 0xeacb;
var REACT_STRICT_MODE_TYPE$1 = hasSymbol$1 ? Symbol.for('react.strict_mode') : 0xeacc;
var REACT_PROFILER_TYPE$1 = hasSymbol$1 ? Symbol.for('react.profiler') : 0xead2;
var REACT_PROVIDER_TYPE$1 = hasSymbol$1 ? Symbol.for('react.provider') : 0xeacd;
var REACT_CONTEXT_TYPE$1 = hasSymbol$1 ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary
var REACT_FORWARD_REF_TYPE$1 = hasSymbol$1 ? Symbol.for('react.forward_ref') : 0xead0;
var REACT_SUSPENSE_TYPE$1 = hasSymbol$1 ? Symbol.for('react.suspense') : 0xead1;
var REACT_SUSPENSE_LIST_TYPE = hasSymbol$1 ? Symbol.for('react.suspense_list') : 0xead8;
var REACT_MEMO_TYPE$1 = hasSymbol$1 ? Symbol.for('react.memo') : 0xead3;
var REACT_LAZY_TYPE$1 = hasSymbol$1 ? Symbol.for('react.lazy') : 0xead4;
var REACT_CHUNK_TYPE = hasSymbol$1 ? Symbol.for('react.chunk') : 0xead9;
var Resolved = 1;
function refineResolvedLazyComponent(lazyComponent) {
return lazyComponent._status === Resolved ? lazyComponent._result : null;
}
function getWrappedName(outerType, innerType, wrapperName) {
var functionName = innerType.displayName || innerType.name || '';
return outerType.displayName || (functionName !== '' ? wrapperName + "(" + functionName + ")" : wrapperName);
}
function getComponentName(type) {
if (type == null) {
// Host root, text node or just invalid type.
return null;
}
{
if (typeof type.tag === 'number') {
error('Received an unexpected object in getComponentName(). ' + 'This is likely a bug in React. Please file an issue.');
}
}
if (typeof type === 'function') {
return type.displayName || type.name || null;
}
if (typeof type === 'string') {
return type;
}
switch (type) {
case REACT_FRAGMENT_TYPE$1:
return 'Fragment';
case REACT_PORTAL_TYPE$1:
return 'Portal';
case REACT_PROFILER_TYPE$1:
return "Profiler";
case REACT_STRICT_MODE_TYPE$1:
return 'StrictMode';
case REACT_SUSPENSE_TYPE$1:
return 'Suspense';
case REACT_SUSPENSE_LIST_TYPE:
return 'SuspenseList';
}
if (typeof type === 'object') {
switch (type.$$typeof) {
case REACT_CONTEXT_TYPE$1:
return 'Context.Consumer';
case REACT_PROVIDER_TYPE$1:
return 'Context.Provider';
case REACT_FORWARD_REF_TYPE$1:
return getWrappedName(type, type.render, 'ForwardRef');
case REACT_MEMO_TYPE$1:
return getComponentName(type.type);
case REACT_CHUNK_TYPE:
return getComponentName(type.render);
case REACT_LAZY_TYPE$1:
{
var thenable = type;
var resolvedThenable = refineResolvedLazyComponent(thenable);
if (resolvedThenable) {
return getComponentName(resolvedThenable);
}
break;
}
}
}
return null;
}
/**
* inlined Object.is polyfill to avoid requiring consumers ship their own
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
*/
function is(x, y) {
return x === y && (x !== 0 || 1 / x === 1 / y) || x !== x && y !== y // eslint-disable-line no-self-compare
;
}
var objectIs = typeof Object.is === 'function' ? Object.is : is;
var hasOwnProperty = Object.prototype.hasOwnProperty;
/**
* Performs equality by iterating through keys on an object and returning false
* when any key has values which are not strictly equal between the arguments.
* Returns true when the values of all keys are strictly equal.
*/
function shallowEqual(objA, objB) {
if (objectIs(objA, objB)) {
return true;
}
if (typeof objA !== 'object' || objA === null || typeof objB !== 'object' || objB === null) {
return false;
}
var keysA = Object.keys(objA);
var keysB = Object.keys(objB);
if (keysA.length !== keysB.length) {
return false;
} // Test for A's keys different from B.
for (var i = 0; i < keysA.length; i++) {
if (!hasOwnProperty.call(objB, keysA[i]) || !objectIs(objA[keysA[i]], objB[keysA[i]])) {
return false;
}
}
return true;
}
var ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher;
var RE_RENDER_LIMIT = 25;
var emptyObject = {};
{
Object.freeze(emptyObject);
} // In DEV, this is the name of the currently executing primitive hook
var currentHookNameInDev;
function areHookInputsEqual(nextDeps, prevDeps) {
if (prevDeps === null) {
{
error('%s received a final argument during this render, but not during ' + 'the previous render. Even though the final argument is optional, ' + 'its type cannot change between renders.', currentHookNameInDev);
}
return false;
}
{
// Don't bother comparing lengths in prod because these arrays should be
// passed inline.
if (nextDeps.length !== prevDeps.length) {
error('The final argument passed to %s changed size between renders. The ' + 'order and size of this array must remain constant.\n\n' + 'Previous: %s\n' + 'Incoming: %s', currentHookNameInDev, "[" + nextDeps.join(', ') + "]", "[" + prevDeps.join(', ') + "]");
}
}
for (var i = 0; i < prevDeps.length && i < nextDeps.length; i++) {
if (objectIs(nextDeps[i], prevDeps[i])) {
continue;
}
return false;
}
return true;
}
var Updater =
/*#__PURE__*/
function () {
function Updater(renderer) {
this._renderer = renderer;
this._callbacks = [];
}
var _proto = Updater.prototype;
_proto._enqueueCallback = function _enqueueCallback(callback, publicInstance) {
if (typeof callback === 'function' && publicInstance) {
this._callbacks.push({
callback: callback,
publicInstance: publicInstance
});
}
};
_proto._invokeCallbacks = function _invokeCallbacks() {
var callbacks = this._callbacks;
this._callbacks = [];
callbacks.forEach(function (_ref) {
var callback = _ref.callback,
publicInstance = _ref.publicInstance;
callback.call(publicInstance);
});
};
_proto.isMounted = function isMounted(publicInstance) {
return !!this._renderer._element;
};
_proto.enqueueForceUpdate = function enqueueForceUpdate(publicInstance, callback, callerName) {
this._enqueueCallback(callback, publicInstance);
this._renderer._forcedUpdate = true;
this._renderer.render(this._renderer._element, this._renderer._context);
};
_proto.enqueueReplaceState = function enqueueReplaceState(publicInstance, completeState, callback, callerName) {
this._enqueueCallback(callback, publicInstance);
this._renderer._newState = completeState;
this._renderer.render(this._renderer._element, this._renderer._context);
};
_proto.enqueueSetState = function enqueueSetState(publicInstance, partialState, callback, callerName) {
this._enqueueCallback(callback, publicInstance);
var currentState = this._renderer._newState || publicInstance.state;
if (typeof partialState === 'function') {
partialState = partialState.call(publicInstance, currentState, publicInstance.props);
} // Null and undefined are treated as no-ops.
if (partialState === null || partialState === undefined) {
return;
}
this._renderer._newState = _assign({}, currentState, {}, partialState);
this._renderer.render(this._renderer._element, this._renderer._context);
};
return Updater;
}();
function createHook() {
return {
memoizedState: null,
queue: null,
next: null
};
}
function basicStateReducer(state, action) {
return typeof action === 'function' ? action(state) : action;
}
var ReactShallowRenderer =
/*#__PURE__*/
function () {
function ReactShallowRenderer() {
this._reset();
}
var _proto2 = ReactShallowRenderer.prototype;
_proto2._reset = function _reset() {
this._context = null;
this._element = null;
this._instance = null;
this._newState = null;
this._rendered = null;
this._rendering = false;
this._forcedUpdate = false;
this._updater = new Updater(this);
this._dispatcher = this._createDispatcher();
this._workInProgressHook = null;
this._firstWorkInProgressHook = null;
this._isReRender = false;
this._didScheduleRenderPhaseUpdate = false;
this._renderPhaseUpdates = null;
this._numberOfReRenders = 0;
};
_proto2._validateCurrentlyRenderingComponent = function _validateCurrentlyRenderingComponent() {
if (!(this._rendering && !this._instance)) {
throw Error("Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://fb.me/react-invalid-hook-call for tips about how to debug and fix this problem.");
}
};
_proto2._createDispatcher = function _createDispatcher() {
var _this = this;
var useReducer = function useReducer(reducer, initialArg, init) {
_this._validateCurrentlyRenderingComponent();
_this._createWorkInProgressHook();
var workInProgressHook = _this._workInProgressHook;
if (_this._isReRender) {
// This is a re-render.
var queue = workInProgressHook.queue;
var dispatch = queue.dispatch;
if (_this._numberOfReRenders > 0) {
// Apply the new render phase updates to the previous current hook.
if (_this._renderPhaseUpdates !== null) {
// Render phase updates are stored in a map of queue -> linked list
var firstRenderPhaseUpdate = _this._renderPhaseUpdates.get(queue);
if (firstRenderPhaseUpdate !== undefined) {
_this._renderPhaseUpdates.delete(queue);
var _newState = workInProgressHook.memoizedState;
var _update = firstRenderPhaseUpdate;
do {
var action = _update.action;
_newState = reducer(_newState, action);
_update = _update.next;
} while (_update !== null);
workInProgressHook.memoizedState = _newState;
return [_newState, dispatch];
}
}
return [workInProgressHook.memoizedState, dispatch];
} // Process updates outside of render
var newState = workInProgressHook.memoizedState;
var update = queue.first;
if (update !== null) {
do {
var _action = update.action;
newState = reducer(newState, _action);
update = update.next;
} while (update !== null);
queue.first = null;
workInProgressHook.memoizedState = newState;
}
return [newState, dispatch];
} else {
var initialState;
if (reducer === basicStateReducer) {
// Special case for `useState`.
initialState = typeof initialArg === 'function' ? initialArg() : initialArg;
} else {
initialState = init !== undefined ? init(initialArg) : initialArg;
}
workInProgressHook.memoizedState = initialState;
var _queue = workInProgressHook.queue = {
first: null,
dispatch: null
};
var _dispatch = _queue.dispatch = _this._dispatchAction.bind(_this, _queue);
return [workInProgressHook.memoizedState, _dispatch];
}
};
var useState = function useState(initialState) {
return useReducer(basicStateReducer, // useReducer has a special case to support lazy useState initializers
initialState);
};
var useMemo = function useMemo(nextCreate, deps) {
_this._validateCurrentlyRenderingComponent();
_this._createWorkInProgressHook();
var nextDeps = deps !== undefined ? deps : null;
if (_this._workInProgressHook !== null && _this._workInProgressHook.memoizedState !== null) {
var prevState = _this._workInProgressHook.memoizedState;
var prevDeps = prevState[1];
if (nextDeps !== null) {
if (areHookInputsEqual(nextDeps, prevDeps)) {
return prevState[0];
}
}
}
var nextValue = nextCreate();
_this._workInProgressHook.memoizedState = [nextValue, nextDeps];
return nextValue;
};
var useRef = function useRef(initialValue) {
_this._validateCurrentlyRenderingComponent();
_this._createWorkInProgressHook();
var previousRef = _this._workInProgressHook.memoizedState;
if (previousRef === null) {
var ref = {
current: initialValue
};
{
Object.seal(ref);
}
_this._workInProgressHook.memoizedState = ref;
return ref;
} else {
return previousRef;
}
};
var readContext = function readContext(context, observedBits) {
return context._currentValue;
};
var noOp = function noOp() {
_this._validateCurrentlyRenderingComponent();
};
var identity = function identity(fn) {
return fn;
};
var useResponder = function useResponder(responder, props) {
return {
props: props,
responder: responder
};
}; // TODO: implement if we decide to keep the shallow renderer
var useTransition = function useTransition(config) {
_this._validateCurrentlyRenderingComponent();
var startTransition = function startTransition(callback) {
callback();
};
return [startTransition, false];
}; // TODO: implement if we decide to keep the shallow renderer
var useDeferredValue = function useDeferredValue(value, config) {
_this._validateCurrentlyRenderingComponent();
return value;
};
return {
readContext: readContext,
useCallback: identity,
useContext: function useContext(context) {
_this._validateCurrentlyRenderingComponent();
return readContext(context);
},
useDebugValue: noOp,
useEffect: noOp,
useImperativeHandle: noOp,
useLayoutEffect: noOp,
useMemo: useMemo,
useReducer: useReducer,
useRef: useRef,
useState: useState,
useResponder: useResponder,
useTransition: useTransition,
useDeferredValue: useDeferredValue
};
};
_proto2._dispatchAction = function _dispatchAction(queue, action) {
if (!(this._numberOfReRenders < RE_RENDER_LIMIT)) {
throw Error("Too many re-renders. React limits the number of renders to prevent an infinite loop.");
}
if (this._rendering) {
// This is a render phase update. Stash it in a lazily-created map of
// queue -> linked list of updates. After this render pass, we'll restart
// and apply the stashed updates on top of the work-in-progress hook.
this._didScheduleRenderPhaseUpdate = true;
var update = {
action: action,
next: null
};
var renderPhaseUpdates = this._renderPhaseUpdates;
if (renderPhaseUpdates === null) {
this._renderPhaseUpdates = renderPhaseUpdates = new Map();
}
var firstRenderPhaseUpdate = renderPhaseUpdates.get(queue);
if (firstRenderPhaseUpdate === undefined) {
renderPhaseUpdates.set(queue, update);
} else {
// Append the update to the end of the list.
var lastRenderPhaseUpdate = firstRenderPhaseUpdate;
while (lastRenderPhaseUpdate.next !== null) {
lastRenderPhaseUpdate = lastRenderPhaseUpdate.next;
}
lastRenderPhaseUpdate.next = update;
}
} else {
var _update2 = {
action: action,
next: null
}; // Append the update to the end of the list.
var last = queue.first;
if (last === null) {
queue.first = _update2;
} else {
while (last.next !== null) {
last = last.next;
}
last.next = _update2;
} // Re-render now.
this.render(this._element, this._context);
}
};
_proto2._createWorkInProgressHook = function _createWorkInProgressHook() {
if (this._workInProgressHook === null) {
// This is the first hook in the list
if (this._firstWorkInProgressHook === null) {
this._isReRender = false;
this._firstWorkInProgressHook = this._workInProgressHook = createHook();
} else {
// There's already a work-in-progress. Reuse it.
this._isReRender = true;
this._workInProgressHook = this._firstWorkInProgressHook;
}
} else {
if (this._workInProgressHook.next === null) {
this._isReRender = false; // Append to the end of the list
this._workInProgressHook = this._workInProgressHook.next = createHook();
} else {
// There's already a work-in-progress. Reuse it.
this._isReRender = true;
this._workInProgressHook = this._workInProgressHook.next;
}
}
return this._workInProgressHook;
};
_proto2._finishHooks = function _finishHooks(element, context) {
if (this._didScheduleRenderPhaseUpdate) {
// Updates were scheduled during the render phase. They are stored in
// the `renderPhaseUpdates` map. Call the component again, reusing the
// work-in-progress hooks and applying the additional updates on top. Keep
// restarting until no more updates are scheduled.
this._didScheduleRenderPhaseUpdate = false;
this._numberOfReRenders += 1; // Start over from the beginning of the list
this._workInProgressHook = null;
this._rendering = false;
this.render(element, context);
} else {
this._workInProgressHook = null;
this._renderPhaseUpdates = null;
this._numberOfReRenders = 0;
}
};
_proto2.getMountedInstance = function getMountedInstance() {
return this._instance;
};
_proto2.getRenderOutput = function getRenderOutput() {
return this._rendered;
};
_proto2.render = function render(element) {
var context = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : emptyObject;
if (!React.isValidElement(element)) {
throw Error("ReactShallowRenderer render(): Invalid component element." + (typeof element === 'function' ? ' Instead of passing a component class, make sure to instantiate ' + 'it by passing it to React.createElement.' : ''));
} // Show a special message for host elements since it's a common case.
if (!(typeof element.type !== 'string')) {
throw Error("ReactShallowRenderer render(): Shallow rendering works only with custom components, not primitives (" + element.type + "). Instead of calling `.render(el)` and inspecting the rendered output, look at `el.props` directly instead.");
}
if (!(isForwardRef(element) || typeof element.type === 'function' || isMemo(element))) {
throw Error("ReactShallowRenderer render(): Shallow rendering works only with custom components, but the provided element type was `" + (Array.isArray(element.type) ? 'array' : element.type === null ? 'null' : typeof element.type) + "`.");
}
if (this._rendering) {
return;
}
if (this._element != null && this._element.type !== element.type) {
this._reset();
}
var elementType = isMemo(element) ? element.type.type : element.type;
var previousElement = this._element;
this._rendering = true;
this._element = element;
this._context = getMaskedContext(elementType.contextTypes, context); // Inner memo component props aren't currently validated in createElement.
if (isMemo(element) && elementType.propTypes) {
currentlyValidatingElement = element;
checkPropTypes_1(elementType.propTypes, element.props, 'prop', getComponentName(elementType), getStackAddendum);
}
if (this._instance) {
this._updateClassComponent(elementType, element, this._context);
} else {
if (shouldConstruct(elementType)) {
this._instance = new elementType(element.props, this._context, this._updater);
if (typeof elementType.getDerivedStateFromProps === 'function') {
var partialState = elementType.getDerivedStateFromProps.call(null, element.props, this._instance.state);
if (partialState != null) {
this._instance.state = _assign({}, this._instance.state, partialState);
}
}
if (elementType.contextTypes) {
currentlyValidatingElement = element;
checkPropTypes_1(elementType.contextTypes, this._context, 'context', getName(elementType, this._instance), getStackAddendum);
currentlyValidatingElement = null;
}
this._mountClassComponent(elementType, element, this._context);
} else {
var shouldRender = true;
if (isMemo(element) && previousElement !== null) {
// This is a Memo component that is being re-rendered.
var compare = element.type.compare || shallowEqual;
if (compare(previousElement.props, element.props)) {
shouldRender = false;
}
}
if (shouldRender) {
var prevDispatcher = ReactCurrentDispatcher.current;
ReactCurrentDispatcher.current = this._dispatcher;
try {
// elementType could still be a ForwardRef if it was
// nested inside Memo.
if (elementType.$$typeof === ForwardRef) {
if (!(typeof elementType.render === 'function')) {
throw Error("forwardRef requires a render function but was given " + typeof elementType.render + ".");
}
this._rendered = elementType.render.call(undefined, element.props, element.ref);
} else {
this._rendered = elementType(element.props, this._context);
}
} finally {
ReactCurrentDispatcher.current = prevDispatcher;
}
this._finishHooks(element, context);
}
}
}
this._rendering = false;
this._updater._invokeCallbacks();
return this.getRenderOutput();
};
_proto2.unmount = function unmount() {
if (this._instance) {
if (typeof this._instance.componentWillUnmount === 'function') {
this._instance.componentWillUnmount();
}
}
this._reset();
};
_proto2._mountClassComponent = function _mountClassComponent(elementType, element, context) {
this._instance.context = context;
this._instance.props = element.props;
this._instance.state = this._instance.state || null;
this._instance.updater = this._updater;
if (typeof this._instance.UNSAFE_componentWillMount === 'function' || typeof this._instance.componentWillMount === 'function') {
var beforeState = this._newState; // In order to support react-lifecycles-compat polyfilled components,
// Unsafe lifecycles should not be invoked for components using the new APIs.
if (typeof elementType.getDerivedStateFromProps !== 'function' && typeof this._instance.getSnapshotBeforeUpdate !== 'function') {
if (typeof this._instance.componentWillMount === 'function') {
this._instance.componentWillMount();
}
if (typeof this._instance.UNSAFE_componentWillMount === 'function') {
this._instance.UNSAFE_componentWillMount();
}
} // setState may have been called during cWM
if (beforeState !== this._newState) {
this._instance.state = this._newState || emptyObject;
}
}
this._rendered = this._instance.render(); // Intentionally do not call componentDidMount()
// because DOM refs are not available.
};
_proto2._updateClassComponent = function _updateClassComponent(elementType, element, context) {
var props = element.props;
var oldState = this._instance.state || emptyObject;
var oldProps = this._instance.props;
if (oldProps !== props) {
// In order to support react-lifecycles-compat polyfilled components,
// Unsafe lifecycles should not be invoked for components using the new APIs.
if (typeof elementType.getDerivedStateFromProps !== 'function' && typeof this._instance.getSnapshotBeforeUpdate !== 'function') {
if (typeof this._instance.componentWillReceiveProps === 'function') {
this._instance.componentWillReceiveProps(props, context);
}
if (typeof this._instance.UNSAFE_componentWillReceiveProps === 'function') {
this._instance.UNSAFE_componentWillReceiveProps(props, context);
}
}
} // Read state after cWRP in case it calls setState
var state = this._newState || oldState;
if (typeof elementType.getDerivedStateFromProps === 'function') {
var partialState = elementType.getDerivedStateFromProps.call(null, props, state);
if (partialState != null) {
state = _assign({}, state, partialState);
}
}
var shouldUpdate = true;
if (this._forcedUpdate) {
shouldUpdate = true;
this._forcedUpdate = false;
} else if (typeof this._instance.shouldComponentUpdate === 'function') {
shouldUpdate = !!this._instance.shouldComponentUpdate(props, state, context);
} else if (elementType.prototype && elementType.prototype.isPureReactComponent) {
shouldUpdate = !shallowEqual(oldProps, props) || !shallowEqual(oldState, state);
}
if (shouldUpdate) {
// In order to support react-lifecycles-compat polyfilled components,
// Unsafe lifecycles should not be invoked for components using the new APIs.
if (typeof elementType.getDerivedStateFromProps !== 'function' && typeof this._instance.getSnapshotBeforeUpdate !== 'function') {
if (typeof this._instance.componentWillUpdate === 'function') {
this._instance.componentWillUpdate(props, state, context);
}
if (typeof this._instance.UNSAFE_componentWillUpdate === 'function') {
this._instance.UNSAFE_componentWillUpdate(props, state, context);
}
}
}
this._instance.context = context;
this._instance.props = props;
this._instance.state = state;
this._newState = null;
if (shouldUpdate) {
this._rendered = this._instance.render();
} // Intentionally do not call componentDidUpdate()
// because DOM refs are not available.
};
return ReactShallowRenderer;
}();
ReactShallowRenderer.createRenderer = function () {
return new ReactShallowRenderer();
};
var currentlyValidatingElement = null;
function getDisplayName(element) {
if (element == null) {
return '#empty';
} else if (typeof element === 'string' || typeof element === 'number') {
return '#text';
} else if (typeof element.type === 'string') {
return element.type;
} else {
var elementType = isMemo(element) ? element.type.type : element.type;
return elementType.displayName || elementType.name || 'Unknown';
}
}
function getStackAddendum() {
var stack = '';
if (currentlyValidatingElement) {
var name = getDisplayName(currentlyValidatingElement);
var owner = currentlyValidatingElement._owner;
stack += describeComponentFrame(name, currentlyValidatingElement._source, owner && getComponentName(owner.type));
}
return stack;
}
function getName(type, instance) {
var constructor = instance && instance.constructor;
return type.displayName || constructor && constructor.displayName || type.name || constructor && constructor.name || null;
}
function shouldConstruct(Component) {
return !!(Component.prototype && Component.prototype.isReactComponent);
}
function getMaskedContext(contextTypes, unmaskedContext) {
if (!contextTypes || !unmaskedContext) {
return emptyObject;
}
var context = {};
for (var key in contextTypes) {
context[key] = unmaskedContext[key];
}
return context;
}
return ReactShallowRenderer;
})));
/** @license React vundefined
* react-test-renderer-shallow.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'use strict';var a=require("react-shallow-renderer");module.exports=a;
/** @license React vundefined
* react-test-renderer-shallow.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/*
ReactShallowRenderer v16.12.0
react-shallow-renderer.js
Copyright (c) Facebook, Inc. and its affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
'use strict';(function(l,k){"object"===typeof exports&&"undefined"!==typeof module?module.exports=k(require("react")):"function"===typeof define&&define.amd?define(["react"],k):(l=l||self,l.ReactShallowRenderer=k(l.React))})(this,function(l){function k(b){if("object"===typeof b&&null!==b){var a=b.$$typeof;switch(a){case B:switch(b=b.type,b){case C:case D:case E:case F:case G:case H:return b;default:switch(b=b&&b.$$typeof,b){case I:case r:case J:case m:case K:return b;default:return a}}case L:return a}}}
function p(b){if(null==b)return null;if("function"===typeof b)return b.displayName||b.name||null;if("string"===typeof b)return b;switch(b){case M:return"Fragment";case N:return"Portal";case O:return"Profiler";case P:return"StrictMode";case Q:return"Suspense";case R:return"SuspenseList"}if("object"===typeof b)switch(b.$$typeof){case S:return"Context.Consumer";case T:return"Context.Provider";case U:var a=b.render;a=a.displayName||a.name||"";return b.displayName||(""!==a?"ForwardRef("+a+")":"ForwardRef");
case V:return p(b.type);case W:return p(b.render);case X:if(b=1===b._status?b._result:null)return p(b)}return null}function Y(b,a){return b===a&&(0!==b||1/b===1/a)||b!==b&&a!==a}function t(b,a){if(u(b,a))return!0;if("object"!==typeof b||null===b||"object"!==typeof a||null===a)return!1;var c=Object.keys(b),d=Object.keys(a);if(c.length!==d.length)return!1;for(d=0;d<c.length;d++)if(!Z.call(a,c[d])||!u(b[c[d]],a[c[d]]))return!1;return!0}function z(){return{memoizedState:null,queue:null,next:null}}function A(b,
a){return"function"===typeof a?a(b):a}var v=l.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.assign,e="function"===typeof Symbol&&Symbol.for,B=e?Symbol.for("react.element"):60103,L=e?Symbol.for("react.portal"):60106,E=e?Symbol.for("react.fragment"):60107,G=e?Symbol.for("react.strict_mode"):60108,F=e?Symbol.for("react.profiler"):60114,K=e?Symbol.for("react.provider"):60109,I=e?Symbol.for("react.context"):60110,C=e?Symbol.for("react.async_mode"):60111,D=e?Symbol.for("react.concurrent_mode"):60111,
r=e?Symbol.for("react.forward_ref"):60112,H=e?Symbol.for("react.suspense"):60113,m=e?Symbol.for("react.memo"):60115,J=e?Symbol.for("react.lazy"):60116,aa=r;e=l.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;e.hasOwnProperty("ReactCurrentDispatcher")||(e.ReactCurrentDispatcher={current:null});e.hasOwnProperty("ReactCurrentBatchConfig")||(e.ReactCurrentBatchConfig={suspense:null});var g="function"===typeof Symbol&&Symbol.for,N=g?Symbol.for("react.portal"):60106,M=g?Symbol.for("react.fragment"):
60107,P=g?Symbol.for("react.strict_mode"):60108,O=g?Symbol.for("react.profiler"):60114,T=g?Symbol.for("react.provider"):60109,S=g?Symbol.for("react.context"):60110,U=g?Symbol.for("react.forward_ref"):60112,Q=g?Symbol.for("react.suspense"):60113,R=g?Symbol.for("react.suspense_list"):60120,V=g?Symbol.for("react.memo"):60115,X=g?Symbol.for("react.lazy"):60116,W=g?Symbol.for("react.chunk"):60121,u="function"===typeof Object.is?Object.is:Y,Z=Object.prototype.hasOwnProperty,w=e.ReactCurrentDispatcher,q=
{},ba=function(){function b(c){this._renderer=c;this._callbacks=[]}var a=b.prototype;a._enqueueCallback=function(c,d){"function"===typeof c&&d&&this._callbacks.push({callback:c,publicInstance:d})};a._invokeCallbacks=function(){var c=this._callbacks;this._callbacks=[];c.forEach(function(c){c.callback.call(c.publicInstance)})};a.isMounted=function(c){return!!this._renderer._element};a.enqueueForceUpdate=function(c,d,b){this._enqueueCallback(d,c);this._renderer._forcedUpdate=!0;this._renderer.render(this._renderer._element,
this._renderer._context)};a.enqueueReplaceState=function(c,d,b,a){this._enqueueCallback(b,c);this._renderer._newState=d;this._renderer.render(this._renderer._element,this._renderer._context)};a.enqueueSetState=function(c,d,b,a){this._enqueueCallback(b,c);b=this._renderer._newState||c.state;"function"===typeof d&&(d=d.call(c,b,c.props));null!==d&&void 0!==d&&(this._renderer._newState=v({},b,{},d),this._renderer.render(this._renderer._element,this._renderer._context))};return b}(),y=function(){function b(){this._reset()}
var a=b.prototype;a._reset=function(){this._rendered=this._newState=this._instance=this._element=this._context=null;this._forcedUpdate=this._rendering=!1;this._updater=new ba(this);this._dispatcher=this._createDispatcher();this._firstWorkInProgressHook=this._workInProgressHook=null;this._didScheduleRenderPhaseUpdate=this._isReRender=!1;this._renderPhaseUpdates=null;this._numberOfReRenders=0};a._validateCurrentlyRenderingComponent=function(){if(!this._rendering||this._instance)throw Error("Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://fb.me/react-invalid-hook-call for tips about how to debug and fix this problem.");
};a._createDispatcher=function(){var c=this,b=function(b,d,a){c._validateCurrentlyRenderingComponent();c._createWorkInProgressHook();var f=c._workInProgressHook;if(c._isReRender){a=f.queue;d=a.dispatch;if(0<c._numberOfReRenders){if(null!==c._renderPhaseUpdates){var h=c._renderPhaseUpdates.get(a);if(void 0!==h){c._renderPhaseUpdates.delete(a);a=f.memoizedState;do a=b(a,h.action),h=h.next;while(null!==h);f.memoizedState=a;return[a,d]}}return[f.memoizedState,d]}h=f.memoizedState;var n=a.first;if(null!==
n){do h=b(h,n.action),n=n.next;while(null!==n);a.first=null;f.memoizedState=h}return[h,d]}b=b===A?"function"===typeof d?d():d:void 0!==a?a(d):d;f.memoizedState=b;b=f.queue={first:null,dispatch:null};b=b.dispatch=c._dispatchAction.bind(c,b);return[f.memoizedState,b]},a=function(){c._validateCurrentlyRenderingComponent()};return{readContext:function(c,b){return c._currentValue},useCallback:function(c){return c},useContext:function(b){c._validateCurrentlyRenderingComponent();return b._currentValue},
useDebugValue:a,useEffect:a,useImperativeHandle:a,useLayoutEffect:a,useMemo:function(b,a){c._validateCurrentlyRenderingComponent();c._createWorkInProgressHook();a=void 0!==a?a:null;if(null!==c._workInProgressHook&&null!==c._workInProgressHook.memoizedState){var d=c._workInProgressHook.memoizedState,f=d[1];if(null!==a){a:if(null===f)f=!1;else{for(var h=0;h<f.length&&h<a.length;h++)if(!u(a[h],f[h])){f=!1;break a}f=!0}if(f)return d[0]}}b=b();c._workInProgressHook.memoizedState=[b,a];return b},useReducer:b,
useRef:function(b){c._validateCurrentlyRenderingComponent();c._createWorkInProgressHook();var a=c._workInProgressHook.memoizedState;return null===a?(b={current:b},c._workInProgressHook.memoizedState=b):a},useState:function(c){return b(A,c)},useResponder:function(c,b){return{props:b,responder:c}},useTransition:function(b){c._validateCurrentlyRenderingComponent();return[function(c){c()},!1]},useDeferredValue:function(b,a){c._validateCurrentlyRenderingComponent();return b}}};a._dispatchAction=function(c,
b){if(!(25>this._numberOfReRenders))throw Error("Too many re-renders. React limits the number of renders to prevent an infinite loop.");if(this._rendering){this._didScheduleRenderPhaseUpdate=!0;b={action:b,next:null};var a=this._renderPhaseUpdates;null===a&&(this._renderPhaseUpdates=a=new Map);var d=a.get(c);if(void 0===d)a.set(c,b);else{for(c=d;null!==c.next;)c=c.next;c.next=b}}else{b={action:b,next:null};a=c.first;if(null===a)c.first=b;else{for(;null!==a.next;)a=a.next;a.next=b}this.render(this._element,
this._context)}};a._createWorkInProgressHook=function(){null===this._workInProgressHook?null===this._firstWorkInProgressHook?(this._isReRender=!1,this._firstWorkInProgressHook=this._workInProgressHook=z()):(this._isReRender=!0,this._workInProgressHook=this._firstWorkInProgressHook):null===this._workInProgressHook.next?(this._isReRender=!1,this._workInProgressHook=this._workInProgressHook.next=z()):(this._isReRender=!0,this._workInProgressHook=this._workInProgressHook.next);return this._workInProgressHook};
a._finishHooks=function(c,b){this._didScheduleRenderPhaseUpdate?(this._didScheduleRenderPhaseUpdate=!1,this._numberOfReRenders+=1,this._workInProgressHook=null,this._rendering=!1,this.render(c,b)):(this._renderPhaseUpdates=this._workInProgressHook=null,this._numberOfReRenders=0)};a.getMountedInstance=function(){return this._instance};a.getRenderOutput=function(){return this._rendered};a.render=function(c){var b=1<arguments.length&&void 0!==arguments[1]?arguments[1]:q;if(!l.isValidElement(c))throw Error("ReactShallowRenderer render(): Invalid component element."+
("function"===typeof c?" Instead of passing a component class, make sure to instantiate it by passing it to React.createElement.":""));if("string"===typeof c.type)throw Error("ReactShallowRenderer render(): Shallow rendering works only with custom components, not primitives ("+c.type+"). Instead of calling `.render(el)` and inspecting the rendered output, look at `el.props` directly instead.");if(k(c)!==r&&"function"!==typeof c.type&&k(c)!==m)throw Error("ReactShallowRenderer render(): Shallow rendering works only with custom components, but the provided element type was `"+
(Array.isArray(c.type)?"array":null===c.type?"null":typeof c.type)+"`.");if(!this._rendering){null!=this._element&&this._element.type!==c.type&&this._reset();var a=k(c)===m?c.type.type:c.type,h=this._element;this._rendering=!0;this._element=c;var e;if((e=a.contextTypes)&&b){var g={},x;for(x in e)g[x]=b[x];e=g}else e=q;this._context=e;k(c)===m&&a.propTypes&&p(a);if(this._instance)this._updateClassComponent(a,c,this._context);else if(a.prototype&&a.prototype.isReactComponent)this._instance=new a(c.props,
this._context,this._updater),"function"===typeof a.getDerivedStateFromProps&&(b=a.getDerivedStateFromProps.call(null,c.props,this._instance.state),null!=b&&(this._instance.state=v({},this._instance.state,b))),this._mountClassComponent(a,c,this._context);else if(e=!0,k(c)===m&&null!==h&&(c.type.compare||t)(h.props,c.props)&&(e=!1),e){h=w.current;w.current=this._dispatcher;try{if(a.$$typeof===aa){if("function"!==typeof a.render)throw Error("forwardRef requires a render function but was given "+typeof a.render+
".");this._rendered=a.render.call(void 0,c.props,c.ref)}else this._rendered=a(c.props,this._context)}finally{w.current=h}this._finishHooks(c,b)}this._rendering=!1;this._updater._invokeCallbacks();return this.getRenderOutput()}};a.unmount=function(){this._instance&&"function"===typeof this._instance.componentWillUnmount&&this._instance.componentWillUnmount();this._reset()};a._mountClassComponent=function(c,b,a){this._instance.context=a;this._instance.props=b.props;this._instance.state=this._instance.state||
null;this._instance.updater=this._updater;if("function"===typeof this._instance.UNSAFE_componentWillMount||"function"===typeof this._instance.componentWillMount)b=this._newState,"function"!==typeof c.getDerivedStateFromProps&&"function"!==typeof this._instance.getSnapshotBeforeUpdate&&("function"===typeof this._instance.componentWillMount&&this._instance.componentWillMount(),"function"===typeof this._instance.UNSAFE_componentWillMount&&this._instance.UNSAFE_componentWillMount()),b!==this._newState&&
(this._instance.state=this._newState||q);this._rendered=this._instance.render()};a._updateClassComponent=function(b,a,e){a=a.props;var c=this._instance.state||q,d=this._instance.props;d!==a&&"function"!==typeof b.getDerivedStateFromProps&&"function"!==typeof this._instance.getSnapshotBeforeUpdate&&("function"===typeof this._instance.componentWillReceiveProps&&this._instance.componentWillReceiveProps(a,e),"function"===typeof this._instance.UNSAFE_componentWillReceiveProps&&this._instance.UNSAFE_componentWillReceiveProps(a,
e));var f=this._newState||c;if("function"===typeof b.getDerivedStateFromProps){var g=b.getDerivedStateFromProps.call(null,a,f);null!=g&&(f=v({},f,g))}g=!0;this._forcedUpdate?(g=!0,this._forcedUpdate=!1):"function"===typeof this._instance.shouldComponentUpdate?g=!!this._instance.shouldComponentUpdate(a,f,e):b.prototype&&b.prototype.isPureReactComponent&&(g=!t(d,a)||!t(c,f));g&&"function"!==typeof b.getDerivedStateFromProps&&"function"!==typeof this._instance.getSnapshotBeforeUpdate&&("function"===
typeof this._instance.componentWillUpdate&&this._instance.componentWillUpdate(a,f,e),"function"===typeof this._instance.UNSAFE_componentWillUpdate&&this._instance.UNSAFE_componentWillUpdate(a,f,e));this._instance.context=e;this._instance.props=a;this._instance.state=f;this._newState=null;g&&(this._rendered=this._instance.render())};return b}();y.createRenderer=function(){return new y};return y});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment