-->
## 项目协议
-本项目基于 [Apache License 2.0](https://github.com/lyswhut/lx-music-mobile/blob/master/LICENSE) 许可证发行,以下协议是对于 Apache License 2.0 的补充,如有冲突,以以下协议为准。
+本项目基于 [Apache License 2.0](https://github.com/ikunshare/ikun-music-mobile/blob/master/LICENSE) 许可证发行,以下协议是对于 Apache License 2.0 的补充,如有冲突,以以下协议为准。
---
diff --git a/index.android.bundle b/index.android.bundle
new file mode 100644
index 0000000..e709856
--- /dev/null
+++ b/index.android.bundle
@@ -0,0 +1,240610 @@
+var __BUNDLE_START_TIME__=this.nativePerformanceNow?nativePerformanceNow():Date.now(),__DEV__=true,process=this.process||{},__METRO_GLOBAL_PREFIX__='',__requireCycleIgnorePatterns=[/(^|\/|\\)node_modules($|\/|\\)/];process.env=process.env||{};process.env.NODE_ENV=process.env.NODE_ENV||"development";
+(function (global) {
+ "use strict";
+
+ global.__r = metroRequire;
+ global[`${__METRO_GLOBAL_PREFIX__}__d`] = define;
+ global.__c = clear;
+ global.__registerSegment = registerSegment;
+ var modules = clear();
+ var EMPTY = {};
+ var CYCLE_DETECTED = {};
+ var _ref = {},
+ hasOwnProperty = _ref.hasOwnProperty;
+ if (__DEV__) {
+ global.$RefreshReg$ = function () {};
+ global.$RefreshSig$ = function () {
+ return function (type) {
+ return type;
+ };
+ };
+ }
+ function clear() {
+ modules = new Map();
+ return modules;
+ }
+ if (__DEV__) {
+ var verboseNamesToModuleIds = new Map();
+ var getModuleIdForVerboseName = function getModuleIdForVerboseName(verboseName) {
+ var moduleId = verboseNamesToModuleIds.get(verboseName);
+ if (moduleId == null) {
+ throw new Error(`Unknown named module: "${verboseName}"`);
+ }
+ return moduleId;
+ };
+ var initializingModuleIds = [];
+ }
+ function define(factory, moduleId, dependencyMap) {
+ if (modules.has(moduleId)) {
+ if (__DEV__) {
+ var inverseDependencies = arguments[4];
+ if (inverseDependencies) {
+ global.__accept(moduleId, factory, dependencyMap, inverseDependencies);
+ }
+ }
+ return;
+ }
+ var mod = {
+ dependencyMap: dependencyMap,
+ factory: factory,
+ hasError: false,
+ importedAll: EMPTY,
+ importedDefault: EMPTY,
+ isInitialized: false,
+ publicModule: {
+ exports: {}
+ }
+ };
+ modules.set(moduleId, mod);
+ if (__DEV__) {
+ mod.hot = createHotReloadingObject();
+ var verboseName = arguments[3];
+ if (verboseName) {
+ mod.verboseName = verboseName;
+ verboseNamesToModuleIds.set(verboseName, moduleId);
+ }
+ }
+ }
+ function metroRequire(moduleId) {
+ if (__DEV__ && typeof moduleId === "string") {
+ var verboseName = moduleId;
+ moduleId = getModuleIdForVerboseName(verboseName);
+ console.warn(`Requiring module "${verboseName}" by name is only supported for ` + "debugging purposes and will BREAK IN PRODUCTION!");
+ }
+ var moduleIdReallyIsNumber = moduleId;
+ if (__DEV__) {
+ var initializingIndex = initializingModuleIds.indexOf(moduleIdReallyIsNumber);
+ if (initializingIndex !== -1) {
+ var cycle = initializingModuleIds.slice(initializingIndex).map(function (id) {
+ var _modules$get$verboseN, _modules$get;
+ return (_modules$get$verboseN = (_modules$get = modules.get(id)) == null ? void 0 : _modules$get.verboseName) != null ? _modules$get$verboseN : "[unknown]";
+ });
+ if (shouldPrintRequireCycle(cycle)) {
+ cycle.push(cycle[0]);
+ console.warn(`Require cycle: ${cycle.join(" -> ")}\n\n` + "Require cycles are allowed, but can result in uninitialized values. " + "Consider refactoring to remove the need for a cycle.");
+ }
+ }
+ }
+ var module = modules.get(moduleIdReallyIsNumber);
+ return module && module.isInitialized ? module.publicModule.exports : guardedLoadModule(moduleIdReallyIsNumber, module);
+ }
+ function shouldPrintRequireCycle(modules) {
+ var regExps = global[__METRO_GLOBAL_PREFIX__ + "__requireCycleIgnorePatterns"];
+ if (!Array.isArray(regExps)) {
+ return true;
+ }
+ var isIgnored = function isIgnored(module) {
+ return module != null && regExps.some(function (regExp) {
+ return regExp.test(module);
+ });
+ };
+ return modules.every(function (module) {
+ return !isIgnored(module);
+ });
+ }
+ function metroImportDefault(moduleId) {
+ if (__DEV__ && typeof moduleId === "string") {
+ var verboseName = moduleId;
+ moduleId = getModuleIdForVerboseName(verboseName);
+ }
+ var moduleIdReallyIsNumber = moduleId;
+ var maybeInitializedModule = modules.get(moduleIdReallyIsNumber);
+ if (maybeInitializedModule && maybeInitializedModule.importedDefault !== EMPTY) {
+ return maybeInitializedModule.importedDefault;
+ }
+ var exports = metroRequire(moduleIdReallyIsNumber);
+ var importedDefault = exports && exports.__esModule ? exports.default : exports;
+ var initializedModule = modules.get(moduleIdReallyIsNumber);
+ return initializedModule.importedDefault = importedDefault;
+ }
+ metroRequire.importDefault = metroImportDefault;
+ function metroImportAll(moduleId) {
+ if (__DEV__ && typeof moduleId === "string") {
+ var verboseName = moduleId;
+ moduleId = getModuleIdForVerboseName(verboseName);
+ }
+ var moduleIdReallyIsNumber = moduleId;
+ var maybeInitializedModule = modules.get(moduleIdReallyIsNumber);
+ if (maybeInitializedModule && maybeInitializedModule.importedAll !== EMPTY) {
+ return maybeInitializedModule.importedAll;
+ }
+ var exports = metroRequire(moduleIdReallyIsNumber);
+ var importedAll;
+ if (exports && exports.__esModule) {
+ importedAll = exports;
+ } else {
+ importedAll = {};
+ if (exports) {
+ for (var key in exports) {
+ if (hasOwnProperty.call(exports, key)) {
+ importedAll[key] = exports[key];
+ }
+ }
+ }
+ importedAll.default = exports;
+ }
+ var initializedModule = modules.get(moduleIdReallyIsNumber);
+ return initializedModule.importedAll = importedAll;
+ }
+ metroRequire.importAll = metroImportAll;
+ metroRequire.context = function fallbackRequireContext() {
+ if (__DEV__) {
+ throw new Error("The experimental Metro feature `require.context` is not enabled in your project.\nThis can be enabled by setting the `transformer.unstable_allowRequireContext` property to `true` in your Metro configuration.");
+ }
+ throw new Error("The experimental Metro feature `require.context` is not enabled in your project.");
+ };
+ metroRequire.resolveWeak = function fallbackRequireResolveWeak() {
+ if (__DEV__) {
+ throw new Error("require.resolveWeak cannot be called dynamically. Ensure you are using the same version of `metro` and `metro-runtime`.");
+ }
+ throw new Error("require.resolveWeak cannot be called dynamically.");
+ };
+ var inGuard = false;
+ function guardedLoadModule(moduleId, module) {
+ if (!inGuard && global.ErrorUtils) {
+ inGuard = true;
+ var returnValue;
+ try {
+ returnValue = loadModuleImplementation(moduleId, module);
+ } catch (e) {
+ global.ErrorUtils.reportFatalError(e);
+ }
+ inGuard = false;
+ return returnValue;
+ } else {
+ return loadModuleImplementation(moduleId, module);
+ }
+ }
+ var ID_MASK_SHIFT = 16;
+ var LOCAL_ID_MASK = ~0 >>> ID_MASK_SHIFT;
+ function unpackModuleId(moduleId) {
+ var segmentId = moduleId >>> ID_MASK_SHIFT;
+ var localId = moduleId & LOCAL_ID_MASK;
+ return {
+ segmentId: segmentId,
+ localId: localId
+ };
+ }
+ metroRequire.unpackModuleId = unpackModuleId;
+ function packModuleId(value) {
+ return (value.segmentId << ID_MASK_SHIFT) + value.localId;
+ }
+ metroRequire.packModuleId = packModuleId;
+ var moduleDefinersBySegmentID = [];
+ var definingSegmentByModuleID = new Map();
+ function registerSegment(segmentId, moduleDefiner, moduleIds) {
+ moduleDefinersBySegmentID[segmentId] = moduleDefiner;
+ if (__DEV__) {
+ if (segmentId === 0 && moduleIds) {
+ throw new Error("registerSegment: Expected moduleIds to be null for main segment");
+ }
+ if (segmentId !== 0 && !moduleIds) {
+ throw new Error("registerSegment: Expected moduleIds to be passed for segment #" + segmentId);
+ }
+ }
+ if (moduleIds) {
+ moduleIds.forEach(function (moduleId) {
+ if (!modules.has(moduleId) && !definingSegmentByModuleID.has(moduleId)) {
+ definingSegmentByModuleID.set(moduleId, segmentId);
+ }
+ });
+ }
+ }
+ function loadModuleImplementation(moduleId, module) {
+ if (!module && moduleDefinersBySegmentID.length > 0) {
+ var _definingSegmentByMod;
+ var segmentId = (_definingSegmentByMod = definingSegmentByModuleID.get(moduleId)) != null ? _definingSegmentByMod : 0;
+ var definer = moduleDefinersBySegmentID[segmentId];
+ if (definer != null) {
+ definer(moduleId);
+ module = modules.get(moduleId);
+ definingSegmentByModuleID.delete(moduleId);
+ }
+ }
+ var nativeRequire = global.nativeRequire;
+ if (!module && nativeRequire) {
+ var _unpackModuleId = unpackModuleId(moduleId),
+ _segmentId = _unpackModuleId.segmentId,
+ localId = _unpackModuleId.localId;
+ nativeRequire(localId, _segmentId);
+ module = modules.get(moduleId);
+ }
+ if (!module) {
+ throw unknownModuleError(moduleId);
+ }
+ if (module.hasError) {
+ throw module.error;
+ }
+ if (__DEV__) {
+ var Systrace = requireSystrace();
+ var Refresh = requireRefresh();
+ }
+ module.isInitialized = true;
+ var _module = module,
+ factory = _module.factory,
+ dependencyMap = _module.dependencyMap;
+ if (__DEV__) {
+ initializingModuleIds.push(moduleId);
+ }
+ try {
+ if (__DEV__) {
+ Systrace.beginEvent("JS_require_" + (module.verboseName || moduleId));
+ }
+ var moduleObject = module.publicModule;
+ if (__DEV__) {
+ moduleObject.hot = module.hot;
+ var prevRefreshReg = global.$RefreshReg$;
+ var prevRefreshSig = global.$RefreshSig$;
+ if (Refresh != null) {
+ var RefreshRuntime = Refresh;
+ global.$RefreshReg$ = function (type, id) {
+ RefreshRuntime.register(type, moduleId + " " + id);
+ };
+ global.$RefreshSig$ = RefreshRuntime.createSignatureFunctionForTransform;
+ }
+ }
+ moduleObject.id = moduleId;
+ factory(global, metroRequire, metroImportDefault, metroImportAll, moduleObject, moduleObject.exports, dependencyMap);
+ if (!__DEV__) {
+ module.factory = undefined;
+ module.dependencyMap = undefined;
+ }
+ if (__DEV__) {
+ Systrace.endEvent();
+ if (Refresh != null) {
+ registerExportsForReactRefresh(Refresh, moduleObject.exports, moduleId);
+ }
+ }
+ return moduleObject.exports;
+ } catch (e) {
+ module.hasError = true;
+ module.error = e;
+ module.isInitialized = false;
+ module.publicModule.exports = undefined;
+ throw e;
+ } finally {
+ if (__DEV__) {
+ if (initializingModuleIds.pop() !== moduleId) {
+ throw new Error("initializingModuleIds is corrupt; something is terribly wrong");
+ }
+ global.$RefreshReg$ = prevRefreshReg;
+ global.$RefreshSig$ = prevRefreshSig;
+ }
+ }
+ }
+ function unknownModuleError(id) {
+ var message = 'Requiring unknown module "' + id + '".';
+ if (__DEV__) {
+ message += " If you are sure the module exists, try restarting Metro. " + "You may also want to run `yarn` or `npm install`.";
+ }
+ return Error(message);
+ }
+ if (__DEV__) {
+ metroRequire.Systrace = {
+ beginEvent: function beginEvent() {},
+ endEvent: function endEvent() {}
+ };
+ metroRequire.getModules = function () {
+ return modules;
+ };
+ var createHotReloadingObject = function createHotReloadingObject() {
+ var hot = {
+ _acceptCallback: null,
+ _disposeCallback: null,
+ _didAccept: false,
+ accept: function accept(callback) {
+ hot._didAccept = true;
+ hot._acceptCallback = callback;
+ },
+ dispose: function dispose(callback) {
+ hot._disposeCallback = callback;
+ }
+ };
+ return hot;
+ };
+ var reactRefreshTimeout = null;
+ var metroHotUpdateModule = function metroHotUpdateModule(id, factory, dependencyMap, inverseDependencies) {
+ var mod = modules.get(id);
+ if (!mod) {
+ if (factory) {
+ return;
+ }
+ throw unknownModuleError(id);
+ }
+ if (!mod.hasError && !mod.isInitialized) {
+ mod.factory = factory;
+ mod.dependencyMap = dependencyMap;
+ return;
+ }
+ var Refresh = requireRefresh();
+ var refreshBoundaryIDs = new Set();
+ var didBailOut = false;
+ var updatedModuleIDs;
+ try {
+ updatedModuleIDs = topologicalSort([id], function (pendingID) {
+ var pendingModule = modules.get(pendingID);
+ if (pendingModule == null) {
+ return [];
+ }
+ var pendingHot = pendingModule.hot;
+ if (pendingHot == null) {
+ throw new Error("[Refresh] Expected module.hot to always exist in DEV.");
+ }
+ var canAccept = pendingHot._didAccept;
+ if (!canAccept && Refresh != null) {
+ var isBoundary = isReactRefreshBoundary(Refresh, pendingModule.publicModule.exports);
+ if (isBoundary) {
+ canAccept = true;
+ refreshBoundaryIDs.add(pendingID);
+ }
+ }
+ if (canAccept) {
+ return [];
+ }
+ var parentIDs = inverseDependencies[pendingID];
+ if (parentIDs.length === 0) {
+ performFullRefresh("No root boundary", {
+ source: mod,
+ failed: pendingModule
+ });
+ didBailOut = true;
+ return [];
+ }
+ return parentIDs;
+ }, function () {
+ return didBailOut;
+ }).reverse();
+ } catch (e) {
+ if (e === CYCLE_DETECTED) {
+ performFullRefresh("Dependency cycle", {
+ source: mod
+ });
+ return;
+ }
+ throw e;
+ }
+ if (didBailOut) {
+ return;
+ }
+ var seenModuleIDs = new Set();
+ for (var i = 0; i < updatedModuleIDs.length; i++) {
+ var updatedID = updatedModuleIDs[i];
+ if (seenModuleIDs.has(updatedID)) {
+ continue;
+ }
+ seenModuleIDs.add(updatedID);
+ var updatedMod = modules.get(updatedID);
+ if (updatedMod == null) {
+ throw new Error("[Refresh] Expected to find the updated module.");
+ }
+ var prevExports = updatedMod.publicModule.exports;
+ var didError = runUpdatedModule(updatedID, updatedID === id ? factory : undefined, updatedID === id ? dependencyMap : undefined);
+ var nextExports = updatedMod.publicModule.exports;
+ if (didError) {
+ return;
+ }
+ if (refreshBoundaryIDs.has(updatedID)) {
+ var isNoLongerABoundary = !isReactRefreshBoundary(Refresh, nextExports);
+ var didInvalidate = shouldInvalidateReactRefreshBoundary(Refresh, prevExports, nextExports);
+ if (isNoLongerABoundary || didInvalidate) {
+ var parentIDs = inverseDependencies[updatedID];
+ if (parentIDs.length === 0) {
+ performFullRefresh(isNoLongerABoundary ? "No longer a boundary" : "Invalidated boundary", {
+ source: mod,
+ failed: updatedMod
+ });
+ return;
+ }
+ for (var j = 0; j < parentIDs.length; j++) {
+ var parentID = parentIDs[j];
+ var parentMod = modules.get(parentID);
+ if (parentMod == null) {
+ throw new Error("[Refresh] Expected to find parent module.");
+ }
+ var canAcceptParent = isReactRefreshBoundary(Refresh, parentMod.publicModule.exports);
+ if (canAcceptParent) {
+ refreshBoundaryIDs.add(parentID);
+ updatedModuleIDs.push(parentID);
+ } else {
+ performFullRefresh("Invalidated boundary", {
+ source: mod,
+ failed: parentMod
+ });
+ return;
+ }
+ }
+ }
+ }
+ }
+ if (Refresh != null) {
+ if (reactRefreshTimeout == null) {
+ reactRefreshTimeout = setTimeout(function () {
+ reactRefreshTimeout = null;
+ Refresh.performReactRefresh();
+ }, 30);
+ }
+ }
+ };
+ var topologicalSort = function topologicalSort(roots, getEdges, earlyStop) {
+ var result = [];
+ var visited = new Set();
+ var stack = new Set();
+ function traverseDependentNodes(node) {
+ if (stack.has(node)) {
+ throw CYCLE_DETECTED;
+ }
+ if (visited.has(node)) {
+ return;
+ }
+ visited.add(node);
+ stack.add(node);
+ var dependentNodes = getEdges(node);
+ if (earlyStop(node)) {
+ stack.delete(node);
+ return;
+ }
+ dependentNodes.forEach(function (dependent) {
+ traverseDependentNodes(dependent);
+ });
+ stack.delete(node);
+ result.push(node);
+ }
+ roots.forEach(function (root) {
+ traverseDependentNodes(root);
+ });
+ return result;
+ };
+ var runUpdatedModule = function runUpdatedModule(id, factory, dependencyMap) {
+ var mod = modules.get(id);
+ if (mod == null) {
+ throw new Error("[Refresh] Expected to find the module.");
+ }
+ var hot = mod.hot;
+ if (!hot) {
+ throw new Error("[Refresh] Expected module.hot to always exist in DEV.");
+ }
+ if (hot._disposeCallback) {
+ try {
+ hot._disposeCallback();
+ } catch (error) {
+ console.error(`Error while calling dispose handler for module ${id}: `, error);
+ }
+ }
+ if (factory) {
+ mod.factory = factory;
+ }
+ if (dependencyMap) {
+ mod.dependencyMap = dependencyMap;
+ }
+ mod.hasError = false;
+ mod.error = undefined;
+ mod.importedAll = EMPTY;
+ mod.importedDefault = EMPTY;
+ mod.isInitialized = false;
+ var prevExports = mod.publicModule.exports;
+ mod.publicModule.exports = {};
+ hot._didAccept = false;
+ hot._acceptCallback = null;
+ hot._disposeCallback = null;
+ metroRequire(id);
+ if (mod.hasError) {
+ mod.hasError = false;
+ mod.isInitialized = true;
+ mod.error = null;
+ mod.publicModule.exports = prevExports;
+ return true;
+ }
+ if (hot._acceptCallback) {
+ try {
+ hot._acceptCallback();
+ } catch (error) {
+ console.error(`Error while calling accept handler for module ${id}: `, error);
+ }
+ }
+ return false;
+ };
+ var performFullRefresh = function performFullRefresh(reason, modules) {
+ if (typeof window !== "undefined" && window.location != null && typeof window.location.reload === "function") {
+ window.location.reload();
+ } else {
+ var Refresh = requireRefresh();
+ if (Refresh != null) {
+ var _modules$source$verbo, _modules$source, _modules$failed$verbo, _modules$failed;
+ var sourceName = (_modules$source$verbo = (_modules$source = modules.source) == null ? void 0 : _modules$source.verboseName) != null ? _modules$source$verbo : "unknown";
+ var failedName = (_modules$failed$verbo = (_modules$failed = modules.failed) == null ? void 0 : _modules$failed.verboseName) != null ? _modules$failed$verbo : "unknown";
+ Refresh.performFullRefresh(`Fast Refresh - ${reason} <${sourceName}> <${failedName}>`);
+ } else {
+ console.warn("Could not reload the application after an edit.");
+ }
+ }
+ };
+ var isReactRefreshBoundary = function isReactRefreshBoundary(Refresh, moduleExports) {
+ if (Refresh.isLikelyComponentType(moduleExports)) {
+ return true;
+ }
+ if (moduleExports == null || typeof moduleExports !== "object") {
+ return false;
+ }
+ var hasExports = false;
+ var areAllExportsComponents = true;
+ for (var key in moduleExports) {
+ hasExports = true;
+ if (key === "__esModule") {
+ continue;
+ }
+ var desc = Object.getOwnPropertyDescriptor(moduleExports, key);
+ if (desc && desc.get) {
+ return false;
+ }
+ var exportValue = moduleExports[key];
+ if (!Refresh.isLikelyComponentType(exportValue)) {
+ areAllExportsComponents = false;
+ }
+ }
+ return hasExports && areAllExportsComponents;
+ };
+ var shouldInvalidateReactRefreshBoundary = function shouldInvalidateReactRefreshBoundary(Refresh, prevExports, nextExports) {
+ var prevSignature = getRefreshBoundarySignature(Refresh, prevExports);
+ var nextSignature = getRefreshBoundarySignature(Refresh, nextExports);
+ if (prevSignature.length !== nextSignature.length) {
+ return true;
+ }
+ for (var i = 0; i < nextSignature.length; i++) {
+ if (prevSignature[i] !== nextSignature[i]) {
+ return true;
+ }
+ }
+ return false;
+ };
+ var getRefreshBoundarySignature = function getRefreshBoundarySignature(Refresh, moduleExports) {
+ var signature = [];
+ signature.push(Refresh.getFamilyByType(moduleExports));
+ if (moduleExports == null || typeof moduleExports !== "object") {
+ return signature;
+ }
+ for (var key in moduleExports) {
+ if (key === "__esModule") {
+ continue;
+ }
+ var desc = Object.getOwnPropertyDescriptor(moduleExports, key);
+ if (desc && desc.get) {
+ continue;
+ }
+ var exportValue = moduleExports[key];
+ signature.push(key);
+ signature.push(Refresh.getFamilyByType(exportValue));
+ }
+ return signature;
+ };
+ var registerExportsForReactRefresh = function registerExportsForReactRefresh(Refresh, moduleExports, moduleID) {
+ Refresh.register(moduleExports, moduleID + " %exports%");
+ if (moduleExports == null || typeof moduleExports !== "object") {
+ return;
+ }
+ for (var key in moduleExports) {
+ var desc = Object.getOwnPropertyDescriptor(moduleExports, key);
+ if (desc && desc.get) {
+ continue;
+ }
+ var exportValue = moduleExports[key];
+ var typeID = moduleID + " %exports% " + key;
+ Refresh.register(exportValue, typeID);
+ }
+ };
+ global.__accept = metroHotUpdateModule;
+ }
+ if (__DEV__) {
+ var requireSystrace = function requireSystrace() {
+ return global[__METRO_GLOBAL_PREFIX__ + "__SYSTRACE"] || metroRequire.Systrace;
+ };
+ var requireRefresh = function requireRefresh() {
+ return global[__METRO_GLOBAL_PREFIX__ + "__ReactRefresh"] || metroRequire.Refresh;
+ };
+ }
+})(typeof globalThis !== 'undefined' ? globalThis : typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : this);
+(function (global) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @polyfill
+ * @nolint
+ * @format
+ */
+
+ /* eslint-disable no-shadow, eqeqeq, curly, no-unused-vars, no-void, no-control-regex */
+
+ /**
+ * This pipes all of our console logging functions to native logging so that
+ * JavaScript errors in required modules show up in Xcode via NSLog.
+ */
+ var inspect = function () {
+ // Copyright Joyent, Inc. and other Node contributors.
+ //
+ // Permission is hereby granted, free of charge, to any person obtaining a
+ // copy of this software and associated documentation files (the
+ // "Software"), to deal in the Software without restriction, including
+ // without limitation the rights to use, copy, modify, merge, publish,
+ // distribute, sublicense, and/or sell copies of the Software, and to permit
+ // persons to whom the Software is furnished to do so, subject to the
+ // following conditions:
+ //
+ // The above copyright notice and this permission notice shall be included
+ // in all copies or substantial portions of the Software.
+ //
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
+ // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+ // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+ // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
+ // USE OR OTHER DEALINGS IN THE SOFTWARE.
+ //
+ // https://github.com/joyent/node/blob/master/lib/util.js
+
+ function inspect(obj, opts) {
+ var ctx = {
+ seen: [],
+ formatValueCalls: 0,
+ stylize: stylizeNoColor
+ };
+ return formatValue(ctx, obj, opts.depth);
+ }
+ function stylizeNoColor(str, styleType) {
+ return str;
+ }
+ function arrayToHash(array) {
+ var hash = {};
+ array.forEach(function (val, idx) {
+ hash[val] = true;
+ });
+ return hash;
+ }
+ function formatValue(ctx, value, recurseTimes) {
+ ctx.formatValueCalls++;
+ if (ctx.formatValueCalls > 200) {
+ return `[TOO BIG formatValueCalls ${ctx.formatValueCalls} exceeded limit of 200]`;
+ }
+
+ // Primitive types cannot have properties
+ var primitive = formatPrimitive(ctx, value);
+ if (primitive) {
+ return primitive;
+ }
+
+ // Look up the keys of the object.
+ var keys = Object.keys(value);
+ var visibleKeys = arrayToHash(keys);
+
+ // IE doesn't make error fields non-enumerable
+ // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx
+ if (isError(value) && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) {
+ return formatError(value);
+ }
+
+ // Some type of object without properties can be shortcutted.
+ if (keys.length === 0) {
+ if (isFunction(value)) {
+ var name = value.name ? ': ' + value.name : '';
+ return ctx.stylize('[Function' + name + ']', 'special');
+ }
+ if (isRegExp(value)) {
+ return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');
+ }
+ if (isDate(value)) {
+ return ctx.stylize(Date.prototype.toString.call(value), 'date');
+ }
+ if (isError(value)) {
+ return formatError(value);
+ }
+ }
+ var base = '',
+ array = false,
+ braces = ['{', '}'];
+
+ // Make Array say that they are Array
+ if (isArray(value)) {
+ array = true;
+ braces = ['[', ']'];
+ }
+
+ // Make functions say that they are functions
+ if (isFunction(value)) {
+ var n = value.name ? ': ' + value.name : '';
+ base = ' [Function' + n + ']';
+ }
+
+ // Make RegExps say that they are RegExps
+ if (isRegExp(value)) {
+ base = ' ' + RegExp.prototype.toString.call(value);
+ }
+
+ // Make dates with properties first say the date
+ if (isDate(value)) {
+ base = ' ' + Date.prototype.toUTCString.call(value);
+ }
+
+ // Make error with message first say the error
+ if (isError(value)) {
+ base = ' ' + formatError(value);
+ }
+ if (keys.length === 0 && (!array || value.length == 0)) {
+ return braces[0] + base + braces[1];
+ }
+ if (recurseTimes < 0) {
+ if (isRegExp(value)) {
+ return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');
+ } else {
+ return ctx.stylize('[Object]', 'special');
+ }
+ }
+ ctx.seen.push(value);
+ var output;
+ if (array) {
+ output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);
+ } else {
+ output = keys.map(function (key) {
+ return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array);
+ });
+ }
+ ctx.seen.pop();
+ return reduceToSingleString(output, base, braces);
+ }
+ function formatPrimitive(ctx, value) {
+ if (isUndefined(value)) return ctx.stylize('undefined', 'undefined');
+ if (isString(value)) {
+ var simple = "'" + JSON.stringify(value).replace(/^"|"$/g, '').replace(/'/g, "\\'").replace(/\\"/g, '"') + "'";
+ return ctx.stylize(simple, 'string');
+ }
+ if (isNumber(value)) return ctx.stylize('' + value, 'number');
+ if (isBoolean(value)) return ctx.stylize('' + value, 'boolean');
+ // For some reason typeof null is "object", so special case here.
+ if (isNull(value)) return ctx.stylize('null', 'null');
+ }
+ function formatError(value) {
+ return '[' + Error.prototype.toString.call(value) + ']';
+ }
+ function formatArray(ctx, value, recurseTimes, visibleKeys, keys) {
+ var output = [];
+ for (var i = 0, l = value.length; i < l; ++i) {
+ if (hasOwnProperty(value, String(i))) {
+ output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, String(i), true));
+ } else {
+ output.push('');
+ }
+ }
+ keys.forEach(function (key) {
+ if (!key.match(/^\d+$/)) {
+ output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, key, true));
+ }
+ });
+ return output;
+ }
+ function formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {
+ var name, str, desc;
+ desc = Object.getOwnPropertyDescriptor(value, key) || {
+ value: value[key]
+ };
+ if (desc.get) {
+ if (desc.set) {
+ str = ctx.stylize('[Getter/Setter]', 'special');
+ } else {
+ str = ctx.stylize('[Getter]', 'special');
+ }
+ } else {
+ if (desc.set) {
+ str = ctx.stylize('[Setter]', 'special');
+ }
+ }
+ if (!hasOwnProperty(visibleKeys, key)) {
+ name = '[' + key + ']';
+ }
+ if (!str) {
+ if (ctx.seen.indexOf(desc.value) < 0) {
+ if (isNull(recurseTimes)) {
+ str = formatValue(ctx, desc.value, null);
+ } else {
+ str = formatValue(ctx, desc.value, recurseTimes - 1);
+ }
+ if (str.indexOf('\n') > -1) {
+ if (array) {
+ str = str.split('\n').map(function (line) {
+ return ' ' + line;
+ }).join('\n').slice(2);
+ } else {
+ str = '\n' + str.split('\n').map(function (line) {
+ return ' ' + line;
+ }).join('\n');
+ }
+ }
+ } else {
+ str = ctx.stylize('[Circular]', 'special');
+ }
+ }
+ if (isUndefined(name)) {
+ if (array && key.match(/^\d+$/)) {
+ return str;
+ }
+ name = JSON.stringify('' + key);
+ if (name.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)) {
+ name = name.slice(1, name.length - 1);
+ name = ctx.stylize(name, 'name');
+ } else {
+ name = name.replace(/'/g, "\\'").replace(/\\"/g, '"').replace(/(^"|"$)/g, "'");
+ name = ctx.stylize(name, 'string');
+ }
+ }
+ return name + ': ' + str;
+ }
+ function reduceToSingleString(output, base, braces) {
+ var numLinesEst = 0;
+ var length = output.reduce(function (prev, cur) {
+ numLinesEst++;
+ if (cur.indexOf('\n') >= 0) numLinesEst++;
+ return prev + cur.replace(/\u001b\[\d\d?m/g, '').length + 1;
+ }, 0);
+ if (length > 60) {
+ return braces[0] + (base === '' ? '' : base + '\n ') + ' ' + output.join(',\n ') + ' ' + braces[1];
+ }
+ return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];
+ }
+
+ // NOTE: These type checking functions intentionally don't use `instanceof`
+ // because it is fragile and can be easily faked with `Object.create()`.
+ function isArray(ar) {
+ return Array.isArray(ar);
+ }
+ function isBoolean(arg) {
+ return typeof arg === 'boolean';
+ }
+ function isNull(arg) {
+ return arg === null;
+ }
+ function isNullOrUndefined(arg) {
+ return arg == null;
+ }
+ function isNumber(arg) {
+ return typeof arg === 'number';
+ }
+ function isString(arg) {
+ return typeof arg === 'string';
+ }
+ function isSymbol(arg) {
+ return typeof arg === 'symbol';
+ }
+ function isUndefined(arg) {
+ return arg === void 0;
+ }
+ function isRegExp(re) {
+ return isObject(re) && objectToString(re) === '[object RegExp]';
+ }
+ function isObject(arg) {
+ return typeof arg === 'object' && arg !== null;
+ }
+ function isDate(d) {
+ return isObject(d) && objectToString(d) === '[object Date]';
+ }
+ function isError(e) {
+ return isObject(e) && (objectToString(e) === '[object Error]' || e instanceof Error);
+ }
+ function isFunction(arg) {
+ return typeof arg === 'function';
+ }
+ function objectToString(o) {
+ return Object.prototype.toString.call(o);
+ }
+ function hasOwnProperty(obj, prop) {
+ return Object.prototype.hasOwnProperty.call(obj, prop);
+ }
+ return inspect;
+ }();
+ var OBJECT_COLUMN_NAME = '(index)';
+ var LOG_LEVELS = {
+ trace: 0,
+ info: 1,
+ warn: 2,
+ error: 3
+ };
+ var INSPECTOR_LEVELS = [];
+ INSPECTOR_LEVELS[LOG_LEVELS.trace] = 'debug';
+ INSPECTOR_LEVELS[LOG_LEVELS.info] = 'log';
+ INSPECTOR_LEVELS[LOG_LEVELS.warn] = 'warning';
+ INSPECTOR_LEVELS[LOG_LEVELS.error] = 'error';
+
+ // Strip the inner function in getNativeLogFunction(), if in dev also
+ // strip method printing to originalConsole.
+ var INSPECTOR_FRAMES_TO_SKIP = __DEV__ ? 2 : 1;
+ function getNativeLogFunction(level) {
+ return function () {
+ var str;
+ if (arguments.length === 1 && typeof arguments[0] === 'string') {
+ str = arguments[0];
+ } else {
+ str = Array.prototype.map.call(arguments, function (arg) {
+ return inspect(arg, {
+ depth: 10
+ });
+ }).join(', ');
+ }
+
+ // TRICKY
+ // If more than one argument is provided, the code above collapses them all
+ // into a single formatted string. This transform wraps string arguments in
+ // single quotes (e.g. "foo" -> "'foo'") which then breaks the "Warning:"
+ // check below. So it's important that we look at the first argument, rather
+ // than the formatted argument string.
+ var firstArg = arguments[0];
+ var logLevel = level;
+ if (typeof firstArg === 'string' && firstArg.slice(0, 9) === 'Warning: ' && logLevel >= LOG_LEVELS.error) {
+ // React warnings use console.error so that a stack trace is shown,
+ // but we don't (currently) want these to show a redbox
+ // (Note: Logic duplicated in ExceptionsManager.js.)
+ logLevel = LOG_LEVELS.warn;
+ }
+ if (global.__inspectorLog) {
+ global.__inspectorLog(INSPECTOR_LEVELS[logLevel], str, [].slice.call(arguments), INSPECTOR_FRAMES_TO_SKIP);
+ }
+ if (groupStack.length) {
+ str = groupFormat('', str);
+ }
+ global.nativeLoggingHook(str, logLevel);
+ };
+ }
+ function repeat(element, n) {
+ return Array.apply(null, Array(n)).map(function () {
+ return element;
+ });
+ }
+ function consoleTablePolyfill(rows) {
+ // convert object -> array
+ if (!Array.isArray(rows)) {
+ var data = rows;
+ rows = [];
+ for (var key in data) {
+ if (data.hasOwnProperty(key)) {
+ var row = data[key];
+ row[OBJECT_COLUMN_NAME] = key;
+ rows.push(row);
+ }
+ }
+ }
+ if (rows.length === 0) {
+ global.nativeLoggingHook('', LOG_LEVELS.info);
+ return;
+ }
+ var columns = Object.keys(rows[0]).sort();
+ var stringRows = [];
+ var columnWidths = [];
+
+ // Convert each cell to a string. Also
+ // figure out max cell width for each column
+ columns.forEach(function (k, i) {
+ columnWidths[i] = k.length;
+ for (var j = 0; j < rows.length; j++) {
+ var cellStr = (rows[j][k] || '?').toString();
+ stringRows[j] = stringRows[j] || [];
+ stringRows[j][i] = cellStr;
+ columnWidths[i] = Math.max(columnWidths[i], cellStr.length);
+ }
+ });
+
+ // Join all elements in the row into a single string with | separators
+ // (appends extra spaces to each cell to make separators | aligned)
+ function joinRow(row, space) {
+ var cells = row.map(function (cell, i) {
+ var extraSpaces = repeat(' ', columnWidths[i] - cell.length).join('');
+ return cell + extraSpaces;
+ });
+ space = space || ' ';
+ return cells.join(space + '|' + space);
+ }
+ var separators = columnWidths.map(function (columnWidth) {
+ return repeat('-', columnWidth).join('');
+ });
+ var separatorRow = joinRow(separators, '-');
+ var header = joinRow(columns);
+ var table = [header, separatorRow];
+ for (var i = 0; i < rows.length; i++) {
+ table.push(joinRow(stringRows[i]));
+ }
+
+ // Notice extra empty line at the beginning.
+ // Native logging hook adds "RCTLog >" at the front of every
+ // logged string, which would shift the header and screw up
+ // the table
+ global.nativeLoggingHook('\n' + table.join('\n'), LOG_LEVELS.info);
+ }
+ var GROUP_PAD = "\u2502"; // Box light vertical
+ var GROUP_OPEN = "\u2510"; // Box light down+left
+ var GROUP_CLOSE = "\u2518"; // Box light up+left
+
+ var groupStack = [];
+ function groupFormat(prefix, msg) {
+ // Insert group formatting before the console message
+ return groupStack.join('') + prefix + ' ' + (msg || '');
+ }
+ function consoleGroupPolyfill(label) {
+ global.nativeLoggingHook(groupFormat(GROUP_OPEN, label), LOG_LEVELS.info);
+ groupStack.push(GROUP_PAD);
+ }
+ function consoleGroupCollapsedPolyfill(label) {
+ global.nativeLoggingHook(groupFormat(GROUP_CLOSE, label), LOG_LEVELS.info);
+ groupStack.push(GROUP_PAD);
+ }
+ function consoleGroupEndPolyfill() {
+ groupStack.pop();
+ global.nativeLoggingHook(groupFormat(GROUP_CLOSE), LOG_LEVELS.info);
+ }
+ function consoleAssertPolyfill(expression, label) {
+ if (!expression) {
+ global.nativeLoggingHook('Assertion failed: ' + label, LOG_LEVELS.error);
+ }
+ }
+ if (global.nativeLoggingHook) {
+ var originalConsole = global.console;
+ // Preserve the original `console` as `originalConsole`
+ if (__DEV__ && originalConsole) {
+ var descriptor = Object.getOwnPropertyDescriptor(global, 'console');
+ if (descriptor) {
+ Object.defineProperty(global, 'originalConsole', descriptor);
+ }
+ }
+ global.console = {
+ error: getNativeLogFunction(LOG_LEVELS.error),
+ info: getNativeLogFunction(LOG_LEVELS.info),
+ log: getNativeLogFunction(LOG_LEVELS.info),
+ warn: getNativeLogFunction(LOG_LEVELS.warn),
+ trace: getNativeLogFunction(LOG_LEVELS.trace),
+ debug: getNativeLogFunction(LOG_LEVELS.trace),
+ table: consoleTablePolyfill,
+ group: consoleGroupPolyfill,
+ groupEnd: consoleGroupEndPolyfill,
+ groupCollapsed: consoleGroupCollapsedPolyfill,
+ assert: consoleAssertPolyfill
+ };
+ Object.defineProperty(console, '_isPolyfilled', {
+ value: true,
+ enumerable: false
+ });
+
+ // If available, also call the original `console` method since that is
+ // sometimes useful. Ex: on OS X, this will let you see rich output in
+ // the Safari Web Inspector console.
+ if (__DEV__ && originalConsole) {
+ Object.keys(console).forEach(function (methodName) {
+ var reactNativeMethod = console[methodName];
+ if (originalConsole[methodName]) {
+ console[methodName] = function () {
+ originalConsole[methodName].apply(originalConsole, arguments);
+ reactNativeMethod.apply(console, arguments);
+ };
+ }
+ });
+
+ // The following methods are not supported by this polyfill but
+ // we still should pass them to original console if they are
+ // supported by it.
+ ['clear', 'dir', 'dirxml', 'profile', 'profileEnd'].forEach(function (methodName) {
+ if (typeof originalConsole[methodName] === 'function') {
+ console[methodName] = function () {
+ originalConsole[methodName].apply(originalConsole, arguments);
+ };
+ }
+ });
+ }
+ } else if (!global.console) {
+ var stub = function stub() {};
+ var log = global.print || stub;
+ global.console = {
+ debug: log,
+ error: log,
+ info: log,
+ log: log,
+ trace: log,
+ warn: log,
+ assert: function assert(expression, label) {
+ if (!expression) {
+ log('Assertion failed: ' + label);
+ }
+ },
+ clear: stub,
+ dir: stub,
+ dirxml: stub,
+ group: stub,
+ groupCollapsed: stub,
+ groupEnd: stub,
+ profile: stub,
+ profileEnd: stub,
+ table: stub
+ };
+ Object.defineProperty(console, '_isPolyfilled', {
+ value: true,
+ enumerable: false
+ });
+ }
+})(typeof globalThis !== 'undefined' ? globalThis : typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : this);
+(function (global) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ * @polyfill
+ */
+
+ var _inGuard = 0;
+ /**
+ * This is the error handler that is called when we encounter an exception
+ * when loading a module. This will report any errors encountered before
+ * ExceptionsManager is configured.
+ */
+ var _globalHandler = function onError(e, isFatal) {
+ throw e;
+ };
+
+ /**
+ * The particular require runtime that we are using looks for a global
+ * `ErrorUtils` object and if it exists, then it requires modules with the
+ * error handler specified via ErrorUtils.setGlobalHandler by calling the
+ * require function with applyWithGuard. Since the require module is loaded
+ * before any of the modules, this ErrorUtils must be defined (and the handler
+ * set) globally before requiring anything.
+ */
+ var ErrorUtils = {
+ setGlobalHandler: function setGlobalHandler(fun) {
+ _globalHandler = fun;
+ },
+ getGlobalHandler: function getGlobalHandler() {
+ return _globalHandler;
+ },
+ reportError: function reportError(error) {
+ _globalHandler && _globalHandler(error, false);
+ },
+ reportFatalError: function reportFatalError(error) {
+ // NOTE: This has an untyped call site in Metro.
+ _globalHandler && _globalHandler(error, true);
+ },
+ applyWithGuard: function applyWithGuard(fun, context, args,
+ // Unused, but some code synced from www sets it to null.
+ unused_onError,
+ // Some callers pass a name here, which we ignore.
+ unused_name) {
+ try {
+ _inGuard++;
+ /* $FlowFixMe[incompatible-call] : TODO T48204745 (1) apply(context,
+ * null) is fine. (2) array -> rest array should work */
+ /* $FlowFixMe[incompatible-type] : TODO T48204745 (1) apply(context,
+ * null) is fine. (2) array -> rest array should work */
+ return fun.apply(context, args);
+ } catch (e) {
+ ErrorUtils.reportError(e);
+ } finally {
+ _inGuard--;
+ }
+ return null;
+ },
+ applyWithGuardIfNeeded: function applyWithGuardIfNeeded(fun, context, args) {
+ if (ErrorUtils.inGuard()) {
+ /* $FlowFixMe[incompatible-call] : TODO T48204745 (1) apply(context,
+ * null) is fine. (2) array -> rest array should work */
+ /* $FlowFixMe[incompatible-type] : TODO T48204745 (1) apply(context,
+ * null) is fine. (2) array -> rest array should work */
+ return fun.apply(context, args);
+ } else {
+ ErrorUtils.applyWithGuard(fun, context, args);
+ }
+ return null;
+ },
+ inGuard: function inGuard() {
+ return !!_inGuard;
+ },
+ guard: function guard(fun, name, context) {
+ var _ref;
+ // TODO: (moti) T48204753 Make sure this warning is never hit and remove it - types
+ // should be sufficient.
+ if (typeof fun !== 'function') {
+ console.warn('A function must be passed to ErrorUtils.guard, got ', fun);
+ return null;
+ }
+ var guardName = (_ref = name != null ? name : fun.name) != null ? _ref : '';
+ /* $FlowFixMe[missing-this-annot] The 'this' type annotation(s) required by
+ * Flow's LTI update could not be added via codemod */
+ function guarded() {
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
+ args[_key] = arguments[_key];
+ }
+ return ErrorUtils.applyWithGuard(fun, context != null ? context : this, args, null, guardName);
+ }
+ return guarded;
+ }
+ };
+ global.ErrorUtils = ErrorUtils;
+})(typeof globalThis !== 'undefined' ? globalThis : typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : this);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ _$$_REQUIRE(_dependencyMap[0], "./shim");
+ _$$_REQUIRE(_dependencyMap[1], "./src/app");
+},0,[1,5],"index.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ global.Buffer = _$$_REQUIRE(_dependencyMap[0], "buffer").Buffer;
+},1,[2],"shim.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /*!
+ * The buffer module from node.js, for the browser.
+ *
+ * @author Feross Aboukhadijeh
+ * @license MIT
+ */
+ /* eslint-disable no-proto */
+
+ 'use strict';
+
+ var customInspectSymbol = typeof Symbol === 'function' && typeof Symbol['for'] === 'function' // eslint-disable-line dot-notation
+ ? Symbol['for']('nodejs.util.inspect.custom') // eslint-disable-line dot-notation
+ : null;
+ exports.Buffer = Buffer;
+ exports.SlowBuffer = SlowBuffer;
+ exports.INSPECT_MAX_BYTES = 50;
+ var K_MAX_LENGTH = 0x7fffffff;
+ exports.kMaxLength = K_MAX_LENGTH;
+
+ /**
+ * If `Buffer.TYPED_ARRAY_SUPPORT`:
+ * === true Use Uint8Array implementation (fastest)
+ * === false Print warning and recommend using `buffer` v4.x which has an Object
+ * implementation (most compatible, even IE6)
+ *
+ * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+,
+ * Opera 11.6+, iOS 4.2+.
+ *
+ * We report that the browser does not support typed arrays if the are not subclassable
+ * using __proto__. Firefox 4-29 lacks support for adding new properties to `Uint8Array`
+ * (See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438). IE 10 lacks support
+ * for __proto__ and has a buggy typed array implementation.
+ */
+ Buffer.TYPED_ARRAY_SUPPORT = typedArraySupport();
+ if (!Buffer.TYPED_ARRAY_SUPPORT && typeof console !== 'undefined' && typeof console.error === 'function') {
+ console.error('This browser lacks typed array (Uint8Array) support which is required by ' + '`buffer` v5.x. Use `buffer` v4.x if you require old browser support.');
+ }
+ function typedArraySupport() {
+ // Can typed array instances can be augmented?
+ try {
+ var arr = new Uint8Array(1);
+ var proto = {
+ foo: function foo() {
+ return 42;
+ }
+ };
+ Object.setPrototypeOf(proto, Uint8Array.prototype);
+ Object.setPrototypeOf(arr, proto);
+ return arr.foo() === 42;
+ } catch (e) {
+ return false;
+ }
+ }
+ Object.defineProperty(Buffer.prototype, 'parent', {
+ enumerable: true,
+ get: function get() {
+ if (!Buffer.isBuffer(this)) return undefined;
+ return this.buffer;
+ }
+ });
+ Object.defineProperty(Buffer.prototype, 'offset', {
+ enumerable: true,
+ get: function get() {
+ if (!Buffer.isBuffer(this)) return undefined;
+ return this.byteOffset;
+ }
+ });
+ function createBuffer(length) {
+ if (length > K_MAX_LENGTH) {
+ throw new RangeError('The value "' + length + '" is invalid for option "size"');
+ }
+ // Return an augmented `Uint8Array` instance
+ var buf = new Uint8Array(length);
+ Object.setPrototypeOf(buf, Buffer.prototype);
+ return buf;
+ }
+
+ /**
+ * The Buffer constructor returns instances of `Uint8Array` that have their
+ * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of
+ * `Uint8Array`, so the returned instances will have all the node `Buffer` methods
+ * and the `Uint8Array` methods. Square bracket notation works as expected -- it
+ * returns a single octet.
+ *
+ * The `Uint8Array` prototype remains unmodified.
+ */
+
+ function Buffer(arg, encodingOrOffset, length) {
+ // Common case.
+ if (typeof arg === 'number') {
+ if (typeof encodingOrOffset === 'string') {
+ throw new TypeError('The "string" argument must be of type string. Received type number');
+ }
+ return allocUnsafe(arg);
+ }
+ return from(arg, encodingOrOffset, length);
+ }
+ Buffer.poolSize = 8192; // not used by this implementation
+
+ function from(value, encodingOrOffset, length) {
+ if (typeof value === 'string') {
+ return fromString(value, encodingOrOffset);
+ }
+ if (ArrayBuffer.isView(value)) {
+ return fromArrayView(value);
+ }
+ if (value == null) {
+ throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' + 'or Array-like Object. Received type ' + typeof value);
+ }
+ if (isInstance(value, ArrayBuffer) || value && isInstance(value.buffer, ArrayBuffer)) {
+ return fromArrayBuffer(value, encodingOrOffset, length);
+ }
+ if (typeof SharedArrayBuffer !== 'undefined' && (isInstance(value, SharedArrayBuffer) || value && isInstance(value.buffer, SharedArrayBuffer))) {
+ return fromArrayBuffer(value, encodingOrOffset, length);
+ }
+ if (typeof value === 'number') {
+ throw new TypeError('The "value" argument must not be of type number. Received type number');
+ }
+ var valueOf = value.valueOf && value.valueOf();
+ if (valueOf != null && valueOf !== value) {
+ return Buffer.from(valueOf, encodingOrOffset, length);
+ }
+ var b = fromObject(value);
+ if (b) return b;
+ if (typeof Symbol !== 'undefined' && Symbol.toPrimitive != null && typeof value[Symbol.toPrimitive] === 'function') {
+ return Buffer.from(value[Symbol.toPrimitive]('string'), encodingOrOffset, length);
+ }
+ throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' + 'or Array-like Object. Received type ' + typeof value);
+ }
+
+ /**
+ * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError
+ * if value is a number.
+ * Buffer.from(str[, encoding])
+ * Buffer.from(array)
+ * Buffer.from(buffer)
+ * Buffer.from(arrayBuffer[, byteOffset[, length]])
+ **/
+ Buffer.from = function (value, encodingOrOffset, length) {
+ return from(value, encodingOrOffset, length);
+ };
+
+ // Note: Change prototype *after* Buffer.from is defined to workaround Chrome bug:
+ // https://github.com/feross/buffer/pull/148
+ Object.setPrototypeOf(Buffer.prototype, Uint8Array.prototype);
+ Object.setPrototypeOf(Buffer, Uint8Array);
+ function assertSize(size) {
+ if (typeof size !== 'number') {
+ throw new TypeError('"size" argument must be of type number');
+ } else if (size < 0) {
+ throw new RangeError('The value "' + size + '" is invalid for option "size"');
+ }
+ }
+ function alloc(size, fill, encoding) {
+ assertSize(size);
+ if (size <= 0) {
+ return createBuffer(size);
+ }
+ if (fill !== undefined) {
+ // Only pay attention to encoding if it's a string. This
+ // prevents accidentally sending in a number that would
+ // be interpreted as a start offset.
+ return typeof encoding === 'string' ? createBuffer(size).fill(fill, encoding) : createBuffer(size).fill(fill);
+ }
+ return createBuffer(size);
+ }
+
+ /**
+ * Creates a new filled Buffer instance.
+ * alloc(size[, fill[, encoding]])
+ **/
+ Buffer.alloc = function (size, fill, encoding) {
+ return alloc(size, fill, encoding);
+ };
+ function allocUnsafe(size) {
+ assertSize(size);
+ return createBuffer(size < 0 ? 0 : checked(size) | 0);
+ }
+
+ /**
+ * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance.
+ * */
+ Buffer.allocUnsafe = function (size) {
+ return allocUnsafe(size);
+ };
+ /**
+ * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance.
+ */
+ Buffer.allocUnsafeSlow = function (size) {
+ return allocUnsafe(size);
+ };
+ function fromString(string, encoding) {
+ if (typeof encoding !== 'string' || encoding === '') {
+ encoding = 'utf8';
+ }
+ if (!Buffer.isEncoding(encoding)) {
+ throw new TypeError('Unknown encoding: ' + encoding);
+ }
+ var length = byteLength(string, encoding) | 0;
+ var buf = createBuffer(length);
+ var actual = buf.write(string, encoding);
+ if (actual !== length) {
+ // Writing a hex string, for example, that contains invalid characters will
+ // cause everything after the first invalid character to be ignored. (e.g.
+ // 'abxxcd' will be treated as 'ab')
+ buf = buf.slice(0, actual);
+ }
+ return buf;
+ }
+ function fromArrayLike(array) {
+ var length = array.length < 0 ? 0 : checked(array.length) | 0;
+ var buf = createBuffer(length);
+ for (var i = 0; i < length; i += 1) {
+ buf[i] = array[i] & 255;
+ }
+ return buf;
+ }
+ function fromArrayView(arrayView) {
+ if (isInstance(arrayView, Uint8Array)) {
+ var copy = new Uint8Array(arrayView);
+ return fromArrayBuffer(copy.buffer, copy.byteOffset, copy.byteLength);
+ }
+ return fromArrayLike(arrayView);
+ }
+ function fromArrayBuffer(array, byteOffset, length) {
+ if (byteOffset < 0 || array.byteLength < byteOffset) {
+ throw new RangeError('"offset" is outside of buffer bounds');
+ }
+ if (array.byteLength < byteOffset + (length || 0)) {
+ throw new RangeError('"length" is outside of buffer bounds');
+ }
+ var buf;
+ if (byteOffset === undefined && length === undefined) {
+ buf = new Uint8Array(array);
+ } else if (length === undefined) {
+ buf = new Uint8Array(array, byteOffset);
+ } else {
+ buf = new Uint8Array(array, byteOffset, length);
+ }
+
+ // Return an augmented `Uint8Array` instance
+ Object.setPrototypeOf(buf, Buffer.prototype);
+ return buf;
+ }
+ function fromObject(obj) {
+ if (Buffer.isBuffer(obj)) {
+ var len = checked(obj.length) | 0;
+ var buf = createBuffer(len);
+ if (buf.length === 0) {
+ return buf;
+ }
+ obj.copy(buf, 0, 0, len);
+ return buf;
+ }
+ if (obj.length !== undefined) {
+ if (typeof obj.length !== 'number' || numberIsNaN(obj.length)) {
+ return createBuffer(0);
+ }
+ return fromArrayLike(obj);
+ }
+ if (obj.type === 'Buffer' && Array.isArray(obj.data)) {
+ return fromArrayLike(obj.data);
+ }
+ }
+ function checked(length) {
+ // Note: cannot use `length < K_MAX_LENGTH` here because that fails when
+ // length is NaN (which is otherwise coerced to zero.)
+ if (length >= K_MAX_LENGTH) {
+ throw new RangeError('Attempt to allocate Buffer larger than maximum ' + 'size: 0x' + K_MAX_LENGTH.toString(16) + ' bytes');
+ }
+ return length | 0;
+ }
+ function SlowBuffer(length) {
+ if (+length != length) {
+ // eslint-disable-line eqeqeq
+ length = 0;
+ }
+ return Buffer.alloc(+length);
+ }
+ Buffer.isBuffer = function isBuffer(b) {
+ return b != null && b._isBuffer === true && b !== Buffer.prototype; // so Buffer.isBuffer(Buffer.prototype) will be false
+ };
+ Buffer.compare = function compare(a, b) {
+ if (isInstance(a, Uint8Array)) a = Buffer.from(a, a.offset, a.byteLength);
+ if (isInstance(b, Uint8Array)) b = Buffer.from(b, b.offset, b.byteLength);
+ if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) {
+ throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');
+ }
+ if (a === b) return 0;
+ var x = a.length;
+ var y = b.length;
+ for (var i = 0, len = Math.min(x, y); i < len; ++i) {
+ if (a[i] !== b[i]) {
+ x = a[i];
+ y = b[i];
+ break;
+ }
+ }
+ if (x < y) return -1;
+ if (y < x) return 1;
+ return 0;
+ };
+ Buffer.isEncoding = function isEncoding(encoding) {
+ switch (String(encoding).toLowerCase()) {
+ case 'hex':
+ case 'utf8':
+ case 'utf-8':
+ case 'ascii':
+ case 'latin1':
+ case 'binary':
+ case 'base64':
+ case 'ucs2':
+ case 'ucs-2':
+ case 'utf16le':
+ case 'utf-16le':
+ return true;
+ default:
+ return false;
+ }
+ };
+ Buffer.concat = function concat(list, length) {
+ if (!Array.isArray(list)) {
+ throw new TypeError('"list" argument must be an Array of Buffers');
+ }
+ if (list.length === 0) {
+ return Buffer.alloc(0);
+ }
+ var i;
+ if (length === undefined) {
+ length = 0;
+ for (i = 0; i < list.length; ++i) {
+ length += list[i].length;
+ }
+ }
+ var buffer = Buffer.allocUnsafe(length);
+ var pos = 0;
+ for (i = 0; i < list.length; ++i) {
+ var buf = list[i];
+ if (isInstance(buf, Uint8Array)) {
+ if (pos + buf.length > buffer.length) {
+ Buffer.from(buf).copy(buffer, pos);
+ } else {
+ Uint8Array.prototype.set.call(buffer, buf, pos);
+ }
+ } else if (!Buffer.isBuffer(buf)) {
+ throw new TypeError('"list" argument must be an Array of Buffers');
+ } else {
+ buf.copy(buffer, pos);
+ }
+ pos += buf.length;
+ }
+ return buffer;
+ };
+ function byteLength(string, encoding) {
+ if (Buffer.isBuffer(string)) {
+ return string.length;
+ }
+ if (ArrayBuffer.isView(string) || isInstance(string, ArrayBuffer)) {
+ return string.byteLength;
+ }
+ if (typeof string !== 'string') {
+ throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. ' + 'Received type ' + typeof string);
+ }
+ var len = string.length;
+ var mustMatch = arguments.length > 2 && arguments[2] === true;
+ if (!mustMatch && len === 0) return 0;
+
+ // Use a for loop to avoid recursion
+ var loweredCase = false;
+ for (;;) {
+ switch (encoding) {
+ case 'ascii':
+ case 'latin1':
+ case 'binary':
+ return len;
+ case 'utf8':
+ case 'utf-8':
+ return utf8ToBytes(string).length;
+ case 'ucs2':
+ case 'ucs-2':
+ case 'utf16le':
+ case 'utf-16le':
+ return len * 2;
+ case 'hex':
+ return len >>> 1;
+ case 'base64':
+ return base64ToBytes(string).length;
+ default:
+ if (loweredCase) {
+ return mustMatch ? -1 : utf8ToBytes(string).length; // assume utf8
+ }
+ encoding = ('' + encoding).toLowerCase();
+ loweredCase = true;
+ }
+ }
+ }
+ Buffer.byteLength = byteLength;
+ function slowToString(encoding, start, end) {
+ var loweredCase = false;
+
+ // No need to verify that "this.length <= MAX_UINT32" since it's a read-only
+ // property of a typed array.
+
+ // This behaves neither like String nor Uint8Array in that we set start/end
+ // to their upper/lower bounds if the value passed is out of range.
+ // undefined is handled specially as per ECMA-262 6th Edition,
+ // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization.
+ if (start === undefined || start < 0) {
+ start = 0;
+ }
+ // Return early if start > this.length. Done here to prevent potential uint32
+ // coercion fail below.
+ if (start > this.length) {
+ return '';
+ }
+ if (end === undefined || end > this.length) {
+ end = this.length;
+ }
+ if (end <= 0) {
+ return '';
+ }
+
+ // Force coercion to uint32. This will also coerce falsey/NaN values to 0.
+ end >>>= 0;
+ start >>>= 0;
+ if (end <= start) {
+ return '';
+ }
+ if (!encoding) encoding = 'utf8';
+ while (true) {
+ switch (encoding) {
+ case 'hex':
+ return hexSlice(this, start, end);
+ case 'utf8':
+ case 'utf-8':
+ return utf8Slice(this, start, end);
+ case 'ascii':
+ return asciiSlice(this, start, end);
+ case 'latin1':
+ case 'binary':
+ return latin1Slice(this, start, end);
+ case 'base64':
+ return base64Slice(this, start, end);
+ case 'ucs2':
+ case 'ucs-2':
+ case 'utf16le':
+ case 'utf-16le':
+ return utf16leSlice(this, start, end);
+ default:
+ if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding);
+ encoding = (encoding + '').toLowerCase();
+ loweredCase = true;
+ }
+ }
+ }
+
+ // This property is used by `Buffer.isBuffer` (and the `is-buffer` npm package)
+ // to detect a Buffer instance. It's not possible to use `instanceof Buffer`
+ // reliably in a browserify context because there could be multiple different
+ // copies of the 'buffer' package in use. This method works even for Buffer
+ // instances that were created from another copy of the `buffer` package.
+ // See: https://github.com/feross/buffer/issues/154
+ Buffer.prototype._isBuffer = true;
+ function swap(b, n, m) {
+ var i = b[n];
+ b[n] = b[m];
+ b[m] = i;
+ }
+ Buffer.prototype.swap16 = function swap16() {
+ var len = this.length;
+ if (len % 2 !== 0) {
+ throw new RangeError('Buffer size must be a multiple of 16-bits');
+ }
+ for (var i = 0; i < len; i += 2) {
+ swap(this, i, i + 1);
+ }
+ return this;
+ };
+ Buffer.prototype.swap32 = function swap32() {
+ var len = this.length;
+ if (len % 4 !== 0) {
+ throw new RangeError('Buffer size must be a multiple of 32-bits');
+ }
+ for (var i = 0; i < len; i += 4) {
+ swap(this, i, i + 3);
+ swap(this, i + 1, i + 2);
+ }
+ return this;
+ };
+ Buffer.prototype.swap64 = function swap64() {
+ var len = this.length;
+ if (len % 8 !== 0) {
+ throw new RangeError('Buffer size must be a multiple of 64-bits');
+ }
+ for (var i = 0; i < len; i += 8) {
+ swap(this, i, i + 7);
+ swap(this, i + 1, i + 6);
+ swap(this, i + 2, i + 5);
+ swap(this, i + 3, i + 4);
+ }
+ return this;
+ };
+ Buffer.prototype.toString = function toString() {
+ var length = this.length;
+ if (length === 0) return '';
+ if (arguments.length === 0) return utf8Slice(this, 0, length);
+ return slowToString.apply(this, arguments);
+ };
+ Buffer.prototype.toLocaleString = Buffer.prototype.toString;
+ Buffer.prototype.equals = function equals(b) {
+ if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer');
+ if (this === b) return true;
+ return Buffer.compare(this, b) === 0;
+ };
+ Buffer.prototype.inspect = function inspect() {
+ var str = '';
+ var max = exports.INSPECT_MAX_BYTES;
+ str = this.toString('hex', 0, max).replace(/(.{2})/g, '$1 ').trim();
+ if (this.length > max) str += ' ... ';
+ return '';
+ };
+ if (customInspectSymbol) {
+ Buffer.prototype[customInspectSymbol] = Buffer.prototype.inspect;
+ }
+ Buffer.prototype.compare = function compare(target, start, end, thisStart, thisEnd) {
+ if (isInstance(target, Uint8Array)) {
+ target = Buffer.from(target, target.offset, target.byteLength);
+ }
+ if (!Buffer.isBuffer(target)) {
+ throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. ' + 'Received type ' + typeof target);
+ }
+ if (start === undefined) {
+ start = 0;
+ }
+ if (end === undefined) {
+ end = target ? target.length : 0;
+ }
+ if (thisStart === undefined) {
+ thisStart = 0;
+ }
+ if (thisEnd === undefined) {
+ thisEnd = this.length;
+ }
+ if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) {
+ throw new RangeError('out of range index');
+ }
+ if (thisStart >= thisEnd && start >= end) {
+ return 0;
+ }
+ if (thisStart >= thisEnd) {
+ return -1;
+ }
+ if (start >= end) {
+ return 1;
+ }
+ start >>>= 0;
+ end >>>= 0;
+ thisStart >>>= 0;
+ thisEnd >>>= 0;
+ if (this === target) return 0;
+ var x = thisEnd - thisStart;
+ var y = end - start;
+ var len = Math.min(x, y);
+ var thisCopy = this.slice(thisStart, thisEnd);
+ var targetCopy = target.slice(start, end);
+ for (var i = 0; i < len; ++i) {
+ if (thisCopy[i] !== targetCopy[i]) {
+ x = thisCopy[i];
+ y = targetCopy[i];
+ break;
+ }
+ }
+ if (x < y) return -1;
+ if (y < x) return 1;
+ return 0;
+ };
+
+ // Finds either the first index of `val` in `buffer` at offset >= `byteOffset`,
+ // OR the last index of `val` in `buffer` at offset <= `byteOffset`.
+ //
+ // Arguments:
+ // - buffer - a Buffer to search
+ // - val - a string, Buffer, or number
+ // - byteOffset - an index into `buffer`; will be clamped to an int32
+ // - encoding - an optional encoding, relevant is val is a string
+ // - dir - true for indexOf, false for lastIndexOf
+ function bidirectionalIndexOf(buffer, val, byteOffset, encoding, dir) {
+ // Empty buffer means no match
+ if (buffer.length === 0) return -1;
+
+ // Normalize byteOffset
+ if (typeof byteOffset === 'string') {
+ encoding = byteOffset;
+ byteOffset = 0;
+ } else if (byteOffset > 0x7fffffff) {
+ byteOffset = 0x7fffffff;
+ } else if (byteOffset < -0x80000000) {
+ byteOffset = -0x80000000;
+ }
+ byteOffset = +byteOffset; // Coerce to Number.
+ if (numberIsNaN(byteOffset)) {
+ // byteOffset: it it's undefined, null, NaN, "foo", etc, search whole buffer
+ byteOffset = dir ? 0 : buffer.length - 1;
+ }
+
+ // Normalize byteOffset: negative offsets start from the end of the buffer
+ if (byteOffset < 0) byteOffset = buffer.length + byteOffset;
+ if (byteOffset >= buffer.length) {
+ if (dir) return -1;else byteOffset = buffer.length - 1;
+ } else if (byteOffset < 0) {
+ if (dir) byteOffset = 0;else return -1;
+ }
+
+ // Normalize val
+ if (typeof val === 'string') {
+ val = Buffer.from(val, encoding);
+ }
+
+ // Finally, search either indexOf (if dir is true) or lastIndexOf
+ if (Buffer.isBuffer(val)) {
+ // Special case: looking for empty string/buffer always fails
+ if (val.length === 0) {
+ return -1;
+ }
+ return arrayIndexOf(buffer, val, byteOffset, encoding, dir);
+ } else if (typeof val === 'number') {
+ val = val & 0xFF; // Search for a byte value [0-255]
+ if (typeof Uint8Array.prototype.indexOf === 'function') {
+ if (dir) {
+ return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset);
+ } else {
+ return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset);
+ }
+ }
+ return arrayIndexOf(buffer, [val], byteOffset, encoding, dir);
+ }
+ throw new TypeError('val must be string, number or Buffer');
+ }
+ function arrayIndexOf(arr, val, byteOffset, encoding, dir) {
+ var indexSize = 1;
+ var arrLength = arr.length;
+ var valLength = val.length;
+ if (encoding !== undefined) {
+ encoding = String(encoding).toLowerCase();
+ if (encoding === 'ucs2' || encoding === 'ucs-2' || encoding === 'utf16le' || encoding === 'utf-16le') {
+ if (arr.length < 2 || val.length < 2) {
+ return -1;
+ }
+ indexSize = 2;
+ arrLength /= 2;
+ valLength /= 2;
+ byteOffset /= 2;
+ }
+ }
+ function read(buf, i) {
+ if (indexSize === 1) {
+ return buf[i];
+ } else {
+ return buf.readUInt16BE(i * indexSize);
+ }
+ }
+ var i;
+ if (dir) {
+ var foundIndex = -1;
+ for (i = byteOffset; i < arrLength; i++) {
+ if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) {
+ if (foundIndex === -1) foundIndex = i;
+ if (i - foundIndex + 1 === valLength) return foundIndex * indexSize;
+ } else {
+ if (foundIndex !== -1) i -= i - foundIndex;
+ foundIndex = -1;
+ }
+ }
+ } else {
+ if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength;
+ for (i = byteOffset; i >= 0; i--) {
+ var found = true;
+ for (var j = 0; j < valLength; j++) {
+ if (read(arr, i + j) !== read(val, j)) {
+ found = false;
+ break;
+ }
+ }
+ if (found) return i;
+ }
+ }
+ return -1;
+ }
+ Buffer.prototype.includes = function includes(val, byteOffset, encoding) {
+ return this.indexOf(val, byteOffset, encoding) !== -1;
+ };
+ Buffer.prototype.indexOf = function indexOf(val, byteOffset, encoding) {
+ return bidirectionalIndexOf(this, val, byteOffset, encoding, true);
+ };
+ Buffer.prototype.lastIndexOf = function lastIndexOf(val, byteOffset, encoding) {
+ return bidirectionalIndexOf(this, val, byteOffset, encoding, false);
+ };
+ function hexWrite(buf, string, offset, length) {
+ offset = Number(offset) || 0;
+ var remaining = buf.length - offset;
+ if (!length) {
+ length = remaining;
+ } else {
+ length = Number(length);
+ if (length > remaining) {
+ length = remaining;
+ }
+ }
+ var strLen = string.length;
+ if (length > strLen / 2) {
+ length = strLen / 2;
+ }
+ for (var i = 0; i < length; ++i) {
+ var parsed = parseInt(string.substr(i * 2, 2), 16);
+ if (numberIsNaN(parsed)) return i;
+ buf[offset + i] = parsed;
+ }
+ return i;
+ }
+ function utf8Write(buf, string, offset, length) {
+ return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length);
+ }
+ function asciiWrite(buf, string, offset, length) {
+ return blitBuffer(asciiToBytes(string), buf, offset, length);
+ }
+ function base64Write(buf, string, offset, length) {
+ return blitBuffer(base64ToBytes(string), buf, offset, length);
+ }
+ function ucs2Write(buf, string, offset, length) {
+ return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length);
+ }
+ Buffer.prototype.write = function write(string, offset, length, encoding) {
+ // Buffer#write(string)
+ if (offset === undefined) {
+ encoding = 'utf8';
+ length = this.length;
+ offset = 0;
+ // Buffer#write(string, encoding)
+ } else if (length === undefined && typeof offset === 'string') {
+ encoding = offset;
+ length = this.length;
+ offset = 0;
+ // Buffer#write(string, offset[, length][, encoding])
+ } else if (isFinite(offset)) {
+ offset = offset >>> 0;
+ if (isFinite(length)) {
+ length = length >>> 0;
+ if (encoding === undefined) encoding = 'utf8';
+ } else {
+ encoding = length;
+ length = undefined;
+ }
+ } else {
+ throw new Error('Buffer.write(string, encoding, offset[, length]) is no longer supported');
+ }
+ var remaining = this.length - offset;
+ if (length === undefined || length > remaining) length = remaining;
+ if (string.length > 0 && (length < 0 || offset < 0) || offset > this.length) {
+ throw new RangeError('Attempt to write outside buffer bounds');
+ }
+ if (!encoding) encoding = 'utf8';
+ var loweredCase = false;
+ for (;;) {
+ switch (encoding) {
+ case 'hex':
+ return hexWrite(this, string, offset, length);
+ case 'utf8':
+ case 'utf-8':
+ return utf8Write(this, string, offset, length);
+ case 'ascii':
+ case 'latin1':
+ case 'binary':
+ return asciiWrite(this, string, offset, length);
+ case 'base64':
+ // Warning: maxLength not taken into account in base64Write
+ return base64Write(this, string, offset, length);
+ case 'ucs2':
+ case 'ucs-2':
+ case 'utf16le':
+ case 'utf-16le':
+ return ucs2Write(this, string, offset, length);
+ default:
+ if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding);
+ encoding = ('' + encoding).toLowerCase();
+ loweredCase = true;
+ }
+ }
+ };
+ Buffer.prototype.toJSON = function toJSON() {
+ return {
+ type: 'Buffer',
+ data: Array.prototype.slice.call(this._arr || this, 0)
+ };
+ };
+ function base64Slice(buf, start, end) {
+ if (start === 0 && end === buf.length) {
+ return _$$_REQUIRE(_dependencyMap[0], "base64-js").fromByteArray(buf);
+ } else {
+ return _$$_REQUIRE(_dependencyMap[0], "base64-js").fromByteArray(buf.slice(start, end));
+ }
+ }
+ function utf8Slice(buf, start, end) {
+ end = Math.min(buf.length, end);
+ var res = [];
+ var i = start;
+ while (i < end) {
+ var firstByte = buf[i];
+ var codePoint = null;
+ var bytesPerSequence = firstByte > 0xEF ? 4 : firstByte > 0xDF ? 3 : firstByte > 0xBF ? 2 : 1;
+ if (i + bytesPerSequence <= end) {
+ var secondByte, thirdByte, fourthByte, tempCodePoint;
+ switch (bytesPerSequence) {
+ case 1:
+ if (firstByte < 0x80) {
+ codePoint = firstByte;
+ }
+ break;
+ case 2:
+ secondByte = buf[i + 1];
+ if ((secondByte & 0xC0) === 0x80) {
+ tempCodePoint = (firstByte & 0x1F) << 0x6 | secondByte & 0x3F;
+ if (tempCodePoint > 0x7F) {
+ codePoint = tempCodePoint;
+ }
+ }
+ break;
+ case 3:
+ secondByte = buf[i + 1];
+ thirdByte = buf[i + 2];
+ if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) {
+ tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | thirdByte & 0x3F;
+ if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) {
+ codePoint = tempCodePoint;
+ }
+ }
+ break;
+ case 4:
+ secondByte = buf[i + 1];
+ thirdByte = buf[i + 2];
+ fourthByte = buf[i + 3];
+ if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) {
+ tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | fourthByte & 0x3F;
+ if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) {
+ codePoint = tempCodePoint;
+ }
+ }
+ }
+ }
+ if (codePoint === null) {
+ // we did not generate a valid codePoint so insert a
+ // replacement char (U+FFFD) and advance only 1 byte
+ codePoint = 0xFFFD;
+ bytesPerSequence = 1;
+ } else if (codePoint > 0xFFFF) {
+ // encode to utf16 (surrogate pair dance)
+ codePoint -= 0x10000;
+ res.push(codePoint >>> 10 & 0x3FF | 0xD800);
+ codePoint = 0xDC00 | codePoint & 0x3FF;
+ }
+ res.push(codePoint);
+ i += bytesPerSequence;
+ }
+ return decodeCodePointsArray(res);
+ }
+
+ // Based on http://stackoverflow.com/a/22747272/680742, the browser with
+ // the lowest limit is Chrome, with 0x10000 args.
+ // We go 1 magnitude less, for safety
+ var MAX_ARGUMENTS_LENGTH = 0x1000;
+ function decodeCodePointsArray(codePoints) {
+ var len = codePoints.length;
+ if (len <= MAX_ARGUMENTS_LENGTH) {
+ return String.fromCharCode.apply(String, codePoints); // avoid extra slice()
+ }
+
+ // Decode in chunks to avoid "call stack size exceeded".
+ var res = '';
+ var i = 0;
+ while (i < len) {
+ res += String.fromCharCode.apply(String, codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH));
+ }
+ return res;
+ }
+ function asciiSlice(buf, start, end) {
+ var ret = '';
+ end = Math.min(buf.length, end);
+ for (var i = start; i < end; ++i) {
+ ret += String.fromCharCode(buf[i] & 0x7F);
+ }
+ return ret;
+ }
+ function latin1Slice(buf, start, end) {
+ var ret = '';
+ end = Math.min(buf.length, end);
+ for (var i = start; i < end; ++i) {
+ ret += String.fromCharCode(buf[i]);
+ }
+ return ret;
+ }
+ function hexSlice(buf, start, end) {
+ var len = buf.length;
+ if (!start || start < 0) start = 0;
+ if (!end || end < 0 || end > len) end = len;
+ var out = '';
+ for (var i = start; i < end; ++i) {
+ out += hexSliceLookupTable[buf[i]];
+ }
+ return out;
+ }
+ function utf16leSlice(buf, start, end) {
+ var bytes = buf.slice(start, end);
+ var res = '';
+ // If bytes.length is odd, the last 8 bits must be ignored (same as node.js)
+ for (var i = 0; i < bytes.length - 1; i += 2) {
+ res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256);
+ }
+ return res;
+ }
+ Buffer.prototype.slice = function slice(start, end) {
+ var len = this.length;
+ start = ~~start;
+ end = end === undefined ? len : ~~end;
+ if (start < 0) {
+ start += len;
+ if (start < 0) start = 0;
+ } else if (start > len) {
+ start = len;
+ }
+ if (end < 0) {
+ end += len;
+ if (end < 0) end = 0;
+ } else if (end > len) {
+ end = len;
+ }
+ if (end < start) end = start;
+ var newBuf = this.subarray(start, end);
+ // Return an augmented `Uint8Array` instance
+ Object.setPrototypeOf(newBuf, Buffer.prototype);
+ return newBuf;
+ };
+
+ /*
+ * Need to make sure that buffer isn't trying to write out of bounds.
+ */
+ function checkOffset(offset, ext, length) {
+ if (offset % 1 !== 0 || offset < 0) throw new RangeError('offset is not uint');
+ if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length');
+ }
+ Buffer.prototype.readUintLE = Buffer.prototype.readUIntLE = function readUIntLE(offset, byteLength, noAssert) {
+ offset = offset >>> 0;
+ byteLength = byteLength >>> 0;
+ if (!noAssert) checkOffset(offset, byteLength, this.length);
+ var val = this[offset];
+ var mul = 1;
+ var i = 0;
+ while (++i < byteLength && (mul *= 0x100)) {
+ val += this[offset + i] * mul;
+ }
+ return val;
+ };
+ Buffer.prototype.readUintBE = Buffer.prototype.readUIntBE = function readUIntBE(offset, byteLength, noAssert) {
+ offset = offset >>> 0;
+ byteLength = byteLength >>> 0;
+ if (!noAssert) {
+ checkOffset(offset, byteLength, this.length);
+ }
+ var val = this[offset + --byteLength];
+ var mul = 1;
+ while (byteLength > 0 && (mul *= 0x100)) {
+ val += this[offset + --byteLength] * mul;
+ }
+ return val;
+ };
+ Buffer.prototype.readUint8 = Buffer.prototype.readUInt8 = function readUInt8(offset, noAssert) {
+ offset = offset >>> 0;
+ if (!noAssert) checkOffset(offset, 1, this.length);
+ return this[offset];
+ };
+ Buffer.prototype.readUint16LE = Buffer.prototype.readUInt16LE = function readUInt16LE(offset, noAssert) {
+ offset = offset >>> 0;
+ if (!noAssert) checkOffset(offset, 2, this.length);
+ return this[offset] | this[offset + 1] << 8;
+ };
+ Buffer.prototype.readUint16BE = Buffer.prototype.readUInt16BE = function readUInt16BE(offset, noAssert) {
+ offset = offset >>> 0;
+ if (!noAssert) checkOffset(offset, 2, this.length);
+ return this[offset] << 8 | this[offset + 1];
+ };
+ Buffer.prototype.readUint32LE = Buffer.prototype.readUInt32LE = function readUInt32LE(offset, noAssert) {
+ offset = offset >>> 0;
+ if (!noAssert) checkOffset(offset, 4, this.length);
+ return (this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16) + this[offset + 3] * 0x1000000;
+ };
+ Buffer.prototype.readUint32BE = Buffer.prototype.readUInt32BE = function readUInt32BE(offset, noAssert) {
+ offset = offset >>> 0;
+ if (!noAssert) checkOffset(offset, 4, this.length);
+ return this[offset] * 0x1000000 + (this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3]);
+ };
+ Buffer.prototype.readIntLE = function readIntLE(offset, byteLength, noAssert) {
+ offset = offset >>> 0;
+ byteLength = byteLength >>> 0;
+ if (!noAssert) checkOffset(offset, byteLength, this.length);
+ var val = this[offset];
+ var mul = 1;
+ var i = 0;
+ while (++i < byteLength && (mul *= 0x100)) {
+ val += this[offset + i] * mul;
+ }
+ mul *= 0x80;
+ if (val >= mul) val -= Math.pow(2, 8 * byteLength);
+ return val;
+ };
+ Buffer.prototype.readIntBE = function readIntBE(offset, byteLength, noAssert) {
+ offset = offset >>> 0;
+ byteLength = byteLength >>> 0;
+ if (!noAssert) checkOffset(offset, byteLength, this.length);
+ var i = byteLength;
+ var mul = 1;
+ var val = this[offset + --i];
+ while (i > 0 && (mul *= 0x100)) {
+ val += this[offset + --i] * mul;
+ }
+ mul *= 0x80;
+ if (val >= mul) val -= Math.pow(2, 8 * byteLength);
+ return val;
+ };
+ Buffer.prototype.readInt8 = function readInt8(offset, noAssert) {
+ offset = offset >>> 0;
+ if (!noAssert) checkOffset(offset, 1, this.length);
+ if (!(this[offset] & 0x80)) return this[offset];
+ return (0xff - this[offset] + 1) * -1;
+ };
+ Buffer.prototype.readInt16LE = function readInt16LE(offset, noAssert) {
+ offset = offset >>> 0;
+ if (!noAssert) checkOffset(offset, 2, this.length);
+ var val = this[offset] | this[offset + 1] << 8;
+ return val & 0x8000 ? val | 0xFFFF0000 : val;
+ };
+ Buffer.prototype.readInt16BE = function readInt16BE(offset, noAssert) {
+ offset = offset >>> 0;
+ if (!noAssert) checkOffset(offset, 2, this.length);
+ var val = this[offset + 1] | this[offset] << 8;
+ return val & 0x8000 ? val | 0xFFFF0000 : val;
+ };
+ Buffer.prototype.readInt32LE = function readInt32LE(offset, noAssert) {
+ offset = offset >>> 0;
+ if (!noAssert) checkOffset(offset, 4, this.length);
+ return this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16 | this[offset + 3] << 24;
+ };
+ Buffer.prototype.readInt32BE = function readInt32BE(offset, noAssert) {
+ offset = offset >>> 0;
+ if (!noAssert) checkOffset(offset, 4, this.length);
+ return this[offset] << 24 | this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3];
+ };
+ Buffer.prototype.readFloatLE = function readFloatLE(offset, noAssert) {
+ offset = offset >>> 0;
+ if (!noAssert) checkOffset(offset, 4, this.length);
+ return _$$_REQUIRE(_dependencyMap[1], "ieee754").read(this, offset, true, 23, 4);
+ };
+ Buffer.prototype.readFloatBE = function readFloatBE(offset, noAssert) {
+ offset = offset >>> 0;
+ if (!noAssert) checkOffset(offset, 4, this.length);
+ return _$$_REQUIRE(_dependencyMap[1], "ieee754").read(this, offset, false, 23, 4);
+ };
+ Buffer.prototype.readDoubleLE = function readDoubleLE(offset, noAssert) {
+ offset = offset >>> 0;
+ if (!noAssert) checkOffset(offset, 8, this.length);
+ return _$$_REQUIRE(_dependencyMap[1], "ieee754").read(this, offset, true, 52, 8);
+ };
+ Buffer.prototype.readDoubleBE = function readDoubleBE(offset, noAssert) {
+ offset = offset >>> 0;
+ if (!noAssert) checkOffset(offset, 8, this.length);
+ return _$$_REQUIRE(_dependencyMap[1], "ieee754").read(this, offset, false, 52, 8);
+ };
+ function checkInt(buf, value, offset, ext, max, min) {
+ if (!Buffer.isBuffer(buf)) throw new TypeError('"buffer" argument must be a Buffer instance');
+ if (value > max || value < min) throw new RangeError('"value" argument is out of bounds');
+ if (offset + ext > buf.length) throw new RangeError('Index out of range');
+ }
+ Buffer.prototype.writeUintLE = Buffer.prototype.writeUIntLE = function writeUIntLE(value, offset, byteLength, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ byteLength = byteLength >>> 0;
+ if (!noAssert) {
+ var maxBytes = Math.pow(2, 8 * byteLength) - 1;
+ checkInt(this, value, offset, byteLength, maxBytes, 0);
+ }
+ var mul = 1;
+ var i = 0;
+ this[offset] = value & 0xFF;
+ while (++i < byteLength && (mul *= 0x100)) {
+ this[offset + i] = value / mul & 0xFF;
+ }
+ return offset + byteLength;
+ };
+ Buffer.prototype.writeUintBE = Buffer.prototype.writeUIntBE = function writeUIntBE(value, offset, byteLength, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ byteLength = byteLength >>> 0;
+ if (!noAssert) {
+ var maxBytes = Math.pow(2, 8 * byteLength) - 1;
+ checkInt(this, value, offset, byteLength, maxBytes, 0);
+ }
+ var i = byteLength - 1;
+ var mul = 1;
+ this[offset + i] = value & 0xFF;
+ while (--i >= 0 && (mul *= 0x100)) {
+ this[offset + i] = value / mul & 0xFF;
+ }
+ return offset + byteLength;
+ };
+ Buffer.prototype.writeUint8 = Buffer.prototype.writeUInt8 = function writeUInt8(value, offset, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0);
+ this[offset] = value & 0xff;
+ return offset + 1;
+ };
+ Buffer.prototype.writeUint16LE = Buffer.prototype.writeUInt16LE = function writeUInt16LE(value, offset, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0);
+ this[offset] = value & 0xff;
+ this[offset + 1] = value >>> 8;
+ return offset + 2;
+ };
+ Buffer.prototype.writeUint16BE = Buffer.prototype.writeUInt16BE = function writeUInt16BE(value, offset, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0);
+ this[offset] = value >>> 8;
+ this[offset + 1] = value & 0xff;
+ return offset + 2;
+ };
+ Buffer.prototype.writeUint32LE = Buffer.prototype.writeUInt32LE = function writeUInt32LE(value, offset, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0);
+ this[offset + 3] = value >>> 24;
+ this[offset + 2] = value >>> 16;
+ this[offset + 1] = value >>> 8;
+ this[offset] = value & 0xff;
+ return offset + 4;
+ };
+ Buffer.prototype.writeUint32BE = Buffer.prototype.writeUInt32BE = function writeUInt32BE(value, offset, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0);
+ this[offset] = value >>> 24;
+ this[offset + 1] = value >>> 16;
+ this[offset + 2] = value >>> 8;
+ this[offset + 3] = value & 0xff;
+ return offset + 4;
+ };
+ Buffer.prototype.writeIntLE = function writeIntLE(value, offset, byteLength, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ if (!noAssert) {
+ var limit = Math.pow(2, 8 * byteLength - 1);
+ checkInt(this, value, offset, byteLength, limit - 1, -limit);
+ }
+ var i = 0;
+ var mul = 1;
+ var sub = 0;
+ this[offset] = value & 0xFF;
+ while (++i < byteLength && (mul *= 0x100)) {
+ if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) {
+ sub = 1;
+ }
+ this[offset + i] = (value / mul >> 0) - sub & 0xFF;
+ }
+ return offset + byteLength;
+ };
+ Buffer.prototype.writeIntBE = function writeIntBE(value, offset, byteLength, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ if (!noAssert) {
+ var limit = Math.pow(2, 8 * byteLength - 1);
+ checkInt(this, value, offset, byteLength, limit - 1, -limit);
+ }
+ var i = byteLength - 1;
+ var mul = 1;
+ var sub = 0;
+ this[offset + i] = value & 0xFF;
+ while (--i >= 0 && (mul *= 0x100)) {
+ if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) {
+ sub = 1;
+ }
+ this[offset + i] = (value / mul >> 0) - sub & 0xFF;
+ }
+ return offset + byteLength;
+ };
+ Buffer.prototype.writeInt8 = function writeInt8(value, offset, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80);
+ if (value < 0) value = 0xff + value + 1;
+ this[offset] = value & 0xff;
+ return offset + 1;
+ };
+ Buffer.prototype.writeInt16LE = function writeInt16LE(value, offset, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000);
+ this[offset] = value & 0xff;
+ this[offset + 1] = value >>> 8;
+ return offset + 2;
+ };
+ Buffer.prototype.writeInt16BE = function writeInt16BE(value, offset, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000);
+ this[offset] = value >>> 8;
+ this[offset + 1] = value & 0xff;
+ return offset + 2;
+ };
+ Buffer.prototype.writeInt32LE = function writeInt32LE(value, offset, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000);
+ this[offset] = value & 0xff;
+ this[offset + 1] = value >>> 8;
+ this[offset + 2] = value >>> 16;
+ this[offset + 3] = value >>> 24;
+ return offset + 4;
+ };
+ Buffer.prototype.writeInt32BE = function writeInt32BE(value, offset, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000);
+ if (value < 0) value = 0xffffffff + value + 1;
+ this[offset] = value >>> 24;
+ this[offset + 1] = value >>> 16;
+ this[offset + 2] = value >>> 8;
+ this[offset + 3] = value & 0xff;
+ return offset + 4;
+ };
+ function checkIEEE754(buf, value, offset, ext, max, min) {
+ if (offset + ext > buf.length) throw new RangeError('Index out of range');
+ if (offset < 0) throw new RangeError('Index out of range');
+ }
+ function writeFloat(buf, value, offset, littleEndian, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ if (!noAssert) {
+ checkIEEE754(buf, value, offset, 4, 3.4028234663852886e+38, -3.4028234663852886e+38);
+ }
+ _$$_REQUIRE(_dependencyMap[1], "ieee754").write(buf, value, offset, littleEndian, 23, 4);
+ return offset + 4;
+ }
+ Buffer.prototype.writeFloatLE = function writeFloatLE(value, offset, noAssert) {
+ return writeFloat(this, value, offset, true, noAssert);
+ };
+ Buffer.prototype.writeFloatBE = function writeFloatBE(value, offset, noAssert) {
+ return writeFloat(this, value, offset, false, noAssert);
+ };
+ function writeDouble(buf, value, offset, littleEndian, noAssert) {
+ value = +value;
+ offset = offset >>> 0;
+ if (!noAssert) {
+ checkIEEE754(buf, value, offset, 8, 1.7976931348623157E+308, -1.7976931348623157E+308);
+ }
+ _$$_REQUIRE(_dependencyMap[1], "ieee754").write(buf, value, offset, littleEndian, 52, 8);
+ return offset + 8;
+ }
+ Buffer.prototype.writeDoubleLE = function writeDoubleLE(value, offset, noAssert) {
+ return writeDouble(this, value, offset, true, noAssert);
+ };
+ Buffer.prototype.writeDoubleBE = function writeDoubleBE(value, offset, noAssert) {
+ return writeDouble(this, value, offset, false, noAssert);
+ };
+
+ // copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length)
+ Buffer.prototype.copy = function copy(target, targetStart, start, end) {
+ if (!Buffer.isBuffer(target)) throw new TypeError('argument should be a Buffer');
+ if (!start) start = 0;
+ if (!end && end !== 0) end = this.length;
+ if (targetStart >= target.length) targetStart = target.length;
+ if (!targetStart) targetStart = 0;
+ if (end > 0 && end < start) end = start;
+
+ // Copy 0 bytes; we're done
+ if (end === start) return 0;
+ if (target.length === 0 || this.length === 0) return 0;
+
+ // Fatal error conditions
+ if (targetStart < 0) {
+ throw new RangeError('targetStart out of bounds');
+ }
+ if (start < 0 || start >= this.length) throw new RangeError('Index out of range');
+ if (end < 0) throw new RangeError('sourceEnd out of bounds');
+
+ // Are we oob?
+ if (end > this.length) end = this.length;
+ if (target.length - targetStart < end - start) {
+ end = target.length - targetStart + start;
+ }
+ var len = end - start;
+ if (this === target && typeof Uint8Array.prototype.copyWithin === 'function') {
+ // Use built-in when available, missing from IE11
+ this.copyWithin(targetStart, start, end);
+ } else {
+ Uint8Array.prototype.set.call(target, this.subarray(start, end), targetStart);
+ }
+ return len;
+ };
+
+ // Usage:
+ // buffer.fill(number[, offset[, end]])
+ // buffer.fill(buffer[, offset[, end]])
+ // buffer.fill(string[, offset[, end]][, encoding])
+ Buffer.prototype.fill = function fill(val, start, end, encoding) {
+ // Handle string cases:
+ if (typeof val === 'string') {
+ if (typeof start === 'string') {
+ encoding = start;
+ start = 0;
+ end = this.length;
+ } else if (typeof end === 'string') {
+ encoding = end;
+ end = this.length;
+ }
+ if (encoding !== undefined && typeof encoding !== 'string') {
+ throw new TypeError('encoding must be a string');
+ }
+ if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) {
+ throw new TypeError('Unknown encoding: ' + encoding);
+ }
+ if (val.length === 1) {
+ var code = val.charCodeAt(0);
+ if (encoding === 'utf8' && code < 128 || encoding === 'latin1') {
+ // Fast path: If `val` fits into a single byte, use that numeric value.
+ val = code;
+ }
+ }
+ } else if (typeof val === 'number') {
+ val = val & 255;
+ } else if (typeof val === 'boolean') {
+ val = Number(val);
+ }
+
+ // Invalid ranges are not set to a default, so can range check early.
+ if (start < 0 || this.length < start || this.length < end) {
+ throw new RangeError('Out of range index');
+ }
+ if (end <= start) {
+ return this;
+ }
+ start = start >>> 0;
+ end = end === undefined ? this.length : end >>> 0;
+ if (!val) val = 0;
+ var i;
+ if (typeof val === 'number') {
+ for (i = start; i < end; ++i) {
+ this[i] = val;
+ }
+ } else {
+ var bytes = Buffer.isBuffer(val) ? val : Buffer.from(val, encoding);
+ var len = bytes.length;
+ if (len === 0) {
+ throw new TypeError('The value "' + val + '" is invalid for argument "value"');
+ }
+ for (i = 0; i < end - start; ++i) {
+ this[i + start] = bytes[i % len];
+ }
+ }
+ return this;
+ };
+
+ // HELPER FUNCTIONS
+ // ================
+
+ var INVALID_BASE64_RE = /[^+/0-9A-Za-z-_]/g;
+ function base64clean(str) {
+ // Node takes equal signs as end of the Base64 encoding
+ str = str.split('=')[0];
+ // Node strips out invalid characters like \n and \t from the string, base64-js does not
+ str = str.trim().replace(INVALID_BASE64_RE, '');
+ // Node converts strings with length < 2 to ''
+ if (str.length < 2) return '';
+ // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not
+ while (str.length % 4 !== 0) {
+ str = str + '=';
+ }
+ return str;
+ }
+ function utf8ToBytes(string, units) {
+ units = units || Infinity;
+ var codePoint;
+ var length = string.length;
+ var leadSurrogate = null;
+ var bytes = [];
+ for (var i = 0; i < length; ++i) {
+ codePoint = string.charCodeAt(i);
+
+ // is surrogate component
+ if (codePoint > 0xD7FF && codePoint < 0xE000) {
+ // last char was a lead
+ if (!leadSurrogate) {
+ // no lead yet
+ if (codePoint > 0xDBFF) {
+ // unexpected trail
+ if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);
+ continue;
+ } else if (i + 1 === length) {
+ // unpaired lead
+ if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);
+ continue;
+ }
+
+ // valid lead
+ leadSurrogate = codePoint;
+ continue;
+ }
+
+ // 2 leads in a row
+ if (codePoint < 0xDC00) {
+ if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);
+ leadSurrogate = codePoint;
+ continue;
+ }
+
+ // valid surrogate pair
+ codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000;
+ } else if (leadSurrogate) {
+ // valid bmp char, but last char was a lead
+ if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);
+ }
+ leadSurrogate = null;
+
+ // encode utf8
+ if (codePoint < 0x80) {
+ if ((units -= 1) < 0) break;
+ bytes.push(codePoint);
+ } else if (codePoint < 0x800) {
+ if ((units -= 2) < 0) break;
+ bytes.push(codePoint >> 0x6 | 0xC0, codePoint & 0x3F | 0x80);
+ } else if (codePoint < 0x10000) {
+ if ((units -= 3) < 0) break;
+ bytes.push(codePoint >> 0xC | 0xE0, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80);
+ } else if (codePoint < 0x110000) {
+ if ((units -= 4) < 0) break;
+ bytes.push(codePoint >> 0x12 | 0xF0, codePoint >> 0xC & 0x3F | 0x80, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80);
+ } else {
+ throw new Error('Invalid code point');
+ }
+ }
+ return bytes;
+ }
+ function asciiToBytes(str) {
+ var byteArray = [];
+ for (var i = 0; i < str.length; ++i) {
+ // Node's code seems to be doing this and not & 0x7F..
+ byteArray.push(str.charCodeAt(i) & 0xFF);
+ }
+ return byteArray;
+ }
+ function utf16leToBytes(str, units) {
+ var c, hi, lo;
+ var byteArray = [];
+ for (var i = 0; i < str.length; ++i) {
+ if ((units -= 2) < 0) break;
+ c = str.charCodeAt(i);
+ hi = c >> 8;
+ lo = c % 256;
+ byteArray.push(lo);
+ byteArray.push(hi);
+ }
+ return byteArray;
+ }
+ function base64ToBytes(str) {
+ return _$$_REQUIRE(_dependencyMap[0], "base64-js").toByteArray(base64clean(str));
+ }
+ function blitBuffer(src, dst, offset, length) {
+ for (var i = 0; i < length; ++i) {
+ if (i + offset >= dst.length || i >= src.length) break;
+ dst[i + offset] = src[i];
+ }
+ return i;
+ }
+
+ // ArrayBuffer or Uint8Array objects from other contexts (i.e. iframes) do not pass
+ // the `instanceof` check but they should be treated as of that type.
+ // See: https://github.com/feross/buffer/issues/166
+ function isInstance(obj, type) {
+ return obj instanceof type || obj != null && obj.constructor != null && obj.constructor.name != null && obj.constructor.name === type.name;
+ }
+ function numberIsNaN(obj) {
+ // For IE11 support
+ return obj !== obj; // eslint-disable-line no-self-compare
+ }
+
+ // Create lookup table for `toString('hex')`
+ // See: https://github.com/feross/buffer/issues/219
+ var hexSliceLookupTable = function () {
+ var alphabet = '0123456789abcdef';
+ var table = new Array(256);
+ for (var i = 0; i < 16; ++i) {
+ var i16 = i * 16;
+ for (var j = 0; j < 16; ++j) {
+ table[i16 + j] = alphabet[i] + alphabet[j];
+ }
+ }
+ return table;
+ }();
+},2,[3,4],"node_modules\\buffer\\index.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ exports.byteLength = byteLength;
+ exports.toByteArray = toByteArray;
+ exports.fromByteArray = fromByteArray;
+ var lookup = [];
+ var revLookup = [];
+ var Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array;
+ var code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
+ for (var i = 0, len = code.length; i < len; ++i) {
+ lookup[i] = code[i];
+ revLookup[code.charCodeAt(i)] = i;
+ }
+
+ // Support decoding URL-safe base64 strings, as Node.js does.
+ // See: https://en.wikipedia.org/wiki/Base64#URL_applications
+ revLookup['-'.charCodeAt(0)] = 62;
+ revLookup['_'.charCodeAt(0)] = 63;
+ function getLens(b64) {
+ var len = b64.length;
+ if (len % 4 > 0) {
+ throw new Error('Invalid string. Length must be a multiple of 4');
+ }
+
+ // Trim off extra bytes after placeholder bytes are found
+ // See: https://github.com/beatgammit/base64-js/issues/42
+ var validLen = b64.indexOf('=');
+ if (validLen === -1) validLen = len;
+ var placeHoldersLen = validLen === len ? 0 : 4 - validLen % 4;
+ return [validLen, placeHoldersLen];
+ }
+
+ // base64 is 4/3 + up to two characters of the original data
+ function byteLength(b64) {
+ var lens = getLens(b64);
+ var validLen = lens[0];
+ var placeHoldersLen = lens[1];
+ return (validLen + placeHoldersLen) * 3 / 4 - placeHoldersLen;
+ }
+ function _byteLength(b64, validLen, placeHoldersLen) {
+ return (validLen + placeHoldersLen) * 3 / 4 - placeHoldersLen;
+ }
+ function toByteArray(b64) {
+ var tmp;
+ var lens = getLens(b64);
+ var validLen = lens[0];
+ var placeHoldersLen = lens[1];
+ var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen));
+ var curByte = 0;
+
+ // if there are placeholders, only get up to the last complete 4 chars
+ var len = placeHoldersLen > 0 ? validLen - 4 : validLen;
+ var i;
+ for (i = 0; i < len; i += 4) {
+ tmp = revLookup[b64.charCodeAt(i)] << 18 | revLookup[b64.charCodeAt(i + 1)] << 12 | revLookup[b64.charCodeAt(i + 2)] << 6 | revLookup[b64.charCodeAt(i + 3)];
+ arr[curByte++] = tmp >> 16 & 0xFF;
+ arr[curByte++] = tmp >> 8 & 0xFF;
+ arr[curByte++] = tmp & 0xFF;
+ }
+ if (placeHoldersLen === 2) {
+ tmp = revLookup[b64.charCodeAt(i)] << 2 | revLookup[b64.charCodeAt(i + 1)] >> 4;
+ arr[curByte++] = tmp & 0xFF;
+ }
+ if (placeHoldersLen === 1) {
+ tmp = revLookup[b64.charCodeAt(i)] << 10 | revLookup[b64.charCodeAt(i + 1)] << 4 | revLookup[b64.charCodeAt(i + 2)] >> 2;
+ arr[curByte++] = tmp >> 8 & 0xFF;
+ arr[curByte++] = tmp & 0xFF;
+ }
+ return arr;
+ }
+ function tripletToBase64(num) {
+ return lookup[num >> 18 & 0x3F] + lookup[num >> 12 & 0x3F] + lookup[num >> 6 & 0x3F] + lookup[num & 0x3F];
+ }
+ function encodeChunk(uint8, start, end) {
+ var tmp;
+ var output = [];
+ for (var i = start; i < end; i += 3) {
+ tmp = (uint8[i] << 16 & 0xFF0000) + (uint8[i + 1] << 8 & 0xFF00) + (uint8[i + 2] & 0xFF);
+ output.push(tripletToBase64(tmp));
+ }
+ return output.join('');
+ }
+ function fromByteArray(uint8) {
+ var tmp;
+ var len = uint8.length;
+ var extraBytes = len % 3; // if we have 1 byte left, pad 2 bytes
+ var parts = [];
+ var maxChunkLength = 16383; // must be multiple of 3
+
+ // go through the array every three bytes, we'll deal with trailing stuff later
+ for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) {
+ parts.push(encodeChunk(uint8, i, i + maxChunkLength > len2 ? len2 : i + maxChunkLength));
+ }
+
+ // pad the end with zeros, but make sure to not forget the extra bytes
+ if (extraBytes === 1) {
+ tmp = uint8[len - 1];
+ parts.push(lookup[tmp >> 2] + lookup[tmp << 4 & 0x3F] + '==');
+ } else if (extraBytes === 2) {
+ tmp = (uint8[len - 2] << 8) + uint8[len - 1];
+ parts.push(lookup[tmp >> 10] + lookup[tmp >> 4 & 0x3F] + lookup[tmp << 2 & 0x3F] + '=');
+ }
+ return parts.join('');
+ }
+},3,[],"node_modules\\base64-js\\index.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */
+ exports.read = function (buffer, offset, isLE, mLen, nBytes) {
+ var e, m;
+ var eLen = nBytes * 8 - mLen - 1;
+ var eMax = (1 << eLen) - 1;
+ var eBias = eMax >> 1;
+ var nBits = -7;
+ var i = isLE ? nBytes - 1 : 0;
+ var d = isLE ? -1 : 1;
+ var s = buffer[offset + i];
+ i += d;
+ e = s & (1 << -nBits) - 1;
+ s >>= -nBits;
+ nBits += eLen;
+ for (; nBits > 0; e = e * 256 + buffer[offset + i], i += d, nBits -= 8) {}
+ m = e & (1 << -nBits) - 1;
+ e >>= -nBits;
+ nBits += mLen;
+ for (; nBits > 0; m = m * 256 + buffer[offset + i], i += d, nBits -= 8) {}
+ if (e === 0) {
+ e = 1 - eBias;
+ } else if (e === eMax) {
+ return m ? NaN : (s ? -1 : 1) * Infinity;
+ } else {
+ m = m + Math.pow(2, mLen);
+ e = e - eBias;
+ }
+ return (s ? -1 : 1) * m * Math.pow(2, e - mLen);
+ };
+ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) {
+ var e, m, c;
+ var eLen = nBytes * 8 - mLen - 1;
+ var eMax = (1 << eLen) - 1;
+ var eBias = eMax >> 1;
+ var rt = mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0;
+ var i = isLE ? 0 : nBytes - 1;
+ var d = isLE ? 1 : -1;
+ var s = value < 0 || value === 0 && 1 / value < 0 ? 1 : 0;
+ value = Math.abs(value);
+ if (isNaN(value) || value === Infinity) {
+ m = isNaN(value) ? 1 : 0;
+ e = eMax;
+ } else {
+ e = Math.floor(Math.log(value) / Math.LN2);
+ if (value * (c = Math.pow(2, -e)) < 1) {
+ e--;
+ c *= 2;
+ }
+ if (e + eBias >= 1) {
+ value += rt / c;
+ } else {
+ value += rt * Math.pow(2, 1 - eBias);
+ }
+ if (value * c >= 2) {
+ e++;
+ c /= 2;
+ }
+ if (e + eBias >= eMax) {
+ m = 0;
+ e = eMax;
+ } else if (e + eBias >= 1) {
+ m = (value * c - 1) * Math.pow(2, mLen);
+ e = e + eBias;
+ } else {
+ m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen);
+ e = 0;
+ }
+ }
+ for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {}
+ e = e << mLen | m;
+ eLen += mLen;
+ for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {}
+ buffer[offset + i - d] |= s * 128;
+ };
+},4,[],"node_modules\\ieee754\\index.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ var _slicedToArray2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/slicedToArray"));
+ var _asyncToGenerator2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/asyncToGenerator"));
+ _$$_REQUIRE(_dependencyMap[3], "./utils/errorHandle");
+ _$$_REQUIRE(_dependencyMap[4], "./config/globalData");
+ console.log('starting app...');
+ (0, _$$_REQUIRE(_dependencyMap[5], "./navigation/regLaunchedEvent").listenLaunchEvent)();
+ void Promise.all([(0, _$$_REQUIRE(_dependencyMap[6], "./utils/data").getFontSize)(), _$$_REQUIRE(_dependencyMap[7], "./utils/windowSizeTools").windowSizeTools.init()]).then(/*#__PURE__*/function () {
+ var _ref2 = (0, _asyncToGenerator2.default)(function* (_ref) {
+ var _ref3 = (0, _slicedToArray2.default)(_ref, 1),
+ fontSize = _ref3[0];
+ global.lx.fontSize = fontSize;
+ (0, _$$_REQUIRE(_dependencyMap[8], "./utils/bootLog").bootLog)('Font size setting loaded.');
+ var isInited = false;
+ var handlePushedHomeScreen;
+ var tryGetBootLog = function tryGetBootLog() {
+ try {
+ return (0, _$$_REQUIRE(_dependencyMap[8], "./utils/bootLog").getBootLog)();
+ } catch (err) {
+ return 'Get boot log failed.';
+ }
+ };
+ var handleInit = /*#__PURE__*/function () {
+ var _ref4 = (0, _asyncToGenerator2.default)(function* () {
+ if (isInited) return;
+ void (0, _$$_REQUIRE(_dependencyMap[9], "./utils/log").init)();
+ var _yield$import = yield _$$_REQUIRE(_dependencyMap[11], "E:\\source\\ikun-music-mobile\\node_modules\\metro-runtime\\src\\modules\\asyncRequire.js")(_dependencyMap[10], _dependencyMap.paths, "./core/init"),
+ init = _yield$import.default;
+ try {
+ handlePushedHomeScreen = yield init();
+ } catch (err) {
+ var _err$stack;
+ void (0, _$$_REQUIRE(_dependencyMap[12], "./utils/tools").tipDialog)({
+ title: '初始化失败 (Init Failed)',
+ message: `Boot Log:\n${tryGetBootLog()}\n\n${(_err$stack = err.stack) != null ? _err$stack : err.message}`,
+ btnText: 'Exit',
+ bgClose: false
+ }).then(function () {
+ (0, _$$_REQUIRE(_dependencyMap[13], "./utils/nativeModules/utils").exitApp)();
+ });
+ return;
+ }
+ isInited || (isInited = true);
+ });
+ return function handleInit() {
+ return _ref4.apply(this, arguments);
+ };
+ }();
+ var _yield$import2 = yield _$$_REQUIRE(_dependencyMap[11], "E:\\source\\ikun-music-mobile\\node_modules\\metro-runtime\\src\\modules\\asyncRequire.js")(_dependencyMap[14], _dependencyMap.paths, "./navigation"),
+ initNavigation = _yield$import2.init,
+ navigations = _yield$import2.navigations;
+ initNavigation(/*#__PURE__*/(0, _asyncToGenerator2.default)(function* () {
+ yield handleInit();
+ if (!isInited) return;
+ // import('@/utils/nativeModules/cryptoTest')
+
+ yield navigations.pushHomeScreen().then(function () {
+ void handlePushedHomeScreen();
+ }).catch(function (err) {
+ void (0, _$$_REQUIRE(_dependencyMap[12], "./utils/tools").tipDialog)({
+ title: 'Error',
+ message: err.message,
+ btnText: 'Exit',
+ bgClose: false
+ }).then(function () {
+ (0, _$$_REQUIRE(_dependencyMap[13], "./utils/nativeModules/utils").exitApp)();
+ });
+ });
+ }));
+ });
+ return function (_x) {
+ return _ref2.apply(this, arguments);
+ };
+ }()).catch(function (err) {
+ var _err$stack2;
+ void (0, _$$_REQUIRE(_dependencyMap[12], "./utils/tools").tipDialog)({
+ title: '初始化失败 (Init Failed)',
+ message: `Boot Log:\n\n${(_err$stack2 = err.stack) != null ? _err$stack2 : err.message}`,
+ btnText: 'Exit',
+ bgClose: false
+ }).then(function () {
+ (0, _$$_REQUIRE(_dependencyMap[13], "./utils/nativeModules/utils").exitApp)();
+ });
+ });
+},5,[6,7,13,14,550,1434,575,695,1438,543,1439,1457,576,693,716],"src\\app.ts");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _interopRequireDefault(e) {
+ return e && e.__esModule ? e : {
+ "default": e
+ };
+ }
+ module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},6,[],"node_modules\\@babel\\runtime\\helpers\\interopRequireDefault.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _slicedToArray(r, e) {
+ return _$$_REQUIRE(_dependencyMap[0], "./arrayWithHoles.js")(r) || _$$_REQUIRE(_dependencyMap[1], "./iterableToArrayLimit.js")(r, e) || _$$_REQUIRE(_dependencyMap[2], "./unsupportedIterableToArray.js")(r, e) || _$$_REQUIRE(_dependencyMap[3], "./nonIterableRest.js")();
+ }
+ module.exports = _slicedToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},7,[8,9,10,12],"node_modules\\@babel\\runtime\\helpers\\slicedToArray.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _arrayWithHoles(r) {
+ if (Array.isArray(r)) return r;
+ }
+ module.exports = _arrayWithHoles, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},8,[],"node_modules\\@babel\\runtime\\helpers\\arrayWithHoles.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _iterableToArrayLimit(r, l) {
+ var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
+ if (null != t) {
+ var e,
+ n,
+ i,
+ u,
+ a = [],
+ f = !0,
+ o = !1;
+ try {
+ if (i = (t = t.call(r)).next, 0 === l) {
+ if (Object(t) !== t) return;
+ f = !1;
+ } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0);
+ } catch (r) {
+ o = !0, n = r;
+ } finally {
+ try {
+ if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return;
+ } finally {
+ if (o) throw n;
+ }
+ }
+ return a;
+ }
+ }
+ module.exports = _iterableToArrayLimit, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},9,[],"node_modules\\@babel\\runtime\\helpers\\iterableToArrayLimit.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _unsupportedIterableToArray(r, a) {
+ if (r) {
+ if ("string" == typeof r) return _$$_REQUIRE(_dependencyMap[0], "./arrayLikeToArray.js")(r, a);
+ var t = {}.toString.call(r).slice(8, -1);
+ return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _$$_REQUIRE(_dependencyMap[0], "./arrayLikeToArray.js")(r, a) : void 0;
+ }
+ }
+ module.exports = _unsupportedIterableToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},10,[11],"node_modules\\@babel\\runtime\\helpers\\unsupportedIterableToArray.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _arrayLikeToArray(r, a) {
+ (null == a || a > r.length) && (a = r.length);
+ for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
+ return n;
+ }
+ module.exports = _arrayLikeToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},11,[],"node_modules\\@babel\\runtime\\helpers\\arrayLikeToArray.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _nonIterableRest() {
+ throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
+ }
+ module.exports = _nonIterableRest, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},12,[],"node_modules\\@babel\\runtime\\helpers\\nonIterableRest.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function asyncGeneratorStep(n, t, e, r, o, a, c) {
+ try {
+ var i = n[a](c),
+ u = i.value;
+ } catch (n) {
+ return void e(n);
+ }
+ i.done ? t(u) : Promise.resolve(u).then(r, o);
+ }
+ function _asyncToGenerator(n) {
+ return function () {
+ var t = this,
+ e = arguments;
+ return new Promise(function (r, o) {
+ var a = n.apply(t, e);
+ function _next(n) {
+ asyncGeneratorStep(a, r, o, _next, _throw, "next", n);
+ }
+ function _throw(n) {
+ asyncGeneratorStep(a, r, o, _next, _throw, "throw", n);
+ }
+ _next(void 0);
+ });
+ };
+ }
+ module.exports = _asyncToGenerator, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},13,[],"node_modules\\@babel\\runtime\\helpers\\asyncToGenerator.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _reactNative = _$$_REQUIRE(_dependencyMap[0], "react-native");
+ // import { exitApp } from '@/utils/common'
+
+ var errorHandler = function errorHandler(e, isFatal) {
+ if (isFatal) {
+ _reactNative.Alert.alert('💥Unexpected error occurred💥', `
+应用出bug了😭,以下是错误异常信息,请截图(并附上刚才你进行了什么操作)通过企鹅群或者GitHub反馈,现在应用可能会出现异常,若出现异常请尝试强制结束APP后重新启动!
+
+Error:
+${isFatal ? 'Fatal:' : ''} ${e.name} ${e.message}
+`, [{
+ text: '关闭 (Close)',
+ onPress: function onPress() {
+ // exitApp()
+ }
+ }]);
+ }
+ _$$_REQUIRE(_dependencyMap[1], "./log").log.error(e.stack);
+ };
+ if (process.env.NODE_ENV !== 'development') {
+ (0, _$$_REQUIRE(_dependencyMap[2], "react-native-exception-handler").setJSExceptionHandler)(errorHandler);
+ (0, _$$_REQUIRE(_dependencyMap[2], "react-native-exception-handler").setNativeExceptionHandler)(function (errorString) {
+ _$$_REQUIRE(_dependencyMap[1], "./log").log.error(errorString);
+ console.log('+++++', errorString, '+++++');
+ }, false);
+ }
+},14,[15,543,549],"src\\utils\\errorHandle.ts");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ 'use strict';
+
+ // Components
+ // APIs
+ // Plugins
+ module.exports = {
+ // Components
+ get AccessibilityInfo() {
+ return _$$_REQUIRE(_dependencyMap[0], "./Libraries/Components/AccessibilityInfo/AccessibilityInfo").default;
+ },
+ get ActivityIndicator() {
+ return _$$_REQUIRE(_dependencyMap[1], "./Libraries/Components/ActivityIndicator/ActivityIndicator").default;
+ },
+ get Button() {
+ return _$$_REQUIRE(_dependencyMap[2], "./Libraries/Components/Button");
+ },
+ // $FlowFixMe[value-as-type]
+ get DrawerLayoutAndroid() {
+ return _$$_REQUIRE(_dependencyMap[3], "./Libraries/Components/DrawerAndroid/DrawerLayoutAndroid");
+ },
+ get FlatList() {
+ return _$$_REQUIRE(_dependencyMap[4], "./Libraries/Lists/FlatList");
+ },
+ get Image() {
+ return _$$_REQUIRE(_dependencyMap[5], "./Libraries/Image/Image");
+ },
+ get ImageBackground() {
+ return _$$_REQUIRE(_dependencyMap[6], "./Libraries/Image/ImageBackground");
+ },
+ get InputAccessoryView() {
+ return _$$_REQUIRE(_dependencyMap[7], "./Libraries/Components/TextInput/InputAccessoryView");
+ },
+ get KeyboardAvoidingView() {
+ return _$$_REQUIRE(_dependencyMap[8], "./Libraries/Components/Keyboard/KeyboardAvoidingView").default;
+ },
+ get Modal() {
+ return _$$_REQUIRE(_dependencyMap[9], "./Libraries/Modal/Modal");
+ },
+ get Pressable() {
+ return _$$_REQUIRE(_dependencyMap[10], "./Libraries/Components/Pressable/Pressable").default;
+ },
+ // $FlowFixMe[value-as-type]
+ get ProgressBarAndroid() {
+ _$$_REQUIRE(_dependencyMap[11], "./Libraries/Utilities/warnOnce")('progress-bar-android-moved', 'ProgressBarAndroid has been extracted from react-native core and will be removed in a future release. ' + "It can now be installed and imported from '@react-native-community/progress-bar-android' instead of 'react-native'. " + 'See https://github.com/react-native-progress-view/progress-bar-android');
+ return _$$_REQUIRE(_dependencyMap[12], "./Libraries/Components/ProgressBarAndroid/ProgressBarAndroid");
+ },
+ get RefreshControl() {
+ return _$$_REQUIRE(_dependencyMap[13], "./Libraries/Components/RefreshControl/RefreshControl");
+ },
+ get SafeAreaView() {
+ return _$$_REQUIRE(_dependencyMap[14], "./Libraries/Components/SafeAreaView/SafeAreaView").default;
+ },
+ get ScrollView() {
+ return _$$_REQUIRE(_dependencyMap[15], "./Libraries/Components/ScrollView/ScrollView");
+ },
+ get SectionList() {
+ return _$$_REQUIRE(_dependencyMap[16], "./Libraries/Lists/SectionList").default;
+ },
+ get StatusBar() {
+ return _$$_REQUIRE(_dependencyMap[17], "./Libraries/Components/StatusBar/StatusBar");
+ },
+ get Switch() {
+ return _$$_REQUIRE(_dependencyMap[18], "./Libraries/Components/Switch/Switch").default;
+ },
+ get Text() {
+ return _$$_REQUIRE(_dependencyMap[19], "./Libraries/Text/Text");
+ },
+ get TextInput() {
+ return _$$_REQUIRE(_dependencyMap[20], "./Libraries/Components/TextInput/TextInput");
+ },
+ get Touchable() {
+ return _$$_REQUIRE(_dependencyMap[21], "./Libraries/Components/Touchable/Touchable");
+ },
+ get TouchableHighlight() {
+ return _$$_REQUIRE(_dependencyMap[22], "./Libraries/Components/Touchable/TouchableHighlight");
+ },
+ get TouchableNativeFeedback() {
+ return _$$_REQUIRE(_dependencyMap[23], "./Libraries/Components/Touchable/TouchableNativeFeedback");
+ },
+ get TouchableOpacity() {
+ return _$$_REQUIRE(_dependencyMap[24], "./Libraries/Components/Touchable/TouchableOpacity");
+ },
+ get TouchableWithoutFeedback() {
+ return _$$_REQUIRE(_dependencyMap[25], "./Libraries/Components/Touchable/TouchableWithoutFeedback");
+ },
+ get View() {
+ return _$$_REQUIRE(_dependencyMap[26], "./Libraries/Components/View/View");
+ },
+ get VirtualizedList() {
+ return _$$_REQUIRE(_dependencyMap[27], "./Libraries/Lists/VirtualizedList");
+ },
+ get VirtualizedSectionList() {
+ return _$$_REQUIRE(_dependencyMap[28], "./Libraries/Lists/VirtualizedSectionList");
+ },
+ // APIs
+ get ActionSheetIOS() {
+ return _$$_REQUIRE(_dependencyMap[29], "./Libraries/ActionSheetIOS/ActionSheetIOS");
+ },
+ get Alert() {
+ return _$$_REQUIRE(_dependencyMap[30], "./Libraries/Alert/Alert");
+ },
+ // Include any types exported in the Animated module together with its default export, so
+ // you can references types such as Animated.Numeric
+ get Animated() {
+ // $FlowExpectedError[prop-missing]: we only return the default export, all other exports are types
+ return _$$_REQUIRE(_dependencyMap[31], "./Libraries/Animated/Animated").default;
+ },
+ get Appearance() {
+ return _$$_REQUIRE(_dependencyMap[32], "./Libraries/Utilities/Appearance");
+ },
+ get AppRegistry() {
+ return _$$_REQUIRE(_dependencyMap[33], "./Libraries/ReactNative/AppRegistry");
+ },
+ get AppState() {
+ return _$$_REQUIRE(_dependencyMap[34], "./Libraries/AppState/AppState");
+ },
+ get BackHandler() {
+ return _$$_REQUIRE(_dependencyMap[35], "./Libraries/Utilities/BackHandler");
+ },
+ get Clipboard() {
+ _$$_REQUIRE(_dependencyMap[11], "./Libraries/Utilities/warnOnce")('clipboard-moved', 'Clipboard has been extracted from react-native core and will be removed in a future release. ' + "It can now be installed and imported from '@react-native-clipboard/clipboard' instead of 'react-native'. " + 'See https://github.com/react-native-clipboard/clipboard');
+ return _$$_REQUIRE(_dependencyMap[36], "./Libraries/Components/Clipboard/Clipboard");
+ },
+ get DeviceInfo() {
+ return _$$_REQUIRE(_dependencyMap[37], "./Libraries/Utilities/DeviceInfo");
+ },
+ get DevSettings() {
+ return _$$_REQUIRE(_dependencyMap[38], "./Libraries/Utilities/DevSettings");
+ },
+ get Dimensions() {
+ return _$$_REQUIRE(_dependencyMap[39], "./Libraries/Utilities/Dimensions").default;
+ },
+ get Easing() {
+ return _$$_REQUIRE(_dependencyMap[40], "./Libraries/Animated/Easing").default;
+ },
+ get findNodeHandle() {
+ return _$$_REQUIRE(_dependencyMap[41], "./Libraries/ReactNative/RendererProxy").findNodeHandle;
+ },
+ get I18nManager() {
+ return _$$_REQUIRE(_dependencyMap[42], "./Libraries/ReactNative/I18nManager");
+ },
+ get InteractionManager() {
+ return _$$_REQUIRE(_dependencyMap[43], "./Libraries/Interaction/InteractionManager");
+ },
+ get Keyboard() {
+ return _$$_REQUIRE(_dependencyMap[44], "./Libraries/Components/Keyboard/Keyboard");
+ },
+ get LayoutAnimation() {
+ return _$$_REQUIRE(_dependencyMap[45], "./Libraries/LayoutAnimation/LayoutAnimation");
+ },
+ get Linking() {
+ return _$$_REQUIRE(_dependencyMap[46], "./Libraries/Linking/Linking");
+ },
+ get LogBox() {
+ return _$$_REQUIRE(_dependencyMap[47], "./Libraries/LogBox/LogBox").default;
+ },
+ get NativeDialogManagerAndroid() {
+ return _$$_REQUIRE(_dependencyMap[48], "./Libraries/NativeModules/specs/NativeDialogManagerAndroid").default;
+ },
+ get NativeEventEmitter() {
+ return _$$_REQUIRE(_dependencyMap[49], "./Libraries/EventEmitter/NativeEventEmitter").default;
+ },
+ get Networking() {
+ return _$$_REQUIRE(_dependencyMap[50], "./Libraries/Network/RCTNetworking").default;
+ },
+ get PanResponder() {
+ return _$$_REQUIRE(_dependencyMap[51], "./Libraries/Interaction/PanResponder").default;
+ },
+ get PermissionsAndroid() {
+ return _$$_REQUIRE(_dependencyMap[52], "./Libraries/PermissionsAndroid/PermissionsAndroid");
+ },
+ get PixelRatio() {
+ return _$$_REQUIRE(_dependencyMap[53], "./Libraries/Utilities/PixelRatio").default;
+ },
+ get PushNotificationIOS() {
+ _$$_REQUIRE(_dependencyMap[11], "./Libraries/Utilities/warnOnce")('pushNotificationIOS-moved', 'PushNotificationIOS has been extracted from react-native core and will be removed in a future release. ' + "It can now be installed and imported from '@react-native-community/push-notification-ios' instead of 'react-native'. " + 'See https://github.com/react-native-push-notification-ios/push-notification-ios');
+ return _$$_REQUIRE(_dependencyMap[54], "./Libraries/PushNotificationIOS/PushNotificationIOS");
+ },
+ get Settings() {
+ return _$$_REQUIRE(_dependencyMap[55], "./Libraries/Settings/Settings");
+ },
+ get Share() {
+ return _$$_REQUIRE(_dependencyMap[56], "./Libraries/Share/Share");
+ },
+ get StyleSheet() {
+ return _$$_REQUIRE(_dependencyMap[57], "./Libraries/StyleSheet/StyleSheet");
+ },
+ get Systrace() {
+ return _$$_REQUIRE(_dependencyMap[58], "./Libraries/Performance/Systrace");
+ },
+ // $FlowFixMe[value-as-type]
+ get ToastAndroid() {
+ return _$$_REQUIRE(_dependencyMap[59], "./Libraries/Components/ToastAndroid/ToastAndroid");
+ },
+ get TurboModuleRegistry() {
+ return _$$_REQUIRE(_dependencyMap[60], "./Libraries/TurboModule/TurboModuleRegistry");
+ },
+ get UIManager() {
+ return _$$_REQUIRE(_dependencyMap[61], "./Libraries/ReactNative/UIManager");
+ },
+ get unstable_batchedUpdates() {
+ return _$$_REQUIRE(_dependencyMap[41], "./Libraries/ReactNative/RendererProxy").unstable_batchedUpdates;
+ },
+ get useAnimatedValue() {
+ return _$$_REQUIRE(_dependencyMap[62], "./Libraries/Animated/useAnimatedValue").default;
+ },
+ get useColorScheme() {
+ return _$$_REQUIRE(_dependencyMap[63], "./Libraries/Utilities/useColorScheme").default;
+ },
+ get useWindowDimensions() {
+ return _$$_REQUIRE(_dependencyMap[64], "./Libraries/Utilities/useWindowDimensions").default;
+ },
+ get UTFSequence() {
+ return _$$_REQUIRE(_dependencyMap[65], "./Libraries/UTFSequence").default;
+ },
+ get Vibration() {
+ return _$$_REQUIRE(_dependencyMap[66], "./Libraries/Vibration/Vibration");
+ },
+ get YellowBox() {
+ return _$$_REQUIRE(_dependencyMap[67], "./Libraries/YellowBox/YellowBoxDeprecated");
+ },
+ // Plugins
+ get DeviceEventEmitter() {
+ return _$$_REQUIRE(_dependencyMap[68], "./Libraries/EventEmitter/RCTDeviceEventEmitter").default;
+ },
+ get DynamicColorIOS() {
+ return _$$_REQUIRE(_dependencyMap[69], "./Libraries/StyleSheet/PlatformColorValueTypesIOS").DynamicColorIOS;
+ },
+ get NativeAppEventEmitter() {
+ return _$$_REQUIRE(_dependencyMap[70], "./Libraries/EventEmitter/RCTNativeAppEventEmitter");
+ },
+ get NativeModules() {
+ return _$$_REQUIRE(_dependencyMap[71], "./Libraries/BatchedBridge/NativeModules");
+ },
+ get Platform() {
+ return _$$_REQUIRE(_dependencyMap[72], "./Libraries/Utilities/Platform");
+ },
+ get PlatformColor() {
+ return _$$_REQUIRE(_dependencyMap[73], "./Libraries/StyleSheet/PlatformColorValueTypes").PlatformColor;
+ },
+ get processColor() {
+ return _$$_REQUIRE(_dependencyMap[74], "./Libraries/StyleSheet/processColor").default;
+ },
+ get requireNativeComponent() {
+ return _$$_REQUIRE(_dependencyMap[75], "./Libraries/ReactNative/requireNativeComponent").default;
+ },
+ get RootTagContext() {
+ return _$$_REQUIRE(_dependencyMap[76], "./Libraries/ReactNative/RootTag").RootTagContext;
+ },
+ get unstable_enableLogBox() {
+ return function () {
+ return console.warn('LogBox is enabled by default so there is no need to call unstable_enableLogBox() anymore. This is a no op and will be removed in the next version.');
+ };
+ },
+ // Deprecated Prop Types
+ get ColorPropType() {
+ console.error('ColorPropType will be removed from React Native, along with all ' + 'other PropTypes. We recommend that you migrate away from PropTypes ' + 'and switch to a type system like TypeScript. If you need to ' + 'continue using ColorPropType, migrate to the ' + "'deprecated-react-native-prop-types' package.");
+ return _$$_REQUIRE(_dependencyMap[77], "deprecated-react-native-prop-types").ColorPropType;
+ },
+ get EdgeInsetsPropType() {
+ console.error('EdgeInsetsPropType will be removed from React Native, along with all ' + 'other PropTypes. We recommend that you migrate away from PropTypes ' + 'and switch to a type system like TypeScript. If you need to ' + 'continue using EdgeInsetsPropType, migrate to the ' + "'deprecated-react-native-prop-types' package.");
+ return _$$_REQUIRE(_dependencyMap[77], "deprecated-react-native-prop-types").EdgeInsetsPropType;
+ },
+ get PointPropType() {
+ console.error('PointPropType will be removed from React Native, along with all ' + 'other PropTypes. We recommend that you migrate away from PropTypes ' + 'and switch to a type system like TypeScript. If you need to ' + 'continue using PointPropType, migrate to the ' + "'deprecated-react-native-prop-types' package.");
+ return _$$_REQUIRE(_dependencyMap[77], "deprecated-react-native-prop-types").PointPropType;
+ },
+ get ViewPropTypes() {
+ console.error('ViewPropTypes will be removed from React Native, along with all ' + 'other PropTypes. We recommend that you migrate away from PropTypes ' + 'and switch to a type system like TypeScript. If you need to ' + 'continue using ViewPropTypes, migrate to the ' + "'deprecated-react-native-prop-types' package.");
+ return _$$_REQUIRE(_dependencyMap[77], "deprecated-react-native-prop-types").ViewPropTypes;
+ }
+ };
+ if (__DEV__) {
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access ART. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access ART. */
+ Object.defineProperty(module.exports, 'ART', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'ART has been removed from React Native. ' + "It can now be installed and imported from '@react-native-community/art' instead of 'react-native'. " + 'See https://github.com/react-native-art/art');
+ }
+ });
+
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access ListView. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access ListView. */
+ Object.defineProperty(module.exports, 'ListView', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'ListView has been removed from React Native. ' + 'See https://fb.me/nolistview for more information or use ' + '`deprecated-react-native-listview`.');
+ }
+ });
+
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access SwipeableListView. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access SwipeableListView. */
+ Object.defineProperty(module.exports, 'SwipeableListView', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'SwipeableListView has been removed from React Native. ' + 'See https://fb.me/nolistview for more information or use ' + '`deprecated-react-native-swipeable-listview`.');
+ }
+ });
+
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access WebView. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access WebView. */
+ Object.defineProperty(module.exports, 'WebView', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'WebView has been removed from React Native. ' + "It can now be installed and imported from 'react-native-webview' instead of 'react-native'. " + 'See https://github.com/react-native-webview/react-native-webview');
+ }
+ });
+
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access NetInfo. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access NetInfo. */
+ Object.defineProperty(module.exports, 'NetInfo', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'NetInfo has been removed from React Native. ' + "It can now be installed and imported from '@react-native-community/netinfo' instead of 'react-native'. " + 'See https://github.com/react-native-netinfo/react-native-netinfo');
+ }
+ });
+
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access CameraRoll. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access CameraRoll. */
+ Object.defineProperty(module.exports, 'CameraRoll', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'CameraRoll has been removed from React Native. ' + "It can now be installed and imported from '@react-native-community/cameraroll' instead of 'react-native'. " + 'See https://github.com/react-native-cameraroll/react-native-cameraroll');
+ }
+ });
+
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access ImageStore. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access ImageStore. */
+ Object.defineProperty(module.exports, 'ImageStore', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'ImageStore has been removed from React Native. ' + 'To get a base64-encoded string from a local image use either of the following third-party libraries:' + "* expo-file-system: `readAsStringAsync(filepath, 'base64')`" + "* react-native-fs: `readFile(filepath, 'base64')`");
+ }
+ });
+
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access ImageEditor. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access ImageEditor. */
+ Object.defineProperty(module.exports, 'ImageEditor', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'ImageEditor has been removed from React Native. ' + "It can now be installed and imported from '@react-native-community/image-editor' instead of 'react-native'. " + 'See https://github.com/callstack/react-native-image-editor');
+ }
+ });
+
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access TimePickerAndroid. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access TimePickerAndroid. */
+ Object.defineProperty(module.exports, 'TimePickerAndroid', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'TimePickerAndroid has been removed from React Native. ' + "It can now be installed and imported from '@react-native-community/datetimepicker' instead of 'react-native'. " + 'See https://github.com/react-native-datetimepicker/datetimepicker');
+ }
+ });
+
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access ToolbarAndroid. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access ToolbarAndroid. */
+ Object.defineProperty(module.exports, 'ToolbarAndroid', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'ToolbarAndroid has been removed from React Native. ' + "It can now be installed and imported from '@react-native-community/toolbar-android' instead of 'react-native'. " + 'See https://github.com/react-native-toolbar-android/toolbar-android');
+ }
+ });
+
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access ViewPagerAndroid. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access ViewPagerAndroid. */
+ Object.defineProperty(module.exports, 'ViewPagerAndroid', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'ViewPagerAndroid has been removed from React Native. ' + "It can now be installed and imported from 'react-native-pager-view' instead of 'react-native'. " + 'See https://github.com/callstack/react-native-pager-view');
+ }
+ });
+
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access CheckBox. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access CheckBox. */
+ Object.defineProperty(module.exports, 'CheckBox', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'CheckBox has been removed from React Native. ' + "It can now be installed and imported from '@react-native-community/checkbox' instead of 'react-native'. " + 'See https://github.com/react-native-checkbox/react-native-checkbox');
+ }
+ });
+
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access SegmentedControlIOS. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access SegmentedControlIOS. */
+ Object.defineProperty(module.exports, 'SegmentedControlIOS', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'SegmentedControlIOS has been removed from React Native. ' + "It can now be installed and imported from '@react-native-community/segmented-checkbox' instead of 'react-native'." + 'See https://github.com/react-native-segmented-control/segmented-control');
+ }
+ });
+
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access StatusBarIOS. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access StatusBarIOS. */
+ Object.defineProperty(module.exports, 'StatusBarIOS', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'StatusBarIOS has been removed from React Native. ' + 'Has been merged with StatusBar. ' + 'See https://reactnative.dev/docs/statusbar');
+ }
+ });
+
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access PickerIOS. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access PickerIOS. */
+ Object.defineProperty(module.exports, 'PickerIOS', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'PickerIOS has been removed from React Native. ' + "It can now be installed and imported from '@react-native-picker/picker' instead of 'react-native'. " + 'See https://github.com/react-native-picker/picker');
+ }
+ });
+
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access Picker. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access Picker. */
+ Object.defineProperty(module.exports, 'Picker', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'Picker has been removed from React Native. ' + "It can now be installed and imported from '@react-native-picker/picker' instead of 'react-native'. " + 'See https://github.com/react-native-picker/picker');
+ }
+ });
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access DatePickerAndroid. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access DatePickerAndroid. */
+ Object.defineProperty(module.exports, 'DatePickerAndroid', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'DatePickerAndroid has been removed from React Native. ' + "It can now be installed and imported from '@react-native-community/datetimepicker' instead of 'react-native'. " + 'See https://github.com/react-native-datetimepicker/datetimepicker');
+ }
+ });
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access MaskedViewIOS. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access MaskedViewIOS. */
+ Object.defineProperty(module.exports, 'MaskedViewIOS', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'MaskedViewIOS has been removed from React Native. ' + "It can now be installed and imported from '@react-native-community/react-native-masked-view' instead of 'react-native'. " + 'See https://github.com/react-native-masked-view/masked-view');
+ }
+ });
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access AsyncStorage. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access AsyncStorage. */
+ Object.defineProperty(module.exports, 'AsyncStorage', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'AsyncStorage has been removed from react-native core. ' + "It can now be installed and imported from '@react-native-async-storage/async-storage' instead of 'react-native'. " + 'See https://github.com/react-native-async-storage/async-storage');
+ }
+ });
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access ImagePickerIOS. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access ImagePickerIOS. */
+ Object.defineProperty(module.exports, 'ImagePickerIOS', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'ImagePickerIOS has been removed from React Native. ' + "Please upgrade to use either '@react-native-community/react-native-image-picker' or 'expo-image-picker'. " + "If you cannot upgrade to a different library, please install the deprecated '@react-native-community/image-picker-ios' package. " + 'See https://github.com/rnc-archive/react-native-image-picker-ios');
+ }
+ });
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access ProgressViewIOS. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access ProgressViewIOS. */
+ Object.defineProperty(module.exports, 'ProgressViewIOS', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'ProgressViewIOS has been removed from react-native core. ' + "It can now be installed and imported from '@react-native-community/progress-view' instead of 'react-native'. " + 'See https://github.com/react-native-progress-view/progress-view');
+ }
+ });
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access DatePickerIOS. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access DatePickerIOS. */
+ Object.defineProperty(module.exports, 'DatePickerIOS', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'DatePickerIOS has been removed from react-native core. ' + "It can now be installed and imported from '@react-native-community/datetimepicker' instead of 'react-native'. " + 'See https://github.com/react-native-datetimepicker/datetimepicker');
+ }
+ });
+ /* $FlowFixMe[prop-missing] This is intentional: Flow will error when
+ * attempting to access Slider. */
+ /* $FlowFixMe[invalid-export] This is intentional: Flow will error when
+ * attempting to access Slider. */
+ Object.defineProperty(module.exports, 'Slider', {
+ configurable: true,
+ get: function get() {
+ _$$_REQUIRE(_dependencyMap[78], "invariant")(false, 'Slider has been removed from react-native core. ' + "It can now be installed and imported from '@react-native-community/slider' instead of 'react-native'. " + 'See https://github.com/callstack/react-native-slider');
+ }
+ });
+ }
+},15,[16,490,494,497,402,421,499,500,502,503,507,45,491,430,308,346,434,477,509,310,512,514,444,495,496,446,241,518,519,520,176,399,193,231,210,467,522,524,199,255,359,61,270,356,388,389,459,95,178,160,159,525,527,254,529,531,532,266,33,534,36,51,536,537,538,110,539,541,17,542,185,38,34,192,189,277,464,318,37],"node_modules\\react-native\\index.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var _RCTDeviceEventEmitter = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../../EventEmitter/RCTDeviceEventEmitter"));
+ var _Platform = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "../../Utilities/Platform"));
+ var _legacySendAccessibilityEvent = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "./legacySendAccessibilityEvent"));
+ var _NativeAccessibilityInfo = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "./NativeAccessibilityInfo"));
+ var _NativeAccessibilityManager = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[5], "./NativeAccessibilityManager"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ // Events that are only supported on Android.
+
+ // Events that are only supported on iOS.
+
+ // Mapping of public event names to platform-specific event names.
+ var EventNames = _Platform.default.OS === 'android' ? new Map([['change', 'touchExplorationDidChange'], ['reduceMotionChanged', 'reduceMotionDidChange'], ['screenReaderChanged', 'touchExplorationDidChange'], ['accessibilityServiceChanged', 'accessibilityServiceDidChange']]) : new Map([['announcementFinished', 'announcementFinished'], ['boldTextChanged', 'boldTextChanged'], ['change', 'screenReaderChanged'], ['grayscaleChanged', 'grayscaleChanged'], ['invertColorsChanged', 'invertColorsChanged'], ['reduceMotionChanged', 'reduceMotionChanged'], ['reduceTransparencyChanged', 'reduceTransparencyChanged'], ['screenReaderChanged', 'screenReaderChanged']]);
+
+ /**
+ * Sometimes it's useful to know whether or not the device has a screen reader
+ * that is currently active. The `AccessibilityInfo` API is designed for this
+ * purpose. You can use it to query the current state of the screen reader as
+ * well as to register to be notified when the state of the screen reader
+ * changes.
+ *
+ * See https://reactnative.dev/docs/accessibilityinfo
+ */
+ var AccessibilityInfo = {
+ /**
+ * Query whether bold text is currently enabled.
+ *
+ * Returns a promise which resolves to a boolean.
+ * The result is `true` when bold text is enabled and `false` otherwise.
+ *
+ * See https://reactnative.dev/docs/accessibilityinfo#isBoldTextEnabled
+ */
+ isBoldTextEnabled: function isBoldTextEnabled() {
+ if (_Platform.default.OS === 'android') {
+ return Promise.resolve(false);
+ } else {
+ return new Promise(function (resolve, reject) {
+ if (_NativeAccessibilityManager.default != null) {
+ _NativeAccessibilityManager.default.getCurrentBoldTextState(resolve, reject);
+ } else {
+ reject(null);
+ }
+ });
+ }
+ },
+ /**
+ * Query whether grayscale is currently enabled.
+ *
+ * Returns a promise which resolves to a boolean.
+ * The result is `true` when grayscale is enabled and `false` otherwise.
+ *
+ * See https://reactnative.dev/docs/accessibilityinfo#isGrayscaleEnabled
+ */
+ isGrayscaleEnabled: function isGrayscaleEnabled() {
+ if (_Platform.default.OS === 'android') {
+ return Promise.resolve(false);
+ } else {
+ return new Promise(function (resolve, reject) {
+ if (_NativeAccessibilityManager.default != null) {
+ _NativeAccessibilityManager.default.getCurrentGrayscaleState(resolve, reject);
+ } else {
+ reject(null);
+ }
+ });
+ }
+ },
+ /**
+ * Query whether inverted colors are currently enabled.
+ *
+ * Returns a promise which resolves to a boolean.
+ * The result is `true` when invert color is enabled and `false` otherwise.
+ *
+ * See https://reactnative.dev/docs/accessibilityinfo#isInvertColorsEnabled
+ */
+ isInvertColorsEnabled: function isInvertColorsEnabled() {
+ if (_Platform.default.OS === 'android') {
+ return Promise.resolve(false);
+ } else {
+ return new Promise(function (resolve, reject) {
+ if (_NativeAccessibilityManager.default != null) {
+ _NativeAccessibilityManager.default.getCurrentInvertColorsState(resolve, reject);
+ } else {
+ reject(null);
+ }
+ });
+ }
+ },
+ /**
+ * Query whether reduced motion is currently enabled.
+ *
+ * Returns a promise which resolves to a boolean.
+ * The result is `true` when a reduce motion is enabled and `false` otherwise.
+ *
+ * See https://reactnative.dev/docs/accessibilityinfo#isReduceMotionEnabled
+ */
+ isReduceMotionEnabled: function isReduceMotionEnabled() {
+ return new Promise(function (resolve, reject) {
+ if (_Platform.default.OS === 'android') {
+ if (_NativeAccessibilityInfo.default != null) {
+ _NativeAccessibilityInfo.default.isReduceMotionEnabled(resolve);
+ } else {
+ reject(null);
+ }
+ } else {
+ if (_NativeAccessibilityManager.default != null) {
+ _NativeAccessibilityManager.default.getCurrentReduceMotionState(resolve, reject);
+ } else {
+ reject(null);
+ }
+ }
+ });
+ },
+ /**
+ * Query whether reduce motion and prefer cross-fade transitions settings are currently enabled.
+ *
+ * Returns a promise which resolves to a boolean.
+ * The result is `true` when prefer cross-fade transitions is enabled and `false` otherwise.
+ *
+ * See https://reactnative.dev/docs/accessibilityinfo#prefersCrossFadeTransitions
+ */
+ prefersCrossFadeTransitions: function prefersCrossFadeTransitions() {
+ return new Promise(function (resolve, reject) {
+ if (_Platform.default.OS === 'android') {
+ return Promise.resolve(false);
+ } else {
+ if ((_NativeAccessibilityManager.default == null ? void 0 : _NativeAccessibilityManager.default.getCurrentPrefersCrossFadeTransitionsState) != null) {
+ _NativeAccessibilityManager.default.getCurrentPrefersCrossFadeTransitionsState(resolve, reject);
+ } else {
+ reject(null);
+ }
+ }
+ });
+ },
+ /**
+ * Query whether reduced transparency is currently enabled.
+ *
+ * Returns a promise which resolves to a boolean.
+ * The result is `true` when a reduce transparency is enabled and `false` otherwise.
+ *
+ * See https://reactnative.dev/docs/accessibilityinfo#isReduceTransparencyEnabled
+ */
+ isReduceTransparencyEnabled: function isReduceTransparencyEnabled() {
+ if (_Platform.default.OS === 'android') {
+ return Promise.resolve(false);
+ } else {
+ return new Promise(function (resolve, reject) {
+ if (_NativeAccessibilityManager.default != null) {
+ _NativeAccessibilityManager.default.getCurrentReduceTransparencyState(resolve, reject);
+ } else {
+ reject(null);
+ }
+ });
+ }
+ },
+ /**
+ * Query whether a screen reader is currently enabled.
+ *
+ * Returns a promise which resolves to a boolean.
+ * The result is `true` when a screen reader is enabled and `false` otherwise.
+ *
+ * See https://reactnative.dev/docs/accessibilityinfo#isScreenReaderEnabled
+ */
+ isScreenReaderEnabled: function isScreenReaderEnabled() {
+ return new Promise(function (resolve, reject) {
+ if (_Platform.default.OS === 'android') {
+ if (_NativeAccessibilityInfo.default != null) {
+ _NativeAccessibilityInfo.default.isTouchExplorationEnabled(resolve);
+ } else {
+ reject(null);
+ }
+ } else {
+ if (_NativeAccessibilityManager.default != null) {
+ _NativeAccessibilityManager.default.getCurrentVoiceOverState(resolve, reject);
+ } else {
+ reject(null);
+ }
+ }
+ });
+ },
+ /**
+ * Query whether Accessibility Service is currently enabled.
+ *
+ * Returns a promise which resolves to a boolean.
+ * The result is `true` when any service is enabled and `false` otherwise.
+ *
+ * @platform android
+ *
+ * See https://reactnative.dev/docs/accessibilityinfo/#isaccessibilityserviceenabled-android
+ */
+ isAccessibilityServiceEnabled: function isAccessibilityServiceEnabled() {
+ return new Promise(function (resolve, reject) {
+ if (_Platform.default.OS === 'android') {
+ if (_NativeAccessibilityInfo.default != null && _NativeAccessibilityInfo.default.isAccessibilityServiceEnabled != null) {
+ _NativeAccessibilityInfo.default.isAccessibilityServiceEnabled(resolve);
+ } else {
+ reject(null);
+ }
+ } else {
+ reject(null);
+ }
+ });
+ },
+ /**
+ * Add an event handler. Supported events:
+ *
+ * - `reduceMotionChanged`: Fires when the state of the reduce motion toggle changes.
+ * The argument to the event handler is a boolean. The boolean is `true` when a reduce
+ * motion is enabled (or when "Transition Animation Scale" in "Developer options" is
+ * "Animation off") and `false` otherwise.
+ * - `screenReaderChanged`: Fires when the state of the screen reader changes. The argument
+ * to the event handler is a boolean. The boolean is `true` when a screen
+ * reader is enabled and `false` otherwise.
+ *
+ * These events are only supported on iOS:
+ *
+ * - `boldTextChanged`: iOS-only event. Fires when the state of the bold text toggle changes.
+ * The argument to the event handler is a boolean. The boolean is `true` when a bold text
+ * is enabled and `false` otherwise.
+ * - `grayscaleChanged`: iOS-only event. Fires when the state of the gray scale toggle changes.
+ * The argument to the event handler is a boolean. The boolean is `true` when a gray scale
+ * is enabled and `false` otherwise.
+ * - `invertColorsChanged`: iOS-only event. Fires when the state of the invert colors toggle
+ * changes. The argument to the event handler is a boolean. The boolean is `true` when a invert
+ * colors is enabled and `false` otherwise.
+ * - `reduceTransparencyChanged`: iOS-only event. Fires when the state of the reduce transparency
+ * toggle changes. The argument to the event handler is a boolean. The boolean is `true`
+ * when a reduce transparency is enabled and `false` otherwise.
+ * - `announcementFinished`: iOS-only event. Fires when the screen reader has
+ * finished making an announcement. The argument to the event handler is a
+ * dictionary with these keys:
+ * - `announcement`: The string announced by the screen reader.
+ * - `success`: A boolean indicating whether the announcement was
+ * successfully made.
+ *
+ * See https://reactnative.dev/docs/accessibilityinfo#addeventlistener
+ */
+ addEventListener: function addEventListener(eventName,
+ // $FlowIssue[incompatible-type] - Flow bug with unions and generics (T128099423)
+ handler) {
+ var deviceEventName = EventNames.get(eventName);
+ return deviceEventName == null ? {
+ remove: function remove() {}
+ } :
+ // $FlowFixMe[incompatible-call]
+ _RCTDeviceEventEmitter.default.addListener(deviceEventName, handler);
+ },
+ /**
+ * Set accessibility focus to a React component.
+ *
+ * See https://reactnative.dev/docs/accessibilityinfo#setaccessibilityfocus
+ */
+ setAccessibilityFocus: function setAccessibilityFocus(reactTag) {
+ (0, _legacySendAccessibilityEvent.default)(reactTag, 'focus');
+ },
+ /**
+ * Send a named accessibility event to a HostComponent.
+ */
+ sendAccessibilityEvent: function sendAccessibilityEvent(handle, eventType) {
+ // iOS only supports 'focus' event types
+ if (_Platform.default.OS === 'ios' && eventType === 'click') {
+ return;
+ }
+ // route through React renderer to distinguish between Fabric and non-Fabric handles
+ (0, _$$_REQUIRE(_dependencyMap[6], "../../ReactNative/RendererProxy").sendAccessibilityEvent)(handle, eventType);
+ },
+ /**
+ * Post a string to be announced by the screen reader.
+ *
+ * See https://reactnative.dev/docs/accessibilityinfo#announceforaccessibility
+ */
+ announceForAccessibility: function announceForAccessibility(announcement) {
+ if (_Platform.default.OS === 'android') {
+ _NativeAccessibilityInfo.default == null ? void 0 : _NativeAccessibilityInfo.default.announceForAccessibility(announcement);
+ } else {
+ _NativeAccessibilityManager.default == null ? void 0 : _NativeAccessibilityManager.default.announceForAccessibility(announcement);
+ }
+ },
+ /**
+ * Post a string to be announced by the screen reader.
+ * - `announcement`: The string announced by the screen reader.
+ * - `options`: An object that configures the reading options.
+ * - `queue`: The announcement will be queued behind existing announcements. iOS only.
+ */
+ announceForAccessibilityWithOptions: function announceForAccessibilityWithOptions(announcement, options) {
+ if (_Platform.default.OS === 'android') {
+ _NativeAccessibilityInfo.default == null ? void 0 : _NativeAccessibilityInfo.default.announceForAccessibility(announcement);
+ } else {
+ if (_NativeAccessibilityManager.default != null && _NativeAccessibilityManager.default.announceForAccessibilityWithOptions) {
+ _NativeAccessibilityManager.default == null ? void 0 : _NativeAccessibilityManager.default.announceForAccessibilityWithOptions(announcement, options);
+ } else {
+ _NativeAccessibilityManager.default == null ? void 0 : _NativeAccessibilityManager.default.announceForAccessibility(announcement);
+ }
+ }
+ },
+ /**
+ * Get the recommended timeout for changes to the UI needed by this user.
+ *
+ * See https://reactnative.dev/docs/accessibilityinfo#getrecommendedtimeoutmillis
+ */
+ getRecommendedTimeoutMillis: function getRecommendedTimeoutMillis(originalTimeout) {
+ if (_Platform.default.OS === 'android') {
+ return new Promise(function (resolve, reject) {
+ if (_NativeAccessibilityInfo.default != null && _NativeAccessibilityInfo.default.getRecommendedTimeoutMillis) {
+ _NativeAccessibilityInfo.default.getRecommendedTimeoutMillis(originalTimeout, resolve);
+ } else {
+ resolve(originalTimeout);
+ }
+ });
+ } else {
+ return Promise.resolve(originalTimeout);
+ }
+ }
+ };
+ var _default = exports.default = AccessibilityInfo;
+},16,[6,17,34,50,59,60,61],"node_modules\\react-native\\Libraries\\Components\\AccessibilityInfo\\AccessibilityInfo.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck"));
+ var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass"));
+ var _possibleConstructorReturn2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "@babel/runtime/helpers/possibleConstructorReturn"));
+ var _getPrototypeOf2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "@babel/runtime/helpers/getPrototypeOf"));
+ var _get2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[5], "@babel/runtime/helpers/get"));
+ var _inherits2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "@babel/runtime/helpers/inherits"));
+ var _EventEmitter2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[7], "../vendor/emitter/EventEmitter"));
+ function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
+ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
+ function _superPropGet(t, o, e, r) { var p = (0, _get2.default)((0, _getPrototypeOf2.default)(1 & r ? t.prototype : t), o, e); return 2 & r && "function" == typeof p ? function (t) { return p.apply(e, t); } : p; } /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+ // FIXME: use typed events
+ /**
+ * Global EventEmitter used by the native platform to emit events to JavaScript.
+ * Events are identified by globally unique event names.
+ *
+ * NativeModules that emit events should instead subclass `NativeEventEmitter`.
+ */
+ var RCTDeviceEventEmitter = /*#__PURE__*/function (_EventEmitter) {
+ function RCTDeviceEventEmitter() {
+ (0, _classCallCheck2.default)(this, RCTDeviceEventEmitter);
+ return _callSuper(this, RCTDeviceEventEmitter, arguments);
+ }
+ (0, _inherits2.default)(RCTDeviceEventEmitter, _EventEmitter);
+ return (0, _createClass2.default)(RCTDeviceEventEmitter, [{
+ key: "emit",
+ value:
+ // Add systrace to RCTDeviceEventEmitter.emit method for debugging
+ function emit(eventType) {
+ (0, _$$_REQUIRE(_dependencyMap[8], "../Performance/Systrace").beginEvent)(function () {
+ return `RCTDeviceEventEmitter.emit#${eventType}`;
+ });
+ for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
+ args[_key - 1] = arguments[_key];
+ }
+ _superPropGet(RCTDeviceEventEmitter, "emit", this, 3)([eventType].concat(args));
+ (0, _$$_REQUIRE(_dependencyMap[8], "../Performance/Systrace").endEvent)();
+ }
+ }]);
+ }(_EventEmitter2.default);
+ var instance = new RCTDeviceEventEmitter();
+ Object.defineProperty(global, '__rctDeviceEventEmitter', {
+ configurable: true,
+ value: instance
+ });
+ var _default = exports.default = instance;
+},17,[6,18,19,23,25,26,28,30,33],"node_modules\\react-native\\Libraries\\EventEmitter\\RCTDeviceEventEmitter.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _classCallCheck(a, n) {
+ if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
+ }
+ module.exports = _classCallCheck, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},18,[],"node_modules\\@babel\\runtime\\helpers\\classCallCheck.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _defineProperties(e, r) {
+ for (var t = 0; t < r.length; t++) {
+ var o = r[t];
+ o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _$$_REQUIRE(_dependencyMap[0], "./toPropertyKey.js")(o.key), o);
+ }
+ }
+ function _createClass(e, r, t) {
+ return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", {
+ writable: !1
+ }), e;
+ }
+ module.exports = _createClass, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},19,[20],"node_modules\\@babel\\runtime\\helpers\\createClass.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function toPropertyKey(t) {
+ var i = _$$_REQUIRE(_dependencyMap[0], "./toPrimitive.js")(t, "string");
+ return "symbol" == _$$_REQUIRE(_dependencyMap[1], "./typeof.js")["default"](i) ? i : i + "";
+ }
+ module.exports = toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},20,[21,22],"node_modules\\@babel\\runtime\\helpers\\toPropertyKey.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function toPrimitive(t, r) {
+ if ("object" != _$$_REQUIRE(_dependencyMap[0], "./typeof.js")["default"](t) || !t) return t;
+ var e = t[Symbol.toPrimitive];
+ if (void 0 !== e) {
+ var i = e.call(t, r || "default");
+ if ("object" != _$$_REQUIRE(_dependencyMap[0], "./typeof.js")["default"](i)) return i;
+ throw new TypeError("@@toPrimitive must return a primitive value.");
+ }
+ return ("string" === r ? String : Number)(t);
+ }
+ module.exports = toPrimitive, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},21,[22],"node_modules\\@babel\\runtime\\helpers\\toPrimitive.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _typeof(o) {
+ "@babel/helpers - typeof";
+
+ return module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
+ return typeof o;
+ } : function (o) {
+ return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
+ }, module.exports.__esModule = true, module.exports["default"] = module.exports, _typeof(o);
+ }
+ module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},22,[],"node_modules\\@babel\\runtime\\helpers\\typeof.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _possibleConstructorReturn(t, e) {
+ if (e && ("object" == _$$_REQUIRE(_dependencyMap[0], "./typeof.js")["default"](e) || "function" == typeof e)) return e;
+ if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined");
+ return _$$_REQUIRE(_dependencyMap[1], "./assertThisInitialized.js")(t);
+ }
+ module.exports = _possibleConstructorReturn, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},23,[22,24],"node_modules\\@babel\\runtime\\helpers\\possibleConstructorReturn.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _assertThisInitialized(e) {
+ if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
+ return e;
+ }
+ module.exports = _assertThisInitialized, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},24,[],"node_modules\\@babel\\runtime\\helpers\\assertThisInitialized.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _getPrototypeOf(t) {
+ return module.exports = _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) {
+ return t.__proto__ || Object.getPrototypeOf(t);
+ }, module.exports.__esModule = true, module.exports["default"] = module.exports, _getPrototypeOf(t);
+ }
+ module.exports = _getPrototypeOf, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},25,[],"node_modules\\@babel\\runtime\\helpers\\getPrototypeOf.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _get() {
+ return module.exports = _get = "undefined" != typeof Reflect && Reflect.get ? Reflect.get.bind() : function (e, t, r) {
+ var p = _$$_REQUIRE(_dependencyMap[0], "./superPropBase.js")(e, t);
+ if (p) {
+ var n = Object.getOwnPropertyDescriptor(p, t);
+ return n.get ? n.get.call(arguments.length < 3 ? e : r) : n.value;
+ }
+ }, module.exports.__esModule = true, module.exports["default"] = module.exports, _get.apply(null, arguments);
+ }
+ module.exports = _get, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},26,[27],"node_modules\\@babel\\runtime\\helpers\\get.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _superPropBase(t, o) {
+ for (; !{}.hasOwnProperty.call(t, o) && null !== (t = _$$_REQUIRE(_dependencyMap[0], "./getPrototypeOf.js")(t)););
+ return t;
+ }
+ module.exports = _superPropBase, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},27,[25],"node_modules\\@babel\\runtime\\helpers\\superPropBase.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _inherits(t, e) {
+ if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function");
+ t.prototype = Object.create(e && e.prototype, {
+ constructor: {
+ value: t,
+ writable: !0,
+ configurable: !0
+ }
+ }), Object.defineProperty(t, "prototype", {
+ writable: !1
+ }), e && _$$_REQUIRE(_dependencyMap[0], "./setPrototypeOf.js")(t, e);
+ }
+ module.exports = _inherits, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},28,[29],"node_modules\\@babel\\runtime\\helpers\\inherits.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _setPrototypeOf(t, e) {
+ return module.exports = _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) {
+ return t.__proto__ = e, t;
+ }, module.exports.__esModule = true, module.exports["default"] = module.exports, _setPrototypeOf(t, e);
+ }
+ module.exports = _setPrototypeOf, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},29,[],"node_modules\\@babel\\runtime\\helpers\\setPrototypeOf.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck"));
+ var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass"));
+ var _classPrivateFieldLooseBase2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "@babel/runtime/helpers/classPrivateFieldLooseBase"));
+ var _classPrivateFieldLooseKey2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "@babel/runtime/helpers/classPrivateFieldLooseKey"));
+ var _registry = /*#__PURE__*/(0, _classPrivateFieldLooseKey2.default)("registry");
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+ /**
+ * EventEmitter manages listeners and publishes events to them.
+ *
+ * EventEmitter accepts a single type parameter that defines the valid events
+ * and associated listener argument(s).
+ *
+ * @example
+ *
+ * const emitter = new EventEmitter<{
+ * success: [number, string],
+ * error: [Error],
+ * }>();
+ *
+ * emitter.on('success', (statusCode, responseText) => {...});
+ * emitter.emit('success', 200, '...');
+ *
+ * emitter.on('error', error => {...});
+ * emitter.emit('error', new Error('Resource not found'));
+ *
+ */
+ var EventEmitter = exports.default = /*#__PURE__*/function () {
+ function EventEmitter() {
+ (0, _classCallCheck2.default)(this, EventEmitter);
+ Object.defineProperty(this, _registry, {
+ writable: true,
+ value: {}
+ });
+ }
+ return (0, _createClass2.default)(EventEmitter, [{
+ key: "addListener",
+ value:
+ /**
+ * Registers a listener that is called when the supplied event is emitted.
+ * Returns a subscription that has a `remove` method to undo registration.
+ */
+ function addListener(eventType, listener, context) {
+ if (typeof listener !== 'function') {
+ throw new TypeError('EventEmitter.addListener(...): 2nd argument must be a function.');
+ }
+ var registrations = allocate((0, _classPrivateFieldLooseBase2.default)(this, _registry)[_registry], eventType);
+ var registration = {
+ context: context,
+ listener: listener,
+ remove: function remove() {
+ registrations.delete(registration);
+ }
+ };
+ registrations.add(registration);
+ return registration;
+ }
+
+ /**
+ * Emits the supplied event. Additional arguments supplied to `emit` will be
+ * passed through to each of the registered listeners.
+ *
+ * If a listener modifies the listeners registered for the same event, those
+ * changes will not be reflected in the current invocation of `emit`.
+ */
+ }, {
+ key: "emit",
+ value: function emit(eventType) {
+ var registrations = (0, _classPrivateFieldLooseBase2.default)(this, _registry)[_registry][eventType];
+ if (registrations != null) {
+ for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
+ args[_key - 1] = arguments[_key];
+ }
+ // Copy `registrations` to take a snapshot when we invoke `emit`, in case
+ // registrations are added or removed when listeners are invoked.
+ for (var registration of Array.from(registrations)) {
+ registration.listener.apply(registration.context, args);
+ }
+ }
+ }
+
+ /**
+ * Removes all registered listeners.
+ */
+ }, {
+ key: "removeAllListeners",
+ value: function removeAllListeners(eventType) {
+ if (eventType == null) {
+ (0, _classPrivateFieldLooseBase2.default)(this, _registry)[_registry] = {};
+ } else {
+ delete (0, _classPrivateFieldLooseBase2.default)(this, _registry)[_registry][eventType];
+ }
+ }
+
+ /**
+ * Returns the number of registered listeners for the supplied event.
+ */
+ }, {
+ key: "listenerCount",
+ value: function listenerCount(eventType) {
+ var registrations = (0, _classPrivateFieldLooseBase2.default)(this, _registry)[_registry][eventType];
+ return registrations == null ? 0 : registrations.size;
+ }
+ }]);
+ }();
+ function allocate(registry, eventType) {
+ var registrations = registry[eventType];
+ if (registrations == null) {
+ registrations = new Set();
+ registry[eventType] = registrations;
+ }
+ return registrations;
+ }
+},30,[6,18,19,31,32],"node_modules\\react-native\\Libraries\\vendor\\emitter\\EventEmitter.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _classPrivateFieldBase(e, t) {
+ if (!{}.hasOwnProperty.call(e, t)) throw new TypeError("attempted to use private field on non-instance");
+ return e;
+ }
+ module.exports = _classPrivateFieldBase, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},31,[],"node_modules\\@babel\\runtime\\helpers\\classPrivateFieldLooseBase.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var id = 0;
+ function _classPrivateFieldKey(e) {
+ return "__private_" + id++ + "_" + e;
+ }
+ module.exports = _classPrivateFieldKey, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},32,[],"node_modules\\@babel\\runtime\\helpers\\classPrivateFieldLooseKey.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.beginAsyncEvent = beginAsyncEvent;
+ exports.beginEvent = beginEvent;
+ exports.counterEvent = counterEvent;
+ exports.endAsyncEvent = endAsyncEvent;
+ exports.endEvent = endEvent;
+ exports.isEnabled = isEnabled;
+ exports.setEnabled = setEnabled;
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ var TRACE_TAG_REACT_APPS = 1 << 17; // eslint-disable-line no-bitwise
+
+ var _asyncCookie = 0;
+ /**
+ * Indicates if the application is currently being traced.
+ *
+ * Calling methods on this module when the application isn't being traced is
+ * cheap, but this method can be used to avoid computing expensive values for
+ * those functions.
+ *
+ * @example
+ * if (Systrace.isEnabled()) {
+ * const expensiveArgs = computeExpensiveArgs();
+ * Systrace.beginEvent('myEvent', expensiveArgs);
+ * }
+ */
+ function isEnabled() {
+ return global.nativeTraceIsTracing ? global.nativeTraceIsTracing(TRACE_TAG_REACT_APPS) : Boolean(global.__RCTProfileIsProfiling);
+ }
+
+ /**
+ * @deprecated This function is now a no-op but it's left for backwards
+ * compatibility. `isEnabled` will now synchronously check if we're actively
+ * profiling or not. This is necessary because we don't have callbacks to know
+ * when profiling has started/stopped on Android APIs.
+ */
+ function setEnabled(_doEnable) {}
+
+ /**
+ * Marks the start of a synchronous event that should end in the same stack
+ * frame. The end of this event should be marked using the `endEvent` function.
+ */
+ function beginEvent(eventName, args) {
+ if (isEnabled()) {
+ var eventNameString = typeof eventName === 'function' ? eventName() : eventName;
+ global.nativeTraceBeginSection(TRACE_TAG_REACT_APPS, eventNameString, args);
+ }
+ }
+
+ /**
+ * Marks the end of a synchronous event started in the same stack frame.
+ */
+ function endEvent(args) {
+ if (isEnabled()) {
+ global.nativeTraceEndSection(TRACE_TAG_REACT_APPS, args);
+ }
+ }
+
+ /**
+ * Marks the start of a potentially asynchronous event. The end of this event
+ * should be marked calling the `endAsyncEvent` function with the cookie
+ * returned by this function.
+ */
+ function beginAsyncEvent(eventName, args) {
+ var cookie = _asyncCookie;
+ if (isEnabled()) {
+ _asyncCookie++;
+ var eventNameString = typeof eventName === 'function' ? eventName() : eventName;
+ global.nativeTraceBeginAsyncSection(TRACE_TAG_REACT_APPS, eventNameString, cookie, args);
+ }
+ return cookie;
+ }
+
+ /**
+ * Marks the end of a potentially asynchronous event, which was started with
+ * the given cookie.
+ */
+ function endAsyncEvent(eventName, cookie, args) {
+ if (isEnabled()) {
+ var eventNameString = typeof eventName === 'function' ? eventName() : eventName;
+ global.nativeTraceEndAsyncSection(TRACE_TAG_REACT_APPS, eventNameString, cookie, args);
+ }
+ }
+
+ /**
+ * Registers a new value for a counter event.
+ */
+ function counterEvent(eventName, value) {
+ if (isEnabled()) {
+ var eventNameString = typeof eventName === 'function' ? eventName() : eventName;
+ global.nativeTraceCounter && global.nativeTraceCounter(TRACE_TAG_REACT_APPS, eventNameString, value);
+ }
+ }
+ if (__DEV__) {
+ var Systrace = {
+ isEnabled: isEnabled,
+ setEnabled: setEnabled,
+ beginEvent: beginEvent,
+ endEvent: endEvent,
+ beginAsyncEvent: beginAsyncEvent,
+ endAsyncEvent: endAsyncEvent,
+ counterEvent: counterEvent
+ };
+
+ // The metro require polyfill can not have dependencies (true for all polyfills).
+ // Ensure that `Systrace` is available in polyfill by exposing it globally.
+ global[(global.__METRO_GLOBAL_PREFIX__ || '') + '__SYSTRACE'] = Systrace;
+ }
+},33,[],"node_modules\\react-native\\Libraries\\Performance\\Systrace.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ var _NativePlatformConstantsAndroid = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./NativePlatformConstantsAndroid"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ var Platform = {
+ __constants: null,
+ OS: 'android',
+ // $FlowFixMe[unsafe-getters-setters]
+ get Version() {
+ // $FlowFixMe[object-this-reference]
+ return this.constants.Version;
+ },
+ // $FlowFixMe[unsafe-getters-setters]
+ get constants() {
+ // $FlowFixMe[object-this-reference]
+ if (this.__constants == null) {
+ // $FlowFixMe[object-this-reference]
+ this.__constants = _NativePlatformConstantsAndroid.default.getConstants();
+ }
+ // $FlowFixMe[object-this-reference]
+ return this.__constants;
+ },
+ // $FlowFixMe[unsafe-getters-setters]
+ get isTesting() {
+ if (__DEV__) {
+ // $FlowFixMe[object-this-reference]
+ return this.constants.isTesting;
+ }
+ return false;
+ },
+ // $FlowFixMe[unsafe-getters-setters]
+ get isDisableAnimations() {
+ var _this$constants$isDis;
+ // $FlowFixMe[object-this-reference]
+ return (_this$constants$isDis = this.constants.isDisableAnimations) != null ? _this$constants$isDis : this.isTesting;
+ },
+ // $FlowFixMe[unsafe-getters-setters]
+ get isTV() {
+ // $FlowFixMe[object-this-reference]
+ return this.constants.uiMode === 'tv';
+ },
+ select: function select(spec) {
+ return 'android' in spec ?
+ // $FlowFixMe[incompatible-return]
+ spec.android : 'native' in spec ?
+ // $FlowFixMe[incompatible-return]
+ spec.native :
+ // $FlowFixMe[incompatible-return]
+ spec.default;
+ }
+ };
+ module.exports = Platform;
+},34,[6,35],"node_modules\\react-native\\Libraries\\Utilities\\Platform.android.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var TurboModuleRegistry = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../TurboModule/TurboModuleRegistry"));
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+ var _default = exports.default = TurboModuleRegistry.getEnforcing('PlatformConstants');
+},35,[36],"node_modules\\react-native\\Libraries\\Utilities\\NativePlatformConstantsAndroid.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.get = get;
+ exports.getEnforcing = getEnforcing;
+ var _invariant = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "invariant")); /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ var turboModuleProxy = global.__turboModuleProxy;
+ var moduleLoadHistory = {
+ NativeModules: [],
+ TurboModules: [],
+ NotFound: []
+ };
+ function isBridgeless() {
+ return global.RN$Bridgeless === true;
+ }
+ function isTurboModuleInteropEnabled() {
+ return global.RN$TurboInterop === true;
+ }
+
+ // TODO(154308585): Remove "module not found" debug info logging
+ function shouldReportDebugInfo() {
+ return true;
+ }
+
+ // TODO(148943970): Consider reversing the lookup here:
+ // Lookup on __turboModuleProxy, then lookup on nativeModuleProxy
+ function requireModule(name) {
+ if (!isBridgeless() || isTurboModuleInteropEnabled()) {
+ // Backward compatibility layer during migration.
+ var legacyModule = _$$_REQUIRE(_dependencyMap[2], "../BatchedBridge/NativeModules")[name];
+ if (legacyModule != null) {
+ if (shouldReportDebugInfo()) {
+ moduleLoadHistory.NativeModules.push(name);
+ }
+ return legacyModule;
+ }
+ }
+ if (turboModuleProxy != null) {
+ var module = turboModuleProxy(name);
+ if (module != null) {
+ if (shouldReportDebugInfo()) {
+ moduleLoadHistory.TurboModules.push(name);
+ }
+ return module;
+ }
+ }
+ if (shouldReportDebugInfo() && !moduleLoadHistory.NotFound.includes(name)) {
+ moduleLoadHistory.NotFound.push(name);
+ }
+ return null;
+ }
+ function get(name) {
+ return requireModule(name);
+ }
+ function getEnforcing(name) {
+ var module = requireModule(name);
+ var message = `TurboModuleRegistry.getEnforcing(...): '${name}' could not be found. ` + 'Verify that a module by this name is registered in the native binary.';
+ if (shouldReportDebugInfo()) {
+ message += 'Bridgeless mode: ' + (isBridgeless() ? 'true' : 'false') + '. ';
+ message += 'TurboModule interop: ' + (isTurboModuleInteropEnabled() ? 'true' : 'false') + '. ';
+ message += 'Modules loaded: ' + JSON.stringify(moduleLoadHistory);
+ }
+ (0, _invariant.default)(module != null, message);
+ return module;
+ }
+},36,[6,37,38],"node_modules\\react-native\\Libraries\\TurboModule\\TurboModuleRegistry.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * 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.
+ */
+
+ 'use strict';
+
+ /**
+ * Use invariant() to assert state which your program assumes to be true.
+ *
+ * Provide sprintf-style format (only %s is supported) and arguments
+ * to provide information about what broke and what you were
+ * expecting.
+ *
+ * The invariant message will be stripped in production, but the invariant
+ * will remain to ensure logic does not differ in production.
+ */
+ var invariant = function invariant(condition, format, a, b, c, d, e, f) {
+ if (process.env.NODE_ENV !== 'production') {
+ if (format === undefined) {
+ throw new Error('invariant requires an error message argument');
+ }
+ }
+ if (!condition) {
+ var error;
+ if (format === undefined) {
+ error = new Error('Minified exception occurred; use the non-minified dev environment ' + 'for the full error message and additional helpful warnings.');
+ } else {
+ var args = [a, b, c, d, e, f];
+ var argIndex = 0;
+ error = new Error(format.replace(/%s/g, function () {
+ return args[argIndex++];
+ }));
+ error.name = 'Invariant Violation';
+ }
+ error.framesToPop = 1; // we don't care about invariant's own frame
+ throw error;
+ }
+ };
+ module.exports = invariant;
+},37,[],"node_modules\\invariant\\browser.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ 'use strict';
+
+ var _slicedToArray = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/slicedToArray");
+ function genModule(config, moduleID) {
+ if (!config) {
+ return null;
+ }
+ var _config = _slicedToArray(config, 5),
+ moduleName = _config[0],
+ constants = _config[1],
+ methods = _config[2],
+ promiseMethods = _config[3],
+ syncMethods = _config[4];
+ _$$_REQUIRE(_dependencyMap[1], "invariant")(!moduleName.startsWith('RCT') && !moduleName.startsWith('RK'), "Module name prefixes should've been stripped by the native side " + "but wasn't for " + moduleName);
+ if (!constants && !methods) {
+ // Module contents will be filled in lazily later
+ return {
+ name: moduleName
+ };
+ }
+ var module = {};
+ methods && methods.forEach(function (methodName, methodID) {
+ var isPromise = promiseMethods && arrayContains(promiseMethods, methodID) || false;
+ var isSync = syncMethods && arrayContains(syncMethods, methodID) || false;
+ _$$_REQUIRE(_dependencyMap[1], "invariant")(!isPromise || !isSync, 'Cannot have a method that is both async and a sync hook');
+ var methodType = isPromise ? 'promise' : isSync ? 'sync' : 'async';
+ module[methodName] = genMethod(moduleID, methodID, methodType);
+ });
+ Object.assign(module, constants);
+ if (module.getConstants == null) {
+ module.getConstants = function () {
+ return constants || Object.freeze({});
+ };
+ } else {
+ console.warn(`Unable to define method 'getConstants()' on NativeModule '${moduleName}'. NativeModule '${moduleName}' already has a constant or method called 'getConstants'. Please remove it.`);
+ }
+ if (__DEV__) {
+ _$$_REQUIRE(_dependencyMap[2], "./BatchedBridge").createDebugLookup(moduleID, moduleName, methods);
+ }
+ return {
+ name: moduleName,
+ module: module
+ };
+ }
+
+ // export this method as a global so we can call it from native
+ global.__fbGenNativeModule = genModule;
+ function loadModule(name, moduleID) {
+ _$$_REQUIRE(_dependencyMap[1], "invariant")(global.nativeRequireModuleConfig, "Can't lazily create module without nativeRequireModuleConfig");
+ var config = global.nativeRequireModuleConfig(name);
+ var info = genModule(config, moduleID);
+ return info && info.module;
+ }
+ function genMethod(moduleID, methodID, type) {
+ var fn = null;
+ if (type === 'promise') {
+ fn = function promiseMethodWrapper() {
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
+ args[_key] = arguments[_key];
+ }
+ // In case we reject, capture a useful stack trace here.
+ /* $FlowFixMe[class-object-subtyping] added when improving typing for
+ * this parameters */
+ var enqueueingFrameError = new Error();
+ return new Promise(function (resolve, reject) {
+ _$$_REQUIRE(_dependencyMap[2], "./BatchedBridge").enqueueNativeCall(moduleID, methodID, args, function (data) {
+ return resolve(data);
+ }, function (errorData) {
+ return reject(updateErrorWithErrorData(errorData, enqueueingFrameError));
+ });
+ });
+ };
+ } else {
+ fn = function nonPromiseMethodWrapper() {
+ for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
+ args[_key2] = arguments[_key2];
+ }
+ var lastArg = args.length > 0 ? args[args.length - 1] : null;
+ var secondLastArg = args.length > 1 ? args[args.length - 2] : null;
+ var hasSuccessCallback = typeof lastArg === 'function';
+ var hasErrorCallback = typeof secondLastArg === 'function';
+ hasErrorCallback && _$$_REQUIRE(_dependencyMap[1], "invariant")(hasSuccessCallback, 'Cannot have a non-function arg after a function arg.');
+ // $FlowFixMe[incompatible-type]
+ var onSuccess = hasSuccessCallback ? lastArg : null;
+ // $FlowFixMe[incompatible-type]
+ var onFail = hasErrorCallback ? secondLastArg : null;
+ // $FlowFixMe[unsafe-addition]
+ var callbackCount = hasSuccessCallback + hasErrorCallback;
+ var newArgs = args.slice(0, args.length - callbackCount);
+ if (type === 'sync') {
+ return _$$_REQUIRE(_dependencyMap[2], "./BatchedBridge").callNativeSyncHook(moduleID, methodID, newArgs, onFail, onSuccess);
+ } else {
+ _$$_REQUIRE(_dependencyMap[2], "./BatchedBridge").enqueueNativeCall(moduleID, methodID, newArgs, onFail, onSuccess);
+ }
+ };
+ }
+ // $FlowFixMe[prop-missing]
+ fn.type = type;
+ return fn;
+ }
+ function arrayContains(array, value) {
+ return array.indexOf(value) !== -1;
+ }
+ function updateErrorWithErrorData(errorData, error) {
+ /* $FlowFixMe[class-object-subtyping] added when improving typing for this
+ * parameters */
+ return Object.assign(error, errorData || {});
+ }
+ var NativeModules = {};
+ if (global.nativeModuleProxy) {
+ NativeModules = global.nativeModuleProxy;
+ } else if (!global.nativeExtensions) {
+ var bridgeConfig = global.__fbBatchedBridgeConfig;
+ _$$_REQUIRE(_dependencyMap[1], "invariant")(bridgeConfig, '__fbBatchedBridgeConfig is not set, cannot invoke native modules');
+ var defineLazyObjectProperty = _$$_REQUIRE(_dependencyMap[3], "../Utilities/defineLazyObjectProperty");
+ (bridgeConfig.remoteModuleConfig || []).forEach(function (config, moduleID) {
+ // Initially this config will only contain the module name when running in JSC. The actual
+ // configuration of the module will be lazily loaded.
+ var info = genModule(config, moduleID);
+ if (!info) {
+ return;
+ }
+ if (info.module) {
+ NativeModules[info.name] = info.module;
+ }
+ // If there's no module config, define a lazy getter
+ else {
+ defineLazyObjectProperty(NativeModules, info.name, {
+ get: function get() {
+ return loadModule(info.name, moduleID);
+ }
+ });
+ }
+ });
+ }
+ module.exports = NativeModules;
+},38,[7,37,39,49],"node_modules\\react-native\\Libraries\\BatchedBridge\\NativeModules.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ 'use strict';
+
+ var BatchedBridge = new (_$$_REQUIRE(_dependencyMap[0], "./MessageQueue"))();
+
+ // Wire up the batched bridge on the global object so that we can call into it.
+ // Ideally, this would be the inverse relationship. I.e. the native environment
+ // provides this global directly with its script embedded. Then this module
+ // would export it. A possible fix would be to trim the dependencies in
+ // MessageQueue to its minimal features and embed that in the native runtime.
+
+ Object.defineProperty(global, '__fbBatchedBridge', {
+ configurable: true,
+ value: BatchedBridge
+ });
+ module.exports = BatchedBridge;
+},39,[40],"node_modules\\react-native\\Libraries\\BatchedBridge\\BatchedBridge.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ 'use strict';
+
+ var _toConsumableArray = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/toConsumableArray");
+ var _classCallCheck = _$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck");
+ var _createClass = _$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass");
+ var TO_JS = 0;
+ var TO_NATIVE = 1;
+ var MODULE_IDS = 0;
+ var METHOD_IDS = 1;
+ var PARAMS = 2;
+ var MIN_TIME_BETWEEN_FLUSHES_MS = 5;
+
+ // eslint-disable-next-line no-bitwise
+ var TRACE_TAG_REACT_APPS = 1 << 17;
+ var DEBUG_INFO_LIMIT = 32;
+ var MessageQueue = /*#__PURE__*/function () {
+ function MessageQueue() {
+ _classCallCheck(this, MessageQueue);
+ this._lazyCallableModules = {};
+ this._queue = [[], [], [], 0];
+ this._successCallbacks = new Map();
+ this._failureCallbacks = new Map();
+ this._callID = 0;
+ this._lastFlush = 0;
+ this._eventLoopStartTime = Date.now();
+ this._reactNativeMicrotasksCallback = null;
+ if (__DEV__) {
+ this._debugInfo = {};
+ this._remoteModuleTable = {};
+ this._remoteMethodTable = {};
+ }
+
+ // $FlowFixMe[cannot-write]
+ this.callFunctionReturnFlushedQueue =
+ // $FlowFixMe[method-unbinding] added when improving typing for this parameters
+ this.callFunctionReturnFlushedQueue.bind(this);
+ // $FlowFixMe[cannot-write]
+ // $FlowFixMe[method-unbinding] added when improving typing for this parameters
+ this.flushedQueue = this.flushedQueue.bind(this);
+
+ // $FlowFixMe[cannot-write]
+ this.invokeCallbackAndReturnFlushedQueue =
+ // $FlowFixMe[method-unbinding] added when improving typing for this parameters
+ this.invokeCallbackAndReturnFlushedQueue.bind(this);
+ }
+
+ /**
+ * Public APIs
+ */
+ return _createClass(MessageQueue, [{
+ key: "callFunctionReturnFlushedQueue",
+ value: function callFunctionReturnFlushedQueue(module, method, args) {
+ var _this = this;
+ this.__guard(function () {
+ _this.__callFunction(module, method, args);
+ });
+ return this.flushedQueue();
+ }
+ }, {
+ key: "invokeCallbackAndReturnFlushedQueue",
+ value: function invokeCallbackAndReturnFlushedQueue(cbID, args) {
+ var _this2 = this;
+ this.__guard(function () {
+ _this2.__invokeCallback(cbID, args);
+ });
+ return this.flushedQueue();
+ }
+ }, {
+ key: "flushedQueue",
+ value: function flushedQueue() {
+ var _this3 = this;
+ this.__guard(function () {
+ _this3.__callReactNativeMicrotasks();
+ });
+ var queue = this._queue;
+ this._queue = [[], [], [], this._callID];
+ return queue[0].length ? queue : null;
+ }
+ }, {
+ key: "getEventLoopRunningTime",
+ value: function getEventLoopRunningTime() {
+ return Date.now() - this._eventLoopStartTime;
+ }
+ }, {
+ key: "registerCallableModule",
+ value: function registerCallableModule(name, module) {
+ this._lazyCallableModules[name] = function () {
+ return module;
+ };
+ }
+ }, {
+ key: "registerLazyCallableModule",
+ value: function registerLazyCallableModule(name, factory) {
+ var module;
+ var getValue = factory;
+ this._lazyCallableModules[name] = function () {
+ if (getValue) {
+ module = getValue();
+ getValue = null;
+ }
+ /* $FlowFixMe[class-object-subtyping] added when improving typing for
+ * this parameters */
+ return module;
+ };
+ }
+ }, {
+ key: "getCallableModule",
+ value: function getCallableModule(name) {
+ var getValue = this._lazyCallableModules[name];
+ return getValue ? getValue() : null;
+ }
+ }, {
+ key: "callNativeSyncHook",
+ value: function callNativeSyncHook(moduleID, methodID, params, onFail, onSucc) {
+ if (__DEV__) {
+ _$$_REQUIRE(_dependencyMap[3], "invariant")(global.nativeCallSyncHook, 'Calling synchronous methods on native ' + 'modules is not supported in Chrome.\n\n Consider providing alternative ' + 'methods to expose this method in debug mode, e.g. by exposing constants ' + 'ahead-of-time.');
+ }
+ this.processCallbacks(moduleID, methodID, params, onFail, onSucc);
+ return global.nativeCallSyncHook(moduleID, methodID, params);
+ }
+ }, {
+ key: "processCallbacks",
+ value: function processCallbacks(moduleID, methodID, params, onFail, onSucc) {
+ var _this4 = this;
+ if (onFail || onSucc) {
+ if (__DEV__) {
+ this._debugInfo[this._callID] = [moduleID, methodID];
+ if (this._callID > DEBUG_INFO_LIMIT) {
+ delete this._debugInfo[this._callID - DEBUG_INFO_LIMIT];
+ }
+ if (this._successCallbacks.size > 500) {
+ var info = {};
+ this._successCallbacks.forEach(function (_, callID) {
+ var debug = _this4._debugInfo[callID];
+ var module = debug && _this4._remoteModuleTable[debug[0]];
+ var method = debug && _this4._remoteMethodTable[debug[0]][debug[1]];
+ info[callID] = {
+ module: module,
+ method: method
+ };
+ });
+ _$$_REQUIRE(_dependencyMap[4], "../Utilities/warnOnce")('excessive-number-of-pending-callbacks', `Excessive number of pending callbacks: ${this._successCallbacks.size}. Some pending callbacks that might have leaked by never being called from native code: ${_$$_REQUIRE(_dependencyMap[5], "../Utilities/stringifySafe").default(info)}`);
+ }
+ }
+ // Encode callIDs into pairs of callback identifiers by shifting left and using the rightmost bit
+ // to indicate fail (0) or success (1)
+ // eslint-disable-next-line no-bitwise
+ onFail && params.push(this._callID << 1);
+ // eslint-disable-next-line no-bitwise
+ onSucc && params.push(this._callID << 1 | 1);
+ this._successCallbacks.set(this._callID, onSucc);
+ this._failureCallbacks.set(this._callID, onFail);
+ }
+ if (__DEV__) {
+ global.nativeTraceBeginAsyncFlow && global.nativeTraceBeginAsyncFlow(TRACE_TAG_REACT_APPS, 'native', this._callID);
+ }
+ this._callID++;
+ }
+ }, {
+ key: "enqueueNativeCall",
+ value: function enqueueNativeCall(moduleID, methodID, params, onFail, onSucc) {
+ this.processCallbacks(moduleID, methodID, params, onFail, onSucc);
+ this._queue[MODULE_IDS].push(moduleID);
+ this._queue[METHOD_IDS].push(methodID);
+ if (__DEV__) {
+ // Validate that parameters passed over the bridge are
+ // folly-convertible. As a special case, if a prop value is a
+ // function it is permitted here, and special-cased in the
+ // conversion.
+ var _isValidArgument = function isValidArgument(val) {
+ switch (typeof val) {
+ case 'undefined':
+ case 'boolean':
+ case 'string':
+ return true;
+ case 'number':
+ return isFinite(val);
+ case 'object':
+ if (val == null) {
+ return true;
+ }
+ if (Array.isArray(val)) {
+ return val.every(_isValidArgument);
+ }
+ for (var k in val) {
+ if (typeof val[k] !== 'function' && !_isValidArgument(val[k])) {
+ return false;
+ }
+ }
+ return true;
+ case 'function':
+ return false;
+ default:
+ return false;
+ }
+ };
+
+ // Replacement allows normally non-JSON-convertible values to be
+ // seen. There is ambiguity with string values, but in context,
+ // it should at least be a strong hint.
+ var replacer = function replacer(key, val) {
+ var t = typeof val;
+ if (t === 'function') {
+ return '<>';
+ } else if (t === 'number' && !isFinite(val)) {
+ return '<<' + val.toString() + '>>';
+ } else {
+ return val;
+ }
+ };
+
+ // Note that JSON.stringify
+ _$$_REQUIRE(_dependencyMap[3], "invariant")(_isValidArgument(params), '%s is not usable as a native method argument', JSON.stringify(params, replacer));
+
+ // The params object should not be mutated after being queued
+ _$$_REQUIRE(_dependencyMap[6], "../Utilities/deepFreezeAndThrowOnMutationInDev")(params);
+ }
+ this._queue[PARAMS].push(params);
+ var now = Date.now();
+ if (global.nativeFlushQueueImmediate && now - this._lastFlush >= MIN_TIME_BETWEEN_FLUSHES_MS) {
+ var queue = this._queue;
+ this._queue = [[], [], [], this._callID];
+ this._lastFlush = now;
+ global.nativeFlushQueueImmediate(queue);
+ }
+ _$$_REQUIRE(_dependencyMap[7], "../Performance/Systrace").counterEvent('pending_js_to_native_queue', this._queue[0].length);
+ if (__DEV__ && this.__spy && isFinite(moduleID)) {
+ // $FlowFixMe[not-a-function]
+ this.__spy({
+ type: TO_NATIVE,
+ module: this._remoteModuleTable[moduleID],
+ method: this._remoteMethodTable[moduleID][methodID],
+ args: params
+ });
+ } else if (this.__spy) {
+ this.__spy({
+ type: TO_NATIVE,
+ module: moduleID + '',
+ method: methodID,
+ args: params
+ });
+ }
+ }
+ }, {
+ key: "createDebugLookup",
+ value: function createDebugLookup(moduleID, name, methods) {
+ if (__DEV__) {
+ this._remoteModuleTable[moduleID] = name;
+ this._remoteMethodTable[moduleID] = methods || [];
+ }
+ }
+
+ // For JSTimers to register its callback. Otherwise a circular dependency
+ // between modules is introduced. Note that only one callback may be
+ // registered at a time.
+ }, {
+ key: "setReactNativeMicrotasksCallback",
+ value: function setReactNativeMicrotasksCallback(fn) {
+ this._reactNativeMicrotasksCallback = fn;
+ }
+
+ /**
+ * Private methods
+ */
+ }, {
+ key: "__guard",
+ value: function __guard(fn) {
+ if (this.__shouldPauseOnThrow()) {
+ fn();
+ } else {
+ try {
+ fn();
+ } catch (error) {
+ _$$_REQUIRE(_dependencyMap[8], "../vendor/core/ErrorUtils").reportFatalError(error);
+ }
+ }
+ }
+
+ // MessageQueue installs a global handler to catch all exceptions where JS users can register their own behavior
+ // This handler makes all exceptions to be propagated from inside MessageQueue rather than by the VM at their origin
+ // This makes stacktraces to be placed at MessageQueue rather than at where they were launched
+ // The parameter DebuggerInternal.shouldPauseOnThrow is used to check before catching all exceptions and
+ // can be configured by the VM or any Inspector
+ }, {
+ key: "__shouldPauseOnThrow",
+ value: function __shouldPauseOnThrow() {
+ return (
+ // $FlowFixMe[cannot-resolve-name]
+ typeof DebuggerInternal !== 'undefined' &&
+ // $FlowFixMe[cannot-resolve-name]
+ DebuggerInternal.shouldPauseOnThrow === true
+ );
+ }
+ }, {
+ key: "__callReactNativeMicrotasks",
+ value: function __callReactNativeMicrotasks() {
+ _$$_REQUIRE(_dependencyMap[7], "../Performance/Systrace").beginEvent('JSTimers.callReactNativeMicrotasks()');
+ try {
+ if (this._reactNativeMicrotasksCallback != null) {
+ this._reactNativeMicrotasksCallback();
+ }
+ } finally {
+ _$$_REQUIRE(_dependencyMap[7], "../Performance/Systrace").endEvent();
+ }
+ }
+ }, {
+ key: "__callFunction",
+ value: function __callFunction(module, method, args) {
+ this._lastFlush = Date.now();
+ this._eventLoopStartTime = this._lastFlush;
+ if (__DEV__ || this.__spy) {
+ _$$_REQUIRE(_dependencyMap[7], "../Performance/Systrace").beginEvent(`${module}.${method}(${_$$_REQUIRE(_dependencyMap[5], "../Utilities/stringifySafe").default(args)})`);
+ } else {
+ _$$_REQUIRE(_dependencyMap[7], "../Performance/Systrace").beginEvent(`${module}.${method}(...)`);
+ }
+ try {
+ if (this.__spy) {
+ this.__spy({
+ type: TO_JS,
+ module: module,
+ method: method,
+ args: args
+ });
+ }
+ var moduleMethods = this.getCallableModule(module);
+ if (!moduleMethods) {
+ var callableModuleNames = Object.keys(this._lazyCallableModules);
+ var n = callableModuleNames.length;
+ var callableModuleNameList = callableModuleNames.join(', ');
+
+ // TODO(T122225939): Remove after investigation: Why are we getting to this line in bridgeless mode?
+ var isBridgelessMode = global.RN$Bridgeless === true ? 'true' : 'false';
+ _$$_REQUIRE(_dependencyMap[3], "invariant")(false, `Failed to call into JavaScript module method ${module}.${method}(). Module has not been registered as callable. Bridgeless Mode: ${isBridgelessMode}. Registered callable JavaScript modules (n = ${n}): ${callableModuleNameList}.
+ A frequent cause of the error is that the application entry file path is incorrect. This can also happen when the JS bundle is corrupt or there is an early initialization error when loading React Native.`);
+ }
+ if (!moduleMethods[method]) {
+ _$$_REQUIRE(_dependencyMap[3], "invariant")(false, `Failed to call into JavaScript module method ${module}.${method}(). Module exists, but the method is undefined.`);
+ }
+ moduleMethods[method].apply(moduleMethods, args);
+ } finally {
+ _$$_REQUIRE(_dependencyMap[7], "../Performance/Systrace").endEvent();
+ }
+ }
+ }, {
+ key: "__invokeCallback",
+ value: function __invokeCallback(cbID, args) {
+ this._lastFlush = Date.now();
+ this._eventLoopStartTime = this._lastFlush;
+
+ // The rightmost bit of cbID indicates fail (0) or success (1), the other bits are the callID shifted left.
+ // eslint-disable-next-line no-bitwise
+ var callID = cbID >>> 1;
+ // eslint-disable-next-line no-bitwise
+ var isSuccess = cbID & 1;
+ var callback = isSuccess ? this._successCallbacks.get(callID) : this._failureCallbacks.get(callID);
+ if (__DEV__) {
+ var debug = this._debugInfo[callID];
+ var _module = debug && this._remoteModuleTable[debug[0]];
+ var method = debug && this._remoteMethodTable[debug[0]][debug[1]];
+ _$$_REQUIRE(_dependencyMap[3], "invariant")(callback, `No callback found with cbID ${cbID} and callID ${callID} for ` + (method ? ` ${_module}.${method} - most likely the callback was already invoked` : `module ${_module || ''}`) + `. Args: '${_$$_REQUIRE(_dependencyMap[5], "../Utilities/stringifySafe").default(args)}'`);
+ var profileName = debug ? '' : cbID;
+ if (callback && this.__spy) {
+ this.__spy({
+ type: TO_JS,
+ module: null,
+ method: profileName,
+ args: args
+ });
+ }
+ _$$_REQUIRE(_dependencyMap[7], "../Performance/Systrace").beginEvent(`MessageQueue.invokeCallback(${profileName}, ${_$$_REQUIRE(_dependencyMap[5], "../Utilities/stringifySafe").default(args)})`);
+ }
+ try {
+ if (!callback) {
+ return;
+ }
+ this._successCallbacks.delete(callID);
+ this._failureCallbacks.delete(callID);
+ callback.apply(void 0, _toConsumableArray(args));
+ } finally {
+ if (__DEV__) {
+ _$$_REQUIRE(_dependencyMap[7], "../Performance/Systrace").endEvent();
+ }
+ }
+ }
+ }], [{
+ key: "spy",
+ value: function spy(spyOrToggle) {
+ if (spyOrToggle === true) {
+ MessageQueue.prototype.__spy = function (info) {
+ console.log(`${info.type === TO_JS ? 'N->JS' : 'JS->N'} : ` + `${info.module != null ? info.module + '.' : ''}${info.method}` + `(${JSON.stringify(info.args)})`);
+ };
+ } else if (spyOrToggle === false) {
+ MessageQueue.prototype.__spy = null;
+ } else {
+ MessageQueue.prototype.__spy = spyOrToggle;
+ }
+ }
+ }]);
+ }();
+ module.exports = MessageQueue;
+},40,[41,18,19,37,45,46,47,33,48],"node_modules\\react-native\\Libraries\\BatchedBridge\\MessageQueue.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _toConsumableArray(r) {
+ return _$$_REQUIRE(_dependencyMap[0], "./arrayWithoutHoles.js")(r) || _$$_REQUIRE(_dependencyMap[1], "./iterableToArray.js")(r) || _$$_REQUIRE(_dependencyMap[2], "./unsupportedIterableToArray.js")(r) || _$$_REQUIRE(_dependencyMap[3], "./nonIterableSpread.js")();
+ }
+ module.exports = _toConsumableArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},41,[42,43,10,44],"node_modules\\@babel\\runtime\\helpers\\toConsumableArray.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _arrayWithoutHoles(r) {
+ if (Array.isArray(r)) return _$$_REQUIRE(_dependencyMap[0], "./arrayLikeToArray.js")(r);
+ }
+ module.exports = _arrayWithoutHoles, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},42,[11],"node_modules\\@babel\\runtime\\helpers\\arrayWithoutHoles.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _iterableToArray(r) {
+ if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r);
+ }
+ module.exports = _iterableToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},43,[],"node_modules\\@babel\\runtime\\helpers\\iterableToArray.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _nonIterableSpread() {
+ throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
+ }
+ module.exports = _nonIterableSpread, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},44,[],"node_modules\\@babel\\runtime\\helpers\\nonIterableSpread.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ 'use strict';
+
+ var warnedKeys = {};
+
+ /**
+ * A simple function that prints a warning message once per session.
+ *
+ * @param {string} key - The key used to ensure the message is printed once.
+ * This should be unique to the callsite.
+ * @param {string} message - The message to print
+ */
+ function warnOnce(key, message) {
+ if (warnedKeys[key]) {
+ return;
+ }
+ console.warn(message);
+ warnedKeys[key] = true;
+ }
+ module.exports = warnOnce;
+},45,[],"node_modules\\react-native\\Libraries\\Utilities\\warnOnce.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.createStringifySafeWithLimits = createStringifySafeWithLimits;
+ exports.default = void 0;
+ var _invariant = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "invariant"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ /**
+ * Tries to stringify with JSON.stringify and toString, but catches exceptions
+ * (e.g. from circular objects) and always returns a string and never throws.
+ */
+ function createStringifySafeWithLimits(limits) {
+ var _limits$maxDepth = limits.maxDepth,
+ maxDepth = _limits$maxDepth === void 0 ? Number.POSITIVE_INFINITY : _limits$maxDepth,
+ _limits$maxStringLimi = limits.maxStringLimit,
+ maxStringLimit = _limits$maxStringLimi === void 0 ? Number.POSITIVE_INFINITY : _limits$maxStringLimi,
+ _limits$maxArrayLimit = limits.maxArrayLimit,
+ maxArrayLimit = _limits$maxArrayLimit === void 0 ? Number.POSITIVE_INFINITY : _limits$maxArrayLimit,
+ _limits$maxObjectKeys = limits.maxObjectKeysLimit,
+ maxObjectKeysLimit = _limits$maxObjectKeys === void 0 ? Number.POSITIVE_INFINITY : _limits$maxObjectKeys;
+ var stack = [];
+ /* $FlowFixMe[missing-this-annot] The 'this' type annotation(s) required by
+ * Flow's LTI update could not be added via codemod */
+ function replacer(key, value) {
+ while (stack.length && this !== stack[0]) {
+ stack.shift();
+ }
+ if (typeof value === 'string') {
+ var truncatedString = '...(truncated)...';
+ if (value.length > maxStringLimit + truncatedString.length) {
+ return value.substring(0, maxStringLimit) + truncatedString;
+ }
+ return value;
+ }
+ if (typeof value !== 'object' || value === null) {
+ return value;
+ }
+ var retval = value;
+ if (Array.isArray(value)) {
+ if (stack.length >= maxDepth) {
+ retval = `[ ... array with ${value.length} values ... ]`;
+ } else if (value.length > maxArrayLimit) {
+ retval = value.slice(0, maxArrayLimit).concat([`... extra ${value.length - maxArrayLimit} values truncated ...`]);
+ }
+ } else {
+ // Add refinement after Array.isArray call.
+ (0, _invariant.default)(typeof value === 'object', 'This was already found earlier');
+ var keys = Object.keys(value);
+ if (stack.length >= maxDepth) {
+ retval = `{ ... object with ${keys.length} keys ... }`;
+ } else if (keys.length > maxObjectKeysLimit) {
+ // Return a sample of the keys.
+ retval = {};
+ for (var k of keys.slice(0, maxObjectKeysLimit)) {
+ retval[k] = value[k];
+ }
+ var truncatedKey = '...(truncated keys)...';
+ retval[truncatedKey] = keys.length - maxObjectKeysLimit;
+ }
+ }
+ stack.unshift(retval);
+ return retval;
+ }
+ return function stringifySafe(arg) {
+ if (arg === undefined) {
+ return 'undefined';
+ } else if (arg === null) {
+ return 'null';
+ } else if (typeof arg === 'function') {
+ try {
+ return arg.toString();
+ } catch (e) {
+ return '[function unknown]';
+ }
+ } else if (arg instanceof Error) {
+ return arg.name + ': ' + arg.message;
+ } else {
+ // Perform a try catch, just in case the object has a circular
+ // reference or stringify throws for some other reason.
+ try {
+ var ret = JSON.stringify(arg, replacer);
+ if (ret === undefined) {
+ return '["' + typeof arg + '" failed to stringify]';
+ }
+ return ret;
+ } catch (e) {
+ if (typeof arg.toString === 'function') {
+ try {
+ // $FlowFixMe[incompatible-use] : toString shouldn't take any arguments in general.
+ return arg.toString();
+ } catch (E) {}
+ }
+ }
+ }
+ return '["' + typeof arg + '" failed to stringify]';
+ };
+ }
+ var stringifySafe = createStringifySafeWithLimits({
+ maxDepth: 10,
+ maxStringLimit: 100,
+ maxArrayLimit: 50,
+ maxObjectKeysLimit: 50
+ });
+ var _default = exports.default = stringifySafe;
+},46,[6,37],"node_modules\\react-native\\Libraries\\Utilities\\stringifySafe.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ 'use strict';
+
+ /**
+ * If your application is accepting different values for the same field over
+ * time and is doing a diff on them, you can either (1) create a copy or
+ * (2) ensure that those values are not mutated behind two passes.
+ * This function helps you with (2) by freezing the object and throwing if
+ * the user subsequently modifies the value.
+ *
+ * There are two caveats with this function:
+ * - If the call site is not in strict mode, it will only throw when
+ * mutating existing fields, adding a new one
+ * will unfortunately fail silently :(
+ * - If the object is already frozen or sealed, it will not continue the
+ * deep traversal and will leave leaf nodes unfrozen.
+ *
+ * Freezing the object and adding the throw mechanism is expensive and will
+ * only be used in DEV.
+ */
+ function deepFreezeAndThrowOnMutationInDev(object) {
+ if (__DEV__) {
+ if (typeof object !== 'object' || object === null || Object.isFrozen(object) || Object.isSealed(object)) {
+ return object;
+ }
+
+ // $FlowFixMe[not-an-object] `object` can be an array, but Object.keys works with arrays too
+ var keys = Object.keys(object);
+ // $FlowFixMe[method-unbinding] added when improving typing for this parameters
+ var _hasOwnProperty = Object.prototype.hasOwnProperty;
+ for (var i = 0; i < keys.length; i++) {
+ var key = keys[i];
+ if (_hasOwnProperty.call(object, key)) {
+ Object.defineProperty(object, key, {
+ get: identity.bind(null, object[key])
+ });
+ Object.defineProperty(object, key, {
+ set: throwOnImmutableMutation.bind(null, key)
+ });
+ }
+ }
+ Object.freeze(object);
+ Object.seal(object);
+ for (var _i = 0; _i < keys.length; _i++) {
+ var _key = keys[_i];
+ if (_hasOwnProperty.call(object, _key)) {
+ deepFreezeAndThrowOnMutationInDev(object[_key]);
+ }
+ }
+ }
+ return object;
+ }
+
+ /* $FlowFixMe[missing-local-annot] The type annotation(s) required by Flow's
+ * LTI update could not be added via codemod */
+ function throwOnImmutableMutation(key, value) {
+ throw Error('You attempted to set the key `' + key + '` with the value `' + JSON.stringify(value) + '` on an object that is meant to be immutable ' + 'and has been frozen.');
+ }
+ function identity(value) {
+ return value;
+ }
+ module.exports = deepFreezeAndThrowOnMutationInDev;
+},47,[],"node_modules\\react-native\\Libraries\\Utilities\\deepFreezeAndThrowOnMutationInDev.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ /**
+ * The particular require runtime that we are using looks for a global
+ * `ErrorUtils` object and if it exists, then it requires modules with the
+ * error handler specified via ErrorUtils.setGlobalHandler by calling the
+ * require function with applyWithGuard. Since the require module is loaded
+ * before any of the modules, this ErrorUtils must be defined (and the handler
+ * set) globally before requiring anything.
+ *
+ * However, we still want to treat ErrorUtils as a module so that other modules
+ * that use it aren't just using a global variable, so simply export the global
+ * variable here. ErrorUtils is originally defined in a file named error-guard.js.
+ */
+ module.exports = global.ErrorUtils;
+},48,[],"node_modules\\react-native\\Libraries\\vendor\\core\\ErrorUtils.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ 'use strict';
+
+ /**
+ * Defines a lazily evaluated property on the supplied `object`.
+ */
+ function defineLazyObjectProperty(object, name, descriptor) {
+ var get = descriptor.get;
+ var enumerable = descriptor.enumerable !== false;
+ var writable = descriptor.writable !== false;
+ var value;
+ var valueSet = false;
+ function getValue() {
+ // WORKAROUND: A weird infinite loop occurs where calling `getValue` calls
+ // `setValue` which calls `Object.defineProperty` which somehow triggers
+ // `getValue` again. Adding `valueSet` breaks this loop.
+ if (!valueSet) {
+ // Calling `get()` here can trigger an infinite loop if it fails to
+ // remove the getter on the property, which can happen when executing
+ // JS in a V8 context. `valueSet = true` will break this loop, and
+ // sets the value of the property to undefined, until the code in `get()`
+ // finishes, at which point the property is set to the correct value.
+ valueSet = true;
+ setValue(get());
+ }
+ return value;
+ }
+ function setValue(newValue) {
+ value = newValue;
+ valueSet = true;
+ Object.defineProperty(object, name, {
+ value: newValue,
+ configurable: true,
+ enumerable: enumerable,
+ writable: writable
+ });
+ }
+ Object.defineProperty(object, name, {
+ get: getValue,
+ set: setValue,
+ configurable: true,
+ enumerable: enumerable
+ });
+ }
+ module.exports = defineLazyObjectProperty;
+},49,[],"node_modules\\react-native\\Libraries\\Utilities\\defineLazyObjectProperty.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ var _UIManager = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../../ReactNative/UIManager"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ /**
+ * This is a function exposed to the React Renderer that can be used by the
+ * pre-Fabric renderer to emit accessibility events to pre-Fabric nodes.
+ */
+ function legacySendAccessibilityEvent(reactTag, eventType) {
+ if (eventType === 'focus') {
+ _UIManager.default.sendAccessibilityEvent(reactTag, _UIManager.default.getConstants().AccessibilityEventTypes.typeViewFocused);
+ }
+ if (eventType === 'click') {
+ _UIManager.default.sendAccessibilityEvent(reactTag, _UIManager.default.getConstants().AccessibilityEventTypes.typeViewClicked);
+ }
+ }
+ module.exports = legacySendAccessibilityEvent;
+},50,[6,51],"node_modules\\react-native\\Libraries\\Components\\AccessibilityInfo\\legacySendAccessibilityEvent.android.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ var _nullthrows = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "nullthrows"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ function isFabricReactTag(reactTag) {
+ // React reserves even numbers for Fabric.
+ return reactTag % 2 === 0;
+ }
+ var UIManagerImpl = global.RN$Bridgeless === true ? _$$_REQUIRE(_dependencyMap[2], "./BridgelessUIManager") : _$$_REQUIRE(_dependencyMap[3], "./PaperUIManager");
+
+ // $FlowFixMe[cannot-spread-interface]
+ var UIManager = Object.assign({}, UIManagerImpl, {
+ measure: function measure(reactTag, callback) {
+ if (isFabricReactTag(reactTag)) {
+ var FabricUIManager = (0, _nullthrows.default)((0, _$$_REQUIRE(_dependencyMap[4], "./FabricUIManager").getFabricUIManager)());
+ var shadowNode = FabricUIManager.findShadowNodeByTag_DEPRECATED(reactTag);
+ if (shadowNode) {
+ FabricUIManager.measure(shadowNode, callback);
+ } else {
+ console.warn(`measure cannot find view with tag #${reactTag}`);
+ // $FlowFixMe[incompatible-call]
+ callback();
+ }
+ } else {
+ // Paper
+ UIManagerImpl.measure(reactTag, callback);
+ }
+ },
+ measureInWindow: function measureInWindow(reactTag, callback) {
+ if (isFabricReactTag(reactTag)) {
+ var FabricUIManager = (0, _nullthrows.default)((0, _$$_REQUIRE(_dependencyMap[4], "./FabricUIManager").getFabricUIManager)());
+ var shadowNode = FabricUIManager.findShadowNodeByTag_DEPRECATED(reactTag);
+ if (shadowNode) {
+ FabricUIManager.measureInWindow(shadowNode, callback);
+ } else {
+ console.warn(`measure cannot find view with tag #${reactTag}`);
+ // $FlowFixMe[incompatible-call]
+ callback();
+ }
+ } else {
+ // Paper
+ UIManagerImpl.measureInWindow(reactTag, callback);
+ }
+ },
+ measureLayout: function measureLayout(reactTag, ancestorReactTag, errorCallback, callback) {
+ if (isFabricReactTag(reactTag)) {
+ var FabricUIManager = (0, _nullthrows.default)((0, _$$_REQUIRE(_dependencyMap[4], "./FabricUIManager").getFabricUIManager)());
+ var shadowNode = FabricUIManager.findShadowNodeByTag_DEPRECATED(reactTag);
+ var ancestorShadowNode = FabricUIManager.findShadowNodeByTag_DEPRECATED(ancestorReactTag);
+ if (!shadowNode || !ancestorShadowNode) {
+ return;
+ }
+ FabricUIManager.measureLayout(shadowNode, ancestorShadowNode, errorCallback, callback);
+ } else {
+ // Paper
+ UIManagerImpl.measureLayout(reactTag, ancestorReactTag, errorCallback, callback);
+ }
+ },
+ measureLayoutRelativeToParent: function measureLayoutRelativeToParent(reactTag, errorCallback, callback) {
+ if (isFabricReactTag(reactTag)) {
+ console.warn('RCTUIManager.measureLayoutRelativeToParent method is deprecated and it will not be implemented in newer versions of RN (Fabric) - T47686450');
+ var FabricUIManager = (0, _nullthrows.default)((0, _$$_REQUIRE(_dependencyMap[4], "./FabricUIManager").getFabricUIManager)());
+ var shadowNode = FabricUIManager.findShadowNodeByTag_DEPRECATED(reactTag);
+ if (shadowNode) {
+ FabricUIManager.measure(shadowNode, function (left, top, width, height, pageX, pageY) {
+ callback(left, top, width, height);
+ });
+ }
+ } else {
+ // Paper
+ UIManagerImpl.measureLayoutRelativeToParent(reactTag, errorCallback, callback);
+ }
+ },
+ dispatchViewManagerCommand: function dispatchViewManagerCommand(reactTag, commandName, commandArgs) {
+ // Sometimes, libraries directly pass in the output of `findNodeHandle` to
+ // this function without checking if it's null. This guards against that
+ // case. We throw early here in Javascript so we can get a JS stacktrace
+ // instead of a harder-to-debug native Java or Objective-C stacktrace.
+ if (typeof reactTag !== 'number') {
+ throw new Error('dispatchViewManagerCommand: found null reactTag');
+ }
+ if (isFabricReactTag(reactTag)) {
+ var FabricUIManager = (0, _nullthrows.default)((0, _$$_REQUIRE(_dependencyMap[4], "./FabricUIManager").getFabricUIManager)());
+ var shadowNode = FabricUIManager.findShadowNodeByTag_DEPRECATED(reactTag);
+ if (shadowNode) {
+ // Transform the accidental CommandID into a CommandName which is the stringified number.
+ // The interop layer knows how to convert this number into the right method name.
+ // Stringify a string is a no-op, so it's safe.
+ commandName = `${commandName}`;
+ FabricUIManager.dispatchCommand(shadowNode, commandName, commandArgs);
+ }
+ } else {
+ UIManagerImpl.dispatchViewManagerCommand(reactTag,
+ // We have some legacy components that are actually already using strings. ¯\_(ツ)_/¯
+ // $FlowFixMe[incompatible-call]
+ commandName, commandArgs);
+ }
+ }
+ });
+ module.exports = UIManager;
+},51,[6,52,53,55,58],"node_modules\\react-native\\Libraries\\ReactNative\\UIManager.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ function nullthrows(x, message) {
+ if (x != null) {
+ return x;
+ }
+ var error = new Error(message !== undefined ? message : 'Got unexpected ' + x);
+ error.framesToPop = 1; // Skip nullthrows's own stack frame.
+ throw error;
+ }
+ module.exports = nullthrows;
+ module.exports.default = nullthrows;
+ Object.defineProperty(module.exports, '__esModule', {
+ value: true
+ });
+},52,[],"node_modules\\nullthrows\\nullthrows.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ 'use strict';
+
+ var cachedConstants = null;
+ var errorMessageForMethod = function errorMessageForMethod(methodName) {
+ return "[ReactNative Architecture][JS] '" + methodName + "' is not available in the new React Native architecture.";
+ };
+ function nativeViewConfigsInBridgelessModeEnabled() {
+ return global.RN$LegacyInterop_UIManager_getConstants !== undefined;
+ }
+ function getCachedConstants() {
+ if (!cachedConstants) {
+ cachedConstants = global.RN$LegacyInterop_UIManager_getConstants();
+ }
+ return cachedConstants;
+ }
+ var UIManagerJS = {
+ getViewManagerConfig: function getViewManagerConfig(viewManagerName) {
+ if (nativeViewConfigsInBridgelessModeEnabled()) {
+ return getCachedConstants()[viewManagerName];
+ } else {
+ console.error(errorMessageForMethod('getViewManagerConfig') + 'Use hasViewManagerConfig instead. viewManagerName: ' + viewManagerName);
+ return null;
+ }
+ },
+ hasViewManagerConfig: function hasViewManagerConfig(viewManagerName) {
+ return (0, _$$_REQUIRE(_dependencyMap[0], "../NativeComponent/NativeComponentRegistryUnstable").unstable_hasComponent)(viewManagerName);
+ },
+ getConstants: function getConstants() {
+ if (nativeViewConfigsInBridgelessModeEnabled()) {
+ return getCachedConstants();
+ } else {
+ console.error(errorMessageForMethod('getConstants'));
+ return null;
+ }
+ },
+ getConstantsForViewManager: function getConstantsForViewManager(viewManagerName) {
+ console.error(errorMessageForMethod('getConstantsForViewManager'));
+ return {};
+ },
+ getDefaultEventTypes: function getDefaultEventTypes() {
+ console.error(errorMessageForMethod('getDefaultEventTypes'));
+ return [];
+ },
+ lazilyLoadView: function lazilyLoadView(name) {
+ console.error(errorMessageForMethod('lazilyLoadView'));
+ return {};
+ },
+ createView: function createView(reactTag, viewName, rootTag, props) {
+ return console.error(errorMessageForMethod('createView'));
+ },
+ updateView: function updateView(reactTag, viewName, props) {
+ return console.error(errorMessageForMethod('updateView'));
+ },
+ focus: function focus(reactTag) {
+ return console.error(errorMessageForMethod('focus'));
+ },
+ blur: function blur(reactTag) {
+ return console.error(errorMessageForMethod('blur'));
+ },
+ findSubviewIn: function findSubviewIn(reactTag, point, callback) {
+ return console.error(errorMessageForMethod('findSubviewIn'));
+ },
+ dispatchViewManagerCommand: function dispatchViewManagerCommand(reactTag, commandID, commandArgs) {
+ return console.error(errorMessageForMethod('dispatchViewManagerCommand'));
+ },
+ measure: function measure(reactTag, callback) {
+ return console.error(errorMessageForMethod('measure'));
+ },
+ measureInWindow: function measureInWindow(reactTag, callback) {
+ return console.error(errorMessageForMethod('measureInWindow'));
+ },
+ viewIsDescendantOf: function viewIsDescendantOf(reactTag, ancestorReactTag, callback) {
+ return console.error(errorMessageForMethod('viewIsDescendantOf'));
+ },
+ measureLayout: function measureLayout(reactTag, ancestorReactTag, errorCallback, callback) {
+ return console.error(errorMessageForMethod('measureLayout'));
+ },
+ measureLayoutRelativeToParent: function measureLayoutRelativeToParent(reactTag, errorCallback, callback) {
+ return console.error(errorMessageForMethod('measureLayoutRelativeToParent'));
+ },
+ setJSResponder: function setJSResponder(reactTag, blockNativeResponder) {
+ return console.error(errorMessageForMethod('setJSResponder'));
+ },
+ clearJSResponder: function clearJSResponder() {},
+ // Don't log error here because we're aware it gets called
+ configureNextLayoutAnimation: function configureNextLayoutAnimation(config, callback, errorCallback) {
+ return console.error(errorMessageForMethod('configureNextLayoutAnimation'));
+ },
+ removeSubviewsFromContainerWithID: function removeSubviewsFromContainerWithID(containerID) {
+ return console.error(errorMessageForMethod('removeSubviewsFromContainerWithID'));
+ },
+ replaceExistingNonRootView: function replaceExistingNonRootView(reactTag, newReactTag) {
+ return console.error(errorMessageForMethod('replaceExistingNonRootView'));
+ },
+ setChildren: function setChildren(containerTag, reactTags) {
+ return console.error(errorMessageForMethod('setChildren'));
+ },
+ manageChildren: function manageChildren(containerTag, moveFromIndices, moveToIndices, addChildReactTags, addAtIndices, removeAtIndices) {
+ return console.error(errorMessageForMethod('manageChildren'));
+ },
+ // Android only
+ setLayoutAnimationEnabledExperimental: function setLayoutAnimationEnabledExperimental(enabled) {
+ console.error(errorMessageForMethod('setLayoutAnimationEnabledExperimental'));
+ },
+ // Please use AccessibilityInfo.sendAccessibilityEvent instead.
+ // See SetAccessibilityFocusExample in AccessibilityExample.js for a migration example.
+ sendAccessibilityEvent: function sendAccessibilityEvent(reactTag, eventType) {
+ return console.error(errorMessageForMethod('sendAccessibilityEvent'));
+ },
+ showPopupMenu: function showPopupMenu(reactTag, items, error, success) {
+ return console.error(errorMessageForMethod('showPopupMenu'));
+ },
+ dismissPopupMenu: function dismissPopupMenu() {
+ return console.error(errorMessageForMethod('dismissPopupMenu'));
+ }
+ };
+ if (nativeViewConfigsInBridgelessModeEnabled()) {
+ Object.keys(getCachedConstants()).forEach(function (viewConfigName) {
+ UIManagerJS[viewConfigName] = getCachedConstants()[viewConfigName];
+ });
+ }
+ module.exports = UIManagerJS;
+},53,[54],"node_modules\\react-native\\Libraries\\ReactNative\\BridgelessUIManager.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.unstable_hasComponent = unstable_hasComponent;
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ var componentNameToExists = new Map();
+
+ /**
+ * Unstable API. Do not use!
+ *
+ * This method returns if the component with name received as a parameter
+ * is registered in the native platform.
+ */
+ function unstable_hasComponent(name) {
+ var hasNativeComponent = componentNameToExists.get(name);
+ if (hasNativeComponent == null) {
+ if (global.__nativeComponentRegistry__hasComponent) {
+ hasNativeComponent = global.__nativeComponentRegistry__hasComponent(name);
+ componentNameToExists.set(name, hasNativeComponent);
+ } else {
+ throw `unstable_hasComponent('${name}'): Global function is not registered`;
+ }
+ }
+ return hasNativeComponent;
+ }
+},54,[],"node_modules\\react-native\\Libraries\\NativeComponent\\NativeComponentRegistryUnstable.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ var _NativeUIManager = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./NativeUIManager")); /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ var viewManagerConfigs = {};
+ var triedLoadingConfig = new Set();
+ var NativeUIManagerConstants = {};
+ var isNativeUIManagerConstantsSet = false;
+ function _getConstants() {
+ if (!isNativeUIManagerConstantsSet) {
+ NativeUIManagerConstants = _NativeUIManager.default.getConstants();
+ isNativeUIManagerConstantsSet = true;
+ }
+ return NativeUIManagerConstants;
+ }
+ function _getViewManagerConfig(viewManagerName) {
+ if (viewManagerConfigs[viewManagerName] === undefined && global.nativeCallSyncHook &&
+ // If we're in the Chrome Debugger, let's not even try calling the sync method
+ _NativeUIManager.default.getConstantsForViewManager) {
+ try {
+ viewManagerConfigs[viewManagerName] = _NativeUIManager.default.getConstantsForViewManager(viewManagerName);
+ } catch (e) {
+ console.error("NativeUIManager.getConstantsForViewManager('" + viewManagerName + "') threw an exception.", e);
+ viewManagerConfigs[viewManagerName] = null;
+ }
+ }
+ var config = viewManagerConfigs[viewManagerName];
+ if (config) {
+ return config;
+ }
+
+ // If we're in the Chrome Debugger, let's not even try calling the sync
+ // method.
+ if (!global.nativeCallSyncHook) {
+ return config;
+ }
+ if (_NativeUIManager.default.lazilyLoadView && !triedLoadingConfig.has(viewManagerName)) {
+ var result = _NativeUIManager.default.lazilyLoadView(viewManagerName);
+ triedLoadingConfig.add(viewManagerName);
+ if (result != null && result.viewConfig != null) {
+ _getConstants()[viewManagerName] = result.viewConfig;
+ lazifyViewManagerConfig(viewManagerName);
+ }
+ }
+ return viewManagerConfigs[viewManagerName];
+ }
+
+ /* $FlowFixMe[cannot-spread-interface] (>=0.123.0 site=react_native_fb) This
+ * comment suppresses an error found when Flow v0.123.0 was deployed. To see
+ * the error, delete this comment and run Flow. */
+ var UIManagerJS = Object.assign({}, _NativeUIManager.default, {
+ createView: function createView(reactTag, viewName, rootTag, props) {
+ if ("android" === 'ios' && viewManagerConfigs[viewName] === undefined) {
+ // This is necessary to force the initialization of native viewManager
+ // classes in iOS when using static ViewConfigs
+ _getViewManagerConfig(viewName);
+ }
+ _NativeUIManager.default.createView(reactTag, viewName, rootTag, props);
+ },
+ getConstants: function getConstants() {
+ return _getConstants();
+ },
+ getViewManagerConfig: function getViewManagerConfig(viewManagerName) {
+ return _getViewManagerConfig(viewManagerName);
+ },
+ hasViewManagerConfig: function hasViewManagerConfig(viewManagerName) {
+ return _getViewManagerConfig(viewManagerName) != null;
+ }
+ });
+
+ // TODO (T45220498): Remove this.
+ // 3rd party libs may be calling `NativeModules.UIManager.getViewManagerConfig()`
+ // instead of `UIManager.getViewManagerConfig()` off UIManager.js.
+ // This is a workaround for now.
+ // $FlowFixMe[prop-missing]
+ _NativeUIManager.default.getViewManagerConfig = UIManagerJS.getViewManagerConfig;
+ function lazifyViewManagerConfig(viewName) {
+ var viewConfig = _getConstants()[viewName];
+ viewManagerConfigs[viewName] = viewConfig;
+ if (viewConfig.Manager) {
+ _$$_REQUIRE(_dependencyMap[2], "../Utilities/defineLazyObjectProperty")(viewConfig, 'Constants', {
+ get: function get() {
+ var viewManager = _$$_REQUIRE(_dependencyMap[3], "../BatchedBridge/NativeModules")[viewConfig.Manager];
+ var constants = {};
+ viewManager && Object.keys(viewManager).forEach(function (key) {
+ var value = viewManager[key];
+ if (typeof value !== 'function') {
+ constants[key] = value;
+ }
+ });
+ return constants;
+ }
+ });
+ _$$_REQUIRE(_dependencyMap[2], "../Utilities/defineLazyObjectProperty")(viewConfig, 'Commands', {
+ get: function get() {
+ var viewManager = _$$_REQUIRE(_dependencyMap[3], "../BatchedBridge/NativeModules")[viewConfig.Manager];
+ var commands = {};
+ var index = 0;
+ viewManager && Object.keys(viewManager).forEach(function (key) {
+ var value = viewManager[key];
+ if (typeof value === 'function') {
+ commands[key] = index++;
+ }
+ });
+ return commands;
+ }
+ });
+ }
+ }
+
+ /**
+ * Copies the ViewManager constants and commands into UIManager. This is
+ * only needed for iOS, which puts the constants in the ViewManager
+ * namespace instead of UIManager, unlike Android.
+ */
+ if ("android" === 'ios') {
+ Object.keys(_getConstants()).forEach(function (viewName) {
+ lazifyViewManagerConfig(viewName);
+ });
+ } else if (_getConstants().ViewManagerNames) {
+ _NativeUIManager.default.getConstants().ViewManagerNames.forEach(function (viewManagerName) {
+ _$$_REQUIRE(_dependencyMap[2], "../Utilities/defineLazyObjectProperty")(_NativeUIManager.default, viewManagerName, {
+ get: function get() {
+ return _NativeUIManager.default.getConstantsForViewManager(viewManagerName);
+ }
+ });
+ });
+ }
+ if (!global.nativeCallSyncHook) {
+ Object.keys(_getConstants()).forEach(function (viewManagerName) {
+ if (!_$$_REQUIRE(_dependencyMap[4], "./UIManagerProperties").includes(viewManagerName)) {
+ if (!viewManagerConfigs[viewManagerName]) {
+ viewManagerConfigs[viewManagerName] = _getConstants()[viewManagerName];
+ }
+ _$$_REQUIRE(_dependencyMap[2], "../Utilities/defineLazyObjectProperty")(_NativeUIManager.default, viewManagerName, {
+ get: function get() {
+ console.warn(`Accessing view manager configs directly off UIManager via UIManager['${viewManagerName}'] ` + `is no longer supported. Use UIManager.getViewManagerConfig('${viewManagerName}') instead.`);
+ return UIManagerJS.getViewManagerConfig(viewManagerName);
+ }
+ });
+ }
+ });
+ }
+ module.exports = UIManagerJS;
+},55,[6,56,49,38,57],"node_modules\\react-native\\Libraries\\ReactNative\\PaperUIManager.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var TurboModuleRegistry = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../TurboModule/TurboModuleRegistry"));
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+ var _default = exports.default = TurboModuleRegistry.getEnforcing('UIManager');
+},56,[36],"node_modules\\react-native\\Libraries\\ReactNative\\NativeUIManager.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ 'use strict';
+
+ /**
+ * The list of non-ViewManager related UIManager properties.
+ *
+ * In an effort to improve startup performance by lazily loading view managers,
+ * the interface to access view managers will change from
+ * UIManager['viewManagerName'] to UIManager.getViewManagerConfig('viewManagerName').
+ * By using a function call instead of a property access, the UIManager will
+ * be able to initialize and load the required view manager from native
+ * synchronously. All of React Native's core components have been updated to
+ * use getViewManagerConfig(). For the next few releases, any usage of
+ * UIManager['viewManagerName'] will result in a warning. Because React Native
+ * does not support Proxy objects, a view manager access is implied if any of
+ * UIManager's properties that are not one of the properties below is being
+ * accessed. Once UIManager property accesses for view managers has been fully
+ * deprecated, this file will also be removed.
+ */
+ module.exports = ['clearJSResponder', 'configureNextLayoutAnimation', 'createView', 'dismissPopupMenu', 'dispatchViewManagerCommand', 'findSubviewIn', 'getConstantsForViewManager', 'getDefaultEventTypes', 'manageChildren', 'measure', 'measureInWindow', 'measureLayout', 'measureLayoutRelativeToParent', 'removeRootView', 'removeSubviewsFromContainerWithID', 'replaceExistingNonRootView', 'sendAccessibilityEvent', 'setChildren', 'setJSResponder', 'setLayoutAnimationEnabledExperimental', 'showPopupMenu', 'updateView', 'viewIsDescendantOf', 'PopupMenu', 'LazyViewManagersEnabled', 'ViewManagerNames', 'StyleConstants', 'AccessibilityEventTypes', 'UIView', 'getViewManagerConfig', 'hasViewManagerConfig', 'blur', 'focus', 'genericBubblingEventTypes', 'genericDirectEventTypes', 'lazilyLoadView'];
+},57,[],"node_modules\\react-native\\Libraries\\ReactNative\\UIManagerProperties.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ 'use strict';
+
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.getFabricUIManager = getFabricUIManager;
+ var _defineLazyObjectProperty = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../Utilities/defineLazyObjectProperty"));
+ var nativeFabricUIManagerProxy;
+
+ // This is a list of all the methods in global.nativeFabricUIManager that we'll
+ // cache in JavaScript, as the current implementation of the binding
+ // creates a new host function every time methods are accessed.
+ var CACHED_PROPERTIES = ['createNode', 'cloneNode', 'cloneNodeWithNewChildren', 'cloneNodeWithNewProps', 'cloneNodeWithNewChildrenAndProps', 'createChildSet', 'appendChild', 'appendChildToSet', 'completeRoot', 'measure', 'measureInWindow', 'measureLayout', 'configureNextLayoutAnimation', 'sendAccessibilityEvent', 'findShadowNodeByTag_DEPRECATED', 'setNativeProps', 'dispatchCommand', 'getParentNode', 'getChildNodes', 'isConnected', 'compareDocumentPosition', 'getTextContent', 'getBoundingClientRect', 'getOffset', 'getScrollPosition', 'getScrollSize', 'getInnerSize', 'getBorderSize', 'getTagName', 'hasPointerCapture', 'setPointerCapture', 'releasePointerCapture'];
+
+ // This is exposed as a getter because apps using the legacy renderer AND
+ // Fabric can define the binding lazily. If we evaluated the global and cached
+ // it in the module we might be caching an `undefined` value before it is set.
+ function getFabricUIManager() {
+ if (nativeFabricUIManagerProxy == null && global.nativeFabricUIManager != null) {
+ nativeFabricUIManagerProxy = createProxyWithCachedProperties(global.nativeFabricUIManager, CACHED_PROPERTIES);
+ }
+ return nativeFabricUIManagerProxy;
+ }
+
+ /**
+ *
+ * Returns an object that caches the specified properties the first time they
+ * are accessed, and falls back to the original object for other properties.
+ */
+ function createProxyWithCachedProperties(implementation, propertiesToCache) {
+ var proxy = Object.create(implementation);
+ var _loop = function _loop(propertyName) {
+ (0, _defineLazyObjectProperty.default)(proxy, propertyName, {
+ // $FlowExpectedError[prop-missing]
+ get: function get() {
+ return implementation[propertyName];
+ }
+ });
+ };
+ for (var propertyName of propertiesToCache) {
+ _loop(propertyName);
+ }
+ return proxy;
+ }
+},58,[6,49],"node_modules\\react-native\\Libraries\\ReactNative\\FabricUIManager.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var TurboModuleRegistry = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../TurboModule/TurboModuleRegistry"));
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+ var _default = exports.default = TurboModuleRegistry.get('AccessibilityInfo');
+},59,[36],"node_modules\\react-native\\Libraries\\Components\\AccessibilityInfo\\NativeAccessibilityInfo.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var TurboModuleRegistry = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../TurboModule/TurboModuleRegistry"));
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+ var _default = exports.default = TurboModuleRegistry.get('AccessibilityManager');
+},60,[36],"node_modules\\react-native\\Libraries\\Components\\AccessibilityInfo\\NativeAccessibilityManager.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ Object.keys(_$$_REQUIRE(_dependencyMap[0], "./RendererImplementation")).forEach(function (key) {
+ if (key === "default" || key === "__esModule") return;
+ if (key in exports && exports[key] === _$$_REQUIRE(_dependencyMap[0], "./RendererImplementation")[key]) return;
+ Object.defineProperty(exports, key, {
+ enumerable: true,
+ get: function get() {
+ return _$$_REQUIRE(_dependencyMap[0], "./RendererImplementation")[key];
+ }
+ });
+ });
+},61,[62],"node_modules\\react-native\\Libraries\\ReactNative\\RendererProxy.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.dispatchCommand = dispatchCommand;
+ exports.findHostInstance_DEPRECATED = findHostInstance_DEPRECATED;
+ exports.findNodeHandle = findNodeHandle;
+ exports.isProfilingRenderer = isProfilingRenderer;
+ exports.renderElement = renderElement;
+ exports.sendAccessibilityEvent = sendAccessibilityEvent;
+ exports.unmountComponentAtNodeAndRemoveContainer = unmountComponentAtNodeAndRemoveContainer;
+ exports.unstable_batchedUpdates = unstable_batchedUpdates;
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ function renderElement(_ref) {
+ var element = _ref.element,
+ rootTag = _ref.rootTag,
+ useFabric = _ref.useFabric,
+ useConcurrentRoot = _ref.useConcurrentRoot;
+ if (useFabric) {
+ _$$_REQUIRE(_dependencyMap[0], "../Renderer/shims/ReactFabric").render(element, rootTag, null, useConcurrentRoot);
+ } else {
+ _$$_REQUIRE(_dependencyMap[1], "../Renderer/shims/ReactNative").render(element, rootTag);
+ }
+ }
+ function findHostInstance_DEPRECATED(componentOrHandle) {
+ return _$$_REQUIRE(_dependencyMap[1], "../Renderer/shims/ReactNative").findHostInstance_DEPRECATED(componentOrHandle);
+ }
+ function findNodeHandle(componentOrHandle) {
+ return _$$_REQUIRE(_dependencyMap[1], "../Renderer/shims/ReactNative").findNodeHandle(componentOrHandle);
+ }
+ function dispatchCommand(handle, command, args) {
+ if (global.RN$Bridgeless === true) {
+ // Note: this function has the same implementation in the legacy and new renderer.
+ // However, evaluating the old renderer comes with some side effects.
+ return _$$_REQUIRE(_dependencyMap[0], "../Renderer/shims/ReactFabric").dispatchCommand(handle, command, args);
+ } else {
+ return _$$_REQUIRE(_dependencyMap[1], "../Renderer/shims/ReactNative").dispatchCommand(handle, command, args);
+ }
+ }
+ function sendAccessibilityEvent(handle, eventType) {
+ return _$$_REQUIRE(_dependencyMap[1], "../Renderer/shims/ReactNative").sendAccessibilityEvent(handle, eventType);
+ }
+
+ /**
+ * This method is used by AppRegistry to unmount a root when using the old
+ * React Native renderer (Paper).
+ */
+ function unmountComponentAtNodeAndRemoveContainer(rootTag) {
+ // $FlowExpectedError[incompatible-type] rootTag is an opaque type so we can't really cast it as is.
+ var rootTagAsNumber = rootTag;
+ _$$_REQUIRE(_dependencyMap[1], "../Renderer/shims/ReactNative").unmountComponentAtNodeAndRemoveContainer(rootTagAsNumber);
+ }
+ function unstable_batchedUpdates(fn, bookkeeping) {
+ // This doesn't actually do anything when batching updates for a Fabric root.
+ return _$$_REQUIRE(_dependencyMap[1], "../Renderer/shims/ReactNative").unstable_batchedUpdates(fn, bookkeeping);
+ }
+ function isProfilingRenderer() {
+ return Boolean(__DEV__);
+ }
+},62,[63,437],"node_modules\\react-native\\Libraries\\ReactNative\\RendererImplementation.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @noformat
+ *
+ * @nolint
+ * @generated SignedSource<>
+ */
+
+ 'use strict';
+
+ var ReactFabric;
+ if (__DEV__) {
+ ReactFabric = _$$_REQUIRE(_dependencyMap[0], "../implementations/ReactFabric-dev");
+ } else {
+ ReactFabric = _$$_REQUIRE(_dependencyMap[1], "../implementations/ReactFabric-prod");
+ }
+ global.RN$stopSurface = ReactFabric.stopSurface;
+ if (global.RN$Bridgeless !== true) {
+ _$$_REQUIRE(_dependencyMap[2], "react-native/Libraries/ReactPrivate/ReactNativePrivateInterface").BatchedBridge.registerCallableModule('ReactFabric', ReactFabric);
+ }
+ module.exports = ReactFabric;
+},63,[64,489,279],"node_modules\\react-native\\Libraries\\Renderer\\shims\\ReactFabric.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * 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.
+ *
+ *
+ * @nolint
+ * @providesModule ReactFabric-dev
+ * @preventMunge
+ * @generated SignedSource<<343bc15819bccf8610b6ff32fcb59b21>>
+ */
+
+ 'use strict';
+
+ if (__DEV__) {
+ (function () {
+ 'use strict';
+
+ /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
+ if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === 'function') {
+ __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());
+ }
+ "use strict";
+ var React = _$$_REQUIRE(_dependencyMap[0], "react");
+ _$$_REQUIRE(_dependencyMap[1], "react-native/Libraries/ReactPrivate/ReactNativePrivateInitializeCore");
+ var ReactNativePrivateInterface = _$$_REQUIRE(_dependencyMap[2], "react-native/Libraries/ReactPrivate/ReactNativePrivateInterface");
+ var Scheduler = _$$_REQUIRE(_dependencyMap[3], "scheduler");
+ var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
+
+ // by calls to these methods by a Babel plugin.
+ //
+ // In PROD (or in packages without access to React internals),
+ // they are left as they are instead.
+
+ function warn(format) {
+ {
+ {
+ for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
+ args[_key - 1] = arguments[_key];
+ }
+ printWarning("warn", format, args);
+ }
+ }
+ }
+ 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("error", format, args);
+ }
+ }
+ }
+ function printWarning(level, format, args) {
+ // When changing this logic, you might want to also
+ // update consoleWithStackDev.www.js as well.
+ {
+ var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
+ var stack = ReactDebugCurrentFrame.getStackAddendum();
+ if (stack !== "") {
+ format += "%s";
+ args = args.concat([stack]);
+ } // eslint-disable-next-line react-internal/safe-string-coercion
+
+ var argsWithFormat = args.map(function (item) {
+ return String(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
+ // eslint-disable-next-line react-internal/no-production-logging
+
+ Function.prototype.apply.call(console[level], console, argsWithFormat);
+ }
+ }
+ function invokeGuardedCallbackProd(name, func, context, a, b, c, d, e, f) {
+ var funcArgs = Array.prototype.slice.call(arguments, 3);
+ try {
+ func.apply(context, funcArgs);
+ } catch (error) {
+ this.onError(error);
+ }
+ }
+ var invokeGuardedCallbackImpl = invokeGuardedCallbackProd;
+ {
+ // In DEV mode, we swap out invokeGuardedCallback for a special version
+ // that plays more nicely with the browser's DevTools. The idea is to preserve
+ // "Pause on exceptions" behavior. Because React wraps all user-provided
+ // functions in invokeGuardedCallback, and the production version of
+ // invokeGuardedCallback uses a try-catch, all user exceptions are treated
+ // like caught exceptions, and the DevTools won't pause unless the developer
+ // takes the extra step of enabling pause on caught exceptions. This is
+ // unintuitive, though, because even though React has caught the error, from
+ // the developer's perspective, the error is uncaught.
+ //
+ // To preserve the expected "Pause on exceptions" behavior, we don't use a
+ // try-catch in DEV. Instead, we synchronously dispatch a fake event to a fake
+ // DOM node, and call the user-provided callback from inside an event handler
+ // for that fake event. If the callback throws, the error is "captured" using
+ // a global event handler. But because the error happens in a different
+ // event loop context, it does not interrupt the normal program flow.
+ // Effectively, this gives us try-catch behavior without actually using
+ // try-catch. Neat!
+ // Check that the browser supports the APIs we need to implement our special
+ // DEV version of invokeGuardedCallback
+ if (typeof window !== "undefined" && typeof window.dispatchEvent === "function" && typeof document !== "undefined" && typeof document.createEvent === "function") {
+ var fakeNode = document.createElement("react");
+ invokeGuardedCallbackImpl = function invokeGuardedCallbackDev(name, func, context, a, b, c, d, e, f) {
+ // If document doesn't exist we know for sure we will crash in this method
+ // when we call document.createEvent(). However this can cause confusing
+ // errors: https://github.com/facebook/create-react-app/issues/3482
+ // So we preemptively throw with a better message instead.
+ if (typeof document === "undefined" || document === null) {
+ throw new Error("The `document` global was defined when React was initialized, but is not " + "defined anymore. This can happen in a test environment if a component " + "schedules an update from an asynchronous callback, but the test has already " + "finished running. To solve this, you can either unmount the component at " + "the end of your test (and ensure that any asynchronous operations get " + "canceled in `componentWillUnmount`), or you can change the test itself " + "to be asynchronous.");
+ }
+ var evt = document.createEvent("Event");
+ var didCall = false; // Keeps track of whether the user-provided callback threw an error. We
+ // set this to true at the beginning, then set it to false right after
+ // calling the function. If the function errors, `didError` will never be
+ // set to false. This strategy works even if the browser is flaky and
+ // fails to call our global error handler, because it doesn't rely on
+ // the error event at all.
+
+ var didError = true; // Keeps track of the value of window.event so that we can reset it
+ // during the callback to let user code access window.event in the
+ // browsers that support it.
+
+ var windowEvent = window.event; // Keeps track of the descriptor of window.event to restore it after event
+ // dispatching: https://github.com/facebook/react/issues/13688
+
+ var windowEventDescriptor = Object.getOwnPropertyDescriptor(window, "event");
+ function restoreAfterDispatch() {
+ // We immediately remove the callback from event listeners so that
+ // nested `invokeGuardedCallback` calls do not clash. Otherwise, a
+ // nested call would trigger the fake event handlers of any call higher
+ // in the stack.
+ fakeNode.removeEventListener(evtType, callCallback, false); // We check for window.hasOwnProperty('event') to prevent the
+ // window.event assignment in both IE <= 10 as they throw an error
+ // "Member not found" in strict mode, and in Firefox which does not
+ // support window.event.
+
+ if (typeof window.event !== "undefined" && window.hasOwnProperty("event")) {
+ window.event = windowEvent;
+ }
+ } // Create an event handler for our fake event. We will synchronously
+ // dispatch our fake event using `dispatchEvent`. Inside the handler, we
+ // call the user-provided callback.
+
+ var funcArgs = Array.prototype.slice.call(arguments, 3);
+ function callCallback() {
+ didCall = true;
+ restoreAfterDispatch();
+ func.apply(context, funcArgs);
+ didError = false;
+ } // Create a global error event handler. We use this to capture the value
+ // that was thrown. It's possible that this error handler will fire more
+ // than once; for example, if non-React code also calls `dispatchEvent`
+ // and a handler for that event throws. We should be resilient to most of
+ // those cases. Even if our error event handler fires more than once, the
+ // last error event is always used. If the callback actually does error,
+ // we know that the last error event is the correct one, because it's not
+ // possible for anything else to have happened in between our callback
+ // erroring and the code that follows the `dispatchEvent` call below. If
+ // the callback doesn't error, but the error event was fired, we know to
+ // ignore it because `didError` will be false, as described above.
+
+ var error; // Use this to track whether the error event is ever called.
+
+ var didSetError = false;
+ var isCrossOriginError = false;
+ function handleWindowError(event) {
+ error = event.error;
+ didSetError = true;
+ if (error === null && event.colno === 0 && event.lineno === 0) {
+ isCrossOriginError = true;
+ }
+ if (event.defaultPrevented) {
+ // Some other error handler has prevented default.
+ // Browsers silence the error report if this happens.
+ // We'll remember this to later decide whether to log it or not.
+ if (error != null && typeof error === "object") {
+ try {
+ error._suppressLogging = true;
+ } catch (inner) {
+ // Ignore.
+ }
+ }
+ }
+ } // Create a fake event type.
+
+ var evtType = "react-" + (name ? name : "invokeguardedcallback"); // Attach our event handlers
+
+ window.addEventListener("error", handleWindowError);
+ fakeNode.addEventListener(evtType, callCallback, false); // Synchronously dispatch our fake event. If the user-provided function
+ // errors, it will trigger our global error handler.
+
+ evt.initEvent(evtType, false, false);
+ fakeNode.dispatchEvent(evt);
+ if (windowEventDescriptor) {
+ Object.defineProperty(window, "event", windowEventDescriptor);
+ }
+ if (didCall && didError) {
+ if (!didSetError) {
+ // The callback errored, but the error event never fired.
+ // eslint-disable-next-line react-internal/prod-error-codes
+ error = new Error("An error was thrown inside one of your components, but React " + "doesn't know what it was. This is likely due to browser " + 'flakiness. React does its best to preserve the "Pause on ' + 'exceptions" behavior of the DevTools, which requires some ' + "DEV-mode only tricks. It's possible that these don't work in " + "your browser. Try triggering the error in production mode, " + "or switching to a modern browser. If you suspect that this is " + "actually an issue with React, please file an issue.");
+ } else if (isCrossOriginError) {
+ // eslint-disable-next-line react-internal/prod-error-codes
+ error = new Error("A cross-origin error was thrown. React doesn't have access to " + "the actual error object in development. " + "See https://react.dev/link/crossorigin-error for more information.");
+ }
+ this.onError(error);
+ } // Remove our event listeners
+
+ window.removeEventListener("error", handleWindowError);
+ if (!didCall) {
+ // Something went really wrong, and our event was not dispatched.
+ // https://github.com/facebook/react/issues/16734
+ // https://github.com/facebook/react/issues/16585
+ // Fall back to the production implementation.
+ restoreAfterDispatch();
+ return invokeGuardedCallbackProd.apply(this, arguments);
+ }
+ };
+ }
+ }
+ var invokeGuardedCallbackImpl$1 = invokeGuardedCallbackImpl;
+ var hasError = false;
+ var caughtError = null; // Used by event system to capture/rethrow the first error.
+
+ var hasRethrowError = false;
+ var rethrowError = null;
+ var reporter = {
+ onError: function onError(error) {
+ hasError = true;
+ caughtError = error;
+ }
+ };
+ /**
+ * Call a function while guarding against errors that happens within it.
+ * Returns an error if it throws, otherwise null.
+ *
+ * In production, this is implemented using a try-catch. The reason we don't
+ * use a try-catch directly is so that we can swap out a different
+ * implementation in DEV mode.
+ *
+ * @param {String} name of the guard to use for logging or debugging
+ * @param {Function} func The function to invoke
+ * @param {*} context The context to use when calling the function
+ * @param {...*} args Arguments for function
+ */
+
+ function invokeGuardedCallback(name, func, context, a, b, c, d, e, f) {
+ hasError = false;
+ caughtError = null;
+ invokeGuardedCallbackImpl$1.apply(reporter, arguments);
+ }
+ /**
+ * Same as invokeGuardedCallback, but instead of returning an error, it stores
+ * it in a global so it can be rethrown by `rethrowCaughtError` later.
+ * TODO: See if caughtError and rethrowError can be unified.
+ *
+ * @param {String} name of the guard to use for logging or debugging
+ * @param {Function} func The function to invoke
+ * @param {*} context The context to use when calling the function
+ * @param {...*} args Arguments for function
+ */
+
+ function invokeGuardedCallbackAndCatchFirstError(name, func, context, a, b, c, d, e, f) {
+ invokeGuardedCallback.apply(this, arguments);
+ if (hasError) {
+ var error = clearCaughtError();
+ if (!hasRethrowError) {
+ hasRethrowError = true;
+ rethrowError = error;
+ }
+ }
+ }
+ /**
+ * During execution of guarded functions we will capture the first error which
+ * we will rethrow to be handled by the top level error handler.
+ */
+
+ function rethrowCaughtError() {
+ if (hasRethrowError) {
+ var error = rethrowError;
+ hasRethrowError = false;
+ rethrowError = null;
+ throw error;
+ }
+ }
+ function hasCaughtError() {
+ return hasError;
+ }
+ function clearCaughtError() {
+ if (hasError) {
+ var error = caughtError;
+ hasError = false;
+ caughtError = null;
+ return error;
+ } else {
+ throw new Error("clearCaughtError was called but no error was captured. This error " + "is likely caused by a bug in React. Please file an issue.");
+ }
+ }
+ var isArrayImpl = Array.isArray; // eslint-disable-next-line no-redeclare
+
+ function isArray(a) {
+ return isArrayImpl(a);
+ }
+ var getFiberCurrentPropsFromNode = null;
+ var getInstanceFromNode = null;
+ var getNodeFromInstance = null;
+ function setComponentTree(getFiberCurrentPropsFromNodeImpl, getInstanceFromNodeImpl, getNodeFromInstanceImpl) {
+ getFiberCurrentPropsFromNode = getFiberCurrentPropsFromNodeImpl;
+ getInstanceFromNode = getInstanceFromNodeImpl;
+ getNodeFromInstance = getNodeFromInstanceImpl;
+ {
+ if (!getNodeFromInstance || !getInstanceFromNode) {
+ error("EventPluginUtils.setComponentTree(...): Injected " + "module is missing getNodeFromInstance or getInstanceFromNode.");
+ }
+ }
+ }
+ var validateEventDispatches;
+ {
+ validateEventDispatches = function validateEventDispatches(event) {
+ var dispatchListeners = event._dispatchListeners;
+ var dispatchInstances = event._dispatchInstances;
+ var listenersIsArr = isArray(dispatchListeners);
+ var listenersLen = listenersIsArr ? dispatchListeners.length : dispatchListeners ? 1 : 0;
+ var instancesIsArr = isArray(dispatchInstances);
+ var instancesLen = instancesIsArr ? dispatchInstances.length : dispatchInstances ? 1 : 0;
+ if (instancesIsArr !== listenersIsArr || instancesLen !== listenersLen) {
+ error("EventPluginUtils: Invalid `event`.");
+ }
+ };
+ }
+ /**
+ * Dispatch the event to the listener.
+ * @param {SyntheticEvent} event SyntheticEvent to handle
+ * @param {function} listener Application-level callback
+ * @param {*} inst Internal component instance
+ */
+
+ function executeDispatch(event, listener, inst) {
+ var type = event.type || "unknown-event";
+ event.currentTarget = getNodeFromInstance(inst);
+ invokeGuardedCallbackAndCatchFirstError(type, listener, undefined, event);
+ event.currentTarget = null;
+ }
+ /**
+ * Standard/simple iteration through an event's collected dispatches.
+ */
+
+ function executeDispatchesInOrder(event) {
+ var dispatchListeners = event._dispatchListeners;
+ var dispatchInstances = event._dispatchInstances;
+ {
+ validateEventDispatches(event);
+ }
+ if (isArray(dispatchListeners)) {
+ for (var i = 0; i < dispatchListeners.length; i++) {
+ if (event.isPropagationStopped()) {
+ break;
+ } // Listeners and Instances are two parallel arrays that are always in sync.
+
+ executeDispatch(event, dispatchListeners[i], dispatchInstances[i]);
+ }
+ } else if (dispatchListeners) {
+ executeDispatch(event, dispatchListeners, dispatchInstances);
+ }
+ event._dispatchListeners = null;
+ event._dispatchInstances = null;
+ }
+ /**
+ * Standard/simple iteration through an event's collected dispatches, but stops
+ * at the first dispatch execution returning true, and returns that id.
+ *
+ * @return {?string} id of the first dispatch execution who's listener returns
+ * true, or null if no listener returned true.
+ */
+
+ function executeDispatchesInOrderStopAtTrueImpl(event) {
+ var dispatchListeners = event._dispatchListeners;
+ var dispatchInstances = event._dispatchInstances;
+ {
+ validateEventDispatches(event);
+ }
+ if (isArray(dispatchListeners)) {
+ for (var i = 0; i < dispatchListeners.length; i++) {
+ if (event.isPropagationStopped()) {
+ break;
+ } // Listeners and Instances are two parallel arrays that are always in sync.
+
+ if (dispatchListeners[i](event, dispatchInstances[i])) {
+ return dispatchInstances[i];
+ }
+ }
+ } else if (dispatchListeners) {
+ if (dispatchListeners(event, dispatchInstances)) {
+ return dispatchInstances;
+ }
+ }
+ return null;
+ }
+ /**
+ * @see executeDispatchesInOrderStopAtTrueImpl
+ */
+
+ function executeDispatchesInOrderStopAtTrue(event) {
+ var ret = executeDispatchesInOrderStopAtTrueImpl(event);
+ event._dispatchInstances = null;
+ event._dispatchListeners = null;
+ return ret;
+ }
+ /**
+ * Execution of a "direct" dispatch - there must be at most one dispatch
+ * accumulated on the event or it is considered an error. It doesn't really make
+ * sense for an event with multiple dispatches (bubbled) to keep track of the
+ * return values at each dispatch execution, but it does tend to make sense when
+ * dealing with "direct" dispatches.
+ *
+ * @return {*} The return value of executing the single dispatch.
+ */
+
+ function executeDirectDispatch(event) {
+ {
+ validateEventDispatches(event);
+ }
+ var dispatchListener = event._dispatchListeners;
+ var dispatchInstance = event._dispatchInstances;
+ if (isArray(dispatchListener)) {
+ throw new Error("executeDirectDispatch(...): Invalid `event`.");
+ }
+ event.currentTarget = dispatchListener ? getNodeFromInstance(dispatchInstance) : null;
+ var res = dispatchListener ? dispatchListener(event) : null;
+ event.currentTarget = null;
+ event._dispatchListeners = null;
+ event._dispatchInstances = null;
+ return res;
+ }
+ /**
+ * @param {SyntheticEvent} event
+ * @return {boolean} True iff number of dispatches accumulated is greater than 0.
+ */
+
+ function hasDispatches(event) {
+ return !!event._dispatchListeners;
+ }
+ var assign = Object.assign;
+ var EVENT_POOL_SIZE = 10;
+ /**
+ * @interface Event
+ * @see http://www.w3.org/TR/DOM-Level-3-Events/
+ */
+
+ var EventInterface = {
+ type: null,
+ target: null,
+ // currentTarget is set when dispatching; no use in copying it here
+ currentTarget: function currentTarget() {
+ return null;
+ },
+ eventPhase: null,
+ bubbles: null,
+ cancelable: null,
+ timeStamp: function timeStamp(event) {
+ return event.timeStamp || Date.now();
+ },
+ defaultPrevented: null,
+ isTrusted: null
+ };
+ function functionThatReturnsTrue() {
+ return true;
+ }
+ function functionThatReturnsFalse() {
+ return false;
+ }
+ /**
+ * Synthetic events are dispatched by event plugins, typically in response to a
+ * top-level event delegation handler.
+ *
+ * These systems should generally use pooling to reduce the frequency of garbage
+ * collection. The system should check `isPersistent` to determine whether the
+ * event should be released into the pool after being dispatched. Users that
+ * need a persisted event should invoke `persist`.
+ *
+ * Synthetic events (and subclasses) implement the DOM Level 3 Events API by
+ * normalizing browser quirks. Subclasses do not necessarily have to implement a
+ * DOM interface; custom application-specific events can also subclass this.
+ *
+ * @param {object} dispatchConfig Configuration used to dispatch this event.
+ * @param {*} targetInst Marker identifying the event target.
+ * @param {object} nativeEvent Native browser event.
+ * @param {DOMEventTarget} nativeEventTarget Target node.
+ */
+
+ function SyntheticEvent(dispatchConfig, targetInst, nativeEvent, nativeEventTarget) {
+ {
+ // these have a getter/setter for warnings
+ delete this.nativeEvent;
+ delete this.preventDefault;
+ delete this.stopPropagation;
+ delete this.isDefaultPrevented;
+ delete this.isPropagationStopped;
+ }
+ this.dispatchConfig = dispatchConfig;
+ this._targetInst = targetInst;
+ this.nativeEvent = nativeEvent;
+ this._dispatchListeners = null;
+ this._dispatchInstances = null;
+ var Interface = this.constructor.Interface;
+ for (var propName in Interface) {
+ if (!Interface.hasOwnProperty(propName)) {
+ continue;
+ }
+ {
+ delete this[propName]; // this has a getter/setter for warnings
+ }
+ var normalize = Interface[propName];
+ if (normalize) {
+ this[propName] = normalize(nativeEvent);
+ } else {
+ if (propName === "target") {
+ this.target = nativeEventTarget;
+ } else {
+ this[propName] = nativeEvent[propName];
+ }
+ }
+ }
+ var defaultPrevented = nativeEvent.defaultPrevented != null ? nativeEvent.defaultPrevented : nativeEvent.returnValue === false;
+ if (defaultPrevented) {
+ this.isDefaultPrevented = functionThatReturnsTrue;
+ } else {
+ this.isDefaultPrevented = functionThatReturnsFalse;
+ }
+ this.isPropagationStopped = functionThatReturnsFalse;
+ return this;
+ }
+ assign(SyntheticEvent.prototype, {
+ preventDefault: function preventDefault() {
+ this.defaultPrevented = true;
+ var event = this.nativeEvent;
+ if (!event) {
+ return;
+ }
+ if (event.preventDefault) {
+ event.preventDefault();
+ } else if (typeof event.returnValue !== "unknown") {
+ event.returnValue = false;
+ }
+ this.isDefaultPrevented = functionThatReturnsTrue;
+ },
+ stopPropagation: function stopPropagation() {
+ var event = this.nativeEvent;
+ if (!event) {
+ return;
+ }
+ if (event.stopPropagation) {
+ event.stopPropagation();
+ } else if (typeof event.cancelBubble !== "unknown") {
+ // The ChangeEventPlugin registers a "propertychange" event for
+ // IE. This event does not support bubbling or cancelling, and
+ // any references to cancelBubble throw "Member not found". A
+ // typeof check of "unknown" circumvents this issue (and is also
+ // IE specific).
+ event.cancelBubble = true;
+ }
+ this.isPropagationStopped = functionThatReturnsTrue;
+ },
+ /**
+ * We release all dispatched `SyntheticEvent`s after each event loop, adding
+ * them back into the pool. This allows a way to hold onto a reference that
+ * won't be added back into the pool.
+ */
+ persist: function persist() {
+ this.isPersistent = functionThatReturnsTrue;
+ },
+ /**
+ * Checks if this event should be released back into the pool.
+ *
+ * @return {boolean} True if this should not be released, false otherwise.
+ */
+ isPersistent: functionThatReturnsFalse,
+ /**
+ * `PooledClass` looks for `destructor` on each instance it releases.
+ */
+ destructor: function destructor() {
+ var Interface = this.constructor.Interface;
+ for (var propName in Interface) {
+ {
+ Object.defineProperty(this, propName, getPooledWarningPropertyDefinition(propName, Interface[propName]));
+ }
+ }
+ this.dispatchConfig = null;
+ this._targetInst = null;
+ this.nativeEvent = null;
+ this.isDefaultPrevented = functionThatReturnsFalse;
+ this.isPropagationStopped = functionThatReturnsFalse;
+ this._dispatchListeners = null;
+ this._dispatchInstances = null;
+ {
+ Object.defineProperty(this, "nativeEvent", getPooledWarningPropertyDefinition("nativeEvent", null));
+ Object.defineProperty(this, "isDefaultPrevented", getPooledWarningPropertyDefinition("isDefaultPrevented", functionThatReturnsFalse));
+ Object.defineProperty(this, "isPropagationStopped", getPooledWarningPropertyDefinition("isPropagationStopped", functionThatReturnsFalse));
+ Object.defineProperty(this, "preventDefault", getPooledWarningPropertyDefinition("preventDefault", function () {}));
+ Object.defineProperty(this, "stopPropagation", getPooledWarningPropertyDefinition("stopPropagation", function () {}));
+ }
+ }
+ });
+ SyntheticEvent.Interface = EventInterface;
+ /**
+ * Helper to reduce boilerplate when creating subclasses.
+ */
+
+ SyntheticEvent.extend = function (Interface) {
+ var Super = this;
+ var E = function E() {};
+ E.prototype = Super.prototype;
+ var prototype = new E();
+ function Class() {
+ return Super.apply(this, arguments);
+ }
+ assign(prototype, Class.prototype);
+ Class.prototype = prototype;
+ Class.prototype.constructor = Class;
+ Class.Interface = assign({}, Super.Interface, Interface);
+ Class.extend = Super.extend;
+ addEventPoolingTo(Class);
+ return Class;
+ };
+ addEventPoolingTo(SyntheticEvent);
+ /**
+ * Helper to nullify syntheticEvent instance properties when destructing
+ *
+ * @param {String} propName
+ * @param {?object} getVal
+ * @return {object} defineProperty object
+ */
+
+ function getPooledWarningPropertyDefinition(propName, getVal) {
+ function set(val) {
+ var action = isFunction ? "setting the method" : "setting the property";
+ warn(action, "This is effectively a no-op");
+ return val;
+ }
+ function get() {
+ var action = isFunction ? "accessing the method" : "accessing the property";
+ var result = isFunction ? "This is a no-op function" : "This is set to null";
+ warn(action, result);
+ return getVal;
+ }
+ function warn(action, result) {
+ {
+ error("This synthetic event is reused for performance reasons. If you're seeing this, " + "you're %s `%s` on a released/nullified synthetic event. %s. " + "If you must keep the original synthetic event around, use event.persist(). " + "See https://react.dev/link/event-pooling for more information.", action, propName, result);
+ }
+ }
+ var isFunction = typeof getVal === "function";
+ return {
+ configurable: true,
+ set: set,
+ get: get
+ };
+ }
+ function createOrGetPooledEvent(dispatchConfig, targetInst, nativeEvent, nativeInst) {
+ var EventConstructor = this;
+ if (EventConstructor.eventPool.length) {
+ var instance = EventConstructor.eventPool.pop();
+ EventConstructor.call(instance, dispatchConfig, targetInst, nativeEvent, nativeInst);
+ return instance;
+ }
+ return new EventConstructor(dispatchConfig, targetInst, nativeEvent, nativeInst);
+ }
+ function releasePooledEvent(event) {
+ var EventConstructor = this;
+ if (!(event instanceof EventConstructor)) {
+ throw new Error("Trying to release an event instance into a pool of a different type.");
+ }
+ event.destructor();
+ if (EventConstructor.eventPool.length < EVENT_POOL_SIZE) {
+ EventConstructor.eventPool.push(event);
+ }
+ }
+ function addEventPoolingTo(EventConstructor) {
+ EventConstructor.getPooled = createOrGetPooledEvent;
+ EventConstructor.eventPool = [];
+ EventConstructor.release = releasePooledEvent;
+ }
+
+ /**
+ * `touchHistory` isn't actually on the native event, but putting it in the
+ * interface will ensure that it is cleaned up when pooled/destroyed. The
+ * `ResponderEventPlugin` will populate it appropriately.
+ */
+
+ var ResponderSyntheticEvent = SyntheticEvent.extend({
+ touchHistory: function touchHistory(nativeEvent) {
+ return null; // Actually doesn't even look at the native event.
+ }
+ });
+ var TOP_TOUCH_START = "topTouchStart";
+ var TOP_TOUCH_MOVE = "topTouchMove";
+ var TOP_TOUCH_END = "topTouchEnd";
+ var TOP_TOUCH_CANCEL = "topTouchCancel";
+ var TOP_SCROLL = "topScroll";
+ var TOP_SELECTION_CHANGE = "topSelectionChange";
+ function isStartish(topLevelType) {
+ return topLevelType === TOP_TOUCH_START;
+ }
+ function isMoveish(topLevelType) {
+ return topLevelType === TOP_TOUCH_MOVE;
+ }
+ function isEndish(topLevelType) {
+ return topLevelType === TOP_TOUCH_END || topLevelType === TOP_TOUCH_CANCEL;
+ }
+ var startDependencies = [TOP_TOUCH_START];
+ var moveDependencies = [TOP_TOUCH_MOVE];
+ var endDependencies = [TOP_TOUCH_CANCEL, TOP_TOUCH_END];
+
+ /**
+ * Tracks the position and time of each active touch by `touch.identifier`. We
+ * should typically only see IDs in the range of 1-20 because IDs get recycled
+ * when touches end and start again.
+ */
+
+ var MAX_TOUCH_BANK = 20;
+ var touchBank = [];
+ var touchHistory = {
+ touchBank: touchBank,
+ numberActiveTouches: 0,
+ // If there is only one active touch, we remember its location. This prevents
+ // us having to loop through all of the touches all the time in the most
+ // common case.
+ indexOfSingleActiveTouch: -1,
+ mostRecentTimeStamp: 0
+ };
+ function timestampForTouch(touch) {
+ // The legacy internal implementation provides "timeStamp", which has been
+ // renamed to "timestamp". Let both work for now while we iron it out
+ // TODO (evv): rename timeStamp to timestamp in internal code
+ return touch.timeStamp || touch.timestamp;
+ }
+ /**
+ * TODO: Instead of making gestures recompute filtered velocity, we could
+ * include a built in velocity computation that can be reused globally.
+ */
+
+ function createTouchRecord(touch) {
+ return {
+ touchActive: true,
+ startPageX: touch.pageX,
+ startPageY: touch.pageY,
+ startTimeStamp: timestampForTouch(touch),
+ currentPageX: touch.pageX,
+ currentPageY: touch.pageY,
+ currentTimeStamp: timestampForTouch(touch),
+ previousPageX: touch.pageX,
+ previousPageY: touch.pageY,
+ previousTimeStamp: timestampForTouch(touch)
+ };
+ }
+ function resetTouchRecord(touchRecord, touch) {
+ touchRecord.touchActive = true;
+ touchRecord.startPageX = touch.pageX;
+ touchRecord.startPageY = touch.pageY;
+ touchRecord.startTimeStamp = timestampForTouch(touch);
+ touchRecord.currentPageX = touch.pageX;
+ touchRecord.currentPageY = touch.pageY;
+ touchRecord.currentTimeStamp = timestampForTouch(touch);
+ touchRecord.previousPageX = touch.pageX;
+ touchRecord.previousPageY = touch.pageY;
+ touchRecord.previousTimeStamp = timestampForTouch(touch);
+ }
+ function getTouchIdentifier(_ref) {
+ var identifier = _ref.identifier;
+ if (identifier == null) {
+ throw new Error("Touch object is missing identifier.");
+ }
+ {
+ if (identifier > MAX_TOUCH_BANK) {
+ error("Touch identifier %s is greater than maximum supported %s which causes " + "performance issues backfilling array locations for all of the indices.", identifier, MAX_TOUCH_BANK);
+ }
+ }
+ return identifier;
+ }
+ function recordTouchStart(touch) {
+ var identifier = getTouchIdentifier(touch);
+ var touchRecord = touchBank[identifier];
+ if (touchRecord) {
+ resetTouchRecord(touchRecord, touch);
+ } else {
+ touchBank[identifier] = createTouchRecord(touch);
+ }
+ touchHistory.mostRecentTimeStamp = timestampForTouch(touch);
+ }
+ function recordTouchMove(touch) {
+ var touchRecord = touchBank[getTouchIdentifier(touch)];
+ if (touchRecord) {
+ touchRecord.touchActive = true;
+ touchRecord.previousPageX = touchRecord.currentPageX;
+ touchRecord.previousPageY = touchRecord.currentPageY;
+ touchRecord.previousTimeStamp = touchRecord.currentTimeStamp;
+ touchRecord.currentPageX = touch.pageX;
+ touchRecord.currentPageY = touch.pageY;
+ touchRecord.currentTimeStamp = timestampForTouch(touch);
+ touchHistory.mostRecentTimeStamp = timestampForTouch(touch);
+ } else {
+ {
+ warn("Cannot record touch move without a touch start.\n" + "Touch Move: %s\n" + "Touch Bank: %s", printTouch(touch), printTouchBank());
+ }
+ }
+ }
+ function recordTouchEnd(touch) {
+ var touchRecord = touchBank[getTouchIdentifier(touch)];
+ if (touchRecord) {
+ touchRecord.touchActive = false;
+ touchRecord.previousPageX = touchRecord.currentPageX;
+ touchRecord.previousPageY = touchRecord.currentPageY;
+ touchRecord.previousTimeStamp = touchRecord.currentTimeStamp;
+ touchRecord.currentPageX = touch.pageX;
+ touchRecord.currentPageY = touch.pageY;
+ touchRecord.currentTimeStamp = timestampForTouch(touch);
+ touchHistory.mostRecentTimeStamp = timestampForTouch(touch);
+ } else {
+ {
+ warn("Cannot record touch end without a touch start.\n" + "Touch End: %s\n" + "Touch Bank: %s", printTouch(touch), printTouchBank());
+ }
+ }
+ }
+ function printTouch(touch) {
+ return JSON.stringify({
+ identifier: touch.identifier,
+ pageX: touch.pageX,
+ pageY: touch.pageY,
+ timestamp: timestampForTouch(touch)
+ });
+ }
+ function printTouchBank() {
+ var printed = JSON.stringify(touchBank.slice(0, MAX_TOUCH_BANK));
+ if (touchBank.length > MAX_TOUCH_BANK) {
+ printed += " (original size: " + touchBank.length + ")";
+ }
+ return printed;
+ }
+ var instrumentationCallback;
+ var ResponderTouchHistoryStore = {
+ /**
+ * Registers a listener which can be used to instrument every touch event.
+ */
+ instrument: function instrument(callback) {
+ instrumentationCallback = callback;
+ },
+ recordTouchTrack: function recordTouchTrack(topLevelType, nativeEvent) {
+ if (instrumentationCallback != null) {
+ instrumentationCallback(topLevelType, nativeEvent);
+ }
+ if (isMoveish(topLevelType)) {
+ nativeEvent.changedTouches.forEach(recordTouchMove);
+ } else if (isStartish(topLevelType)) {
+ nativeEvent.changedTouches.forEach(recordTouchStart);
+ touchHistory.numberActiveTouches = nativeEvent.touches.length;
+ if (touchHistory.numberActiveTouches === 1) {
+ touchHistory.indexOfSingleActiveTouch = nativeEvent.touches[0].identifier;
+ }
+ } else if (isEndish(topLevelType)) {
+ nativeEvent.changedTouches.forEach(recordTouchEnd);
+ touchHistory.numberActiveTouches = nativeEvent.touches.length;
+ if (touchHistory.numberActiveTouches === 1) {
+ for (var i = 0; i < touchBank.length; i++) {
+ var touchTrackToCheck = touchBank[i];
+ if (touchTrackToCheck != null && touchTrackToCheck.touchActive) {
+ touchHistory.indexOfSingleActiveTouch = i;
+ break;
+ }
+ }
+ {
+ var activeRecord = touchBank[touchHistory.indexOfSingleActiveTouch];
+ if (activeRecord == null || !activeRecord.touchActive) {
+ error("Cannot find single active touch.");
+ }
+ }
+ }
+ }
+ },
+ touchHistory: touchHistory
+ };
+
+ /**
+ * Accumulates items that must not be null or undefined.
+ *
+ * This is used to conserve memory by avoiding array allocations.
+ *
+ * @return {*|array<*>} An accumulation of items.
+ */
+
+ function accumulate(current, next) {
+ if (next == null) {
+ throw new Error("accumulate(...): Accumulated items must not be null or undefined.");
+ }
+ if (current == null) {
+ return next;
+ } // Both are not empty. Warning: Never call x.concat(y) when you are not
+ // certain that x is an Array (x could be a string with concat method).
+
+ if (isArray(current)) {
+ return current.concat(next);
+ }
+ if (isArray(next)) {
+ return [current].concat(next);
+ }
+ return [current, next];
+ }
+
+ /**
+ * Accumulates items that must not be null or undefined into the first one. This
+ * is used to conserve memory by avoiding array allocations, and thus sacrifices
+ * API cleanness. Since `current` can be null before being passed in and not
+ * null after this function, make sure to assign it back to `current`:
+ *
+ * `a = accumulateInto(a, b);`
+ *
+ * This API should be sparingly used. Try `accumulate` for something cleaner.
+ *
+ * @return {*|array<*>} An accumulation of items.
+ */
+
+ function accumulateInto(current, next) {
+ if (next == null) {
+ throw new Error("accumulateInto(...): Accumulated items must not be null or undefined.");
+ }
+ if (current == null) {
+ return next;
+ } // Both are not empty. Warning: Never call x.concat(y) when you are not
+ // certain that x is an Array (x could be a string with concat method).
+
+ if (isArray(current)) {
+ if (isArray(next)) {
+ current.push.apply(current, next);
+ return current;
+ }
+ current.push(next);
+ return current;
+ }
+ if (isArray(next)) {
+ // A bit too dangerous to mutate `next`.
+ return [current].concat(next);
+ }
+ return [current, next];
+ }
+
+ /**
+ * @param {array} arr an "accumulation" of items which is either an Array or
+ * a single item. Useful when paired with the `accumulate` module. This is a
+ * simple utility that allows us to reason about a collection of items, but
+ * handling the case when there is exactly one item (and we do not need to
+ * allocate an array).
+ * @param {function} cb Callback invoked with each element or a collection.
+ * @param {?} [scope] Scope used as `this` in a callback.
+ */
+ function forEachAccumulated(arr, cb, scope) {
+ if (Array.isArray(arr)) {
+ arr.forEach(cb, scope);
+ } else if (arr) {
+ cb.call(scope, arr);
+ }
+ }
+ var FunctionComponent = 0;
+ var ClassComponent = 1;
+ var IndeterminateComponent = 2; // Before we know whether it is function or class
+
+ var HostRoot = 3; // Root of a host tree. Could be nested inside another node.
+
+ var HostPortal = 4; // A subtree. Could be an entry point to a different renderer.
+
+ var HostComponent = 5;
+ var HostText = 6;
+ var Fragment = 7;
+ var Mode = 8;
+ var ContextConsumer = 9;
+ var ContextProvider = 10;
+ var ForwardRef = 11;
+ var Profiler = 12;
+ var SuspenseComponent = 13;
+ var MemoComponent = 14;
+ var SimpleMemoComponent = 15;
+ var LazyComponent = 16;
+ var IncompleteClassComponent = 17;
+ var DehydratedFragment = 18;
+ var SuspenseListComponent = 19;
+ var ScopeComponent = 21;
+ var OffscreenComponent = 22;
+ var LegacyHiddenComponent = 23;
+ var CacheComponent = 24;
+ var TracingMarkerComponent = 25;
+
+ /**
+ * Instance of element that should respond to touch/move types of interactions,
+ * as indicated explicitly by relevant callbacks.
+ */
+
+ var responderInst = null;
+ /**
+ * Count of current touches. A textInput should become responder iff the
+ * selection changes while there is a touch on the screen.
+ */
+
+ var trackedTouchCount = 0;
+ var changeResponder = function changeResponder(nextResponderInst, blockHostResponder) {
+ var oldResponderInst = responderInst;
+ responderInst = nextResponderInst;
+ if (ResponderEventPlugin.GlobalResponderHandler !== null) {
+ ResponderEventPlugin.GlobalResponderHandler.onChange(oldResponderInst, nextResponderInst, blockHostResponder);
+ }
+ };
+ var eventTypes = {
+ /**
+ * On a `touchStart`/`mouseDown`, is it desired that this element become the
+ * responder?
+ */
+ startShouldSetResponder: {
+ phasedRegistrationNames: {
+ bubbled: "onStartShouldSetResponder",
+ captured: "onStartShouldSetResponderCapture"
+ },
+ dependencies: startDependencies
+ },
+ /**
+ * On a `scroll`, is it desired that this element become the responder? This
+ * is usually not needed, but should be used to retroactively infer that a
+ * `touchStart` had occurred during momentum scroll. During a momentum scroll,
+ * a touch start will be immediately followed by a scroll event if the view is
+ * currently scrolling.
+ *
+ * TODO: This shouldn't bubble.
+ */
+ scrollShouldSetResponder: {
+ phasedRegistrationNames: {
+ bubbled: "onScrollShouldSetResponder",
+ captured: "onScrollShouldSetResponderCapture"
+ },
+ dependencies: [TOP_SCROLL]
+ },
+ /**
+ * On text selection change, should this element become the responder? This
+ * is needed for text inputs or other views with native selection, so the
+ * JS view can claim the responder.
+ *
+ * TODO: This shouldn't bubble.
+ */
+ selectionChangeShouldSetResponder: {
+ phasedRegistrationNames: {
+ bubbled: "onSelectionChangeShouldSetResponder",
+ captured: "onSelectionChangeShouldSetResponderCapture"
+ },
+ dependencies: [TOP_SELECTION_CHANGE]
+ },
+ /**
+ * On a `touchMove`/`mouseMove`, is it desired that this element become the
+ * responder?
+ */
+ moveShouldSetResponder: {
+ phasedRegistrationNames: {
+ bubbled: "onMoveShouldSetResponder",
+ captured: "onMoveShouldSetResponderCapture"
+ },
+ dependencies: moveDependencies
+ },
+ /**
+ * Direct responder events dispatched directly to responder. Do not bubble.
+ */
+ responderStart: {
+ registrationName: "onResponderStart",
+ dependencies: startDependencies
+ },
+ responderMove: {
+ registrationName: "onResponderMove",
+ dependencies: moveDependencies
+ },
+ responderEnd: {
+ registrationName: "onResponderEnd",
+ dependencies: endDependencies
+ },
+ responderRelease: {
+ registrationName: "onResponderRelease",
+ dependencies: endDependencies
+ },
+ responderTerminationRequest: {
+ registrationName: "onResponderTerminationRequest",
+ dependencies: []
+ },
+ responderGrant: {
+ registrationName: "onResponderGrant",
+ dependencies: []
+ },
+ responderReject: {
+ registrationName: "onResponderReject",
+ dependencies: []
+ },
+ responderTerminate: {
+ registrationName: "onResponderTerminate",
+ dependencies: []
+ }
+ }; // Start of inline: the below functions were inlined from
+ // EventPropagator.js, as they deviated from ReactDOM's newer
+ // implementations.
+
+ function getParent(inst) {
+ do {
+ inst = inst.return; // TODO: If this is a HostRoot we might want to bail out.
+ // That is depending on if we want nested subtrees (layers) to bubble
+ // events to their parent. We could also go through parentNode on the
+ // host node but that wouldn't work for React Native and doesn't let us
+ // do the portal feature.
+ } while (inst && inst.tag !== HostComponent);
+ if (inst) {
+ return inst;
+ }
+ return null;
+ }
+ /**
+ * Return the lowest common ancestor of A and B, or null if they are in
+ * different trees.
+ */
+
+ function getLowestCommonAncestor(instA, instB) {
+ var depthA = 0;
+ for (var tempA = instA; tempA; tempA = getParent(tempA)) {
+ depthA++;
+ }
+ var depthB = 0;
+ for (var tempB = instB; tempB; tempB = getParent(tempB)) {
+ depthB++;
+ } // If A is deeper, crawl up.
+
+ while (depthA - depthB > 0) {
+ instA = getParent(instA);
+ depthA--;
+ } // If B is deeper, crawl up.
+
+ while (depthB - depthA > 0) {
+ instB = getParent(instB);
+ depthB--;
+ } // Walk in lockstep until we find a match.
+
+ var depth = depthA;
+ while (depth--) {
+ if (instA === instB || instA === instB.alternate) {
+ return instA;
+ }
+ instA = getParent(instA);
+ instB = getParent(instB);
+ }
+ return null;
+ }
+ /**
+ * Return if A is an ancestor of B.
+ */
+
+ function isAncestor(instA, instB) {
+ while (instB) {
+ if (instA === instB || instA === instB.alternate) {
+ return true;
+ }
+ instB = getParent(instB);
+ }
+ return false;
+ }
+ /**
+ * Simulates the traversal of a two-phase, capture/bubble event dispatch.
+ */
+
+ function traverseTwoPhase(inst, fn, arg) {
+ var path = [];
+ while (inst) {
+ path.push(inst);
+ inst = getParent(inst);
+ }
+ var i;
+ for (i = path.length; i-- > 0;) {
+ fn(path[i], "captured", arg);
+ }
+ for (i = 0; i < path.length; i++) {
+ fn(path[i], "bubbled", arg);
+ }
+ }
+ function getListener(inst, registrationName) {
+ var stateNode = inst.stateNode;
+ if (stateNode === null) {
+ // Work in progress (ex: onload events in incremental mode).
+ return null;
+ }
+ var props = getFiberCurrentPropsFromNode(stateNode);
+ if (props === null) {
+ // Work in progress.
+ return null;
+ }
+ var listener = props[registrationName];
+ if (listener && typeof listener !== "function") {
+ throw new Error("Expected `" + registrationName + "` listener to be a function, instead got a value of `" + typeof listener + "` type.");
+ }
+ return listener;
+ }
+ function listenerAtPhase(inst, event, propagationPhase) {
+ var registrationName = event.dispatchConfig.phasedRegistrationNames[propagationPhase];
+ return getListener(inst, registrationName);
+ }
+ function accumulateDirectionalDispatches(inst, phase, event) {
+ {
+ if (!inst) {
+ error("Dispatching inst must not be null");
+ }
+ }
+ var listener = listenerAtPhase(inst, event, phase);
+ if (listener) {
+ event._dispatchListeners = accumulateInto(event._dispatchListeners, listener);
+ event._dispatchInstances = accumulateInto(event._dispatchInstances, inst);
+ }
+ }
+ /**
+ * Accumulates without regard to direction, does not look for phased
+ * registration names. Same as `accumulateDirectDispatchesSingle` but without
+ * requiring that the `dispatchMarker` be the same as the dispatched ID.
+ */
+
+ function accumulateDispatches(inst, ignoredDirection, event) {
+ if (inst && event && event.dispatchConfig.registrationName) {
+ var registrationName = event.dispatchConfig.registrationName;
+ var listener = getListener(inst, registrationName);
+ if (listener) {
+ event._dispatchListeners = accumulateInto(event._dispatchListeners, listener);
+ event._dispatchInstances = accumulateInto(event._dispatchInstances, inst);
+ }
+ }
+ }
+ /**
+ * Accumulates dispatches on an `SyntheticEvent`, but only for the
+ * `dispatchMarker`.
+ * @param {SyntheticEvent} event
+ */
+
+ function accumulateDirectDispatchesSingle(event) {
+ if (event && event.dispatchConfig.registrationName) {
+ accumulateDispatches(event._targetInst, null, event);
+ }
+ }
+ function accumulateDirectDispatches(events) {
+ forEachAccumulated(events, accumulateDirectDispatchesSingle);
+ }
+ function accumulateTwoPhaseDispatchesSingleSkipTarget(event) {
+ if (event && event.dispatchConfig.phasedRegistrationNames) {
+ var targetInst = event._targetInst;
+ var parentInst = targetInst ? getParent(targetInst) : null;
+ traverseTwoPhase(parentInst, accumulateDirectionalDispatches, event);
+ }
+ }
+ function accumulateTwoPhaseDispatchesSkipTarget(events) {
+ forEachAccumulated(events, accumulateTwoPhaseDispatchesSingleSkipTarget);
+ }
+ function accumulateTwoPhaseDispatchesSingle(event) {
+ if (event && event.dispatchConfig.phasedRegistrationNames) {
+ traverseTwoPhase(event._targetInst, accumulateDirectionalDispatches, event);
+ }
+ }
+ function accumulateTwoPhaseDispatches(events) {
+ forEachAccumulated(events, accumulateTwoPhaseDispatchesSingle);
+ } // End of inline
+
+ /**
+ *
+ * Responder System:
+ * ----------------
+ *
+ * - A global, solitary "interaction lock" on a view.
+ * - If a node becomes the responder, it should convey visual feedback
+ * immediately to indicate so, either by highlighting or moving accordingly.
+ * - To be the responder means, that touches are exclusively important to that
+ * responder view, and no other view.
+ * - While touches are still occurring, the responder lock can be transferred to
+ * a new view, but only to increasingly "higher" views (meaning ancestors of
+ * the current responder).
+ *
+ * Responder being granted:
+ * ------------------------
+ *
+ * - Touch starts, moves, and scrolls can cause an ID to become the responder.
+ * - We capture/bubble `startShouldSetResponder`/`moveShouldSetResponder` to
+ * the "appropriate place".
+ * - If nothing is currently the responder, the "appropriate place" is the
+ * initiating event's `targetID`.
+ * - If something *is* already the responder, the "appropriate place" is the
+ * first common ancestor of the event target and the current `responderInst`.
+ * - Some negotiation happens: See the timing diagram below.
+ * - Scrolled views automatically become responder. The reasoning is that a
+ * platform scroll view that isn't built on top of the responder system has
+ * began scrolling, and the active responder must now be notified that the
+ * interaction is no longer locked to it - the system has taken over.
+ *
+ * - Responder being released:
+ * As soon as no more touches that *started* inside of descendants of the
+ * *current* responderInst, an `onResponderRelease` event is dispatched to the
+ * current responder, and the responder lock is released.
+ *
+ * TODO:
+ * - on "end", a callback hook for `onResponderEndShouldRemainResponder` that
+ * determines if the responder lock should remain.
+ * - If a view shouldn't "remain" the responder, any active touches should by
+ * default be considered "dead" and do not influence future negotiations or
+ * bubble paths. It should be as if those touches do not exist.
+ * -- For multitouch: Usually a translate-z will choose to "remain" responder
+ * after one out of many touches ended. For translate-y, usually the view
+ * doesn't wish to "remain" responder after one of many touches end.
+ * - Consider building this on top of a `stopPropagation` model similar to
+ * `W3C` events.
+ * - Ensure that `onResponderTerminate` is called on touch cancels, whether or
+ * not `onResponderTerminationRequest` returns `true` or `false`.
+ *
+ */
+
+ /* Negotiation Performed
+ +-----------------------+
+ / \
+ Process low level events to + Current Responder + wantsResponderID
+ determine who to perform negot-| (if any exists at all) |
+ iation/transition | Otherwise just pass through|
+ -------------------------------+----------------------------+------------------+
+ Bubble to find first ID | |
+ to return true:wantsResponderID| |
+ | |
+ +-------------+ | |
+ | onTouchStart| | |
+ +------+------+ none | |
+ | return| |
+ +-----------v-------------+true| +------------------------+ |
+ |onStartShouldSetResponder|----->|onResponderStart (cur) |<-----------+
+ +-----------+-------------+ | +------------------------+ | |
+ | | | +--------+-------+
+ | returned true for| false:REJECT +-------->|onResponderReject
+ | wantsResponderID | | | +----------------+
+ | (now attempt | +------------------+-----+ |
+ | handoff) | | onResponder | |
+ +------------------->| TerminationRequest| |
+ | +------------------+-----+ |
+ | | | +----------------+
+ | true:GRANT +-------->|onResponderGrant|
+ | | +--------+-------+
+ | +------------------------+ | |
+ | | onResponderTerminate |<-----------+
+ | +------------------+-----+ |
+ | | | +----------------+
+ | +-------->|onResponderStart|
+ | | +----------------+
+ Bubble to find first ID | |
+ to return true:wantsResponderID| |
+ | |
+ +-------------+ | |
+ | onTouchMove | | |
+ +------+------+ none | |
+ | return| |
+ +-----------v-------------+true| +------------------------+ |
+ |onMoveShouldSetResponder |----->|onResponderMove (cur) |<-----------+
+ +-----------+-------------+ | +------------------------+ | |
+ | | | +--------+-------+
+ | returned true for| false:REJECT +-------->|onResponderRejec|
+ | wantsResponderID | | | +----------------+
+ | (now attempt | +------------------+-----+ |
+ | handoff) | | onResponder | |
+ +------------------->| TerminationRequest| |
+ | +------------------+-----+ |
+ | | | +----------------+
+ | true:GRANT +-------->|onResponderGrant|
+ | | +--------+-------+
+ | +------------------------+ | |
+ | | onResponderTerminate |<-----------+
+ | +------------------+-----+ |
+ | | | +----------------+
+ | +-------->|onResponderMove |
+ | | +----------------+
+ | |
+ | |
+ Some active touch started| |
+ inside current responder | +------------------------+ |
+ +------------------------->| onResponderEnd | |
+ | | +------------------------+ |
+ +---+---------+ | |
+ | onTouchEnd | | |
+ +---+---------+ | |
+ | | +------------------------+ |
+ +------------------------->| onResponderEnd | |
+ No active touches started| +-----------+------------+ |
+ inside current responder | | |
+ | v |
+ | +------------------------+ |
+ | | onResponderRelease | |
+ | +------------------------+ |
+ | |
+ + + */
+
+ /**
+ * A note about event ordering in the `EventPluginRegistry`.
+ *
+ * Suppose plugins are injected in the following order:
+ *
+ * `[R, S, C]`
+ *
+ * To help illustrate the example, assume `S` is `SimpleEventPlugin` (for
+ * `onClick` etc) and `R` is `ResponderEventPlugin`.
+ *
+ * "Deferred-Dispatched Events":
+ *
+ * - The current event plugin system will traverse the list of injected plugins,
+ * in order, and extract events by collecting the plugin's return value of
+ * `extractEvents()`.
+ * - These events that are returned from `extractEvents` are "deferred
+ * dispatched events".
+ * - When returned from `extractEvents`, deferred-dispatched events contain an
+ * "accumulation" of deferred dispatches.
+ * - These deferred dispatches are accumulated/collected before they are
+ * returned, but processed at a later time by the `EventPluginRegistry` (hence the
+ * name deferred).
+ *
+ * In the process of returning their deferred-dispatched events, event plugins
+ * themselves can dispatch events on-demand without returning them from
+ * `extractEvents`. Plugins might want to do this, so that they can use event
+ * dispatching as a tool that helps them decide which events should be extracted
+ * in the first place.
+ *
+ * "On-Demand-Dispatched Events":
+ *
+ * - On-demand-dispatched events are not returned from `extractEvents`.
+ * - On-demand-dispatched events are dispatched during the process of returning
+ * the deferred-dispatched events.
+ * - They should not have side effects.
+ * - They should be avoided, and/or eventually be replaced with another
+ * abstraction that allows event plugins to perform multiple "rounds" of event
+ * extraction.
+ *
+ * Therefore, the sequence of event dispatches becomes:
+ *
+ * - `R`s on-demand events (if any) (dispatched by `R` on-demand)
+ * - `S`s on-demand events (if any) (dispatched by `S` on-demand)
+ * - `C`s on-demand events (if any) (dispatched by `C` on-demand)
+ * - `R`s extracted events (if any) (dispatched by `EventPluginRegistry`)
+ * - `S`s extracted events (if any) (dispatched by `EventPluginRegistry`)
+ * - `C`s extracted events (if any) (dispatched by `EventPluginRegistry`)
+ *
+ * In the case of `ResponderEventPlugin`: If the `startShouldSetResponder`
+ * on-demand dispatch returns `true` (and some other details are satisfied) the
+ * `onResponderGrant` deferred dispatched event is returned from
+ * `extractEvents`. The sequence of dispatch executions in this case
+ * will appear as follows:
+ *
+ * - `startShouldSetResponder` (`ResponderEventPlugin` dispatches on-demand)
+ * - `touchStartCapture` (`EventPluginRegistry` dispatches as usual)
+ * - `touchStart` (`EventPluginRegistry` dispatches as usual)
+ * - `responderGrant/Reject` (`EventPluginRegistry` dispatches as usual)
+ */
+
+ function setResponderAndExtractTransfer(topLevelType, targetInst, nativeEvent, nativeEventTarget) {
+ var shouldSetEventType = isStartish(topLevelType) ? eventTypes.startShouldSetResponder : isMoveish(topLevelType) ? eventTypes.moveShouldSetResponder : topLevelType === TOP_SELECTION_CHANGE ? eventTypes.selectionChangeShouldSetResponder : eventTypes.scrollShouldSetResponder; // TODO: stop one short of the current responder.
+
+ var bubbleShouldSetFrom = !responderInst ? targetInst : getLowestCommonAncestor(responderInst, targetInst); // When capturing/bubbling the "shouldSet" event, we want to skip the target
+ // (deepest ID) if it happens to be the current responder. The reasoning:
+ // It's strange to get an `onMoveShouldSetResponder` when you're *already*
+ // the responder.
+
+ var skipOverBubbleShouldSetFrom = bubbleShouldSetFrom === responderInst;
+ var shouldSetEvent = ResponderSyntheticEvent.getPooled(shouldSetEventType, bubbleShouldSetFrom, nativeEvent, nativeEventTarget);
+ shouldSetEvent.touchHistory = ResponderTouchHistoryStore.touchHistory;
+ if (skipOverBubbleShouldSetFrom) {
+ accumulateTwoPhaseDispatchesSkipTarget(shouldSetEvent);
+ } else {
+ accumulateTwoPhaseDispatches(shouldSetEvent);
+ }
+ var wantsResponderInst = executeDispatchesInOrderStopAtTrue(shouldSetEvent);
+ if (!shouldSetEvent.isPersistent()) {
+ shouldSetEvent.constructor.release(shouldSetEvent);
+ }
+ if (!wantsResponderInst || wantsResponderInst === responderInst) {
+ return null;
+ }
+ var extracted;
+ var grantEvent = ResponderSyntheticEvent.getPooled(eventTypes.responderGrant, wantsResponderInst, nativeEvent, nativeEventTarget);
+ grantEvent.touchHistory = ResponderTouchHistoryStore.touchHistory;
+ accumulateDirectDispatches(grantEvent);
+ var blockHostResponder = executeDirectDispatch(grantEvent) === true;
+ if (responderInst) {
+ var terminationRequestEvent = ResponderSyntheticEvent.getPooled(eventTypes.responderTerminationRequest, responderInst, nativeEvent, nativeEventTarget);
+ terminationRequestEvent.touchHistory = ResponderTouchHistoryStore.touchHistory;
+ accumulateDirectDispatches(terminationRequestEvent);
+ var shouldSwitch = !hasDispatches(terminationRequestEvent) || executeDirectDispatch(terminationRequestEvent);
+ if (!terminationRequestEvent.isPersistent()) {
+ terminationRequestEvent.constructor.release(terminationRequestEvent);
+ }
+ if (shouldSwitch) {
+ var terminateEvent = ResponderSyntheticEvent.getPooled(eventTypes.responderTerminate, responderInst, nativeEvent, nativeEventTarget);
+ terminateEvent.touchHistory = ResponderTouchHistoryStore.touchHistory;
+ accumulateDirectDispatches(terminateEvent);
+ extracted = accumulate(extracted, [grantEvent, terminateEvent]);
+ changeResponder(wantsResponderInst, blockHostResponder);
+ } else {
+ var rejectEvent = ResponderSyntheticEvent.getPooled(eventTypes.responderReject, wantsResponderInst, nativeEvent, nativeEventTarget);
+ rejectEvent.touchHistory = ResponderTouchHistoryStore.touchHistory;
+ accumulateDirectDispatches(rejectEvent);
+ extracted = accumulate(extracted, rejectEvent);
+ }
+ } else {
+ extracted = accumulate(extracted, grantEvent);
+ changeResponder(wantsResponderInst, blockHostResponder);
+ }
+ return extracted;
+ }
+ /**
+ * A transfer is a negotiation between a currently set responder and the next
+ * element to claim responder status. Any start event could trigger a transfer
+ * of responderInst. Any move event could trigger a transfer.
+ *
+ * @param {string} topLevelType Record from `BrowserEventConstants`.
+ * @return {boolean} True if a transfer of responder could possibly occur.
+ */
+
+ function canTriggerTransfer(topLevelType, topLevelInst, nativeEvent) {
+ return topLevelInst && (
+ // responderIgnoreScroll: We are trying to migrate away from specifically
+ // tracking native scroll events here and responderIgnoreScroll indicates we
+ // will send topTouchCancel to handle canceling touch events instead
+ topLevelType === TOP_SCROLL && !nativeEvent.responderIgnoreScroll || trackedTouchCount > 0 && topLevelType === TOP_SELECTION_CHANGE || isStartish(topLevelType) || isMoveish(topLevelType));
+ }
+ /**
+ * Returns whether or not this touch end event makes it such that there are no
+ * longer any touches that started inside of the current `responderInst`.
+ *
+ * @param {NativeEvent} nativeEvent Native touch end event.
+ * @return {boolean} Whether or not this touch end event ends the responder.
+ */
+
+ function noResponderTouches(nativeEvent) {
+ var touches = nativeEvent.touches;
+ if (!touches || touches.length === 0) {
+ return true;
+ }
+ for (var i = 0; i < touches.length; i++) {
+ var activeTouch = touches[i];
+ var target = activeTouch.target;
+ if (target !== null && target !== undefined && target !== 0) {
+ // Is the original touch location inside of the current responder?
+ var targetInst = getInstanceFromNode(target);
+ if (isAncestor(responderInst, targetInst)) {
+ return false;
+ }
+ }
+ }
+ return true;
+ }
+ var ResponderEventPlugin = {
+ /* For unit testing only */
+ _getResponder: function _getResponder() {
+ return responderInst;
+ },
+ eventTypes: eventTypes,
+ /**
+ * We must be resilient to `targetInst` being `null` on `touchMove` or
+ * `touchEnd`. On certain platforms, this means that a native scroll has
+ * assumed control and the original touch targets are destroyed.
+ */
+ extractEvents: function extractEvents(topLevelType, targetInst, nativeEvent, nativeEventTarget, eventSystemFlags) {
+ if (isStartish(topLevelType)) {
+ trackedTouchCount += 1;
+ } else if (isEndish(topLevelType)) {
+ if (trackedTouchCount >= 0) {
+ trackedTouchCount -= 1;
+ } else {
+ {
+ warn("Ended a touch event which was not counted in `trackedTouchCount`.");
+ }
+ return null;
+ }
+ }
+ ResponderTouchHistoryStore.recordTouchTrack(topLevelType, nativeEvent);
+ var extracted = canTriggerTransfer(topLevelType, targetInst, nativeEvent) ? setResponderAndExtractTransfer(topLevelType, targetInst, nativeEvent, nativeEventTarget) : null; // Responder may or may not have transferred on a new touch start/move.
+ // Regardless, whoever is the responder after any potential transfer, we
+ // direct all touch start/move/ends to them in the form of
+ // `onResponderMove/Start/End`. These will be called for *every* additional
+ // finger that move/start/end, dispatched directly to whoever is the
+ // current responder at that moment, until the responder is "released".
+ //
+ // These multiple individual change touch events are are always bookended
+ // by `onResponderGrant`, and one of
+ // (`onResponderRelease/onResponderTerminate`).
+
+ var isResponderTouchStart = responderInst && isStartish(topLevelType);
+ var isResponderTouchMove = responderInst && isMoveish(topLevelType);
+ var isResponderTouchEnd = responderInst && isEndish(topLevelType);
+ var incrementalTouch = isResponderTouchStart ? eventTypes.responderStart : isResponderTouchMove ? eventTypes.responderMove : isResponderTouchEnd ? eventTypes.responderEnd : null;
+ if (incrementalTouch) {
+ var gesture = ResponderSyntheticEvent.getPooled(incrementalTouch, responderInst, nativeEvent, nativeEventTarget);
+ gesture.touchHistory = ResponderTouchHistoryStore.touchHistory;
+ accumulateDirectDispatches(gesture);
+ extracted = accumulate(extracted, gesture);
+ }
+ var isResponderTerminate = responderInst && topLevelType === TOP_TOUCH_CANCEL;
+ var isResponderRelease = responderInst && !isResponderTerminate && isEndish(topLevelType) && noResponderTouches(nativeEvent);
+ var finalTouch = isResponderTerminate ? eventTypes.responderTerminate : isResponderRelease ? eventTypes.responderRelease : null;
+ if (finalTouch) {
+ var finalEvent = ResponderSyntheticEvent.getPooled(finalTouch, responderInst, nativeEvent, nativeEventTarget);
+ finalEvent.touchHistory = ResponderTouchHistoryStore.touchHistory;
+ accumulateDirectDispatches(finalEvent);
+ extracted = accumulate(extracted, finalEvent);
+ changeResponder(null);
+ }
+ return extracted;
+ },
+ GlobalResponderHandler: null,
+ injection: {
+ /**
+ * @param {{onChange: (ReactID, ReactID) => void} GlobalResponderHandler
+ * Object that handles any change in responder. Use this to inject
+ * integration with an existing touch handling system etc.
+ */
+ injectGlobalResponderHandler: function injectGlobalResponderHandler(GlobalResponderHandler) {
+ ResponderEventPlugin.GlobalResponderHandler = GlobalResponderHandler;
+ }
+ }
+ };
+
+ /**
+ * Injectable ordering of event plugins.
+ */
+ var eventPluginOrder = null;
+ /**
+ * Injectable mapping from names to event plugin modules.
+ */
+
+ var namesToPlugins = {};
+ /**
+ * Recomputes the plugin list using the injected plugins and plugin ordering.
+ *
+ * @private
+ */
+
+ function recomputePluginOrdering() {
+ if (!eventPluginOrder) {
+ // Wait until an `eventPluginOrder` is injected.
+ return;
+ }
+ for (var pluginName in namesToPlugins) {
+ var pluginModule = namesToPlugins[pluginName];
+ var pluginIndex = eventPluginOrder.indexOf(pluginName);
+ if (pluginIndex <= -1) {
+ throw new Error("EventPluginRegistry: Cannot inject event plugins that do not exist in " + ("the plugin ordering, `" + pluginName + "`."));
+ }
+ if (plugins[pluginIndex]) {
+ continue;
+ }
+ if (!pluginModule.extractEvents) {
+ throw new Error("EventPluginRegistry: Event plugins must implement an `extractEvents` " + ("method, but `" + pluginName + "` does not."));
+ }
+ plugins[pluginIndex] = pluginModule;
+ var publishedEvents = pluginModule.eventTypes;
+ for (var eventName in publishedEvents) {
+ if (!publishEventForPlugin(publishedEvents[eventName], pluginModule, eventName)) {
+ throw new Error("EventPluginRegistry: Failed to publish event `" + eventName + "` for plugin `" + pluginName + "`.");
+ }
+ }
+ }
+ }
+ /**
+ * Publishes an event so that it can be dispatched by the supplied plugin.
+ *
+ * @param {object} dispatchConfig Dispatch configuration for the event.
+ * @param {object} PluginModule Plugin publishing the event.
+ * @return {boolean} True if the event was successfully published.
+ * @private
+ */
+
+ function publishEventForPlugin(dispatchConfig, pluginModule, eventName) {
+ if (eventNameDispatchConfigs.hasOwnProperty(eventName)) {
+ throw new Error("EventPluginRegistry: More than one plugin attempted to publish the same " + ("event name, `" + eventName + "`."));
+ }
+ eventNameDispatchConfigs[eventName] = dispatchConfig;
+ var phasedRegistrationNames = dispatchConfig.phasedRegistrationNames;
+ if (phasedRegistrationNames) {
+ for (var phaseName in phasedRegistrationNames) {
+ if (phasedRegistrationNames.hasOwnProperty(phaseName)) {
+ var phasedRegistrationName = phasedRegistrationNames[phaseName];
+ publishRegistrationName(phasedRegistrationName, pluginModule, eventName);
+ }
+ }
+ return true;
+ } else if (dispatchConfig.registrationName) {
+ publishRegistrationName(dispatchConfig.registrationName, pluginModule, eventName);
+ return true;
+ }
+ return false;
+ }
+ /**
+ * Publishes a registration name that is used to identify dispatched events.
+ *
+ * @param {string} registrationName Registration name to add.
+ * @param {object} PluginModule Plugin publishing the event.
+ * @private
+ */
+
+ function publishRegistrationName(registrationName, pluginModule, eventName) {
+ if (registrationNameModules[registrationName]) {
+ throw new Error("EventPluginRegistry: More than one plugin attempted to publish the same " + ("registration name, `" + registrationName + "`."));
+ }
+ registrationNameModules[registrationName] = pluginModule;
+ registrationNameDependencies[registrationName] = pluginModule.eventTypes[eventName].dependencies;
+ {
+ var lowerCasedName = registrationName.toLowerCase();
+ }
+ }
+ /**
+ * Registers plugins so that they can extract and dispatch events.
+ */
+
+ /**
+ * Ordered list of injected plugins.
+ */
+
+ var plugins = [];
+ /**
+ * Mapping from event name to dispatch config
+ */
+
+ var eventNameDispatchConfigs = {};
+ /**
+ * Mapping from registration name to plugin module
+ */
+
+ var registrationNameModules = {};
+ /**
+ * Mapping from registration name to event name
+ */
+
+ var registrationNameDependencies = {};
+
+ /**
+ * Injects an ordering of plugins (by plugin name). This allows the ordering
+ * to be decoupled from injection of the actual plugins so that ordering is
+ * always deterministic regardless of packaging, on-the-fly injection, etc.
+ *
+ * @param {array} InjectedEventPluginOrder
+ * @internal
+ */
+
+ function injectEventPluginOrder(injectedEventPluginOrder) {
+ if (eventPluginOrder) {
+ throw new Error("EventPluginRegistry: Cannot inject event plugin ordering more than " + "once. You are likely trying to load more than one copy of React.");
+ } // Clone the ordering so it cannot be dynamically mutated.
+
+ eventPluginOrder = Array.prototype.slice.call(injectedEventPluginOrder);
+ recomputePluginOrdering();
+ }
+ /**
+ * Injects plugins to be used by plugin event system. The plugin names must be
+ * in the ordering injected by `injectEventPluginOrder`.
+ *
+ * Plugins can be injected as part of page initialization or on-the-fly.
+ *
+ * @param {object} injectedNamesToPlugins Map from names to plugin modules.
+ * @internal
+ */
+
+ function injectEventPluginsByName(injectedNamesToPlugins) {
+ var isOrderingDirty = false;
+ for (var pluginName in injectedNamesToPlugins) {
+ if (!injectedNamesToPlugins.hasOwnProperty(pluginName)) {
+ continue;
+ }
+ var pluginModule = injectedNamesToPlugins[pluginName];
+ if (!namesToPlugins.hasOwnProperty(pluginName) || namesToPlugins[pluginName] !== pluginModule) {
+ if (namesToPlugins[pluginName]) {
+ throw new Error("EventPluginRegistry: Cannot inject two different event plugins " + ("using the same name, `" + pluginName + "`."));
+ }
+ namesToPlugins[pluginName] = pluginModule;
+ isOrderingDirty = true;
+ }
+ }
+ if (isOrderingDirty) {
+ recomputePluginOrdering();
+ }
+ }
+
+ /**
+ * Get a list of listeners for a specific event, in-order.
+ * For React Native we treat the props-based function handlers
+ * as the first-class citizens, and they are always executed first
+ * for both capture and bubbling phase.
+ *
+ * We need "phase" propagated to this point to support the HostComponent
+ * EventEmitter API, which does not mutate the name of the handler based
+ * on phase (whereas prop handlers are registered as `onMyEvent` and `onMyEvent_Capture`).
+ *
+ * Native system events emitted into React Native
+ * will be emitted both to the prop handler function and to imperative event
+ * listeners.
+ *
+ * This will either return null, a single Function without an array, or
+ * an array of 2+ items.
+ */
+
+ function getListeners(inst, registrationName, phase, dispatchToImperativeListeners) {
+ var stateNode = inst.stateNode;
+ if (stateNode === null) {
+ return null;
+ } // If null: Work in progress (ex: onload events in incremental mode).
+
+ var props = getFiberCurrentPropsFromNode(stateNode);
+ if (props === null) {
+ // Work in progress.
+ return null;
+ }
+ var listener = props[registrationName];
+ if (listener && typeof listener !== "function") {
+ throw new Error("Expected `" + registrationName + "` listener to be a function, instead got a value of `" + typeof listener + "` type.");
+ } // If there are no imperative listeners, early exit.
+
+ if (!(dispatchToImperativeListeners && stateNode.canonical && stateNode.canonical._eventListeners)) {
+ return listener;
+ } // Below this is the de-optimized path.
+ // If you are using _eventListeners, we do not (yet)
+ // expect this to be as performant as the props-only path.
+ // If/when this becomes a bottleneck, it can be refactored
+ // to avoid unnecessary closures and array allocations.
+ //
+ // Previously, there was only one possible listener for an event:
+ // the onEventName property in props.
+ // Now, it is also possible to have N listeners
+ // for a specific event on a node. Thus, we accumulate all of the listeners,
+ // including the props listener, and return a function that calls them all in
+ // order, starting with the handler prop and then the listeners in order.
+ // We return either a non-empty array or null.
+
+ var listeners = [];
+ if (listener) {
+ listeners.push(listener);
+ } // TODO: for now, all of these events get an `rn:` prefix to enforce
+ // that the user knows they're only getting non-W3C-compliant events
+ // through this imperative event API.
+ // Events might not necessarily be noncompliant, but we currently have
+ // no verification that /any/ events are compliant.
+ // Thus, we prefix to ensure no collision with W3C event names.
+
+ var requestedPhaseIsCapture = phase === "captured";
+ var mangledImperativeRegistrationName = requestedPhaseIsCapture ? "rn:" + registrationName.replace(/Capture$/, "") : "rn:" + registrationName; // Get imperative event listeners for this event
+
+ if (stateNode.canonical._eventListeners[mangledImperativeRegistrationName] && stateNode.canonical._eventListeners[mangledImperativeRegistrationName].length > 0) {
+ var eventListeners = stateNode.canonical._eventListeners[mangledImperativeRegistrationName];
+ eventListeners.forEach(function (listenerObj) {
+ // Make sure phase of listener matches requested phase
+ var isCaptureEvent = listenerObj.options.capture != null && listenerObj.options.capture;
+ if (isCaptureEvent !== requestedPhaseIsCapture) {
+ return;
+ } // For now (this is an area of future optimization) we must wrap
+ // all imperative event listeners in a function to unwrap the SyntheticEvent
+ // and pass them an Event.
+ // When this API is more stable and used more frequently, we can revisit.
+
+ var listenerFnWrapper = function listenerFnWrapper(syntheticEvent) {
+ var eventInst = new ReactNativePrivateInterface.CustomEvent(mangledImperativeRegistrationName, {
+ detail: syntheticEvent.nativeEvent
+ });
+ eventInst.isTrusted = true; // setSyntheticEvent is present on the React Native Event shim.
+ // It is used to forward method calls on Event to the underlying SyntheticEvent.
+ // $FlowFixMe
+
+ eventInst.setSyntheticEvent(syntheticEvent);
+ for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
+ args[_key - 1] = arguments[_key];
+ }
+ listenerObj.listener.apply(listenerObj, [eventInst].concat(args));
+ }; // Only call once?
+ // If so, we ensure that it's only called once by setting a flag
+ // and by removing it from eventListeners once it is called (but only
+ // when it's actually been executed).
+
+ if (listenerObj.options.once) {
+ listeners.push(function () {
+ // Remove from the event listener once it's been called
+ stateNode.canonical.removeEventListener_unstable(mangledImperativeRegistrationName, listenerObj.listener, listenerObj.capture); // Guard against function being called more than once in
+ // case there are somehow multiple in-flight references to
+ // it being processed
+
+ if (!listenerObj.invalidated) {
+ listenerObj.invalidated = true;
+ listenerObj.listener.apply(listenerObj, arguments);
+ }
+ });
+ } else {
+ listeners.push(listenerFnWrapper);
+ }
+ });
+ }
+ if (listeners.length === 0) {
+ return null;
+ }
+ if (listeners.length === 1) {
+ return listeners[0];
+ }
+ return listeners;
+ }
+ var customBubblingEventTypes = ReactNativePrivateInterface.ReactNativeViewConfigRegistry.customBubblingEventTypes,
+ customDirectEventTypes = ReactNativePrivateInterface.ReactNativeViewConfigRegistry.customDirectEventTypes; // Start of inline: the below functions were inlined from
+ // EventPropagator.js, as they deviated from ReactDOM's newer
+ // implementations.
+
+ function listenersAtPhase(inst, event, propagationPhase) {
+ var registrationName = event.dispatchConfig.phasedRegistrationNames[propagationPhase];
+ return getListeners(inst, registrationName, propagationPhase, true);
+ }
+ function accumulateListenersAndInstances(inst, event, listeners) {
+ var listenersLength = listeners ? isArray(listeners) ? listeners.length : 1 : 0;
+ if (listenersLength > 0) {
+ event._dispatchListeners = accumulateInto(event._dispatchListeners, listeners); // Avoid allocating additional arrays here
+
+ if (event._dispatchInstances == null && listenersLength === 1) {
+ event._dispatchInstances = inst;
+ } else {
+ event._dispatchInstances = event._dispatchInstances || [];
+ if (!isArray(event._dispatchInstances)) {
+ event._dispatchInstances = [event._dispatchInstances];
+ }
+ for (var i = 0; i < listenersLength; i++) {
+ event._dispatchInstances.push(inst);
+ }
+ }
+ }
+ }
+ function accumulateDirectionalDispatches$1(inst, phase, event) {
+ {
+ if (!inst) {
+ error("Dispatching inst must not be null");
+ }
+ }
+ var listeners = listenersAtPhase(inst, event, phase);
+ accumulateListenersAndInstances(inst, event, listeners);
+ }
+ function getParent$1(inst) {
+ do {
+ inst = inst.return; // TODO: If this is a HostRoot we might want to bail out.
+ // That is depending on if we want nested subtrees (layers) to bubble
+ // events to their parent. We could also go through parentNode on the
+ // host node but that wouldn't work for React Native and doesn't let us
+ // do the portal feature.
+ } while (inst && inst.tag !== HostComponent);
+ if (inst) {
+ return inst;
+ }
+ return null;
+ }
+ /**
+ * Simulates the traversal of a two-phase, capture/bubble event dispatch.
+ */
+
+ function traverseTwoPhase$1(inst, fn, arg, skipBubbling) {
+ var path = [];
+ while (inst) {
+ path.push(inst);
+ inst = getParent$1(inst);
+ }
+ var i;
+ for (i = path.length; i-- > 0;) {
+ fn(path[i], "captured", arg);
+ }
+ if (skipBubbling) {
+ // Dispatch on target only
+ fn(path[0], "bubbled", arg);
+ } else {
+ for (i = 0; i < path.length; i++) {
+ fn(path[i], "bubbled", arg);
+ }
+ }
+ }
+ function accumulateTwoPhaseDispatchesSingle$1(event) {
+ if (event && event.dispatchConfig.phasedRegistrationNames) {
+ traverseTwoPhase$1(event._targetInst, accumulateDirectionalDispatches$1, event, false);
+ }
+ }
+ function accumulateTwoPhaseDispatches$1(events) {
+ forEachAccumulated(events, accumulateTwoPhaseDispatchesSingle$1);
+ }
+ function accumulateCapturePhaseDispatches(event) {
+ if (event && event.dispatchConfig.phasedRegistrationNames) {
+ traverseTwoPhase$1(event._targetInst, accumulateDirectionalDispatches$1, event, true);
+ }
+ }
+ /**
+ * Accumulates without regard to direction, does not look for phased
+ * registration names. Same as `accumulateDirectDispatchesSingle` but without
+ * requiring that the `dispatchMarker` be the same as the dispatched ID.
+ */
+
+ function accumulateDispatches$1(inst, ignoredDirection, event) {
+ if (inst && event && event.dispatchConfig.registrationName) {
+ var registrationName = event.dispatchConfig.registrationName;
+ var listeners = getListeners(inst, registrationName, "bubbled", false);
+ accumulateListenersAndInstances(inst, event, listeners);
+ }
+ }
+ /**
+ * Accumulates dispatches on an `SyntheticEvent`, but only for the
+ * `dispatchMarker`.
+ * @param {SyntheticEvent} event
+ */
+
+ function accumulateDirectDispatchesSingle$1(event) {
+ if (event && event.dispatchConfig.registrationName) {
+ accumulateDispatches$1(event._targetInst, null, event);
+ }
+ }
+ function accumulateDirectDispatches$1(events) {
+ forEachAccumulated(events, accumulateDirectDispatchesSingle$1);
+ } // End of inline
+
+ var ReactNativeBridgeEventPlugin = {
+ eventTypes: {},
+ extractEvents: function extractEvents(topLevelType, targetInst, nativeEvent, nativeEventTarget) {
+ if (targetInst == null) {
+ // Probably a node belonging to another renderer's tree.
+ return null;
+ }
+ var bubbleDispatchConfig = customBubblingEventTypes[topLevelType];
+ var directDispatchConfig = customDirectEventTypes[topLevelType];
+ if (!bubbleDispatchConfig && !directDispatchConfig) {
+ throw new Error(
+ // $FlowFixMe - Flow doesn't like this string coercion because DOMTopLevelEventType is opaque
+ 'Unsupported top level event type "' + topLevelType + '" dispatched');
+ }
+ var event = SyntheticEvent.getPooled(bubbleDispatchConfig || directDispatchConfig, targetInst, nativeEvent, nativeEventTarget);
+ if (bubbleDispatchConfig) {
+ var skipBubbling = event != null && event.dispatchConfig.phasedRegistrationNames != null && event.dispatchConfig.phasedRegistrationNames.skipBubbling;
+ if (skipBubbling) {
+ accumulateCapturePhaseDispatches(event);
+ } else {
+ accumulateTwoPhaseDispatches$1(event);
+ }
+ } else if (directDispatchConfig) {
+ accumulateDirectDispatches$1(event);
+ } else {
+ return null;
+ }
+ return event;
+ }
+ };
+ var ReactNativeEventPluginOrder = ["ResponderEventPlugin", "ReactNativeBridgeEventPlugin"];
+
+ /**
+ * Make sure essential globals are available and are patched correctly. Please don't remove this
+ * line. Bundles created by react-packager `require` it before executing any application code. This
+ * ensures it exists in the dependency graph and can be `require`d.
+ * TODO: require this in packager, not in React #10932517
+ */
+ /**
+ * Inject module for resolving DOM hierarchy and plugin ordering.
+ */
+
+ injectEventPluginOrder(ReactNativeEventPluginOrder);
+ /**
+ * Some important event plugins included by default (without having to require
+ * them).
+ */
+
+ injectEventPluginsByName({
+ ResponderEventPlugin: ResponderEventPlugin,
+ ReactNativeBridgeEventPlugin: ReactNativeBridgeEventPlugin
+ });
+ function getInstanceFromInstance(instanceHandle) {
+ return instanceHandle;
+ }
+ function getTagFromInstance(inst) {
+ var nativeInstance = inst.stateNode.canonical;
+ if (!nativeInstance._nativeTag) {
+ throw new Error("All native instances should have a tag.");
+ }
+ return nativeInstance;
+ }
+ function getFiberCurrentPropsFromNode$1(inst) {
+ return inst.canonical.currentProps;
+ }
+
+ // Module provided by RN:
+ var ReactFabricGlobalResponderHandler = {
+ onChange: function onChange(from, to, blockNativeResponder) {
+ var fromOrTo = from || to;
+ var fromOrToStateNode = fromOrTo && fromOrTo.stateNode;
+ var isFabric = !!(fromOrToStateNode && fromOrToStateNode.canonical._internalInstanceHandle);
+ if (isFabric) {
+ if (from) {
+ // equivalent to clearJSResponder
+ nativeFabricUIManager.setIsJSResponder(from.stateNode.node, false, blockNativeResponder || false);
+ }
+ if (to) {
+ // equivalent to setJSResponder
+ nativeFabricUIManager.setIsJSResponder(to.stateNode.node, true, blockNativeResponder || false);
+ }
+ } else {
+ if (to !== null) {
+ var tag = to.stateNode.canonical._nativeTag;
+ ReactNativePrivateInterface.UIManager.setJSResponder(tag, blockNativeResponder);
+ } else {
+ ReactNativePrivateInterface.UIManager.clearJSResponder();
+ }
+ }
+ }
+ };
+ setComponentTree(getFiberCurrentPropsFromNode$1, getInstanceFromInstance, getTagFromInstance);
+ ResponderEventPlugin.injection.injectGlobalResponderHandler(ReactFabricGlobalResponderHandler);
+
+ /**
+ * `ReactInstanceMap` maintains a mapping from a public facing stateful
+ * instance (key) and the internal representation (value). This allows public
+ * methods to accept the user facing instance as an argument and map them back
+ * to internal methods.
+ *
+ * Note that this module is currently shared and assumed to be stateless.
+ * If this becomes an actual Map, that will break.
+ */
+ function get(key) {
+ return key._reactInternals;
+ }
+ function set(key, value) {
+ key._reactInternals = value;
+ }
+ var enableSchedulingProfiler = false;
+ var enableProfilerTimer = true;
+ var enableProfilerCommitHooks = true;
+ var warnAboutStringRefs = false;
+ var enableSuspenseAvoidThisFallback = false;
+ var enableNewReconciler = false;
+ var enableLazyContextPropagation = false;
+ var enableLegacyHidden = false;
+
+ // ATTENTION
+ // When adding new symbols to this file,
+ // Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols'
+ // The Symbol used to tag the ReactElement-like types.
+ var REACT_ELEMENT_TYPE = Symbol.for("react.element");
+ var REACT_PORTAL_TYPE = Symbol.for("react.portal");
+ var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
+ var REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode");
+ var REACT_PROFILER_TYPE = Symbol.for("react.profiler");
+ var REACT_PROVIDER_TYPE = Symbol.for("react.provider");
+ var REACT_CONTEXT_TYPE = Symbol.for("react.context");
+ var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref");
+ var REACT_SUSPENSE_TYPE = Symbol.for("react.suspense");
+ var REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list");
+ var REACT_MEMO_TYPE = Symbol.for("react.memo");
+ var REACT_LAZY_TYPE = Symbol.for("react.lazy");
+ var REACT_SCOPE_TYPE = Symbol.for("react.scope");
+ var REACT_DEBUG_TRACING_MODE_TYPE = Symbol.for("react.debug_trace_mode");
+ var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
+ var REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden");
+ var REACT_CACHE_TYPE = Symbol.for("react.cache");
+ var REACT_TRACING_MARKER_TYPE = Symbol.for("react.tracing_marker");
+ var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
+ var FAUX_ITERATOR_SYMBOL = "@@iterator";
+ function getIteratorFn(maybeIterable) {
+ if (maybeIterable === null || typeof maybeIterable !== "object") {
+ return null;
+ }
+ var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];
+ if (typeof maybeIterator === "function") {
+ return maybeIterator;
+ }
+ return null;
+ }
+ function getWrappedName(outerType, innerType, wrapperName) {
+ var displayName = outerType.displayName;
+ if (displayName) {
+ return displayName;
+ }
+ var functionName = innerType.displayName || innerType.name || "";
+ return functionName !== "" ? wrapperName + "(" + functionName + ")" : wrapperName;
+ } // Keep in sync with react-reconciler/getComponentNameFromFiber
+
+ function getContextName(type) {
+ return type.displayName || "Context";
+ } // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.
+
+ function getComponentNameFromType(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 getComponentNameFromType(). " + "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:
+ return "Fragment";
+ case REACT_PORTAL_TYPE:
+ return "Portal";
+ case REACT_PROFILER_TYPE:
+ return "Profiler";
+ case REACT_STRICT_MODE_TYPE:
+ return "StrictMode";
+ case REACT_SUSPENSE_TYPE:
+ return "Suspense";
+ case REACT_SUSPENSE_LIST_TYPE:
+ return "SuspenseList";
+ }
+ if (typeof type === "object") {
+ switch (type.$$typeof) {
+ case REACT_CONTEXT_TYPE:
+ var context = type;
+ return getContextName(context) + ".Consumer";
+ case REACT_PROVIDER_TYPE:
+ var provider = type;
+ return getContextName(provider._context) + ".Provider";
+ case REACT_FORWARD_REF_TYPE:
+ return getWrappedName(type, type.render, "ForwardRef");
+ case REACT_MEMO_TYPE:
+ var outerName = type.displayName || null;
+ if (outerName !== null) {
+ return outerName;
+ }
+ return getComponentNameFromType(type.type) || "Memo";
+ case REACT_LAZY_TYPE:
+ {
+ var lazyComponent = type;
+ var payload = lazyComponent._payload;
+ var init = lazyComponent._init;
+ try {
+ return getComponentNameFromType(init(payload));
+ } catch (x) {
+ return null;
+ }
+ }
+
+ // eslint-disable-next-line no-fallthrough
+ }
+ }
+ return null;
+ }
+ function getWrappedName$1(outerType, innerType, wrapperName) {
+ var functionName = innerType.displayName || innerType.name || "";
+ return outerType.displayName || (functionName !== "" ? wrapperName + "(" + functionName + ")" : wrapperName);
+ } // Keep in sync with shared/getComponentNameFromType
+
+ function getContextName$1(type) {
+ return type.displayName || "Context";
+ }
+ function getComponentNameFromFiber(fiber) {
+ var tag = fiber.tag,
+ type = fiber.type;
+ switch (tag) {
+ case CacheComponent:
+ return "Cache";
+ case ContextConsumer:
+ var context = type;
+ return getContextName$1(context) + ".Consumer";
+ case ContextProvider:
+ var provider = type;
+ return getContextName$1(provider._context) + ".Provider";
+ case DehydratedFragment:
+ return "DehydratedFragment";
+ case ForwardRef:
+ return getWrappedName$1(type, type.render, "ForwardRef");
+ case Fragment:
+ return "Fragment";
+ case HostComponent:
+ // Host component type is the display name (e.g. "div", "View")
+ return type;
+ case HostPortal:
+ return "Portal";
+ case HostRoot:
+ return "Root";
+ case HostText:
+ return "Text";
+ case LazyComponent:
+ // Name comes from the type in this case; we don't have a tag.
+ return getComponentNameFromType(type);
+ case Mode:
+ if (type === REACT_STRICT_MODE_TYPE) {
+ // Don't be less specific than shared/getComponentNameFromType
+ return "StrictMode";
+ }
+ return "Mode";
+ case OffscreenComponent:
+ return "Offscreen";
+ case Profiler:
+ return "Profiler";
+ case ScopeComponent:
+ return "Scope";
+ case SuspenseComponent:
+ return "Suspense";
+ case SuspenseListComponent:
+ return "SuspenseList";
+ case TracingMarkerComponent:
+ return "TracingMarker";
+ // The display name for this tags come from the user-provided type:
+
+ case ClassComponent:
+ case FunctionComponent:
+ case IncompleteClassComponent:
+ case IndeterminateComponent:
+ case MemoComponent:
+ case SimpleMemoComponent:
+ if (typeof type === "function") {
+ return type.displayName || type.name || null;
+ }
+ if (typeof type === "string") {
+ return type;
+ }
+ break;
+ }
+ return null;
+ }
+
+ // Don't change these two values. They're used by React Dev Tools.
+ var NoFlags = /* */
+ 0;
+ var PerformedWork = /* */
+ 1; // You can change the rest (and add more).
+
+ var Placement = /* */
+ 2;
+ var Update = /* */
+ 4;
+ var ChildDeletion = /* */
+ 16;
+ var ContentReset = /* */
+ 32;
+ var Callback = /* */
+ 64;
+ var DidCapture = /* */
+ 128;
+ var ForceClientRender = /* */
+ 256;
+ var Ref = /* */
+ 512;
+ var Snapshot = /* */
+ 1024;
+ var Passive = /* */
+ 2048;
+ var Hydrating = /* */
+ 4096;
+ var Visibility = /* */
+ 8192;
+ var StoreConsistency = /* */
+ 16384;
+ var LifecycleEffectMask = Passive | Update | Callback | Ref | Snapshot | StoreConsistency; // Union of all commit flags (flags with the lifetime of a particular commit)
+
+ var HostEffectMask = /* */
+ 32767; // These are not really side effects, but we still reuse this field.
+
+ var Incomplete = /* */
+ 32768;
+ var ShouldCapture = /* */
+ 65536;
+ var ForceUpdateForLegacySuspense = /* */
+ 131072;
+ var Forked = /* */
+ 1048576; // Static tags describe aspects of a fiber that are not specific to a render,
+ // e.g. a fiber uses a passive effect (even if there are no updates on this particular render).
+ // This enables us to defer more work in the unmount case,
+ // since we can defer traversing the tree during layout to look for Passive effects,
+ // and instead rely on the static flag as a signal that there may be cleanup work.
+
+ var RefStatic = /* */
+ 2097152;
+ var LayoutStatic = /* */
+ 4194304;
+ var PassiveStatic = /* */
+ 8388608; // These flags allow us to traverse to fibers that have effects on mount
+ // don't contain effects, by checking subtreeFlags.
+
+ var BeforeMutationMask =
+ // TODO: Remove Update flag from before mutation phase by re-landing Visibility
+ // flag logic (see #20043)
+ Update | Snapshot | 0;
+ var MutationMask = Placement | Update | ChildDeletion | ContentReset | Ref | Hydrating | Visibility;
+ var LayoutMask = Update | Callback | Ref | Visibility; // TODO: Split into PassiveMountMask and PassiveUnmountMask
+
+ var PassiveMask = Passive | ChildDeletion; // Union of tags that don't get reset on clones.
+ // This allows certain concepts to persist without recalculating them,
+ // e.g. whether a subtree contains passive effects or portals.
+
+ var StaticMask = LayoutStatic | PassiveStatic | RefStatic;
+ var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;
+ function getNearestMountedFiber(fiber) {
+ var node = fiber;
+ var nearestMounted = fiber;
+ if (!fiber.alternate) {
+ // If there is no alternate, this might be a new tree that isn't inserted
+ // yet. If it is, then it will have a pending insertion effect on it.
+ var nextNode = node;
+ do {
+ node = nextNode;
+ if ((node.flags & (Placement | Hydrating)) !== NoFlags) {
+ // This is an insertion or in-progress hydration. The nearest possible
+ // mounted fiber is the parent but we need to continue to figure out
+ // if that one is still mounted.
+ nearestMounted = node.return;
+ }
+ nextNode = node.return;
+ } while (nextNode);
+ } else {
+ while (node.return) {
+ node = node.return;
+ }
+ }
+ if (node.tag === HostRoot) {
+ // TODO: Check if this was a nested HostRoot when used with
+ // renderContainerIntoSubtree.
+ return nearestMounted;
+ } // If we didn't hit the root, that means that we're in an disconnected tree
+ // that has been unmounted.
+
+ return null;
+ }
+ function isFiberMounted(fiber) {
+ return getNearestMountedFiber(fiber) === fiber;
+ }
+ function isMounted(component) {
+ {
+ var owner = ReactCurrentOwner.current;
+ if (owner !== null && owner.tag === ClassComponent) {
+ var ownerFiber = owner;
+ var instance = ownerFiber.stateNode;
+ if (!instance._warnedAboutRefsInRender) {
+ error("%s is accessing isMounted inside its render() function. " + "render() should be a pure function of props and state. It should " + "never access something that requires stale data from the previous " + "render, such as refs. Move this logic to componentDidMount and " + "componentDidUpdate instead.", getComponentNameFromFiber(ownerFiber) || "A component");
+ }
+ instance._warnedAboutRefsInRender = true;
+ }
+ }
+ var fiber = get(component);
+ if (!fiber) {
+ return false;
+ }
+ return getNearestMountedFiber(fiber) === fiber;
+ }
+ function assertIsMounted(fiber) {
+ if (getNearestMountedFiber(fiber) !== fiber) {
+ throw new Error("Unable to find node on an unmounted component.");
+ }
+ }
+ function findCurrentFiberUsingSlowPath(fiber) {
+ var alternate = fiber.alternate;
+ if (!alternate) {
+ // If there is no alternate, then we only need to check if it is mounted.
+ var nearestMounted = getNearestMountedFiber(fiber);
+ if (nearestMounted === null) {
+ throw new Error("Unable to find node on an unmounted component.");
+ }
+ if (nearestMounted !== fiber) {
+ return null;
+ }
+ return fiber;
+ } // If we have two possible branches, we'll walk backwards up to the root
+ // to see what path the root points to. On the way we may hit one of the
+ // special cases and we'll deal with them.
+
+ var a = fiber;
+ var b = alternate;
+ while (true) {
+ var parentA = a.return;
+ if (parentA === null) {
+ // We're at the root.
+ break;
+ }
+ var parentB = parentA.alternate;
+ if (parentB === null) {
+ // There is no alternate. This is an unusual case. Currently, it only
+ // happens when a Suspense component is hidden. An extra fragment fiber
+ // is inserted in between the Suspense fiber and its children. Skip
+ // over this extra fragment fiber and proceed to the next parent.
+ var nextParent = parentA.return;
+ if (nextParent !== null) {
+ a = b = nextParent;
+ continue;
+ } // If there's no parent, we're at the root.
+
+ break;
+ } // If both copies of the parent fiber point to the same child, we can
+ // assume that the child is current. This happens when we bailout on low
+ // priority: the bailed out fiber's child reuses the current child.
+
+ if (parentA.child === parentB.child) {
+ var child = parentA.child;
+ while (child) {
+ if (child === a) {
+ // We've determined that A is the current branch.
+ assertIsMounted(parentA);
+ return fiber;
+ }
+ if (child === b) {
+ // We've determined that B is the current branch.
+ assertIsMounted(parentA);
+ return alternate;
+ }
+ child = child.sibling;
+ } // We should never have an alternate for any mounting node. So the only
+ // way this could possibly happen is if this was unmounted, if at all.
+
+ throw new Error("Unable to find node on an unmounted component.");
+ }
+ if (a.return !== b.return) {
+ // The return pointer of A and the return pointer of B point to different
+ // fibers. We assume that return pointers never criss-cross, so A must
+ // belong to the child set of A.return, and B must belong to the child
+ // set of B.return.
+ a = parentA;
+ b = parentB;
+ } else {
+ // The return pointers point to the same fiber. We'll have to use the
+ // default, slow path: scan the child sets of each parent alternate to see
+ // which child belongs to which set.
+ //
+ // Search parent A's child set
+ var didFindChild = false;
+ var _child = parentA.child;
+ while (_child) {
+ if (_child === a) {
+ didFindChild = true;
+ a = parentA;
+ b = parentB;
+ break;
+ }
+ if (_child === b) {
+ didFindChild = true;
+ b = parentA;
+ a = parentB;
+ break;
+ }
+ _child = _child.sibling;
+ }
+ if (!didFindChild) {
+ // Search parent B's child set
+ _child = parentB.child;
+ while (_child) {
+ if (_child === a) {
+ didFindChild = true;
+ a = parentB;
+ b = parentA;
+ break;
+ }
+ if (_child === b) {
+ didFindChild = true;
+ b = parentB;
+ a = parentA;
+ break;
+ }
+ _child = _child.sibling;
+ }
+ if (!didFindChild) {
+ throw new Error("Child was not found in either parent set. This indicates a bug " + "in React related to the return pointer. Please file an issue.");
+ }
+ }
+ }
+ if (a.alternate !== b) {
+ throw new Error("Return fibers should always be each others' alternates. " + "This error is likely caused by a bug in React. Please file an issue.");
+ }
+ } // If the root is not a host container, we're in a disconnected tree. I.e.
+ // unmounted.
+
+ if (a.tag !== HostRoot) {
+ throw new Error("Unable to find node on an unmounted component.");
+ }
+ if (a.stateNode.current === a) {
+ // We've determined that A is the current branch.
+ return fiber;
+ } // Otherwise B has to be current branch.
+
+ return alternate;
+ }
+ function findCurrentHostFiber(parent) {
+ var currentParent = findCurrentFiberUsingSlowPath(parent);
+ return currentParent !== null ? findCurrentHostFiberImpl(currentParent) : null;
+ }
+ function findCurrentHostFiberImpl(node) {
+ // Next we'll drill down this component to find the first HostComponent/Text.
+ if (node.tag === HostComponent || node.tag === HostText) {
+ return node;
+ }
+ var child = node.child;
+ while (child !== null) {
+ var match = findCurrentHostFiberImpl(child);
+ if (match !== null) {
+ return match;
+ }
+ child = child.sibling;
+ }
+ return null;
+ }
+
+ /**
+ * In the future, we should cleanup callbacks by cancelling them instead of
+ * using this.
+ */
+ function mountSafeCallback_NOT_REALLY_SAFE(context, callback) {
+ return function () {
+ if (!callback) {
+ return undefined;
+ } // This protects against createClass() components.
+ // We don't know if there is code depending on it.
+ // We intentionally don't use isMounted() because even accessing
+ // isMounted property on a React ES6 class will trigger a warning.
+
+ if (typeof context.__isMounted === "boolean") {
+ if (!context.__isMounted) {
+ return undefined;
+ }
+ } // FIXME: there used to be other branches that protected
+ // against unmounted host components. But RN host components don't
+ // define isMounted() anymore, so those checks didn't do anything.
+ // They caused false positive warning noise so we removed them:
+ // https://github.com/facebook/react-native/issues/18868#issuecomment-413579095
+ // However, this means that the callback is NOT guaranteed to be safe
+ // for host components. The solution we should implement is to make
+ // UIManager.measure() and similar calls truly cancelable. Then we
+ // can change our own code calling them to cancel when something unmounts.
+
+ return callback.apply(context, arguments);
+ };
+ }
+ function warnForStyleProps(props, validAttributes) {
+ {
+ for (var key in validAttributes.style) {
+ if (!(validAttributes[key] || props[key] === undefined)) {
+ error("You are setting the style `{ %s" + ": ... }` as a prop. You " + "should nest it in a style object. " + "E.g. `{ style: { %s" + ": ... } }`", key, key);
+ }
+ }
+ }
+ }
+
+ // Modules provided by RN:
+ var emptyObject = {};
+ /**
+ * Create a payload that contains all the updates between two sets of props.
+ *
+ * These helpers are all encapsulated into a single module, because they use
+ * mutation as a performance optimization which leads to subtle shared
+ * dependencies between the code paths. To avoid this mutable state leaking
+ * across modules, I've kept them isolated to this module.
+ */
+
+ // Tracks removed keys
+ var removedKeys = null;
+ var removedKeyCount = 0;
+ var deepDifferOptions = {
+ unsafelyIgnoreFunctions: true
+ };
+ function defaultDiffer(prevProp, nextProp) {
+ if (typeof nextProp !== "object" || nextProp === null) {
+ // Scalars have already been checked for equality
+ return true;
+ } else {
+ // For objects and arrays, the default diffing algorithm is a deep compare
+ return ReactNativePrivateInterface.deepDiffer(prevProp, nextProp, deepDifferOptions);
+ }
+ }
+ function restoreDeletedValuesInNestedArray(updatePayload, node, validAttributes) {
+ if (isArray(node)) {
+ var i = node.length;
+ while (i-- && removedKeyCount > 0) {
+ restoreDeletedValuesInNestedArray(updatePayload, node[i], validAttributes);
+ }
+ } else if (node && removedKeyCount > 0) {
+ var obj = node;
+ for (var propKey in removedKeys) {
+ if (!removedKeys[propKey]) {
+ continue;
+ }
+ var nextProp = obj[propKey];
+ if (nextProp === undefined) {
+ continue;
+ }
+ var attributeConfig = validAttributes[propKey];
+ if (!attributeConfig) {
+ continue; // not a valid native prop
+ }
+ if (typeof nextProp === "function") {
+ nextProp = true;
+ }
+ if (typeof nextProp === "undefined") {
+ nextProp = null;
+ }
+ if (typeof attributeConfig !== "object") {
+ // case: !Object is the default case
+ updatePayload[propKey] = nextProp;
+ } else if (typeof attributeConfig.diff === "function" || typeof attributeConfig.process === "function") {
+ // case: CustomAttributeConfiguration
+ var nextValue = typeof attributeConfig.process === "function" ? attributeConfig.process(nextProp) : nextProp;
+ updatePayload[propKey] = nextValue;
+ }
+ removedKeys[propKey] = false;
+ removedKeyCount--;
+ }
+ }
+ }
+ function diffNestedArrayProperty(updatePayload, prevArray, nextArray, validAttributes) {
+ var minLength = prevArray.length < nextArray.length ? prevArray.length : nextArray.length;
+ var i;
+ for (i = 0; i < minLength; i++) {
+ // Diff any items in the array in the forward direction. Repeated keys
+ // will be overwritten by later values.
+ updatePayload = diffNestedProperty(updatePayload, prevArray[i], nextArray[i], validAttributes);
+ }
+ for (; i < prevArray.length; i++) {
+ // Clear out all remaining properties.
+ updatePayload = clearNestedProperty(updatePayload, prevArray[i], validAttributes);
+ }
+ for (; i < nextArray.length; i++) {
+ // Add all remaining properties.
+ updatePayload = addNestedProperty(updatePayload, nextArray[i], validAttributes);
+ }
+ return updatePayload;
+ }
+ function diffNestedProperty(updatePayload, prevProp, nextProp, validAttributes) {
+ if (!updatePayload && prevProp === nextProp) {
+ // If no properties have been added, then we can bail out quickly on object
+ // equality.
+ return updatePayload;
+ }
+ if (!prevProp || !nextProp) {
+ if (nextProp) {
+ return addNestedProperty(updatePayload, nextProp, validAttributes);
+ }
+ if (prevProp) {
+ return clearNestedProperty(updatePayload, prevProp, validAttributes);
+ }
+ return updatePayload;
+ }
+ if (!isArray(prevProp) && !isArray(nextProp)) {
+ // Both are leaves, we can diff the leaves.
+ return diffProperties(updatePayload, prevProp, nextProp, validAttributes);
+ }
+ if (isArray(prevProp) && isArray(nextProp)) {
+ // Both are arrays, we can diff the arrays.
+ return diffNestedArrayProperty(updatePayload, prevProp, nextProp, validAttributes);
+ }
+ if (isArray(prevProp)) {
+ return diffProperties(updatePayload,
+ // $FlowFixMe - We know that this is always an object when the input is.
+ ReactNativePrivateInterface.flattenStyle(prevProp),
+ // $FlowFixMe - We know that this isn't an array because of above flow.
+ nextProp, validAttributes);
+ }
+ return diffProperties(updatePayload, prevProp,
+ // $FlowFixMe - We know that this is always an object when the input is.
+ ReactNativePrivateInterface.flattenStyle(nextProp), validAttributes);
+ }
+ /**
+ * addNestedProperty takes a single set of props and valid attribute
+ * attribute configurations. It processes each prop and adds it to the
+ * updatePayload.
+ */
+
+ function addNestedProperty(updatePayload, nextProp, validAttributes) {
+ if (!nextProp) {
+ return updatePayload;
+ }
+ if (!isArray(nextProp)) {
+ // Add each property of the leaf.
+ return addProperties(updatePayload, nextProp, validAttributes);
+ }
+ for (var i = 0; i < nextProp.length; i++) {
+ // Add all the properties of the array.
+ updatePayload = addNestedProperty(updatePayload, nextProp[i], validAttributes);
+ }
+ return updatePayload;
+ }
+ /**
+ * clearNestedProperty takes a single set of props and valid attributes. It
+ * adds a null sentinel to the updatePayload, for each prop key.
+ */
+
+ function clearNestedProperty(updatePayload, prevProp, validAttributes) {
+ if (!prevProp) {
+ return updatePayload;
+ }
+ if (!isArray(prevProp)) {
+ // Add each property of the leaf.
+ return clearProperties(updatePayload, prevProp, validAttributes);
+ }
+ for (var i = 0; i < prevProp.length; i++) {
+ // Add all the properties of the array.
+ updatePayload = clearNestedProperty(updatePayload, prevProp[i], validAttributes);
+ }
+ return updatePayload;
+ }
+ /**
+ * diffProperties takes two sets of props and a set of valid attributes
+ * and write to updatePayload the values that changed or were deleted.
+ * If no updatePayload is provided, a new one is created and returned if
+ * anything changed.
+ */
+
+ function diffProperties(updatePayload, prevProps, nextProps, validAttributes) {
+ var attributeConfig;
+ var nextProp;
+ var prevProp;
+ for (var propKey in nextProps) {
+ attributeConfig = validAttributes[propKey];
+ if (!attributeConfig) {
+ continue; // not a valid native prop
+ }
+ prevProp = prevProps[propKey];
+ nextProp = nextProps[propKey]; // functions are converted to booleans as markers that the associated
+ // events should be sent from native.
+
+ if (typeof nextProp === "function") {
+ nextProp = true; // If nextProp is not a function, then don't bother changing prevProp
+ // since nextProp will win and go into the updatePayload regardless.
+
+ if (typeof prevProp === "function") {
+ prevProp = true;
+ }
+ } // An explicit value of undefined is treated as a null because it overrides
+ // any other preceding value.
+
+ if (typeof nextProp === "undefined") {
+ nextProp = null;
+ if (typeof prevProp === "undefined") {
+ prevProp = null;
+ }
+ }
+ if (removedKeys) {
+ removedKeys[propKey] = false;
+ }
+ if (updatePayload && updatePayload[propKey] !== undefined) {
+ // Something else already triggered an update to this key because another
+ // value diffed. Since we're now later in the nested arrays our value is
+ // more important so we need to calculate it and override the existing
+ // value. It doesn't matter if nothing changed, we'll set it anyway.
+ // Pattern match on: attributeConfig
+ if (typeof attributeConfig !== "object") {
+ // case: !Object is the default case
+ updatePayload[propKey] = nextProp;
+ } else if (typeof attributeConfig.diff === "function" || typeof attributeConfig.process === "function") {
+ // case: CustomAttributeConfiguration
+ var nextValue = typeof attributeConfig.process === "function" ? attributeConfig.process(nextProp) : nextProp;
+ updatePayload[propKey] = nextValue;
+ }
+ continue;
+ }
+ if (prevProp === nextProp) {
+ continue; // nothing changed
+ } // Pattern match on: attributeConfig
+
+ if (typeof attributeConfig !== "object") {
+ // case: !Object is the default case
+ if (defaultDiffer(prevProp, nextProp)) {
+ // a normal leaf has changed
+ (updatePayload || (updatePayload = {}))[propKey] = nextProp;
+ }
+ } else if (typeof attributeConfig.diff === "function" || typeof attributeConfig.process === "function") {
+ // case: CustomAttributeConfiguration
+ var shouldUpdate = prevProp === undefined || (typeof attributeConfig.diff === "function" ? attributeConfig.diff(prevProp, nextProp) : defaultDiffer(prevProp, nextProp));
+ if (shouldUpdate) {
+ var _nextValue = typeof attributeConfig.process === "function" ? attributeConfig.process(nextProp) : nextProp;
+ (updatePayload || (updatePayload = {}))[propKey] = _nextValue;
+ }
+ } else {
+ // default: fallthrough case when nested properties are defined
+ removedKeys = null;
+ removedKeyCount = 0; // We think that attributeConfig is not CustomAttributeConfiguration at
+ // this point so we assume it must be AttributeConfiguration.
+
+ updatePayload = diffNestedProperty(updatePayload, prevProp, nextProp, attributeConfig);
+ if (removedKeyCount > 0 && updatePayload) {
+ restoreDeletedValuesInNestedArray(updatePayload, nextProp, attributeConfig);
+ removedKeys = null;
+ }
+ }
+ } // Also iterate through all the previous props to catch any that have been
+ // removed and make sure native gets the signal so it can reset them to the
+ // default.
+
+ for (var _propKey in prevProps) {
+ if (nextProps[_propKey] !== undefined) {
+ continue; // we've already covered this key in the previous pass
+ }
+ attributeConfig = validAttributes[_propKey];
+ if (!attributeConfig) {
+ continue; // not a valid native prop
+ }
+ if (updatePayload && updatePayload[_propKey] !== undefined) {
+ // This was already updated to a diff result earlier.
+ continue;
+ }
+ prevProp = prevProps[_propKey];
+ if (prevProp === undefined) {
+ continue; // was already empty anyway
+ } // Pattern match on: attributeConfig
+
+ if (typeof attributeConfig !== "object" || typeof attributeConfig.diff === "function" || typeof attributeConfig.process === "function") {
+ // case: CustomAttributeConfiguration | !Object
+ // Flag the leaf property for removal by sending a sentinel.
+ (updatePayload || (updatePayload = {}))[_propKey] = null;
+ if (!removedKeys) {
+ removedKeys = {};
+ }
+ if (!removedKeys[_propKey]) {
+ removedKeys[_propKey] = true;
+ removedKeyCount++;
+ }
+ } else {
+ // default:
+ // This is a nested attribute configuration where all the properties
+ // were removed so we need to go through and clear out all of them.
+ updatePayload = clearNestedProperty(updatePayload, prevProp, attributeConfig);
+ }
+ }
+ return updatePayload;
+ }
+ /**
+ * addProperties adds all the valid props to the payload after being processed.
+ */
+
+ function addProperties(updatePayload, props, validAttributes) {
+ // TODO: Fast path
+ return diffProperties(updatePayload, emptyObject, props, validAttributes);
+ }
+ /**
+ * clearProperties clears all the previous props by adding a null sentinel
+ * to the payload for each valid key.
+ */
+
+ function clearProperties(updatePayload, prevProps, validAttributes) {
+ // TODO: Fast path
+ return diffProperties(updatePayload, prevProps, emptyObject, validAttributes);
+ }
+ function create(props, validAttributes) {
+ return addProperties(null,
+ // updatePayload
+ props, validAttributes);
+ }
+ function diff(prevProps, nextProps, validAttributes) {
+ return diffProperties(null,
+ // updatePayload
+ prevProps, nextProps, validAttributes);
+ }
+
+ // Used as a way to call batchedUpdates when we don't have a reference to
+ // the renderer. Such as when we're dispatching events or if third party
+ // libraries need to call batchedUpdates. Eventually, this API will go away when
+ // everything is batched by default. We'll then have a similar API to opt-out of
+ // scheduled work and instead do synchronous work.
+ // Defaults
+ var batchedUpdatesImpl = function batchedUpdatesImpl(fn, bookkeeping) {
+ return fn(bookkeeping);
+ };
+ var isInsideEventHandler = false;
+ function batchedUpdates(fn, bookkeeping) {
+ if (isInsideEventHandler) {
+ // If we are currently inside another batch, we need to wait until it
+ // fully completes before restoring state.
+ return fn(bookkeeping);
+ }
+ isInsideEventHandler = true;
+ try {
+ return batchedUpdatesImpl(fn, bookkeeping);
+ } finally {
+ isInsideEventHandler = false;
+ }
+ }
+ function setBatchingImplementation(_batchedUpdatesImpl, _discreteUpdatesImpl) {
+ batchedUpdatesImpl = _batchedUpdatesImpl;
+ }
+
+ /**
+ * Internal queue of events that have accumulated their dispatches and are
+ * waiting to have their dispatches executed.
+ */
+
+ var eventQueue = null;
+ /**
+ * Dispatches an event and releases it back into the pool, unless persistent.
+ *
+ * @param {?object} event Synthetic event to be dispatched.
+ * @private
+ */
+
+ var executeDispatchesAndRelease = function executeDispatchesAndRelease(event) {
+ if (event) {
+ executeDispatchesInOrder(event);
+ if (!event.isPersistent()) {
+ event.constructor.release(event);
+ }
+ }
+ };
+ var executeDispatchesAndReleaseTopLevel = function executeDispatchesAndReleaseTopLevel(e) {
+ return executeDispatchesAndRelease(e);
+ };
+ function runEventsInBatch(events) {
+ if (events !== null) {
+ eventQueue = accumulateInto(eventQueue, events);
+ } // Set `eventQueue` to null before processing it so that we can tell if more
+ // events get enqueued while processing.
+
+ var processingEventQueue = eventQueue;
+ eventQueue = null;
+ if (!processingEventQueue) {
+ return;
+ }
+ forEachAccumulated(processingEventQueue, executeDispatchesAndReleaseTopLevel);
+ if (eventQueue) {
+ throw new Error("processEventQueue(): Additional events were enqueued while processing " + "an event queue. Support for this has not yet been implemented.");
+ } // This would be a good time to rethrow if any of the event handlers threw.
+
+ rethrowCaughtError();
+ }
+
+ /**
+ * Allows registered plugins an opportunity to extract events from top-level
+ * native browser events.
+ *
+ * @return {*} An accumulation of synthetic events.
+ * @internal
+ */
+
+ function extractPluginEvents(topLevelType, targetInst, nativeEvent, nativeEventTarget) {
+ var events = null;
+ var legacyPlugins = plugins;
+ for (var i = 0; i < legacyPlugins.length; i++) {
+ // Not every plugin in the ordering may be loaded at runtime.
+ var possiblePlugin = legacyPlugins[i];
+ if (possiblePlugin) {
+ var extractedEvents = possiblePlugin.extractEvents(topLevelType, targetInst, nativeEvent, nativeEventTarget);
+ if (extractedEvents) {
+ events = accumulateInto(events, extractedEvents);
+ }
+ }
+ }
+ return events;
+ }
+ function runExtractedPluginEventsInBatch(topLevelType, targetInst, nativeEvent, nativeEventTarget) {
+ var events = extractPluginEvents(topLevelType, targetInst, nativeEvent, nativeEventTarget);
+ runEventsInBatch(events);
+ }
+ function dispatchEvent(target, topLevelType, nativeEvent) {
+ var targetFiber = target;
+ var eventTarget = null;
+ if (targetFiber != null) {
+ var stateNode = targetFiber.stateNode; // Guard against Fiber being unmounted
+
+ if (stateNode != null) {
+ eventTarget = stateNode.canonical;
+ }
+ }
+ batchedUpdates(function () {
+ // Emit event to the RawEventEmitter. This is an unused-by-default EventEmitter
+ // that can be used to instrument event performance monitoring (primarily - could be useful
+ // for other things too).
+ //
+ // NOTE: this merely emits events into the EventEmitter below.
+ // If *you* do not add listeners to the `RawEventEmitter`,
+ // then all of these emitted events will just blackhole and are no-ops.
+ // It is available (although not officially supported... yet) if you want to collect
+ // perf data on event latency in your application, and could also be useful for debugging
+ // low-level events issues.
+ //
+ // If you do not have any event perf monitoring and are extremely concerned about event perf,
+ // it is safe to disable these "emit" statements; it will prevent checking the size of
+ // an empty array twice and prevent two no-ops. Practically the overhead is so low that
+ // we don't think it's worth thinking about in prod; your perf issues probably lie elsewhere.
+ //
+ // We emit two events here: one for listeners to this specific event,
+ // and one for the catchall listener '*', for any listeners that want
+ // to be notified for all events.
+ // Note that extracted events are *not* emitted,
+ // only events that have a 1:1 mapping with a native event, at least for now.
+ var event = {
+ eventName: topLevelType,
+ nativeEvent: nativeEvent
+ };
+ ReactNativePrivateInterface.RawEventEmitter.emit(topLevelType, event);
+ ReactNativePrivateInterface.RawEventEmitter.emit("*", event); // Heritage plugin event system
+
+ runExtractedPluginEventsInBatch(topLevelType, targetFiber, nativeEvent, eventTarget);
+ }); // React Native doesn't use ReactControlledComponent but if it did, here's
+ // where it would do it.
+ }
+
+ // This module only exists as an ESM wrapper around the external CommonJS
+ var scheduleCallback = Scheduler.unstable_scheduleCallback;
+ var cancelCallback = Scheduler.unstable_cancelCallback;
+ var shouldYield = Scheduler.unstable_shouldYield;
+ var requestPaint = Scheduler.unstable_requestPaint;
+ var now = Scheduler.unstable_now;
+ var ImmediatePriority = Scheduler.unstable_ImmediatePriority;
+ var UserBlockingPriority = Scheduler.unstable_UserBlockingPriority;
+ var NormalPriority = Scheduler.unstable_NormalPriority;
+ var IdlePriority = Scheduler.unstable_IdlePriority;
+ var rendererID = null;
+ var injectedHook = null;
+ var hasLoggedError = false;
+ var isDevToolsPresent = typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined";
+ function injectInternals(internals) {
+ if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === "undefined") {
+ // No DevTools
+ return false;
+ }
+ var hook = __REACT_DEVTOOLS_GLOBAL_HOOK__;
+ if (hook.isDisabled) {
+ // This isn't a real property on the hook, but it can be set to opt out
+ // of DevTools integration and associated warnings and logs.
+ // https://github.com/facebook/react/issues/3877
+ return true;
+ }
+ if (!hook.supportsFiber) {
+ {
+ error("The installed version of React DevTools is too old and will not work " + "with the current version of React. Please update React DevTools. " + "https://react.dev/link/react-devtools");
+ } // DevTools exists, even though it doesn't support Fiber.
+
+ return true;
+ }
+ try {
+ if (enableSchedulingProfiler) {
+ // Conditionally inject these hooks only if Timeline profiler is supported by this build.
+ // This gives DevTools a way to feature detect that isn't tied to version number
+ // (since profiling and timeline are controlled by different feature flags).
+ internals = assign({}, internals, {
+ getLaneLabelMap: getLaneLabelMap,
+ injectProfilingHooks: injectProfilingHooks
+ });
+ }
+ rendererID = hook.inject(internals); // We have successfully injected, so now it is safe to set up hooks.
+
+ injectedHook = hook;
+ } catch (err) {
+ // Catch all errors because it is unsafe to throw during initialization.
+ {
+ error("React instrumentation encountered an error: %s.", err);
+ }
+ }
+ if (hook.checkDCE) {
+ // This is the real DevTools.
+ return true;
+ } else {
+ // This is likely a hook installed by Fast Refresh runtime.
+ return false;
+ }
+ }
+ function onScheduleRoot(root, children) {
+ {
+ if (injectedHook && typeof injectedHook.onScheduleFiberRoot === "function") {
+ try {
+ injectedHook.onScheduleFiberRoot(rendererID, root, children);
+ } catch (err) {
+ if (!hasLoggedError) {
+ hasLoggedError = true;
+ error("React instrumentation encountered an error: %s", err);
+ }
+ }
+ }
+ }
+ }
+ function onCommitRoot(root, eventPriority) {
+ if (injectedHook && typeof injectedHook.onCommitFiberRoot === "function") {
+ try {
+ var didError = (root.current.flags & DidCapture) === DidCapture;
+ if (enableProfilerTimer) {
+ var schedulerPriority;
+ switch (eventPriority) {
+ case DiscreteEventPriority:
+ schedulerPriority = ImmediatePriority;
+ break;
+ case ContinuousEventPriority:
+ schedulerPriority = UserBlockingPriority;
+ break;
+ case DefaultEventPriority:
+ schedulerPriority = NormalPriority;
+ break;
+ case IdleEventPriority:
+ schedulerPriority = IdlePriority;
+ break;
+ default:
+ schedulerPriority = NormalPriority;
+ break;
+ }
+ injectedHook.onCommitFiberRoot(rendererID, root, schedulerPriority, didError);
+ } else {
+ injectedHook.onCommitFiberRoot(rendererID, root, undefined, didError);
+ }
+ } catch (err) {
+ {
+ if (!hasLoggedError) {
+ hasLoggedError = true;
+ error("React instrumentation encountered an error: %s", err);
+ }
+ }
+ }
+ }
+ }
+ function onPostCommitRoot(root) {
+ if (injectedHook && typeof injectedHook.onPostCommitFiberRoot === "function") {
+ try {
+ injectedHook.onPostCommitFiberRoot(rendererID, root);
+ } catch (err) {
+ {
+ if (!hasLoggedError) {
+ hasLoggedError = true;
+ error("React instrumentation encountered an error: %s", err);
+ }
+ }
+ }
+ }
+ }
+ function onCommitUnmount(fiber) {
+ if (injectedHook && typeof injectedHook.onCommitFiberUnmount === "function") {
+ try {
+ injectedHook.onCommitFiberUnmount(rendererID, fiber);
+ } catch (err) {
+ {
+ if (!hasLoggedError) {
+ hasLoggedError = true;
+ error("React instrumentation encountered an error: %s", err);
+ }
+ }
+ }
+ }
+ }
+ function injectProfilingHooks(profilingHooks) {}
+ function getLaneLabelMap() {
+ {
+ return null;
+ }
+ }
+ function markComponentRenderStopped() {}
+ function markComponentErrored(fiber, thrownValue, lanes) {}
+ function markComponentSuspended(fiber, wakeable, lanes) {}
+ var NoMode = /* */
+ 0; // TODO: Remove ConcurrentMode by reading from the root tag instead
+
+ var ConcurrentMode = /* */
+ 1;
+ var ProfileMode = /* */
+ 2;
+ var StrictLegacyMode = /* */
+ 8;
+
+ // TODO: This is pretty well supported by browsers. Maybe we can drop it.
+ var clz32 = Math.clz32 ? Math.clz32 : clz32Fallback; // Count leading zeros.
+ // Based on:
+ // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/clz32
+
+ var log = Math.log;
+ var LN2 = Math.LN2;
+ function clz32Fallback(x) {
+ var asUint = x >>> 0;
+ if (asUint === 0) {
+ return 32;
+ }
+ return 31 - (log(asUint) / LN2 | 0) | 0;
+ }
+
+ // If those values are changed that package should be rebuilt and redeployed.
+
+ var TotalLanes = 31;
+ var NoLanes = /* */
+ 0;
+ var NoLane = /* */
+ 0;
+ var SyncLane = /* */
+ 1;
+ var InputContinuousHydrationLane = /* */
+ 2;
+ var InputContinuousLane = /* */
+ 4;
+ var DefaultHydrationLane = /* */
+ 8;
+ var DefaultLane = /* */
+ 16;
+ var TransitionHydrationLane = /* */
+ 32;
+ var TransitionLanes = /* */
+ 4194240;
+ var TransitionLane1 = /* */
+ 64;
+ var TransitionLane2 = /* */
+ 128;
+ var TransitionLane3 = /* */
+ 256;
+ var TransitionLane4 = /* */
+ 512;
+ var TransitionLane5 = /* */
+ 1024;
+ var TransitionLane6 = /* */
+ 2048;
+ var TransitionLane7 = /* */
+ 4096;
+ var TransitionLane8 = /* */
+ 8192;
+ var TransitionLane9 = /* */
+ 16384;
+ var TransitionLane10 = /* */
+ 32768;
+ var TransitionLane11 = /* */
+ 65536;
+ var TransitionLane12 = /* */
+ 131072;
+ var TransitionLane13 = /* */
+ 262144;
+ var TransitionLane14 = /* */
+ 524288;
+ var TransitionLane15 = /* */
+ 1048576;
+ var TransitionLane16 = /* */
+ 2097152;
+ var RetryLanes = /* */
+ 130023424;
+ var RetryLane1 = /* */
+ 4194304;
+ var RetryLane2 = /* */
+ 8388608;
+ var RetryLane3 = /* */
+ 16777216;
+ var RetryLane4 = /* */
+ 33554432;
+ var RetryLane5 = /* */
+ 67108864;
+ var SomeRetryLane = RetryLane1;
+ var SelectiveHydrationLane = /* */
+ 134217728;
+ var NonIdleLanes = /* */
+ 268435455;
+ var IdleHydrationLane = /* */
+ 268435456;
+ var IdleLane = /* */
+ 536870912;
+ var OffscreenLane = /* */
+ 1073741824; // This function is used for the experimental timeline (react-devtools-timeline)
+ var NoTimestamp = -1;
+ var nextTransitionLane = TransitionLane1;
+ var nextRetryLane = RetryLane1;
+ function getHighestPriorityLanes(lanes) {
+ switch (getHighestPriorityLane(lanes)) {
+ case SyncLane:
+ return SyncLane;
+ case InputContinuousHydrationLane:
+ return InputContinuousHydrationLane;
+ case InputContinuousLane:
+ return InputContinuousLane;
+ case DefaultHydrationLane:
+ return DefaultHydrationLane;
+ case DefaultLane:
+ return DefaultLane;
+ case TransitionHydrationLane:
+ return TransitionHydrationLane;
+ case TransitionLane1:
+ case TransitionLane2:
+ case TransitionLane3:
+ case TransitionLane4:
+ case TransitionLane5:
+ case TransitionLane6:
+ case TransitionLane7:
+ case TransitionLane8:
+ case TransitionLane9:
+ case TransitionLane10:
+ case TransitionLane11:
+ case TransitionLane12:
+ case TransitionLane13:
+ case TransitionLane14:
+ case TransitionLane15:
+ case TransitionLane16:
+ return lanes & TransitionLanes;
+ case RetryLane1:
+ case RetryLane2:
+ case RetryLane3:
+ case RetryLane4:
+ case RetryLane5:
+ return lanes & RetryLanes;
+ case SelectiveHydrationLane:
+ return SelectiveHydrationLane;
+ case IdleHydrationLane:
+ return IdleHydrationLane;
+ case IdleLane:
+ return IdleLane;
+ case OffscreenLane:
+ return OffscreenLane;
+ default:
+ {
+ error("Should have found matching lanes. This is a bug in React.");
+ } // This shouldn't be reachable, but as a fallback, return the entire bitmask.
+
+ return lanes;
+ }
+ }
+ function getNextLanes(root, wipLanes) {
+ // Early bailout if there's no pending work left.
+ var pendingLanes = root.pendingLanes;
+ if (pendingLanes === NoLanes) {
+ return NoLanes;
+ }
+ var nextLanes = NoLanes;
+ var suspendedLanes = root.suspendedLanes;
+ var pingedLanes = root.pingedLanes; // Do not work on any idle work until all the non-idle work has finished,
+ // even if the work is suspended.
+
+ var nonIdlePendingLanes = pendingLanes & NonIdleLanes;
+ if (nonIdlePendingLanes !== NoLanes) {
+ var nonIdleUnblockedLanes = nonIdlePendingLanes & ~suspendedLanes;
+ if (nonIdleUnblockedLanes !== NoLanes) {
+ nextLanes = getHighestPriorityLanes(nonIdleUnblockedLanes);
+ } else {
+ var nonIdlePingedLanes = nonIdlePendingLanes & pingedLanes;
+ if (nonIdlePingedLanes !== NoLanes) {
+ nextLanes = getHighestPriorityLanes(nonIdlePingedLanes);
+ }
+ }
+ } else {
+ // The only remaining work is Idle.
+ var unblockedLanes = pendingLanes & ~suspendedLanes;
+ if (unblockedLanes !== NoLanes) {
+ nextLanes = getHighestPriorityLanes(unblockedLanes);
+ } else {
+ if (pingedLanes !== NoLanes) {
+ nextLanes = getHighestPriorityLanes(pingedLanes);
+ }
+ }
+ }
+ if (nextLanes === NoLanes) {
+ // This should only be reachable if we're suspended
+ // TODO: Consider warning in this path if a fallback timer is not scheduled.
+ return NoLanes;
+ } // If we're already in the middle of a render, switching lanes will interrupt
+ // it and we'll lose our progress. We should only do this if the new lanes are
+ // higher priority.
+
+ if (wipLanes !== NoLanes && wipLanes !== nextLanes &&
+ // If we already suspended with a delay, then interrupting is fine. Don't
+ // bother waiting until the root is complete.
+ (wipLanes & suspendedLanes) === NoLanes) {
+ var nextLane = getHighestPriorityLane(nextLanes);
+ var wipLane = getHighestPriorityLane(wipLanes);
+ if (
+ // Tests whether the next lane is equal or lower priority than the wip
+ // one. This works because the bits decrease in priority as you go left.
+ nextLane >= wipLane ||
+ // Default priority updates should not interrupt transition updates. The
+ // only difference between default updates and transition updates is that
+ // default updates do not support refresh transitions.
+ nextLane === DefaultLane && (wipLane & TransitionLanes) !== NoLanes) {
+ // Keep working on the existing in-progress tree. Do not interrupt.
+ return wipLanes;
+ }
+ }
+ if ((nextLanes & InputContinuousLane) !== NoLanes) {
+ // When updates are sync by default, we entangle continuous priority updates
+ // and default updates, so they render in the same batch. The only reason
+ // they use separate lanes is because continuous updates should interrupt
+ // transitions, but default updates should not.
+ nextLanes |= pendingLanes & DefaultLane;
+ } // Check for entangled lanes and add them to the batch.
+ //
+ // A lane is said to be entangled with another when it's not allowed to render
+ // in a batch that does not also include the other lane. Typically we do this
+ // when multiple updates have the same source, and we only want to respond to
+ // the most recent event from that source.
+ //
+ // Note that we apply entanglements *after* checking for partial work above.
+ // This means that if a lane is entangled during an interleaved event while
+ // it's already rendering, we won't interrupt it. This is intentional, since
+ // entanglement is usually "best effort": we'll try our best to render the
+ // lanes in the same batch, but it's not worth throwing out partially
+ // completed work in order to do it.
+ // TODO: Reconsider this. The counter-argument is that the partial work
+ // represents an intermediate state, which we don't want to show to the user.
+ // And by spending extra time finishing it, we're increasing the amount of
+ // time it takes to show the final state, which is what they are actually
+ // waiting for.
+ //
+ // For those exceptions where entanglement is semantically important, like
+ // useMutableSource, we should ensure that there is no partial work at the
+ // time we apply the entanglement.
+
+ var entangledLanes = root.entangledLanes;
+ if (entangledLanes !== NoLanes) {
+ var entanglements = root.entanglements;
+ var lanes = nextLanes & entangledLanes;
+ while (lanes > 0) {
+ var index = pickArbitraryLaneIndex(lanes);
+ var lane = 1 << index;
+ nextLanes |= entanglements[index];
+ lanes &= ~lane;
+ }
+ }
+ return nextLanes;
+ }
+ function getMostRecentEventTime(root, lanes) {
+ var eventTimes = root.eventTimes;
+ var mostRecentEventTime = NoTimestamp;
+ while (lanes > 0) {
+ var index = pickArbitraryLaneIndex(lanes);
+ var lane = 1 << index;
+ var eventTime = eventTimes[index];
+ if (eventTime > mostRecentEventTime) {
+ mostRecentEventTime = eventTime;
+ }
+ lanes &= ~lane;
+ }
+ return mostRecentEventTime;
+ }
+ function computeExpirationTime(lane, currentTime) {
+ switch (lane) {
+ case SyncLane:
+ case InputContinuousHydrationLane:
+ case InputContinuousLane:
+ // User interactions should expire slightly more quickly.
+ //
+ // NOTE: This is set to the corresponding constant as in Scheduler.js.
+ // When we made it larger, a product metric in www regressed, suggesting
+ // there's a user interaction that's being starved by a series of
+ // synchronous updates. If that theory is correct, the proper solution is
+ // to fix the starvation. However, this scenario supports the idea that
+ // expiration times are an important safeguard when starvation
+ // does happen.
+ return currentTime + 250;
+ case DefaultHydrationLane:
+ case DefaultLane:
+ case TransitionHydrationLane:
+ case TransitionLane1:
+ case TransitionLane2:
+ case TransitionLane3:
+ case TransitionLane4:
+ case TransitionLane5:
+ case TransitionLane6:
+ case TransitionLane7:
+ case TransitionLane8:
+ case TransitionLane9:
+ case TransitionLane10:
+ case TransitionLane11:
+ case TransitionLane12:
+ case TransitionLane13:
+ case TransitionLane14:
+ case TransitionLane15:
+ case TransitionLane16:
+ return currentTime + 5000;
+ case RetryLane1:
+ case RetryLane2:
+ case RetryLane3:
+ case RetryLane4:
+ case RetryLane5:
+ // TODO: Retries should be allowed to expire if they are CPU bound for
+ // too long, but when I made this change it caused a spike in browser
+ // crashes. There must be some other underlying bug; not super urgent but
+ // ideally should figure out why and fix it. Unfortunately we don't have
+ // a repro for the crashes, only detected via production metrics.
+ return NoTimestamp;
+ case SelectiveHydrationLane:
+ case IdleHydrationLane:
+ case IdleLane:
+ case OffscreenLane:
+ // Anything idle priority or lower should never expire.
+ return NoTimestamp;
+ default:
+ {
+ error("Should have found matching lanes. This is a bug in React.");
+ }
+ return NoTimestamp;
+ }
+ }
+ function markStarvedLanesAsExpired(root, currentTime) {
+ // TODO: This gets called every time we yield. We can optimize by storing
+ // the earliest expiration time on the root. Then use that to quickly bail out
+ // of this function.
+ var pendingLanes = root.pendingLanes;
+ var suspendedLanes = root.suspendedLanes;
+ var pingedLanes = root.pingedLanes;
+ var expirationTimes = root.expirationTimes; // Iterate through the pending lanes and check if we've reached their
+ // expiration time. If so, we'll assume the update is being starved and mark
+ // it as expired to force it to finish.
+
+ var lanes = pendingLanes;
+ while (lanes > 0) {
+ var index = pickArbitraryLaneIndex(lanes);
+ var lane = 1 << index;
+ var expirationTime = expirationTimes[index];
+ if (expirationTime === NoTimestamp) {
+ // Found a pending lane with no expiration time. If it's not suspended, or
+ // if it's pinged, assume it's CPU-bound. Compute a new expiration time
+ // using the current time.
+ if ((lane & suspendedLanes) === NoLanes || (lane & pingedLanes) !== NoLanes) {
+ // Assumes timestamps are monotonically increasing.
+ expirationTimes[index] = computeExpirationTime(lane, currentTime);
+ }
+ } else if (expirationTime <= currentTime) {
+ // This lane expired
+ root.expiredLanes |= lane;
+ }
+ lanes &= ~lane;
+ }
+ } // This returns the highest priority pending lanes regardless of whether they
+ function getLanesToRetrySynchronouslyOnError(root) {
+ var everythingButOffscreen = root.pendingLanes & ~OffscreenLane;
+ if (everythingButOffscreen !== NoLanes) {
+ return everythingButOffscreen;
+ }
+ if (everythingButOffscreen & OffscreenLane) {
+ return OffscreenLane;
+ }
+ return NoLanes;
+ }
+ function includesSyncLane(lanes) {
+ return (lanes & SyncLane) !== NoLanes;
+ }
+ function includesNonIdleWork(lanes) {
+ return (lanes & NonIdleLanes) !== NoLanes;
+ }
+ function includesOnlyRetries(lanes) {
+ return (lanes & RetryLanes) === lanes;
+ }
+ function includesOnlyNonUrgentLanes(lanes) {
+ var UrgentLanes = SyncLane | InputContinuousLane | DefaultLane;
+ return (lanes & UrgentLanes) === NoLanes;
+ }
+ function includesOnlyTransitions(lanes) {
+ return (lanes & TransitionLanes) === lanes;
+ }
+ function includesBlockingLane(root, lanes) {
+ var SyncDefaultLanes = InputContinuousHydrationLane | InputContinuousLane | DefaultHydrationLane | DefaultLane;
+ return (lanes & SyncDefaultLanes) !== NoLanes;
+ }
+ function includesExpiredLane(root, lanes) {
+ // This is a separate check from includesBlockingLane because a lane can
+ // expire after a render has already started.
+ return (lanes & root.expiredLanes) !== NoLanes;
+ }
+ function isTransitionLane(lane) {
+ return (lane & TransitionLanes) !== NoLanes;
+ }
+ function claimNextTransitionLane() {
+ // Cycle through the lanes, assigning each new transition to the next lane.
+ // In most cases, this means every transition gets its own lane, until we
+ // run out of lanes and cycle back to the beginning.
+ var lane = nextTransitionLane;
+ nextTransitionLane <<= 1;
+ if ((nextTransitionLane & TransitionLanes) === NoLanes) {
+ nextTransitionLane = TransitionLane1;
+ }
+ return lane;
+ }
+ function claimNextRetryLane() {
+ var lane = nextRetryLane;
+ nextRetryLane <<= 1;
+ if ((nextRetryLane & RetryLanes) === NoLanes) {
+ nextRetryLane = RetryLane1;
+ }
+ return lane;
+ }
+ function getHighestPriorityLane(lanes) {
+ return lanes & -lanes;
+ }
+ function pickArbitraryLane(lanes) {
+ // This wrapper function gets inlined. Only exists so to communicate that it
+ // doesn't matter which bit is selected; you can pick any bit without
+ // affecting the algorithms where its used. Here I'm using
+ // getHighestPriorityLane because it requires the fewest operations.
+ return getHighestPriorityLane(lanes);
+ }
+ function pickArbitraryLaneIndex(lanes) {
+ return 31 - clz32(lanes);
+ }
+ function laneToIndex(lane) {
+ return pickArbitraryLaneIndex(lane);
+ }
+ function includesSomeLane(a, b) {
+ return (a & b) !== NoLanes;
+ }
+ function isSubsetOfLanes(set, subset) {
+ return (set & subset) === subset;
+ }
+ function mergeLanes(a, b) {
+ return a | b;
+ }
+ function removeLanes(set, subset) {
+ return set & ~subset;
+ }
+ function intersectLanes(a, b) {
+ return a & b;
+ } // Seems redundant, but it changes the type from a single lane (used for
+ // updates) to a group of lanes (used for flushing work).
+
+ function laneToLanes(lane) {
+ return lane;
+ }
+ function createLaneMap(initial) {
+ // Intentionally pushing one by one.
+ // https://v8.dev/blog/elements-kinds#avoid-creating-holes
+ var laneMap = [];
+ for (var i = 0; i < TotalLanes; i++) {
+ laneMap.push(initial);
+ }
+ return laneMap;
+ }
+ function markRootUpdated(root, updateLane, eventTime) {
+ root.pendingLanes |= updateLane; // If there are any suspended transitions, it's possible this new update
+ // could unblock them. Clear the suspended lanes so that we can try rendering
+ // them again.
+ //
+ // TODO: We really only need to unsuspend only lanes that are in the
+ // `subtreeLanes` of the updated fiber, or the update lanes of the return
+ // path. This would exclude suspended updates in an unrelated sibling tree,
+ // since there's no way for this update to unblock it.
+ //
+ // We don't do this if the incoming update is idle, because we never process
+ // idle updates until after all the regular updates have finished; there's no
+ // way it could unblock a transition.
+
+ if (updateLane !== IdleLane) {
+ root.suspendedLanes = NoLanes;
+ root.pingedLanes = NoLanes;
+ }
+ var eventTimes = root.eventTimes;
+ var index = laneToIndex(updateLane); // We can always overwrite an existing timestamp because we prefer the most
+ // recent event, and we assume time is monotonically increasing.
+
+ eventTimes[index] = eventTime;
+ }
+ function markRootSuspended(root, suspendedLanes) {
+ root.suspendedLanes |= suspendedLanes;
+ root.pingedLanes &= ~suspendedLanes; // The suspended lanes are no longer CPU-bound. Clear their expiration times.
+
+ var expirationTimes = root.expirationTimes;
+ var lanes = suspendedLanes;
+ while (lanes > 0) {
+ var index = pickArbitraryLaneIndex(lanes);
+ var lane = 1 << index;
+ expirationTimes[index] = NoTimestamp;
+ lanes &= ~lane;
+ }
+ }
+ function markRootPinged(root, pingedLanes, eventTime) {
+ root.pingedLanes |= root.suspendedLanes & pingedLanes;
+ }
+ function markRootFinished(root, remainingLanes) {
+ var noLongerPendingLanes = root.pendingLanes & ~remainingLanes;
+ root.pendingLanes = remainingLanes; // Let's try everything again
+
+ root.suspendedLanes = NoLanes;
+ root.pingedLanes = NoLanes;
+ root.expiredLanes &= remainingLanes;
+ root.mutableReadLanes &= remainingLanes;
+ root.entangledLanes &= remainingLanes;
+ var entanglements = root.entanglements;
+ var eventTimes = root.eventTimes;
+ var expirationTimes = root.expirationTimes; // Clear the lanes that no longer have pending work
+
+ var lanes = noLongerPendingLanes;
+ while (lanes > 0) {
+ var index = pickArbitraryLaneIndex(lanes);
+ var lane = 1 << index;
+ entanglements[index] = NoLanes;
+ eventTimes[index] = NoTimestamp;
+ expirationTimes[index] = NoTimestamp;
+ lanes &= ~lane;
+ }
+ }
+ function markRootEntangled(root, entangledLanes) {
+ // In addition to entangling each of the given lanes with each other, we also
+ // have to consider _transitive_ entanglements. For each lane that is already
+ // entangled with *any* of the given lanes, that lane is now transitively
+ // entangled with *all* the given lanes.
+ //
+ // Translated: If C is entangled with A, then entangling A with B also
+ // entangles C with B.
+ //
+ // If this is hard to grasp, it might help to intentionally break this
+ // function and look at the tests that fail in ReactTransition-test.js. Try
+ // commenting out one of the conditions below.
+ var rootEntangledLanes = root.entangledLanes |= entangledLanes;
+ var entanglements = root.entanglements;
+ var lanes = rootEntangledLanes;
+ while (lanes) {
+ var index = pickArbitraryLaneIndex(lanes);
+ var lane = 1 << index;
+ if (
+ // Is this one of the newly entangled lanes?
+ lane & entangledLanes |
+ // Is this lane transitively entangled with the newly entangled lanes?
+ entanglements[index] & entangledLanes) {
+ entanglements[index] |= entangledLanes;
+ }
+ lanes &= ~lane;
+ }
+ }
+ function getBumpedLaneForHydration(root, renderLanes) {
+ var renderLane = getHighestPriorityLane(renderLanes);
+ var lane;
+ switch (renderLane) {
+ case InputContinuousLane:
+ lane = InputContinuousHydrationLane;
+ break;
+ case DefaultLane:
+ lane = DefaultHydrationLane;
+ break;
+ case TransitionLane1:
+ case TransitionLane2:
+ case TransitionLane3:
+ case TransitionLane4:
+ case TransitionLane5:
+ case TransitionLane6:
+ case TransitionLane7:
+ case TransitionLane8:
+ case TransitionLane9:
+ case TransitionLane10:
+ case TransitionLane11:
+ case TransitionLane12:
+ case TransitionLane13:
+ case TransitionLane14:
+ case TransitionLane15:
+ case TransitionLane16:
+ case RetryLane1:
+ case RetryLane2:
+ case RetryLane3:
+ case RetryLane4:
+ case RetryLane5:
+ lane = TransitionHydrationLane;
+ break;
+ case IdleLane:
+ lane = IdleHydrationLane;
+ break;
+ default:
+ // Everything else is already either a hydration lane, or shouldn't
+ // be retried at a hydration lane.
+ lane = NoLane;
+ break;
+ } // Check if the lane we chose is suspended. If so, that indicates that we
+ // already attempted and failed to hydrate at that level. Also check if we're
+ // already rendering that lane, which is rare but could happen.
+
+ if ((lane & (root.suspendedLanes | renderLanes)) !== NoLane) {
+ // Give up trying to hydrate and fall back to client render.
+ return NoLane;
+ }
+ return lane;
+ }
+ function addFiberToLanesMap(root, fiber, lanes) {
+ if (!isDevToolsPresent) {
+ return;
+ }
+ var pendingUpdatersLaneMap = root.pendingUpdatersLaneMap;
+ while (lanes > 0) {
+ var index = laneToIndex(lanes);
+ var lane = 1 << index;
+ var updaters = pendingUpdatersLaneMap[index];
+ updaters.add(fiber);
+ lanes &= ~lane;
+ }
+ }
+ function movePendingFibersToMemoized(root, lanes) {
+ if (!isDevToolsPresent) {
+ return;
+ }
+ var pendingUpdatersLaneMap = root.pendingUpdatersLaneMap;
+ var memoizedUpdaters = root.memoizedUpdaters;
+ while (lanes > 0) {
+ var index = laneToIndex(lanes);
+ var lane = 1 << index;
+ var updaters = pendingUpdatersLaneMap[index];
+ if (updaters.size > 0) {
+ updaters.forEach(function (fiber) {
+ var alternate = fiber.alternate;
+ if (alternate === null || !memoizedUpdaters.has(alternate)) {
+ memoizedUpdaters.add(fiber);
+ }
+ });
+ updaters.clear();
+ }
+ lanes &= ~lane;
+ }
+ }
+ function getTransitionsForLanes(root, lanes) {
+ {
+ return null;
+ }
+ }
+ var DiscreteEventPriority = SyncLane;
+ var ContinuousEventPriority = InputContinuousLane;
+ var DefaultEventPriority = DefaultLane;
+ var IdleEventPriority = IdleLane;
+ var currentUpdatePriority = NoLane;
+ function getCurrentUpdatePriority() {
+ return currentUpdatePriority;
+ }
+ function setCurrentUpdatePriority(newPriority) {
+ currentUpdatePriority = newPriority;
+ }
+ function higherEventPriority(a, b) {
+ return a !== 0 && a < b ? a : b;
+ }
+ function lowerEventPriority(a, b) {
+ return a === 0 || a > b ? a : b;
+ }
+ function isHigherEventPriority(a, b) {
+ return a !== 0 && a < b;
+ }
+ function lanesToEventPriority(lanes) {
+ var lane = getHighestPriorityLane(lanes);
+ if (!isHigherEventPriority(DiscreteEventPriority, lane)) {
+ return DiscreteEventPriority;
+ }
+ if (!isHigherEventPriority(ContinuousEventPriority, lane)) {
+ return ContinuousEventPriority;
+ }
+ if (includesNonIdleWork(lane)) {
+ return DefaultEventPriority;
+ }
+ return IdleEventPriority;
+ }
+
+ // Renderers that don't support mutation
+ // can re-export everything from this module.
+ function shim() {
+ throw new Error("The current renderer does not support mutation. " + "This error is likely caused by a bug in React. " + "Please file an issue.");
+ } // Mutation (when unsupported)
+ var commitMount = shim;
+
+ // Renderers that don't support hydration
+ // can re-export everything from this module.
+ function shim$1() {
+ throw new Error("The current renderer does not support hydration. " + "This error is likely caused by a bug in React. " + "Please file an issue.");
+ } // Hydration (when unsupported)
+ var isSuspenseInstancePending = shim$1;
+ var isSuspenseInstanceFallback = shim$1;
+ var getSuspenseInstanceFallbackErrorDetails = shim$1;
+ var registerSuspenseInstanceRetry = shim$1;
+ var hydrateTextInstance = shim$1;
+ var errorHydratingContainer = shim$1;
+ var _nativeFabricUIManage = nativeFabricUIManager,
+ createNode = _nativeFabricUIManage.createNode,
+ cloneNode = _nativeFabricUIManage.cloneNode,
+ cloneNodeWithNewChildren = _nativeFabricUIManage.cloneNodeWithNewChildren,
+ cloneNodeWithNewChildrenAndProps = _nativeFabricUIManage.cloneNodeWithNewChildrenAndProps,
+ cloneNodeWithNewProps = _nativeFabricUIManage.cloneNodeWithNewProps,
+ createChildNodeSet = _nativeFabricUIManage.createChildSet,
+ appendChildNode = _nativeFabricUIManage.appendChild,
+ appendChildNodeToSet = _nativeFabricUIManage.appendChildToSet,
+ completeRoot = _nativeFabricUIManage.completeRoot,
+ registerEventHandler = _nativeFabricUIManage.registerEventHandler,
+ fabricMeasure = _nativeFabricUIManage.measure,
+ fabricMeasureInWindow = _nativeFabricUIManage.measureInWindow,
+ fabricMeasureLayout = _nativeFabricUIManage.measureLayout,
+ FabricDefaultPriority = _nativeFabricUIManage.unstable_DefaultEventPriority,
+ FabricDiscretePriority = _nativeFabricUIManage.unstable_DiscreteEventPriority,
+ fabricGetCurrentEventPriority = _nativeFabricUIManage.unstable_getCurrentEventPriority,
+ _setNativeProps = _nativeFabricUIManage.setNativeProps;
+ var getViewConfigForType = ReactNativePrivateInterface.ReactNativeViewConfigRegistry.get; // Counter for uniquely identifying views.
+ // % 10 === 1 means it is a rootTag.
+ // % 2 === 0 means it is a Fabric tag.
+ // This means that they never overlap.
+
+ var nextReactTag = 2;
+
+ // TODO: Remove this conditional once all changes have propagated.
+ if (registerEventHandler) {
+ /**
+ * Register the event emitter with the native bridge
+ */
+ registerEventHandler(dispatchEvent);
+ }
+ /**
+ * This is used for refs on host components.
+ */
+
+ var ReactFabricHostComponent = /*#__PURE__*/function () {
+ function ReactFabricHostComponent(tag, viewConfig, props, internalInstanceHandle) {
+ this._nativeTag = tag;
+ this.viewConfig = viewConfig;
+ this.currentProps = props;
+ this._internalInstanceHandle = internalInstanceHandle;
+ }
+ var _proto = ReactFabricHostComponent.prototype;
+ _proto.blur = function blur() {
+ ReactNativePrivateInterface.TextInputState.blurTextInput(this);
+ };
+ _proto.focus = function focus() {
+ ReactNativePrivateInterface.TextInputState.focusTextInput(this);
+ };
+ _proto.measure = function measure(callback) {
+ var stateNode = this._internalInstanceHandle.stateNode;
+ if (stateNode != null) {
+ fabricMeasure(stateNode.node, mountSafeCallback_NOT_REALLY_SAFE(this, callback));
+ }
+ };
+ _proto.measureInWindow = function measureInWindow(callback) {
+ var stateNode = this._internalInstanceHandle.stateNode;
+ if (stateNode != null) {
+ fabricMeasureInWindow(stateNode.node, mountSafeCallback_NOT_REALLY_SAFE(this, callback));
+ }
+ };
+ _proto.measureLayout = function measureLayout(relativeToNativeNode, onSuccess, onFail) /* currently unused */
+ {
+ if (typeof relativeToNativeNode === "number" || !(relativeToNativeNode instanceof ReactFabricHostComponent)) {
+ {
+ error("Warning: ref.measureLayout must be called with a ref to a native component.");
+ }
+ return;
+ }
+ var toStateNode = this._internalInstanceHandle.stateNode;
+ var fromStateNode = relativeToNativeNode._internalInstanceHandle.stateNode;
+ if (toStateNode != null && fromStateNode != null) {
+ fabricMeasureLayout(toStateNode.node, fromStateNode.node, mountSafeCallback_NOT_REALLY_SAFE(this, onFail), mountSafeCallback_NOT_REALLY_SAFE(this, onSuccess));
+ }
+ };
+ _proto.setNativeProps = function setNativeProps(nativeProps) {
+ {
+ warnForStyleProps(nativeProps, this.viewConfig.validAttributes);
+ }
+ var updatePayload = create(nativeProps, this.viewConfig.validAttributes);
+ var stateNode = this._internalInstanceHandle.stateNode;
+ if (stateNode != null && updatePayload != null) {
+ _setNativeProps(stateNode.node, updatePayload);
+ }
+ }; // This API (addEventListener, removeEventListener) attempts to adhere to the
+ // w3 Level2 Events spec as much as possible, treating HostComponent as a DOM node.
+ //
+ // Unless otherwise noted, these methods should "just work" and adhere to the W3 specs.
+ // If they deviate in a way that is not explicitly noted here, you've found a bug!
+ //
+ // See:
+ // * https://www.w3.org/TR/DOM-Level-2-Events/events.html
+ // * https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener
+ // * https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/removeEventListener
+ //
+ // And notably, not implemented (yet?):
+ // * https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/dispatchEvent
+ //
+ //
+ // Deviations from spec/TODOs:
+ // (1) listener must currently be a function, we do not support EventListener objects yet.
+ // (2) we do not support the `signal` option / AbortSignal yet
+
+ _proto.addEventListener_unstable = function addEventListener_unstable(eventType, listener, options) {
+ if (typeof eventType !== "string") {
+ throw new Error("addEventListener_unstable eventType must be a string");
+ }
+ if (typeof listener !== "function") {
+ throw new Error("addEventListener_unstable listener must be a function");
+ } // The third argument is either boolean indicating "captures" or an object.
+
+ var optionsObj = typeof options === "object" && options !== null ? options : {};
+ var capture = (typeof options === "boolean" ? options : optionsObj.capture) || false;
+ var once = optionsObj.once || false;
+ var passive = optionsObj.passive || false;
+ var signal = null; // TODO: implement signal/AbortSignal
+
+ var eventListeners = this._eventListeners || {};
+ if (this._eventListeners == null) {
+ this._eventListeners = eventListeners;
+ }
+ var namedEventListeners = eventListeners[eventType] || [];
+ if (eventListeners[eventType] == null) {
+ eventListeners[eventType] = namedEventListeners;
+ }
+ namedEventListeners.push({
+ listener: listener,
+ invalidated: false,
+ options: {
+ capture: capture,
+ once: once,
+ passive: passive,
+ signal: signal
+ }
+ });
+ }; // See https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/removeEventListener
+
+ _proto.removeEventListener_unstable = function removeEventListener_unstable(eventType, listener, options) {
+ // eventType and listener must be referentially equal to be removed from the listeners
+ // data structure, but in "options" we only check the `capture` flag, according to spec.
+ // That means if you add the same function as a listener with capture set to true and false,
+ // you must also call removeEventListener twice with capture set to true/false.
+ var optionsObj = typeof options === "object" && options !== null ? options : {};
+ var capture = (typeof options === "boolean" ? options : optionsObj.capture) || false; // If there are no event listeners or named event listeners, we can bail early - our
+ // job is already done.
+
+ var eventListeners = this._eventListeners;
+ if (!eventListeners) {
+ return;
+ }
+ var namedEventListeners = eventListeners[eventType];
+ if (!namedEventListeners) {
+ return;
+ } // TODO: optimize this path to make remove cheaper
+
+ eventListeners[eventType] = namedEventListeners.filter(function (listenerObj) {
+ return !(listenerObj.listener === listener && listenerObj.options.capture === capture);
+ });
+ };
+ return ReactFabricHostComponent;
+ }(); // eslint-disable-next-line no-unused-expressions
+ function appendInitialChild(parentInstance, child) {
+ appendChildNode(parentInstance.node, child.node);
+ }
+ function createInstance(type, props, rootContainerInstance, hostContext, internalInstanceHandle) {
+ var tag = nextReactTag;
+ nextReactTag += 2;
+ var viewConfig = getViewConfigForType(type);
+ {
+ for (var key in viewConfig.validAttributes) {
+ if (props.hasOwnProperty(key)) {
+ ReactNativePrivateInterface.deepFreezeAndThrowOnMutationInDev(props[key]);
+ }
+ }
+ }
+ var updatePayload = create(props, viewConfig.validAttributes);
+ var node = createNode(tag,
+ // reactTag
+ viewConfig.uiViewClassName,
+ // viewName
+ rootContainerInstance,
+ // rootTag
+ updatePayload,
+ // props
+ internalInstanceHandle // internalInstanceHandle
+ );
+ var component = new ReactFabricHostComponent(tag, viewConfig, props, internalInstanceHandle);
+ return {
+ node: node,
+ canonical: component
+ };
+ }
+ function createTextInstance(text, rootContainerInstance, hostContext, internalInstanceHandle) {
+ {
+ if (!hostContext.isInAParentText) {
+ error("Text strings must be rendered within a component.");
+ }
+ }
+ var tag = nextReactTag;
+ nextReactTag += 2;
+ var node = createNode(tag,
+ // reactTag
+ "RCTRawText",
+ // viewName
+ rootContainerInstance,
+ // rootTag
+ {
+ text: text
+ },
+ // props
+ internalInstanceHandle // instance handle
+ );
+ return {
+ node: node
+ };
+ }
+ function getRootHostContext(rootContainerInstance) {
+ return {
+ isInAParentText: false
+ };
+ }
+ function getChildHostContext(parentHostContext, type, rootContainerInstance) {
+ var prevIsInAParentText = parentHostContext.isInAParentText;
+ var isInAParentText = type === "AndroidTextInput" ||
+ // Android
+ type === "RCTMultilineTextInputView" ||
+ // iOS
+ type === "RCTSinglelineTextInputView" ||
+ // iOS
+ type === "RCTText" || type === "RCTVirtualText"; // TODO: If this is an offscreen host container, we should reuse the
+ // parent context.
+
+ if (prevIsInAParentText !== isInAParentText) {
+ return {
+ isInAParentText: isInAParentText
+ };
+ } else {
+ return parentHostContext;
+ }
+ }
+ function getPublicInstance(instance) {
+ return instance.canonical;
+ }
+ function prepareForCommit(containerInfo) {
+ // Noop
+ return null;
+ }
+ function prepareUpdate(instance, type, oldProps, newProps, rootContainerInstance, hostContext) {
+ var viewConfig = instance.canonical.viewConfig;
+ var updatePayload = diff(oldProps, newProps, viewConfig.validAttributes); // TODO: If the event handlers have changed, we need to update the current props
+ // in the commit phase but there is no host config hook to do it yet.
+ // So instead we hack it by updating it in the render phase.
+
+ instance.canonical.currentProps = newProps;
+ return updatePayload;
+ }
+ function resetAfterCommit(containerInfo) {
+ // Noop
+ }
+ function shouldSetTextContent(type, props) {
+ // TODO (bvaughn) Revisit this decision.
+ // Always returning false simplifies the createInstance() implementation,
+ // But creates an additional child Fiber for raw text children.
+ // No additional native views are created though.
+ // It's not clear to me which is better so I'm deferring for now.
+ // More context @ github.com/facebook/react/pull/8560#discussion_r92111303
+ return false;
+ }
+ function getCurrentEventPriority() {
+ var currentEventPriority = fabricGetCurrentEventPriority ? fabricGetCurrentEventPriority() : null;
+ if (currentEventPriority != null) {
+ switch (currentEventPriority) {
+ case FabricDiscretePriority:
+ return DiscreteEventPriority;
+ case FabricDefaultPriority:
+ default:
+ return DefaultEventPriority;
+ }
+ }
+ return DefaultEventPriority;
+ } // The Fabric renderer is secondary to the existing React Native renderer.
+
+ var warnsIfNotActing = false;
+ var scheduleTimeout = setTimeout;
+ var cancelTimeout = clearTimeout;
+ var noTimeout = -1; // -------------------
+ function cloneInstance(instance, updatePayload, type, oldProps, newProps, internalInstanceHandle, keepChildren, recyclableInstance) {
+ var node = instance.node;
+ var clone;
+ if (keepChildren) {
+ if (updatePayload !== null) {
+ clone = cloneNodeWithNewProps(node, updatePayload);
+ } else {
+ clone = cloneNode(node);
+ }
+ } else {
+ if (updatePayload !== null) {
+ clone = cloneNodeWithNewChildrenAndProps(node, updatePayload);
+ } else {
+ clone = cloneNodeWithNewChildren(node);
+ }
+ }
+ return {
+ node: clone,
+ canonical: instance.canonical
+ };
+ }
+ function cloneHiddenInstance(instance, type, props, internalInstanceHandle) {
+ var viewConfig = instance.canonical.viewConfig;
+ var node = instance.node;
+ var updatePayload = create({
+ style: {
+ display: "none"
+ }
+ }, viewConfig.validAttributes);
+ return {
+ node: cloneNodeWithNewProps(node, updatePayload),
+ canonical: instance.canonical
+ };
+ }
+ function cloneHiddenTextInstance(instance, text, internalInstanceHandle) {
+ throw new Error("Not yet implemented.");
+ }
+ function createContainerChildSet(container) {
+ return createChildNodeSet(container);
+ }
+ function appendChildToContainerChildSet(childSet, child) {
+ appendChildNodeToSet(childSet, child.node);
+ }
+ function finalizeContainerChildren(container, newChildren) {
+ completeRoot(container, newChildren);
+ }
+ function replaceContainerChildren(container, newChildren) {}
+ function preparePortalMount(portalInstance) {
+ // noop
+ }
+ var ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher;
+ function describeBuiltInComponentFrame(name, source, ownerFn) {
+ {
+ var ownerName = null;
+ if (ownerFn) {
+ ownerName = ownerFn.displayName || ownerFn.name || null;
+ }
+ return describeComponentFrame(name, source, ownerName);
+ }
+ }
+ var componentFrameCache;
+ {
+ var PossiblyWeakMap = typeof WeakMap === "function" ? WeakMap : Map;
+ componentFrameCache = new PossiblyWeakMap();
+ }
+ 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;
+ }
+ function describeClassComponentFrame(ctor, source, ownerFn) {
+ {
+ return describeFunctionComponentFrame(ctor, source, ownerFn);
+ }
+ }
+ function describeFunctionComponentFrame(fn, source, ownerFn) {
+ {
+ if (!fn) {
+ return "";
+ }
+ var name = fn.displayName || fn.name || null;
+ var ownerName = null;
+ if (ownerFn) {
+ ownerName = ownerFn.displayName || ownerFn.name || null;
+ }
+ return describeComponentFrame(name, source, ownerName);
+ }
+ }
+ function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
+ if (type == null) {
+ return "";
+ }
+ if (typeof type === "function") {
+ {
+ return describeFunctionComponentFrame(type, source, ownerFn);
+ }
+ }
+ if (typeof type === "string") {
+ return describeBuiltInComponentFrame(type, source, ownerFn);
+ }
+ switch (type) {
+ case REACT_SUSPENSE_TYPE:
+ return describeBuiltInComponentFrame("Suspense", source, ownerFn);
+ case REACT_SUSPENSE_LIST_TYPE:
+ return describeBuiltInComponentFrame("SuspenseList", source, ownerFn);
+ }
+ if (typeof type === "object") {
+ switch (type.$$typeof) {
+ case REACT_FORWARD_REF_TYPE:
+ return describeFunctionComponentFrame(type.render, source, ownerFn);
+ case REACT_MEMO_TYPE:
+ // Memo may contain any component type so we recursively resolve it.
+ return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
+ case REACT_LAZY_TYPE:
+ {
+ var lazyComponent = type;
+ var payload = lazyComponent._payload;
+ var init = lazyComponent._init;
+ try {
+ // Lazy may contain any component type so we recursively resolve it.
+ return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
+ } catch (x) {}
+ }
+ }
+ }
+ return "";
+ }
+ var hasOwnProperty = Object.prototype.hasOwnProperty;
+ var loggedTypeFailures = {};
+ var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
+ function setCurrentlyValidatingElement(element) {
+ {
+ if (element) {
+ var owner = element._owner;
+ var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
+ ReactDebugCurrentFrame.setExtraStackFrame(stack);
+ } else {
+ ReactDebugCurrentFrame.setExtraStackFrame(null);
+ }
+ }
+ }
+ function checkPropTypes(typeSpecs, values, location, componentName, element) {
+ {
+ // $FlowFixMe This is okay but Flow doesn't know it.
+ var has = Function.call.bind(hasOwnProperty);
+ for (var typeSpecName in typeSpecs) {
+ if (has(typeSpecs, typeSpecName)) {
+ var error$1 = void 0; // 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") {
+ // eslint-disable-next-line react-internal/prod-error-codes
+ 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] + "`." + "This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
+ err.name = "Invariant Violation";
+ throw err;
+ }
+ error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
+ } catch (ex) {
+ error$1 = ex;
+ }
+ if (error$1 && !(error$1 instanceof Error)) {
+ setCurrentlyValidatingElement(element);
+ error("%s: type specification of %s" + " `%s` is invalid; the type checker " + "function must return `null` or an `Error` but returned a %s. " + "You may have forgotten to pass an argument to the type checker " + "creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and " + "shape all require an argument).", componentName || "React class", location, typeSpecName, typeof error$1);
+ setCurrentlyValidatingElement(null);
+ }
+ if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
+ // Only monitor this failure once because there tends to be a lot of the
+ // same error.
+ loggedTypeFailures[error$1.message] = true;
+ setCurrentlyValidatingElement(element);
+ error("Failed %s type: %s", location, error$1.message);
+ setCurrentlyValidatingElement(null);
+ }
+ }
+ }
+ }
+ }
+ var valueStack = [];
+ var fiberStack;
+ {
+ fiberStack = [];
+ }
+ var index = -1;
+ function createCursor(defaultValue) {
+ return {
+ current: defaultValue
+ };
+ }
+ function pop(cursor, fiber) {
+ if (index < 0) {
+ {
+ error("Unexpected pop.");
+ }
+ return;
+ }
+ {
+ if (fiber !== fiberStack[index]) {
+ error("Unexpected Fiber popped.");
+ }
+ }
+ cursor.current = valueStack[index];
+ valueStack[index] = null;
+ {
+ fiberStack[index] = null;
+ }
+ index--;
+ }
+ function push(cursor, value, fiber) {
+ index++;
+ valueStack[index] = cursor.current;
+ {
+ fiberStack[index] = fiber;
+ }
+ cursor.current = value;
+ }
+ var warnedAboutMissingGetChildContext;
+ {
+ warnedAboutMissingGetChildContext = {};
+ }
+ var emptyContextObject = {};
+ {
+ Object.freeze(emptyContextObject);
+ } // A cursor to the current merged context object on the stack.
+
+ var contextStackCursor = createCursor(emptyContextObject); // A cursor to a boolean indicating whether the context has changed.
+
+ var didPerformWorkStackCursor = createCursor(false); // Keep track of the previous context object that was on the stack.
+ // We use this to get access to the parent context after we have already
+ // pushed the next context provider, and now need to merge their contexts.
+
+ var previousContext = emptyContextObject;
+ function getUnmaskedContext(workInProgress, Component, didPushOwnContextIfProvider) {
+ {
+ if (didPushOwnContextIfProvider && isContextProvider(Component)) {
+ // If the fiber is a context provider itself, when we read its context
+ // we may have already pushed its own child context on the stack. A context
+ // provider should not "see" its own child context. Therefore we read the
+ // previous (parent) context instead for a context provider.
+ return previousContext;
+ }
+ return contextStackCursor.current;
+ }
+ }
+ function cacheContext(workInProgress, unmaskedContext, maskedContext) {
+ {
+ var instance = workInProgress.stateNode;
+ instance.__reactInternalMemoizedUnmaskedChildContext = unmaskedContext;
+ instance.__reactInternalMemoizedMaskedChildContext = maskedContext;
+ }
+ }
+ function getMaskedContext(workInProgress, unmaskedContext) {
+ {
+ var type = workInProgress.type;
+ var contextTypes = type.contextTypes;
+ if (!contextTypes) {
+ return emptyContextObject;
+ } // Avoid recreating masked context unless unmasked context has changed.
+ // Failing to do this will result in unnecessary calls to componentWillReceiveProps.
+ // This may trigger infinite loops if componentWillReceiveProps calls setState.
+
+ var instance = workInProgress.stateNode;
+ if (instance && instance.__reactInternalMemoizedUnmaskedChildContext === unmaskedContext) {
+ return instance.__reactInternalMemoizedMaskedChildContext;
+ }
+ var context = {};
+ for (var key in contextTypes) {
+ context[key] = unmaskedContext[key];
+ }
+ {
+ var name = getComponentNameFromFiber(workInProgress) || "Unknown";
+ checkPropTypes(contextTypes, context, "context", name);
+ } // Cache unmasked context so we can avoid recreating masked context unless necessary.
+ // Context is created before the class component is instantiated so check for instance.
+
+ if (instance) {
+ cacheContext(workInProgress, unmaskedContext, context);
+ }
+ return context;
+ }
+ }
+ function hasContextChanged() {
+ {
+ return didPerformWorkStackCursor.current;
+ }
+ }
+ function isContextProvider(type) {
+ {
+ var childContextTypes = type.childContextTypes;
+ return childContextTypes !== null && childContextTypes !== undefined;
+ }
+ }
+ function popContext(fiber) {
+ {
+ pop(didPerformWorkStackCursor, fiber);
+ pop(contextStackCursor, fiber);
+ }
+ }
+ function popTopLevelContextObject(fiber) {
+ {
+ pop(didPerformWorkStackCursor, fiber);
+ pop(contextStackCursor, fiber);
+ }
+ }
+ function pushTopLevelContextObject(fiber, context, didChange) {
+ {
+ if (contextStackCursor.current !== emptyContextObject) {
+ throw new Error("Unexpected context found on stack. " + "This error is likely caused by a bug in React. Please file an issue.");
+ }
+ push(contextStackCursor, context, fiber);
+ push(didPerformWorkStackCursor, didChange, fiber);
+ }
+ }
+ function processChildContext(fiber, type, parentContext) {
+ {
+ var instance = fiber.stateNode;
+ var childContextTypes = type.childContextTypes; // TODO (bvaughn) Replace this behavior with an invariant() in the future.
+ // It has only been added in Fiber to match the (unintentional) behavior in Stack.
+
+ if (typeof instance.getChildContext !== "function") {
+ {
+ var componentName = getComponentNameFromFiber(fiber) || "Unknown";
+ if (!warnedAboutMissingGetChildContext[componentName]) {
+ warnedAboutMissingGetChildContext[componentName] = true;
+ error("%s.childContextTypes is specified but there is no getChildContext() method " + "on the instance. You can either define getChildContext() on %s or remove " + "childContextTypes from it.", componentName, componentName);
+ }
+ }
+ return parentContext;
+ }
+ var childContext = instance.getChildContext();
+ for (var contextKey in childContext) {
+ if (!(contextKey in childContextTypes)) {
+ throw new Error((getComponentNameFromFiber(fiber) || "Unknown") + '.getChildContext(): key "' + contextKey + '" is not defined in childContextTypes.');
+ }
+ }
+ {
+ var name = getComponentNameFromFiber(fiber) || "Unknown";
+ checkPropTypes(childContextTypes, childContext, "child context", name);
+ }
+ return assign({}, parentContext, childContext);
+ }
+ }
+ function pushContextProvider(workInProgress) {
+ {
+ var instance = workInProgress.stateNode; // We push the context as early as possible to ensure stack integrity.
+ // If the instance does not exist yet, we will push null at first,
+ // and replace it on the stack later when invalidating the context.
+
+ var memoizedMergedChildContext = instance && instance.__reactInternalMemoizedMergedChildContext || emptyContextObject; // Remember the parent context so we can merge with it later.
+ // Inherit the parent's did-perform-work value to avoid inadvertently blocking updates.
+
+ previousContext = contextStackCursor.current;
+ push(contextStackCursor, memoizedMergedChildContext, workInProgress);
+ push(didPerformWorkStackCursor, didPerformWorkStackCursor.current, workInProgress);
+ return true;
+ }
+ }
+ function invalidateContextProvider(workInProgress, type, didChange) {
+ {
+ var instance = workInProgress.stateNode;
+ if (!instance) {
+ throw new Error("Expected to have an instance by this point. " + "This error is likely caused by a bug in React. Please file an issue.");
+ }
+ if (didChange) {
+ // Merge parent and own context.
+ // Skip this if we're not updating due to sCU.
+ // This avoids unnecessarily recomputing memoized values.
+ var mergedContext = processChildContext(workInProgress, type, previousContext);
+ instance.__reactInternalMemoizedMergedChildContext = mergedContext; // Replace the old (or empty) context with the new one.
+ // It is important to unwind the context in the reverse order.
+
+ pop(didPerformWorkStackCursor, workInProgress);
+ pop(contextStackCursor, workInProgress); // Now push the new context and mark that it has changed.
+
+ push(contextStackCursor, mergedContext, workInProgress);
+ push(didPerformWorkStackCursor, didChange, workInProgress);
+ } else {
+ pop(didPerformWorkStackCursor, workInProgress);
+ push(didPerformWorkStackCursor, didChange, workInProgress);
+ }
+ }
+ }
+ function findCurrentUnmaskedContext(fiber) {
+ {
+ // Currently this is only used with renderSubtreeIntoContainer; not sure if it
+ // makes sense elsewhere
+ if (!isFiberMounted(fiber) || fiber.tag !== ClassComponent) {
+ throw new Error("Expected subtree parent to be a mounted class component. " + "This error is likely caused by a bug in React. Please file an issue.");
+ }
+ var node = fiber;
+ do {
+ switch (node.tag) {
+ case HostRoot:
+ return node.stateNode.context;
+ case ClassComponent:
+ {
+ var Component = node.type;
+ if (isContextProvider(Component)) {
+ return node.stateNode.__reactInternalMemoizedMergedChildContext;
+ }
+ break;
+ }
+ }
+ node = node.return;
+ } while (node !== null);
+ throw new Error("Found unexpected detached subtree parent. " + "This error is likely caused by a bug in React. Please file an issue.");
+ }
+ }
+ var LegacyRoot = 0;
+ var ConcurrentRoot = 1;
+
+ /**
+ * 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 syncQueue = null;
+ var includesLegacySyncCallbacks = false;
+ var isFlushingSyncQueue = false;
+ function scheduleSyncCallback(callback) {
+ // Push this callback into an internal queue. We'll flush these either in
+ // the next tick, or earlier if something calls `flushSyncCallbackQueue`.
+ if (syncQueue === null) {
+ syncQueue = [callback];
+ } else {
+ // Push onto existing queue. Don't need to schedule a callback because
+ // we already scheduled one when we created the queue.
+ syncQueue.push(callback);
+ }
+ }
+ function scheduleLegacySyncCallback(callback) {
+ includesLegacySyncCallbacks = true;
+ scheduleSyncCallback(callback);
+ }
+ function flushSyncCallbacksOnlyInLegacyMode() {
+ // Only flushes the queue if there's a legacy sync callback scheduled.
+ // TODO: There's only a single type of callback: performSyncOnWorkOnRoot. So
+ // it might make more sense for the queue to be a list of roots instead of a
+ // list of generic callbacks. Then we can have two: one for legacy roots, one
+ // for concurrent roots. And this method would only flush the legacy ones.
+ if (includesLegacySyncCallbacks) {
+ flushSyncCallbacks();
+ }
+ }
+ function flushSyncCallbacks() {
+ if (!isFlushingSyncQueue && syncQueue !== null) {
+ // Prevent re-entrance.
+ isFlushingSyncQueue = true;
+ var i = 0;
+ var previousUpdatePriority = getCurrentUpdatePriority();
+ try {
+ var isSync = true;
+ var queue = syncQueue; // TODO: Is this necessary anymore? The only user code that runs in this
+ // queue is in the render or commit phases.
+
+ setCurrentUpdatePriority(DiscreteEventPriority);
+ for (; i < queue.length; i++) {
+ var callback = queue[i];
+ do {
+ callback = callback(isSync);
+ } while (callback !== null);
+ }
+ syncQueue = null;
+ includesLegacySyncCallbacks = false;
+ } catch (error) {
+ // If something throws, leave the remaining callbacks on the queue.
+ if (syncQueue !== null) {
+ syncQueue = syncQueue.slice(i + 1);
+ } // Resume flushing in the next tick
+
+ scheduleCallback(ImmediatePriority, flushSyncCallbacks);
+ throw error;
+ } finally {
+ setCurrentUpdatePriority(previousUpdatePriority);
+ isFlushingSyncQueue = false;
+ }
+ }
+ return null;
+ }
+
+ // This is imported by the event replaying implementation in React DOM. It's
+ // in a separate file to break a circular dependency between the renderer and
+ // the reconciler.
+ function isRootDehydrated(root) {
+ var currentState = root.current.memoizedState;
+ return currentState.isDehydrated;
+ }
+
+ // TODO: Use the unified fiber stack module instead of this local one?
+ // Intentionally not using it yet to derisk the initial implementation, because
+ // the way we push/pop these values is a bit unusual. If there's a mistake, I'd
+ // rather the ids be wrong than crash the whole reconciler.
+ var forkStack = [];
+ var forkStackIndex = 0;
+ var treeForkProvider = null;
+ var treeForkCount = 0;
+ var idStack = [];
+ var idStackIndex = 0;
+ var treeContextProvider = null;
+ var treeContextId = 1;
+ var treeContextOverflow = "";
+ function popTreeContext(workInProgress) {
+ // Restore the previous values.
+ // This is a bit more complicated than other context-like modules in Fiber
+ // because the same Fiber may appear on the stack multiple times and for
+ // different reasons. We have to keep popping until the work-in-progress is
+ // no longer at the top of the stack.
+ while (workInProgress === treeForkProvider) {
+ treeForkProvider = forkStack[--forkStackIndex];
+ forkStack[forkStackIndex] = null;
+ treeForkCount = forkStack[--forkStackIndex];
+ forkStack[forkStackIndex] = null;
+ }
+ while (workInProgress === treeContextProvider) {
+ treeContextProvider = idStack[--idStackIndex];
+ idStack[idStackIndex] = null;
+ treeContextOverflow = idStack[--idStackIndex];
+ idStack[idStackIndex] = null;
+ treeContextId = idStack[--idStackIndex];
+ idStack[idStackIndex] = null;
+ }
+ }
+ var isHydrating = false; // This flag allows for warning supression when we expect there to be mismatches
+ // due to earlier mismatches or a suspended fiber.
+
+ var didSuspendOrErrorDEV = false; // Hydration errors that were thrown inside this boundary
+
+ var hydrationErrors = null;
+ function didSuspendOrErrorWhileHydratingDEV() {
+ {
+ return didSuspendOrErrorDEV;
+ }
+ }
+ function reenterHydrationStateFromDehydratedSuspenseInstance(fiber, suspenseInstance, treeContext) {
+ {
+ return false;
+ }
+ }
+ function prepareToHydrateHostInstance(fiber, rootContainerInstance, hostContext) {
+ {
+ throw new Error("Expected prepareToHydrateHostInstance() to never be called. " + "This error is likely caused by a bug in React. Please file an issue.");
+ }
+ }
+ function prepareToHydrateHostTextInstance(fiber) {
+ {
+ throw new Error("Expected prepareToHydrateHostTextInstance() to never be called. " + "This error is likely caused by a bug in React. Please file an issue.");
+ }
+ var shouldUpdate = hydrateTextInstance();
+ }
+ function prepareToHydrateHostSuspenseInstance(fiber) {
+ {
+ throw new Error("Expected prepareToHydrateHostSuspenseInstance() to never be called. " + "This error is likely caused by a bug in React. Please file an issue.");
+ }
+ }
+ function popHydrationState(fiber) {
+ {
+ return false;
+ }
+ }
+ function upgradeHydrationErrorsToRecoverable() {
+ if (hydrationErrors !== null) {
+ // Successfully completed a forced client render. The errors that occurred
+ // during the hydration attempt are now recovered. We will log them in
+ // commit phase, once the entire tree has finished.
+ queueRecoverableErrors(hydrationErrors);
+ hydrationErrors = null;
+ }
+ }
+ function getIsHydrating() {
+ return isHydrating;
+ }
+ function queueHydrationError(error) {
+ if (hydrationErrors === null) {
+ hydrationErrors = [error];
+ } else {
+ hydrationErrors.push(error);
+ }
+ }
+ var ReactCurrentBatchConfig = ReactSharedInternals.ReactCurrentBatchConfig;
+ var NoTransition = null;
+ function requestCurrentTransition() {
+ return ReactCurrentBatchConfig.transition;
+ }
+
+ /**
+ * 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++) {
+ var currentKey = keysA[i];
+ if (!hasOwnProperty.call(objB, currentKey) || !objectIs(objA[currentKey], objB[currentKey])) {
+ return false;
+ }
+ }
+ return true;
+ }
+ function describeFiber(fiber) {
+ var owner = fiber._debugOwner ? fiber._debugOwner.type : null;
+ var source = fiber._debugSource;
+ switch (fiber.tag) {
+ case HostComponent:
+ return describeBuiltInComponentFrame(fiber.type, source, owner);
+ case LazyComponent:
+ return describeBuiltInComponentFrame("Lazy", source, owner);
+ case SuspenseComponent:
+ return describeBuiltInComponentFrame("Suspense", source, owner);
+ case SuspenseListComponent:
+ return describeBuiltInComponentFrame("SuspenseList", source, owner);
+ case FunctionComponent:
+ case IndeterminateComponent:
+ case SimpleMemoComponent:
+ return describeFunctionComponentFrame(fiber.type, source, owner);
+ case ForwardRef:
+ return describeFunctionComponentFrame(fiber.type.render, source, owner);
+ case ClassComponent:
+ return describeClassComponentFrame(fiber.type, source, owner);
+ default:
+ return "";
+ }
+ }
+ function getStackByFiberInDevAndProd(workInProgress) {
+ try {
+ var info = "";
+ var node = workInProgress;
+ do {
+ info += describeFiber(node);
+ node = node.return;
+ } while (node);
+ return info;
+ } catch (x) {
+ return "\nError generating stack: " + x.message + "\n" + x.stack;
+ }
+ }
+ var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
+ var current = null;
+ var isRendering = false;
+ function getCurrentFiberOwnerNameInDevOrNull() {
+ {
+ if (current === null) {
+ return null;
+ }
+ var owner = current._debugOwner;
+ if (owner !== null && typeof owner !== "undefined") {
+ return getComponentNameFromFiber(owner);
+ }
+ }
+ return null;
+ }
+ function getCurrentFiberStackInDev() {
+ {
+ if (current === null) {
+ return "";
+ } // Safe because if current fiber exists, we are reconciling,
+ // and it is guaranteed to be the work-in-progress version.
+
+ return getStackByFiberInDevAndProd(current);
+ }
+ }
+ function resetCurrentFiber() {
+ {
+ ReactDebugCurrentFrame$1.getCurrentStack = null;
+ current = null;
+ isRendering = false;
+ }
+ }
+ function setCurrentFiber(fiber) {
+ {
+ ReactDebugCurrentFrame$1.getCurrentStack = fiber === null ? null : getCurrentFiberStackInDev;
+ current = fiber;
+ isRendering = false;
+ }
+ }
+ function getCurrentFiber() {
+ {
+ return current;
+ }
+ }
+ function setIsRendering(rendering) {
+ {
+ isRendering = rendering;
+ }
+ }
+ var ReactStrictModeWarnings = {
+ recordUnsafeLifecycleWarnings: function recordUnsafeLifecycleWarnings(fiber, instance) {},
+ flushPendingUnsafeLifecycleWarnings: function flushPendingUnsafeLifecycleWarnings() {},
+ recordLegacyContextWarning: function recordLegacyContextWarning(fiber, instance) {},
+ flushLegacyContextWarning: function flushLegacyContextWarning() {},
+ discardPendingWarnings: function discardPendingWarnings() {}
+ };
+ {
+ var findStrictRoot = function findStrictRoot(fiber) {
+ var maybeStrictRoot = null;
+ var node = fiber;
+ while (node !== null) {
+ if (node.mode & StrictLegacyMode) {
+ maybeStrictRoot = node;
+ }
+ node = node.return;
+ }
+ return maybeStrictRoot;
+ };
+ var setToSortedString = function setToSortedString(set) {
+ var array = [];
+ set.forEach(function (value) {
+ array.push(value);
+ });
+ return array.sort().join(", ");
+ };
+ var pendingComponentWillMountWarnings = [];
+ var pendingUNSAFE_ComponentWillMountWarnings = [];
+ var pendingComponentWillReceivePropsWarnings = [];
+ var pendingUNSAFE_ComponentWillReceivePropsWarnings = [];
+ var pendingComponentWillUpdateWarnings = [];
+ var pendingUNSAFE_ComponentWillUpdateWarnings = []; // Tracks components we have already warned about.
+
+ var didWarnAboutUnsafeLifecycles = new Set();
+ ReactStrictModeWarnings.recordUnsafeLifecycleWarnings = function (fiber, instance) {
+ // Dedupe strategy: Warn once per component.
+ if (didWarnAboutUnsafeLifecycles.has(fiber.type)) {
+ return;
+ }
+ if (typeof instance.componentWillMount === "function" &&
+ // Don't warn about react-lifecycles-compat polyfilled components.
+ instance.componentWillMount.__suppressDeprecationWarning !== true) {
+ pendingComponentWillMountWarnings.push(fiber);
+ }
+ if (fiber.mode & StrictLegacyMode && typeof instance.UNSAFE_componentWillMount === "function") {
+ pendingUNSAFE_ComponentWillMountWarnings.push(fiber);
+ }
+ if (typeof instance.componentWillReceiveProps === "function" && instance.componentWillReceiveProps.__suppressDeprecationWarning !== true) {
+ pendingComponentWillReceivePropsWarnings.push(fiber);
+ }
+ if (fiber.mode & StrictLegacyMode && typeof instance.UNSAFE_componentWillReceiveProps === "function") {
+ pendingUNSAFE_ComponentWillReceivePropsWarnings.push(fiber);
+ }
+ if (typeof instance.componentWillUpdate === "function" && instance.componentWillUpdate.__suppressDeprecationWarning !== true) {
+ pendingComponentWillUpdateWarnings.push(fiber);
+ }
+ if (fiber.mode & StrictLegacyMode && typeof instance.UNSAFE_componentWillUpdate === "function") {
+ pendingUNSAFE_ComponentWillUpdateWarnings.push(fiber);
+ }
+ };
+ ReactStrictModeWarnings.flushPendingUnsafeLifecycleWarnings = function () {
+ // We do an initial pass to gather component names
+ var componentWillMountUniqueNames = new Set();
+ if (pendingComponentWillMountWarnings.length > 0) {
+ pendingComponentWillMountWarnings.forEach(function (fiber) {
+ componentWillMountUniqueNames.add(getComponentNameFromFiber(fiber) || "Component");
+ didWarnAboutUnsafeLifecycles.add(fiber.type);
+ });
+ pendingComponentWillMountWarnings = [];
+ }
+ var UNSAFE_componentWillMountUniqueNames = new Set();
+ if (pendingUNSAFE_ComponentWillMountWarnings.length > 0) {
+ pendingUNSAFE_ComponentWillMountWarnings.forEach(function (fiber) {
+ UNSAFE_componentWillMountUniqueNames.add(getComponentNameFromFiber(fiber) || "Component");
+ didWarnAboutUnsafeLifecycles.add(fiber.type);
+ });
+ pendingUNSAFE_ComponentWillMountWarnings = [];
+ }
+ var componentWillReceivePropsUniqueNames = new Set();
+ if (pendingComponentWillReceivePropsWarnings.length > 0) {
+ pendingComponentWillReceivePropsWarnings.forEach(function (fiber) {
+ componentWillReceivePropsUniqueNames.add(getComponentNameFromFiber(fiber) || "Component");
+ didWarnAboutUnsafeLifecycles.add(fiber.type);
+ });
+ pendingComponentWillReceivePropsWarnings = [];
+ }
+ var UNSAFE_componentWillReceivePropsUniqueNames = new Set();
+ if (pendingUNSAFE_ComponentWillReceivePropsWarnings.length > 0) {
+ pendingUNSAFE_ComponentWillReceivePropsWarnings.forEach(function (fiber) {
+ UNSAFE_componentWillReceivePropsUniqueNames.add(getComponentNameFromFiber(fiber) || "Component");
+ didWarnAboutUnsafeLifecycles.add(fiber.type);
+ });
+ pendingUNSAFE_ComponentWillReceivePropsWarnings = [];
+ }
+ var componentWillUpdateUniqueNames = new Set();
+ if (pendingComponentWillUpdateWarnings.length > 0) {
+ pendingComponentWillUpdateWarnings.forEach(function (fiber) {
+ componentWillUpdateUniqueNames.add(getComponentNameFromFiber(fiber) || "Component");
+ didWarnAboutUnsafeLifecycles.add(fiber.type);
+ });
+ pendingComponentWillUpdateWarnings = [];
+ }
+ var UNSAFE_componentWillUpdateUniqueNames = new Set();
+ if (pendingUNSAFE_ComponentWillUpdateWarnings.length > 0) {
+ pendingUNSAFE_ComponentWillUpdateWarnings.forEach(function (fiber) {
+ UNSAFE_componentWillUpdateUniqueNames.add(getComponentNameFromFiber(fiber) || "Component");
+ didWarnAboutUnsafeLifecycles.add(fiber.type);
+ });
+ pendingUNSAFE_ComponentWillUpdateWarnings = [];
+ } // Finally, we flush all the warnings
+ // UNSAFE_ ones before the deprecated ones, since they'll be 'louder'
+
+ if (UNSAFE_componentWillMountUniqueNames.size > 0) {
+ var sortedNames = setToSortedString(UNSAFE_componentWillMountUniqueNames);
+ error("Using UNSAFE_componentWillMount in strict mode is not recommended and may indicate bugs in your code. " + "See https://react.dev/link/unsafe-component-lifecycles for details.\n\n" + "* Move code with side effects to componentDidMount, and set initial state in the constructor.\n" + "\nPlease update the following components: %s", sortedNames);
+ }
+ if (UNSAFE_componentWillReceivePropsUniqueNames.size > 0) {
+ var _sortedNames = setToSortedString(UNSAFE_componentWillReceivePropsUniqueNames);
+ error("Using UNSAFE_componentWillReceiveProps in strict mode is not recommended " + "and may indicate bugs in your code. " + "See https://react.dev/link/unsafe-component-lifecycles for details.\n\n" + "* Move data fetching code or side effects to componentDidUpdate.\n" + "* If you're updating state whenever props change, " + "refactor your code to use memoization techniques or move it to " + "static getDerivedStateFromProps. Learn more at: https://react.dev/link/derived-state\n" + "\nPlease update the following components: %s", _sortedNames);
+ }
+ if (UNSAFE_componentWillUpdateUniqueNames.size > 0) {
+ var _sortedNames2 = setToSortedString(UNSAFE_componentWillUpdateUniqueNames);
+ error("Using UNSAFE_componentWillUpdate in strict mode is not recommended " + "and may indicate bugs in your code. " + "See https://react.dev/link/unsafe-component-lifecycles for details.\n\n" + "* Move data fetching code or side effects to componentDidUpdate.\n" + "\nPlease update the following components: %s", _sortedNames2);
+ }
+ if (componentWillMountUniqueNames.size > 0) {
+ var _sortedNames3 = setToSortedString(componentWillMountUniqueNames);
+ warn("componentWillMount has been renamed, and is not recommended for use. " + "See https://react.dev/link/unsafe-component-lifecycles for details.\n\n" + "* Move code with side effects to componentDidMount, and set initial state in the constructor.\n" + "* Rename componentWillMount to UNSAFE_componentWillMount to suppress " + "this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. " + "To rename all deprecated lifecycles to their new names, you can run " + "`npx react-codemod rename-unsafe-lifecycles` in your project source folder.\n" + "\nPlease update the following components: %s", _sortedNames3);
+ }
+ if (componentWillReceivePropsUniqueNames.size > 0) {
+ var _sortedNames4 = setToSortedString(componentWillReceivePropsUniqueNames);
+ warn("componentWillReceiveProps has been renamed, and is not recommended for use. " + "See https://react.dev/link/unsafe-component-lifecycles for details.\n\n" + "* Move data fetching code or side effects to componentDidUpdate.\n" + "* If you're updating state whenever props change, refactor your " + "code to use memoization techniques or move it to " + "static getDerivedStateFromProps. Learn more at: https://react.dev/link/derived-state\n" + "* Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress " + "this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. " + "To rename all deprecated lifecycles to their new names, you can run " + "`npx react-codemod rename-unsafe-lifecycles` in your project source folder.\n" + "\nPlease update the following components: %s", _sortedNames4);
+ }
+ if (componentWillUpdateUniqueNames.size > 0) {
+ var _sortedNames5 = setToSortedString(componentWillUpdateUniqueNames);
+ warn("componentWillUpdate has been renamed, and is not recommended for use. " + "See https://react.dev/link/unsafe-component-lifecycles for details.\n\n" + "* Move data fetching code or side effects to componentDidUpdate.\n" + "* Rename componentWillUpdate to UNSAFE_componentWillUpdate to suppress " + "this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. " + "To rename all deprecated lifecycles to their new names, you can run " + "`npx react-codemod rename-unsafe-lifecycles` in your project source folder.\n" + "\nPlease update the following components: %s", _sortedNames5);
+ }
+ };
+ var pendingLegacyContextWarning = new Map(); // Tracks components we have already warned about.
+
+ var didWarnAboutLegacyContext = new Set();
+ ReactStrictModeWarnings.recordLegacyContextWarning = function (fiber, instance) {
+ var strictRoot = findStrictRoot(fiber);
+ if (strictRoot === null) {
+ error("Expected to find a StrictMode component in a strict mode tree. " + "This error is likely caused by a bug in React. Please file an issue.");
+ return;
+ } // Dedup strategy: Warn once per component.
+
+ if (didWarnAboutLegacyContext.has(fiber.type)) {
+ return;
+ }
+ var warningsForRoot = pendingLegacyContextWarning.get(strictRoot);
+ if (fiber.type.contextTypes != null || fiber.type.childContextTypes != null || instance !== null && typeof instance.getChildContext === "function") {
+ if (warningsForRoot === undefined) {
+ warningsForRoot = [];
+ pendingLegacyContextWarning.set(strictRoot, warningsForRoot);
+ }
+ warningsForRoot.push(fiber);
+ }
+ };
+ ReactStrictModeWarnings.flushLegacyContextWarning = function () {
+ pendingLegacyContextWarning.forEach(function (fiberArray, strictRoot) {
+ if (fiberArray.length === 0) {
+ return;
+ }
+ var firstFiber = fiberArray[0];
+ var uniqueNames = new Set();
+ fiberArray.forEach(function (fiber) {
+ uniqueNames.add(getComponentNameFromFiber(fiber) || "Component");
+ didWarnAboutLegacyContext.add(fiber.type);
+ });
+ var sortedNames = setToSortedString(uniqueNames);
+ try {
+ setCurrentFiber(firstFiber);
+ error("Legacy context API has been detected within a strict-mode tree." + "\n\nThe old API will be supported in all 16.x releases, but applications " + "using it should migrate to the new version." + "\n\nPlease update the following components: %s" + "\n\nLearn more about this warning here: https://react.dev/link/legacy-context", sortedNames);
+ } finally {
+ resetCurrentFiber();
+ }
+ });
+ };
+ ReactStrictModeWarnings.discardPendingWarnings = function () {
+ pendingComponentWillMountWarnings = [];
+ pendingUNSAFE_ComponentWillMountWarnings = [];
+ pendingComponentWillReceivePropsWarnings = [];
+ pendingUNSAFE_ComponentWillReceivePropsWarnings = [];
+ pendingComponentWillUpdateWarnings = [];
+ pendingUNSAFE_ComponentWillUpdateWarnings = [];
+ pendingLegacyContextWarning = new Map();
+ };
+ }
+
+ /*
+ * The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol
+ * and Temporal.* types. See https://github.com/facebook/react/pull/22064.
+ *
+ * The functions in this module will throw an easier-to-understand,
+ * easier-to-debug exception with a clear errors message message explaining the
+ * problem. (Instead of a confusing exception thrown inside the implementation
+ * of the `value` object).
+ */
+ // $FlowFixMe only called in DEV, so void return is not possible.
+ function typeName(value) {
+ {
+ // toStringTag is needed for namespaced types like Temporal.Instant
+ var hasToStringTag = typeof Symbol === "function" && Symbol.toStringTag;
+ var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
+ return type;
+ }
+ } // $FlowFixMe only called in DEV, so void return is not possible.
+
+ function willCoercionThrow(value) {
+ {
+ try {
+ testStringCoercion(value);
+ return false;
+ } catch (e) {
+ return true;
+ }
+ }
+ }
+ function testStringCoercion(value) {
+ // If you ended up here by following an exception call stack, here's what's
+ // happened: you supplied an object or symbol value to React (as a prop, key,
+ // DOM attribute, CSS property, string ref, etc.) and when React tried to
+ // coerce it to a string using `'' + value`, an exception was thrown.
+ //
+ // The most common types that will cause this exception are `Symbol` instances
+ // and Temporal objects like `Temporal.Instant`. But any object that has a
+ // `valueOf` or `[Symbol.toPrimitive]` method that throws will also cause this
+ // exception. (Library authors do this to prevent users from using built-in
+ // numeric operators like `+` or comparison operators like `>=` because custom
+ // methods are needed to perform accurate arithmetic or comparison.)
+ //
+ // To fix the problem, coerce this object or symbol value to a string before
+ // passing it to React. The most reliable way is usually `String(value)`.
+ //
+ // To find which value is throwing, check the browser or debugger console.
+ // Before this exception was thrown, there should be `console.error` output
+ // that shows the type (Symbol, Temporal.PlainDate, etc.) that caused the
+ // problem and how that type was used: key, atrribute, input value prop, etc.
+ // In most cases, this console output also shows the component and its
+ // ancestor components where the exception happened.
+ //
+ // eslint-disable-next-line react-internal/safe-string-coercion
+ return "" + value;
+ }
+ function checkKeyStringCoercion(value) {
+ {
+ if (willCoercionThrow(value)) {
+ error("The provided key is an unsupported type %s." + " This value must be coerced to a string before before using it here.", typeName(value));
+ return testStringCoercion(value); // throw (to help callers find troubleshooting comments)
+ }
+ }
+ }
+ function checkPropStringCoercion(value, propName) {
+ {
+ if (willCoercionThrow(value)) {
+ error("The provided `%s` prop is an unsupported type %s." + " This value must be coerced to a string before before using it here.", propName, typeName(value));
+ return testStringCoercion(value); // throw (to help callers find troubleshooting comments)
+ }
+ }
+ }
+ function resolveDefaultProps(Component, baseProps) {
+ if (Component && Component.defaultProps) {
+ // Resolve default props. Taken from ReactElement
+ var props = assign({}, baseProps);
+ var defaultProps = Component.defaultProps;
+ for (var propName in defaultProps) {
+ if (props[propName] === undefined) {
+ props[propName] = defaultProps[propName];
+ }
+ }
+ return props;
+ }
+ return baseProps;
+ }
+ var valueCursor = createCursor(null);
+ var rendererSigil;
+ {
+ // Use this to detect multiple renderers using the same context
+ rendererSigil = {};
+ }
+ var currentlyRenderingFiber = null;
+ var lastContextDependency = null;
+ var lastFullyObservedContext = null;
+ var isDisallowedContextReadInDEV = false;
+ function resetContextDependencies() {
+ // This is called right before React yields execution, to ensure `readContext`
+ // cannot be called outside the render phase.
+ currentlyRenderingFiber = null;
+ lastContextDependency = null;
+ lastFullyObservedContext = null;
+ {
+ isDisallowedContextReadInDEV = false;
+ }
+ }
+ function enterDisallowedContextReadInDEV() {
+ {
+ isDisallowedContextReadInDEV = true;
+ }
+ }
+ function exitDisallowedContextReadInDEV() {
+ {
+ isDisallowedContextReadInDEV = false;
+ }
+ }
+ function pushProvider(providerFiber, context, nextValue) {
+ {
+ push(valueCursor, context._currentValue2, providerFiber);
+ context._currentValue2 = nextValue;
+ {
+ if (context._currentRenderer2 !== undefined && context._currentRenderer2 !== null && context._currentRenderer2 !== rendererSigil) {
+ error("Detected multiple renderers concurrently rendering the " + "same context provider. This is currently unsupported.");
+ }
+ context._currentRenderer2 = rendererSigil;
+ }
+ }
+ }
+ function popProvider(context, providerFiber) {
+ var currentValue = valueCursor.current;
+ pop(valueCursor, providerFiber);
+ {
+ {
+ context._currentValue2 = currentValue;
+ }
+ }
+ }
+ function scheduleContextWorkOnParentPath(parent, renderLanes, propagationRoot) {
+ // Update the child lanes of all the ancestors, including the alternates.
+ var node = parent;
+ while (node !== null) {
+ var alternate = node.alternate;
+ if (!isSubsetOfLanes(node.childLanes, renderLanes)) {
+ node.childLanes = mergeLanes(node.childLanes, renderLanes);
+ if (alternate !== null) {
+ alternate.childLanes = mergeLanes(alternate.childLanes, renderLanes);
+ }
+ } else if (alternate !== null && !isSubsetOfLanes(alternate.childLanes, renderLanes)) {
+ alternate.childLanes = mergeLanes(alternate.childLanes, renderLanes);
+ }
+ if (node === propagationRoot) {
+ break;
+ }
+ node = node.return;
+ }
+ {
+ if (node !== propagationRoot) {
+ error("Expected to find the propagation root when scheduling context work. " + "This error is likely caused by a bug in React. Please file an issue.");
+ }
+ }
+ }
+ function propagateContextChange(workInProgress, context, renderLanes) {
+ {
+ propagateContextChange_eager(workInProgress, context, renderLanes);
+ }
+ }
+ function propagateContextChange_eager(workInProgress, context, renderLanes) {
+ var fiber = workInProgress.child;
+ if (fiber !== null) {
+ // Set the return pointer of the child to the work-in-progress fiber.
+ fiber.return = workInProgress;
+ }
+ while (fiber !== null) {
+ var nextFiber = void 0; // Visit this fiber.
+
+ var list = fiber.dependencies;
+ if (list !== null) {
+ nextFiber = fiber.child;
+ var dependency = list.firstContext;
+ while (dependency !== null) {
+ // Check if the context matches.
+ if (dependency.context === context) {
+ // Match! Schedule an update on this fiber.
+ if (fiber.tag === ClassComponent) {
+ // Schedule a force update on the work-in-progress.
+ var lane = pickArbitraryLane(renderLanes);
+ var update = createUpdate(NoTimestamp, lane);
+ update.tag = ForceUpdate; // TODO: Because we don't have a work-in-progress, this will add the
+ // update to the current fiber, too, which means it will persist even if
+ // this render is thrown away. Since it's a race condition, not sure it's
+ // worth fixing.
+ // Inlined `enqueueUpdate` to remove interleaved update check
+
+ var updateQueue = fiber.updateQueue;
+ if (updateQueue === null) ;else {
+ var sharedQueue = updateQueue.shared;
+ var pending = sharedQueue.pending;
+ if (pending === null) {
+ // This is the first update. Create a circular list.
+ update.next = update;
+ } else {
+ update.next = pending.next;
+ pending.next = update;
+ }
+ sharedQueue.pending = update;
+ }
+ }
+ fiber.lanes = mergeLanes(fiber.lanes, renderLanes);
+ var alternate = fiber.alternate;
+ if (alternate !== null) {
+ alternate.lanes = mergeLanes(alternate.lanes, renderLanes);
+ }
+ scheduleContextWorkOnParentPath(fiber.return, renderLanes, workInProgress); // Mark the updated lanes on the list, too.
+
+ list.lanes = mergeLanes(list.lanes, renderLanes); // Since we already found a match, we can stop traversing the
+ // dependency list.
+
+ break;
+ }
+ dependency = dependency.next;
+ }
+ } else if (fiber.tag === ContextProvider) {
+ // Don't scan deeper if this is a matching provider
+ nextFiber = fiber.type === workInProgress.type ? null : fiber.child;
+ } else if (fiber.tag === DehydratedFragment) {
+ // If a dehydrated suspense boundary is in this subtree, we don't know
+ // if it will have any context consumers in it. The best we can do is
+ // mark it as having updates.
+ var parentSuspense = fiber.return;
+ if (parentSuspense === null) {
+ throw new Error("We just came from a parent so we must have had a parent. This is a bug in React.");
+ }
+ parentSuspense.lanes = mergeLanes(parentSuspense.lanes, renderLanes);
+ var _alternate = parentSuspense.alternate;
+ if (_alternate !== null) {
+ _alternate.lanes = mergeLanes(_alternate.lanes, renderLanes);
+ } // This is intentionally passing this fiber as the parent
+ // because we want to schedule this fiber as having work
+ // on its children. We'll use the childLanes on
+ // this fiber to indicate that a context has changed.
+
+ scheduleContextWorkOnParentPath(parentSuspense, renderLanes, workInProgress);
+ nextFiber = fiber.sibling;
+ } else {
+ // Traverse down.
+ nextFiber = fiber.child;
+ }
+ if (nextFiber !== null) {
+ // Set the return pointer of the child to the work-in-progress fiber.
+ nextFiber.return = fiber;
+ } else {
+ // No child. Traverse to next sibling.
+ nextFiber = fiber;
+ while (nextFiber !== null) {
+ if (nextFiber === workInProgress) {
+ // We're back to the root of this subtree. Exit.
+ nextFiber = null;
+ break;
+ }
+ var sibling = nextFiber.sibling;
+ if (sibling !== null) {
+ // Set the return pointer of the sibling to the work-in-progress fiber.
+ sibling.return = nextFiber.return;
+ nextFiber = sibling;
+ break;
+ } // No more siblings. Traverse up.
+
+ nextFiber = nextFiber.return;
+ }
+ }
+ fiber = nextFiber;
+ }
+ }
+ function prepareToReadContext(workInProgress, renderLanes) {
+ currentlyRenderingFiber = workInProgress;
+ lastContextDependency = null;
+ lastFullyObservedContext = null;
+ var dependencies = workInProgress.dependencies;
+ if (dependencies !== null) {
+ {
+ var firstContext = dependencies.firstContext;
+ if (firstContext !== null) {
+ if (includesSomeLane(dependencies.lanes, renderLanes)) {
+ // Context list has a pending update. Mark that this fiber performed work.
+ markWorkInProgressReceivedUpdate();
+ } // Reset the work-in-progress list
+
+ dependencies.firstContext = null;
+ }
+ }
+ }
+ }
+ function _readContext(context) {
+ {
+ // This warning would fire if you read context inside a Hook like useMemo.
+ // Unlike the class check below, it's not enforced in production for perf.
+ if (isDisallowedContextReadInDEV) {
+ error("Context can only be read while React is rendering. " + "In classes, you can read it in the render method or getDerivedStateFromProps. " + "In function components, you can read it directly in the function body, but not " + "inside Hooks like useReducer() or useMemo().");
+ }
+ }
+ var value = context._currentValue2;
+ if (lastFullyObservedContext === context) ;else {
+ var contextItem = {
+ context: context,
+ memoizedValue: value,
+ next: null
+ };
+ if (lastContextDependency === null) {
+ if (currentlyRenderingFiber === null) {
+ throw new Error("Context can only be read while React is rendering. " + "In classes, you can read it in the render method or getDerivedStateFromProps. " + "In function components, you can read it directly in the function body, but not " + "inside Hooks like useReducer() or useMemo().");
+ } // This is the first dependency for this component. Create a new list.
+
+ lastContextDependency = contextItem;
+ currentlyRenderingFiber.dependencies = {
+ lanes: NoLanes,
+ firstContext: contextItem
+ };
+ } else {
+ // Append a new context item.
+ lastContextDependency = lastContextDependency.next = contextItem;
+ }
+ }
+ return value;
+ }
+
+ // render. When this render exits, either because it finishes or because it is
+ // interrupted, the interleaved updates will be transferred onto the main part
+ // of the queue.
+
+ var concurrentQueues = null;
+ function pushConcurrentUpdateQueue(queue) {
+ if (concurrentQueues === null) {
+ concurrentQueues = [queue];
+ } else {
+ concurrentQueues.push(queue);
+ }
+ }
+ function finishQueueingConcurrentUpdates() {
+ // Transfer the interleaved updates onto the main queue. Each queue has a
+ // `pending` field and an `interleaved` field. When they are not null, they
+ // point to the last node in a circular linked list. We need to append the
+ // interleaved list to the end of the pending list by joining them into a
+ // single, circular list.
+ if (concurrentQueues !== null) {
+ for (var i = 0; i < concurrentQueues.length; i++) {
+ var queue = concurrentQueues[i];
+ var lastInterleavedUpdate = queue.interleaved;
+ if (lastInterleavedUpdate !== null) {
+ queue.interleaved = null;
+ var firstInterleavedUpdate = lastInterleavedUpdate.next;
+ var lastPendingUpdate = queue.pending;
+ if (lastPendingUpdate !== null) {
+ var firstPendingUpdate = lastPendingUpdate.next;
+ lastPendingUpdate.next = firstInterleavedUpdate;
+ lastInterleavedUpdate.next = firstPendingUpdate;
+ }
+ queue.pending = lastInterleavedUpdate;
+ }
+ }
+ concurrentQueues = null;
+ }
+ }
+ function enqueueConcurrentHookUpdate(fiber, queue, update, lane) {
+ var interleaved = queue.interleaved;
+ if (interleaved === null) {
+ // This is the first update. Create a circular list.
+ update.next = update; // At the end of the current render, this queue's interleaved updates will
+ // be transferred to the pending queue.
+
+ pushConcurrentUpdateQueue(queue);
+ } else {
+ update.next = interleaved.next;
+ interleaved.next = update;
+ }
+ queue.interleaved = update;
+ return markUpdateLaneFromFiberToRoot(fiber, lane);
+ }
+ function enqueueConcurrentHookUpdateAndEagerlyBailout(fiber, queue, update, lane) {
+ var interleaved = queue.interleaved;
+ if (interleaved === null) {
+ // This is the first update. Create a circular list.
+ update.next = update; // At the end of the current render, this queue's interleaved updates will
+ // be transferred to the pending queue.
+
+ pushConcurrentUpdateQueue(queue);
+ } else {
+ update.next = interleaved.next;
+ interleaved.next = update;
+ }
+ queue.interleaved = update;
+ }
+ function enqueueConcurrentClassUpdate(fiber, queue, update, lane) {
+ var interleaved = queue.interleaved;
+ if (interleaved === null) {
+ // This is the first update. Create a circular list.
+ update.next = update; // At the end of the current render, this queue's interleaved updates will
+ // be transferred to the pending queue.
+
+ pushConcurrentUpdateQueue(queue);
+ } else {
+ update.next = interleaved.next;
+ interleaved.next = update;
+ }
+ queue.interleaved = update;
+ return markUpdateLaneFromFiberToRoot(fiber, lane);
+ }
+ function enqueueConcurrentRenderForLane(fiber, lane) {
+ return markUpdateLaneFromFiberToRoot(fiber, lane);
+ } // Calling this function outside this module should only be done for backwards
+ // compatibility and should always be accompanied by a warning.
+
+ var unsafe_markUpdateLaneFromFiberToRoot = markUpdateLaneFromFiberToRoot;
+ function markUpdateLaneFromFiberToRoot(sourceFiber, lane) {
+ // Update the source fiber's lanes
+ sourceFiber.lanes = mergeLanes(sourceFiber.lanes, lane);
+ var alternate = sourceFiber.alternate;
+ if (alternate !== null) {
+ alternate.lanes = mergeLanes(alternate.lanes, lane);
+ }
+ {
+ if (alternate === null && (sourceFiber.flags & (Placement | Hydrating)) !== NoFlags) {
+ warnAboutUpdateOnNotYetMountedFiberInDEV(sourceFiber);
+ }
+ } // Walk the parent path to the root and update the child lanes.
+
+ var node = sourceFiber;
+ var parent = sourceFiber.return;
+ while (parent !== null) {
+ parent.childLanes = mergeLanes(parent.childLanes, lane);
+ alternate = parent.alternate;
+ if (alternate !== null) {
+ alternate.childLanes = mergeLanes(alternate.childLanes, lane);
+ } else {
+ {
+ if ((parent.flags & (Placement | Hydrating)) !== NoFlags) {
+ warnAboutUpdateOnNotYetMountedFiberInDEV(sourceFiber);
+ }
+ }
+ }
+ node = parent;
+ parent = parent.return;
+ }
+ if (node.tag === HostRoot) {
+ var root = node.stateNode;
+ return root;
+ } else {
+ return null;
+ }
+ }
+ var UpdateState = 0;
+ var ReplaceState = 1;
+ var ForceUpdate = 2;
+ var CaptureUpdate = 3; // Global state that is reset at the beginning of calling `processUpdateQueue`.
+ // It should only be read right after calling `processUpdateQueue`, via
+ // `checkHasForceUpdateAfterProcessing`.
+
+ var hasForceUpdate = false;
+ var didWarnUpdateInsideUpdate;
+ var currentlyProcessingQueue;
+ {
+ didWarnUpdateInsideUpdate = false;
+ currentlyProcessingQueue = null;
+ }
+ function initializeUpdateQueue(fiber) {
+ var queue = {
+ baseState: fiber.memoizedState,
+ firstBaseUpdate: null,
+ lastBaseUpdate: null,
+ shared: {
+ pending: null,
+ interleaved: null,
+ lanes: NoLanes
+ },
+ effects: null
+ };
+ fiber.updateQueue = queue;
+ }
+ function cloneUpdateQueue(current, workInProgress) {
+ // Clone the update queue from current. Unless it's already a clone.
+ var queue = workInProgress.updateQueue;
+ var currentQueue = current.updateQueue;
+ if (queue === currentQueue) {
+ var clone = {
+ baseState: currentQueue.baseState,
+ firstBaseUpdate: currentQueue.firstBaseUpdate,
+ lastBaseUpdate: currentQueue.lastBaseUpdate,
+ shared: currentQueue.shared,
+ effects: currentQueue.effects
+ };
+ workInProgress.updateQueue = clone;
+ }
+ }
+ function createUpdate(eventTime, lane) {
+ var update = {
+ eventTime: eventTime,
+ lane: lane,
+ tag: UpdateState,
+ payload: null,
+ callback: null,
+ next: null
+ };
+ return update;
+ }
+ function enqueueUpdate(fiber, update, lane) {
+ var updateQueue = fiber.updateQueue;
+ if (updateQueue === null) {
+ // Only occurs if the fiber has been unmounted.
+ return null;
+ }
+ var sharedQueue = updateQueue.shared;
+ {
+ if (currentlyProcessingQueue === sharedQueue && !didWarnUpdateInsideUpdate) {
+ error("An update (setState, replaceState, or forceUpdate) was scheduled " + "from inside an update function. Update functions should be pure, " + "with zero side-effects. Consider using componentDidUpdate or a " + "callback.");
+ didWarnUpdateInsideUpdate = true;
+ }
+ }
+ if (isUnsafeClassRenderPhaseUpdate()) {
+ // This is an unsafe render phase update. Add directly to the update
+ // queue so we can process it immediately during the current render.
+ var pending = sharedQueue.pending;
+ if (pending === null) {
+ // This is the first update. Create a circular list.
+ update.next = update;
+ } else {
+ update.next = pending.next;
+ pending.next = update;
+ }
+ sharedQueue.pending = update; // Update the childLanes even though we're most likely already rendering
+ // this fiber. This is for backwards compatibility in the case where you
+ // update a different component during render phase than the one that is
+ // currently renderings (a pattern that is accompanied by a warning).
+
+ return unsafe_markUpdateLaneFromFiberToRoot(fiber, lane);
+ } else {
+ return enqueueConcurrentClassUpdate(fiber, sharedQueue, update, lane);
+ }
+ }
+ function entangleTransitions(root, fiber, lane) {
+ var updateQueue = fiber.updateQueue;
+ if (updateQueue === null) {
+ // Only occurs if the fiber has been unmounted.
+ return;
+ }
+ var sharedQueue = updateQueue.shared;
+ if (isTransitionLane(lane)) {
+ var queueLanes = sharedQueue.lanes; // If any entangled lanes are no longer pending on the root, then they must
+ // have finished. We can remove them from the shared queue, which represents
+ // a superset of the actually pending lanes. In some cases we may entangle
+ // more than we need to, but that's OK. In fact it's worse if we *don't*
+ // entangle when we should.
+
+ queueLanes = intersectLanes(queueLanes, root.pendingLanes); // Entangle the new transition lane with the other transition lanes.
+
+ var newQueueLanes = mergeLanes(queueLanes, lane);
+ sharedQueue.lanes = newQueueLanes; // Even if queue.lanes already include lane, we don't know for certain if
+ // the lane finished since the last time we entangled it. So we need to
+ // entangle it again, just to be sure.
+
+ markRootEntangled(root, newQueueLanes);
+ }
+ }
+ function enqueueCapturedUpdate(workInProgress, capturedUpdate) {
+ // Captured updates are updates that are thrown by a child during the render
+ // phase. They should be discarded if the render is aborted. Therefore,
+ // we should only put them on the work-in-progress queue, not the current one.
+ var queue = workInProgress.updateQueue; // Check if the work-in-progress queue is a clone.
+
+ var current = workInProgress.alternate;
+ if (current !== null) {
+ var currentQueue = current.updateQueue;
+ if (queue === currentQueue) {
+ // The work-in-progress queue is the same as current. This happens when
+ // we bail out on a parent fiber that then captures an error thrown by
+ // a child. Since we want to append the update only to the work-in
+ // -progress queue, we need to clone the updates. We usually clone during
+ // processUpdateQueue, but that didn't happen in this case because we
+ // skipped over the parent when we bailed out.
+ var newFirst = null;
+ var newLast = null;
+ var firstBaseUpdate = queue.firstBaseUpdate;
+ if (firstBaseUpdate !== null) {
+ // Loop through the updates and clone them.
+ var update = firstBaseUpdate;
+ do {
+ var clone = {
+ eventTime: update.eventTime,
+ lane: update.lane,
+ tag: update.tag,
+ payload: update.payload,
+ callback: update.callback,
+ next: null
+ };
+ if (newLast === null) {
+ newFirst = newLast = clone;
+ } else {
+ newLast.next = clone;
+ newLast = clone;
+ }
+ update = update.next;
+ } while (update !== null); // Append the captured update the end of the cloned list.
+
+ if (newLast === null) {
+ newFirst = newLast = capturedUpdate;
+ } else {
+ newLast.next = capturedUpdate;
+ newLast = capturedUpdate;
+ }
+ } else {
+ // There are no base updates.
+ newFirst = newLast = capturedUpdate;
+ }
+ queue = {
+ baseState: currentQueue.baseState,
+ firstBaseUpdate: newFirst,
+ lastBaseUpdate: newLast,
+ shared: currentQueue.shared,
+ effects: currentQueue.effects
+ };
+ workInProgress.updateQueue = queue;
+ return;
+ }
+ } // Append the update to the end of the list.
+
+ var lastBaseUpdate = queue.lastBaseUpdate;
+ if (lastBaseUpdate === null) {
+ queue.firstBaseUpdate = capturedUpdate;
+ } else {
+ lastBaseUpdate.next = capturedUpdate;
+ }
+ queue.lastBaseUpdate = capturedUpdate;
+ }
+ function getStateFromUpdate(workInProgress, queue, update, prevState, nextProps, instance) {
+ switch (update.tag) {
+ case ReplaceState:
+ {
+ var payload = update.payload;
+ if (typeof payload === "function") {
+ // Updater function
+ {
+ enterDisallowedContextReadInDEV();
+ }
+ var nextState = payload.call(instance, prevState, nextProps);
+ {
+ exitDisallowedContextReadInDEV();
+ }
+ return nextState;
+ } // State object
+
+ return payload;
+ }
+ case CaptureUpdate:
+ {
+ workInProgress.flags = workInProgress.flags & ~ShouldCapture | DidCapture;
+ }
+ // Intentional fallthrough
+
+ case UpdateState:
+ {
+ var _payload = update.payload;
+ var partialState;
+ if (typeof _payload === "function") {
+ // Updater function
+ {
+ enterDisallowedContextReadInDEV();
+ }
+ partialState = _payload.call(instance, prevState, nextProps);
+ {
+ exitDisallowedContextReadInDEV();
+ }
+ } else {
+ // Partial state object
+ partialState = _payload;
+ }
+ if (partialState === null || partialState === undefined) {
+ // Null and undefined are treated as no-ops.
+ return prevState;
+ } // Merge the partial state and the previous state.
+
+ return assign({}, prevState, partialState);
+ }
+ case ForceUpdate:
+ {
+ hasForceUpdate = true;
+ return prevState;
+ }
+ }
+ return prevState;
+ }
+ function processUpdateQueue(workInProgress, props, instance, renderLanes) {
+ // This is always non-null on a ClassComponent or HostRoot
+ var queue = workInProgress.updateQueue;
+ hasForceUpdate = false;
+ {
+ currentlyProcessingQueue = queue.shared;
+ }
+ var firstBaseUpdate = queue.firstBaseUpdate;
+ var lastBaseUpdate = queue.lastBaseUpdate; // Check if there are pending updates. If so, transfer them to the base queue.
+
+ var pendingQueue = queue.shared.pending;
+ if (pendingQueue !== null) {
+ queue.shared.pending = null; // The pending queue is circular. Disconnect the pointer between first
+ // and last so that it's non-circular.
+
+ var lastPendingUpdate = pendingQueue;
+ var firstPendingUpdate = lastPendingUpdate.next;
+ lastPendingUpdate.next = null; // Append pending updates to base queue
+
+ if (lastBaseUpdate === null) {
+ firstBaseUpdate = firstPendingUpdate;
+ } else {
+ lastBaseUpdate.next = firstPendingUpdate;
+ }
+ lastBaseUpdate = lastPendingUpdate; // If there's a current queue, and it's different from the base queue, then
+ // we need to transfer the updates to that queue, too. Because the base
+ // queue is a singly-linked list with no cycles, we can append to both
+ // lists and take advantage of structural sharing.
+ // TODO: Pass `current` as argument
+
+ var current = workInProgress.alternate;
+ if (current !== null) {
+ // This is always non-null on a ClassComponent or HostRoot
+ var currentQueue = current.updateQueue;
+ var currentLastBaseUpdate = currentQueue.lastBaseUpdate;
+ if (currentLastBaseUpdate !== lastBaseUpdate) {
+ if (currentLastBaseUpdate === null) {
+ currentQueue.firstBaseUpdate = firstPendingUpdate;
+ } else {
+ currentLastBaseUpdate.next = firstPendingUpdate;
+ }
+ currentQueue.lastBaseUpdate = lastPendingUpdate;
+ }
+ }
+ } // These values may change as we process the queue.
+
+ if (firstBaseUpdate !== null) {
+ // Iterate through the list of updates to compute the result.
+ var newState = queue.baseState; // TODO: Don't need to accumulate this. Instead, we can remove renderLanes
+ // from the original lanes.
+
+ var newLanes = NoLanes;
+ var newBaseState = null;
+ var newFirstBaseUpdate = null;
+ var newLastBaseUpdate = null;
+ var update = firstBaseUpdate;
+ do {
+ var updateLane = update.lane;
+ var updateEventTime = update.eventTime;
+ if (!isSubsetOfLanes(renderLanes, updateLane)) {
+ // Priority is insufficient. Skip this update. If this is the first
+ // skipped update, the previous update/state is the new base
+ // update/state.
+ var clone = {
+ eventTime: updateEventTime,
+ lane: updateLane,
+ tag: update.tag,
+ payload: update.payload,
+ callback: update.callback,
+ next: null
+ };
+ if (newLastBaseUpdate === null) {
+ newFirstBaseUpdate = newLastBaseUpdate = clone;
+ newBaseState = newState;
+ } else {
+ newLastBaseUpdate = newLastBaseUpdate.next = clone;
+ } // Update the remaining priority in the queue.
+
+ newLanes = mergeLanes(newLanes, updateLane);
+ } else {
+ // This update does have sufficient priority.
+ if (newLastBaseUpdate !== null) {
+ var _clone = {
+ eventTime: updateEventTime,
+ // This update is going to be committed so we never want uncommit
+ // it. Using NoLane works because 0 is a subset of all bitmasks, so
+ // this will never be skipped by the check above.
+ lane: NoLane,
+ tag: update.tag,
+ payload: update.payload,
+ callback: update.callback,
+ next: null
+ };
+ newLastBaseUpdate = newLastBaseUpdate.next = _clone;
+ } // Process this update.
+
+ newState = getStateFromUpdate(workInProgress, queue, update, newState, props, instance);
+ var callback = update.callback;
+ if (callback !== null &&
+ // If the update was already committed, we should not queue its
+ // callback again.
+ update.lane !== NoLane) {
+ workInProgress.flags |= Callback;
+ var effects = queue.effects;
+ if (effects === null) {
+ queue.effects = [update];
+ } else {
+ effects.push(update);
+ }
+ }
+ }
+ update = update.next;
+ if (update === null) {
+ pendingQueue = queue.shared.pending;
+ if (pendingQueue === null) {
+ break;
+ } else {
+ // An update was scheduled from inside a reducer. Add the new
+ // pending updates to the end of the list and keep processing.
+ var _lastPendingUpdate = pendingQueue; // Intentionally unsound. Pending updates form a circular list, but we
+ // unravel them when transferring them to the base queue.
+
+ var _firstPendingUpdate = _lastPendingUpdate.next;
+ _lastPendingUpdate.next = null;
+ update = _firstPendingUpdate;
+ queue.lastBaseUpdate = _lastPendingUpdate;
+ queue.shared.pending = null;
+ }
+ }
+ } while (true);
+ if (newLastBaseUpdate === null) {
+ newBaseState = newState;
+ }
+ queue.baseState = newBaseState;
+ queue.firstBaseUpdate = newFirstBaseUpdate;
+ queue.lastBaseUpdate = newLastBaseUpdate; // Interleaved updates are stored on a separate queue. We aren't going to
+ // process them during this render, but we do need to track which lanes
+ // are remaining.
+
+ var lastInterleaved = queue.shared.interleaved;
+ if (lastInterleaved !== null) {
+ var interleaved = lastInterleaved;
+ do {
+ newLanes = mergeLanes(newLanes, interleaved.lane);
+ interleaved = interleaved.next;
+ } while (interleaved !== lastInterleaved);
+ } else if (firstBaseUpdate === null) {
+ // `queue.lanes` is used for entangling transitions. We can set it back to
+ // zero once the queue is empty.
+ queue.shared.lanes = NoLanes;
+ } // Set the remaining expiration time to be whatever is remaining in the queue.
+ // This should be fine because the only two other things that contribute to
+ // expiration time are props and context. We're already in the middle of the
+ // begin phase by the time we start processing the queue, so we've already
+ // dealt with the props. Context in components that specify
+ // shouldComponentUpdate is tricky; but we'll have to account for
+ // that regardless.
+
+ markSkippedUpdateLanes(newLanes);
+ workInProgress.lanes = newLanes;
+ workInProgress.memoizedState = newState;
+ }
+ {
+ currentlyProcessingQueue = null;
+ }
+ }
+ function callCallback(callback, context) {
+ if (typeof callback !== "function") {
+ throw new Error("Invalid argument passed as callback. Expected a function. Instead " + ("received: " + callback));
+ }
+ callback.call(context);
+ }
+ function resetHasForceUpdateBeforeProcessing() {
+ hasForceUpdate = false;
+ }
+ function checkHasForceUpdateAfterProcessing() {
+ return hasForceUpdate;
+ }
+ function commitUpdateQueue(finishedWork, finishedQueue, instance) {
+ // Commit the effects
+ var effects = finishedQueue.effects;
+ finishedQueue.effects = null;
+ if (effects !== null) {
+ for (var i = 0; i < effects.length; i++) {
+ var effect = effects[i];
+ var callback = effect.callback;
+ if (callback !== null) {
+ effect.callback = null;
+ callCallback(callback, instance);
+ }
+ }
+ }
+ }
+ var fakeInternalInstance = {}; // React.Component uses a shared frozen object by default.
+ // We'll use it to determine whether we need to initialize legacy refs.
+
+ var emptyRefsObject = new React.Component().refs;
+ var didWarnAboutStateAssignmentForComponent;
+ var didWarnAboutUninitializedState;
+ var didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate;
+ var didWarnAboutLegacyLifecyclesAndDerivedState;
+ var didWarnAboutUndefinedDerivedState;
+ var warnOnUndefinedDerivedState;
+ var warnOnInvalidCallback;
+ var didWarnAboutDirectlyAssigningPropsToState;
+ var didWarnAboutContextTypeAndContextTypes;
+ var didWarnAboutInvalidateContextType;
+ {
+ didWarnAboutStateAssignmentForComponent = new Set();
+ didWarnAboutUninitializedState = new Set();
+ didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate = new Set();
+ didWarnAboutLegacyLifecyclesAndDerivedState = new Set();
+ didWarnAboutDirectlyAssigningPropsToState = new Set();
+ didWarnAboutUndefinedDerivedState = new Set();
+ didWarnAboutContextTypeAndContextTypes = new Set();
+ didWarnAboutInvalidateContextType = new Set();
+ var didWarnOnInvalidCallback = new Set();
+ warnOnInvalidCallback = function warnOnInvalidCallback(callback, callerName) {
+ if (callback === null || typeof callback === "function") {
+ return;
+ }
+ var key = callerName + "_" + callback;
+ if (!didWarnOnInvalidCallback.has(key)) {
+ didWarnOnInvalidCallback.add(key);
+ error("%s(...): Expected the last optional `callback` argument to be a " + "function. Instead received: %s.", callerName, callback);
+ }
+ };
+ warnOnUndefinedDerivedState = function warnOnUndefinedDerivedState(type, partialState) {
+ if (partialState === undefined) {
+ var componentName = getComponentNameFromType(type) || "Component";
+ if (!didWarnAboutUndefinedDerivedState.has(componentName)) {
+ didWarnAboutUndefinedDerivedState.add(componentName);
+ error("%s.getDerivedStateFromProps(): A valid state object (or null) must be returned. " + "You have returned undefined.", componentName);
+ }
+ }
+ }; // This is so gross but it's at least non-critical and can be removed if
+ // it causes problems. This is meant to give a nicer error message for
+ // ReactDOM15.unstable_renderSubtreeIntoContainer(reactDOM16Component,
+ // ...)) which otherwise throws a "_processChildContext is not a function"
+ // exception.
+
+ Object.defineProperty(fakeInternalInstance, "_processChildContext", {
+ enumerable: false,
+ value: function value() {
+ throw new Error("_processChildContext is not available in React 16+. This likely " + "means you have multiple copies of React and are attempting to nest " + "a React 15 tree inside a React 16 tree using " + "unstable_renderSubtreeIntoContainer, which isn't supported. Try " + "to make sure you have only one copy of React (and ideally, switch " + "to ReactDOM.createPortal).");
+ }
+ });
+ Object.freeze(fakeInternalInstance);
+ }
+ function applyDerivedStateFromProps(workInProgress, ctor, getDerivedStateFromProps, nextProps) {
+ var prevState = workInProgress.memoizedState;
+ var partialState = getDerivedStateFromProps(nextProps, prevState);
+ {
+ warnOnUndefinedDerivedState(ctor, partialState);
+ } // Merge the partial state and the previous state.
+
+ var memoizedState = partialState === null || partialState === undefined ? prevState : assign({}, prevState, partialState);
+ workInProgress.memoizedState = memoizedState; // Once the update queue is empty, persist the derived state onto the
+ // base state.
+
+ if (workInProgress.lanes === NoLanes) {
+ // Queue is always non-null for classes
+ var updateQueue = workInProgress.updateQueue;
+ updateQueue.baseState = memoizedState;
+ }
+ }
+ var classComponentUpdater = {
+ isMounted: isMounted,
+ enqueueSetState: function enqueueSetState(inst, payload, callback) {
+ var fiber = get(inst);
+ var eventTime = requestEventTime();
+ var lane = requestUpdateLane(fiber);
+ var update = createUpdate(eventTime, lane);
+ update.payload = payload;
+ if (callback !== undefined && callback !== null) {
+ {
+ warnOnInvalidCallback(callback, "setState");
+ }
+ update.callback = callback;
+ }
+ var root = enqueueUpdate(fiber, update, lane);
+ if (root !== null) {
+ scheduleUpdateOnFiber(root, fiber, lane, eventTime);
+ entangleTransitions(root, fiber, lane);
+ }
+ },
+ enqueueReplaceState: function enqueueReplaceState(inst, payload, callback) {
+ var fiber = get(inst);
+ var eventTime = requestEventTime();
+ var lane = requestUpdateLane(fiber);
+ var update = createUpdate(eventTime, lane);
+ update.tag = ReplaceState;
+ update.payload = payload;
+ if (callback !== undefined && callback !== null) {
+ {
+ warnOnInvalidCallback(callback, "replaceState");
+ }
+ update.callback = callback;
+ }
+ var root = enqueueUpdate(fiber, update, lane);
+ if (root !== null) {
+ scheduleUpdateOnFiber(root, fiber, lane, eventTime);
+ entangleTransitions(root, fiber, lane);
+ }
+ },
+ enqueueForceUpdate: function enqueueForceUpdate(inst, callback) {
+ var fiber = get(inst);
+ var eventTime = requestEventTime();
+ var lane = requestUpdateLane(fiber);
+ var update = createUpdate(eventTime, lane);
+ update.tag = ForceUpdate;
+ if (callback !== undefined && callback !== null) {
+ {
+ warnOnInvalidCallback(callback, "forceUpdate");
+ }
+ update.callback = callback;
+ }
+ var root = enqueueUpdate(fiber, update, lane);
+ if (root !== null) {
+ scheduleUpdateOnFiber(root, fiber, lane, eventTime);
+ entangleTransitions(root, fiber, lane);
+ }
+ }
+ };
+ function checkShouldComponentUpdate(workInProgress, ctor, oldProps, newProps, oldState, newState, nextContext) {
+ var instance = workInProgress.stateNode;
+ if (typeof instance.shouldComponentUpdate === "function") {
+ var shouldUpdate = instance.shouldComponentUpdate(newProps, newState, nextContext);
+ {
+ if (shouldUpdate === undefined) {
+ error("%s.shouldComponentUpdate(): Returned undefined instead of a " + "boolean value. Make sure to return true or false.", getComponentNameFromType(ctor) || "Component");
+ }
+ }
+ return shouldUpdate;
+ }
+ if (ctor.prototype && ctor.prototype.isPureReactComponent) {
+ return !shallowEqual(oldProps, newProps) || !shallowEqual(oldState, newState);
+ }
+ return true;
+ }
+ function checkClassInstance(workInProgress, ctor, newProps) {
+ var instance = workInProgress.stateNode;
+ {
+ var name = getComponentNameFromType(ctor) || "Component";
+ var renderPresent = instance.render;
+ if (!renderPresent) {
+ if (ctor.prototype && typeof ctor.prototype.render === "function") {
+ error("%s(...): No `render` method found on the returned component " + "instance: did you accidentally return an object from the constructor?", name);
+ } else {
+ error("%s(...): No `render` method found on the returned component " + "instance: you may have forgotten to define `render`.", name);
+ }
+ }
+ if (instance.getInitialState && !instance.getInitialState.isReactClassApproved && !instance.state) {
+ error("getInitialState was defined on %s, a plain JavaScript class. " + "This is only supported for classes created using React.createClass. " + "Did you mean to define a state property instead?", name);
+ }
+ if (instance.getDefaultProps && !instance.getDefaultProps.isReactClassApproved) {
+ error("getDefaultProps was defined on %s, a plain JavaScript class. " + "This is only supported for classes created using React.createClass. " + "Use a static property to define defaultProps instead.", name);
+ }
+ if (instance.propTypes) {
+ error("propTypes was defined as an instance property on %s. Use a static " + "property to define propTypes instead.", name);
+ }
+ if (instance.contextType) {
+ error("contextType was defined as an instance property on %s. Use a static " + "property to define contextType instead.", name);
+ }
+ {
+ if (instance.contextTypes) {
+ error("contextTypes was defined as an instance property on %s. Use a static " + "property to define contextTypes instead.", name);
+ }
+ if (ctor.contextType && ctor.contextTypes && !didWarnAboutContextTypeAndContextTypes.has(ctor)) {
+ didWarnAboutContextTypeAndContextTypes.add(ctor);
+ error("%s declares both contextTypes and contextType static properties. " + "The legacy contextTypes property will be ignored.", name);
+ }
+ }
+ if (typeof instance.componentShouldUpdate === "function") {
+ error("%s has a method called " + "componentShouldUpdate(). Did you mean shouldComponentUpdate()? " + "The name is phrased as a question because the function is " + "expected to return a value.", name);
+ }
+ if (ctor.prototype && ctor.prototype.isPureReactComponent && typeof instance.shouldComponentUpdate !== "undefined") {
+ error("%s has a method called shouldComponentUpdate(). " + "shouldComponentUpdate should not be used when extending React.PureComponent. " + "Please extend React.Component if shouldComponentUpdate is used.", getComponentNameFromType(ctor) || "A pure component");
+ }
+ if (typeof instance.componentDidUnmount === "function") {
+ error("%s has a method called " + "componentDidUnmount(). But there is no such lifecycle method. " + "Did you mean componentWillUnmount()?", name);
+ }
+ if (typeof instance.componentDidReceiveProps === "function") {
+ error("%s has a method called " + "componentDidReceiveProps(). But there is no such lifecycle method. " + "If you meant to update the state in response to changing props, " + "use componentWillReceiveProps(). If you meant to fetch data or " + "run side-effects or mutations after React has updated the UI, use componentDidUpdate().", name);
+ }
+ if (typeof instance.componentWillRecieveProps === "function") {
+ error("%s has a method called " + "componentWillRecieveProps(). Did you mean componentWillReceiveProps()?", name);
+ }
+ if (typeof instance.UNSAFE_componentWillRecieveProps === "function") {
+ error("%s has a method called " + "UNSAFE_componentWillRecieveProps(). Did you mean UNSAFE_componentWillReceiveProps()?", name);
+ }
+ var hasMutatedProps = instance.props !== newProps;
+ if (instance.props !== undefined && hasMutatedProps) {
+ error("%s(...): When calling super() in `%s`, make sure to pass " + "up the same props that your component's constructor was passed.", name, name);
+ }
+ if (instance.defaultProps) {
+ error("Setting defaultProps as an instance property on %s is not supported and will be ignored." + " Instead, define defaultProps as a static property on %s.", name, name);
+ }
+ if (typeof instance.getSnapshotBeforeUpdate === "function" && typeof instance.componentDidUpdate !== "function" && !didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate.has(ctor)) {
+ didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate.add(ctor);
+ error("%s: getSnapshotBeforeUpdate() should be used with componentDidUpdate(). " + "This component defines getSnapshotBeforeUpdate() only.", getComponentNameFromType(ctor));
+ }
+ if (typeof instance.getDerivedStateFromProps === "function") {
+ error("%s: getDerivedStateFromProps() is defined as an instance method " + "and will be ignored. Instead, declare it as a static method.", name);
+ }
+ if (typeof instance.getDerivedStateFromError === "function") {
+ error("%s: getDerivedStateFromError() is defined as an instance method " + "and will be ignored. Instead, declare it as a static method.", name);
+ }
+ if (typeof ctor.getSnapshotBeforeUpdate === "function") {
+ error("%s: getSnapshotBeforeUpdate() is defined as a static method " + "and will be ignored. Instead, declare it as an instance method.", name);
+ }
+ var _state = instance.state;
+ if (_state && (typeof _state !== "object" || isArray(_state))) {
+ error("%s.state: must be set to an object or null", name);
+ }
+ if (typeof instance.getChildContext === "function" && typeof ctor.childContextTypes !== "object") {
+ error("%s.getChildContext(): childContextTypes must be defined in order to " + "use getChildContext().", name);
+ }
+ }
+ }
+ function adoptClassInstance(workInProgress, instance) {
+ instance.updater = classComponentUpdater;
+ workInProgress.stateNode = instance; // The instance needs access to the fiber so that it can schedule updates
+
+ set(instance, workInProgress);
+ {
+ instance._reactInternalInstance = fakeInternalInstance;
+ }
+ }
+ function constructClassInstance(workInProgress, ctor, props) {
+ var isLegacyContextConsumer = false;
+ var unmaskedContext = emptyContextObject;
+ var context = emptyContextObject;
+ var contextType = ctor.contextType;
+ {
+ if ("contextType" in ctor) {
+ var isValid =
+ // Allow null for conditional declaration
+ contextType === null || contextType !== undefined && contextType.$$typeof === REACT_CONTEXT_TYPE && contextType._context === undefined; // Not a
+
+ if (!isValid && !didWarnAboutInvalidateContextType.has(ctor)) {
+ didWarnAboutInvalidateContextType.add(ctor);
+ var addendum = "";
+ if (contextType === undefined) {
+ addendum = " However, it is set to undefined. " + "This can be caused by a typo or by mixing up named and default imports. " + "This can also happen due to a circular dependency, so " + "try moving the createContext() call to a separate file.";
+ } else if (typeof contextType !== "object") {
+ addendum = " However, it is set to a " + typeof contextType + ".";
+ } else if (contextType.$$typeof === REACT_PROVIDER_TYPE) {
+ addendum = " Did you accidentally pass the Context.Provider instead?";
+ } else if (contextType._context !== undefined) {
+ //
+ addendum = " Did you accidentally pass the Context.Consumer instead?";
+ } else {
+ addendum = " However, it is set to an object with keys {" + Object.keys(contextType).join(", ") + "}.";
+ }
+ error("%s defines an invalid contextType. " + "contextType should point to the Context object returned by React.createContext().%s", getComponentNameFromType(ctor) || "Component", addendum);
+ }
+ }
+ }
+ if (typeof contextType === "object" && contextType !== null) {
+ context = _readContext(contextType);
+ } else {
+ unmaskedContext = getUnmaskedContext(workInProgress, ctor, true);
+ var contextTypes = ctor.contextTypes;
+ isLegacyContextConsumer = contextTypes !== null && contextTypes !== undefined;
+ context = isLegacyContextConsumer ? getMaskedContext(workInProgress, unmaskedContext) : emptyContextObject;
+ }
+ var instance = new ctor(props, context); // Instantiate twice to help detect side-effects.
+
+ var state = workInProgress.memoizedState = instance.state !== null && instance.state !== undefined ? instance.state : null;
+ adoptClassInstance(workInProgress, instance);
+ {
+ if (typeof ctor.getDerivedStateFromProps === "function" && state === null) {
+ var componentName = getComponentNameFromType(ctor) || "Component";
+ if (!didWarnAboutUninitializedState.has(componentName)) {
+ didWarnAboutUninitializedState.add(componentName);
+ error("`%s` uses `getDerivedStateFromProps` but its initial state is " + "%s. This is not recommended. Instead, define the initial state by " + "assigning an object to `this.state` in the constructor of `%s`. " + "This ensures that `getDerivedStateFromProps` arguments have a consistent shape.", componentName, instance.state === null ? "null" : "undefined", componentName);
+ }
+ } // If new component APIs are defined, "unsafe" lifecycles won't be called.
+ // Warn about these lifecycles if they are present.
+ // Don't warn about react-lifecycles-compat polyfilled methods though.
+
+ if (typeof ctor.getDerivedStateFromProps === "function" || typeof instance.getSnapshotBeforeUpdate === "function") {
+ var foundWillMountName = null;
+ var foundWillReceivePropsName = null;
+ var foundWillUpdateName = null;
+ if (typeof instance.componentWillMount === "function" && instance.componentWillMount.__suppressDeprecationWarning !== true) {
+ foundWillMountName = "componentWillMount";
+ } else if (typeof instance.UNSAFE_componentWillMount === "function") {
+ foundWillMountName = "UNSAFE_componentWillMount";
+ }
+ if (typeof instance.componentWillReceiveProps === "function" && instance.componentWillReceiveProps.__suppressDeprecationWarning !== true) {
+ foundWillReceivePropsName = "componentWillReceiveProps";
+ } else if (typeof instance.UNSAFE_componentWillReceiveProps === "function") {
+ foundWillReceivePropsName = "UNSAFE_componentWillReceiveProps";
+ }
+ if (typeof instance.componentWillUpdate === "function" && instance.componentWillUpdate.__suppressDeprecationWarning !== true) {
+ foundWillUpdateName = "componentWillUpdate";
+ } else if (typeof instance.UNSAFE_componentWillUpdate === "function") {
+ foundWillUpdateName = "UNSAFE_componentWillUpdate";
+ }
+ if (foundWillMountName !== null || foundWillReceivePropsName !== null || foundWillUpdateName !== null) {
+ var _componentName = getComponentNameFromType(ctor) || "Component";
+ var newApiName = typeof ctor.getDerivedStateFromProps === "function" ? "getDerivedStateFromProps()" : "getSnapshotBeforeUpdate()";
+ if (!didWarnAboutLegacyLifecyclesAndDerivedState.has(_componentName)) {
+ didWarnAboutLegacyLifecyclesAndDerivedState.add(_componentName);
+ error("Unsafe legacy lifecycles will not be called for components using new component APIs.\n\n" + "%s uses %s but also contains the following legacy lifecycles:%s%s%s\n\n" + "The above lifecycles should be removed. Learn more about this warning here:\n" + "https://react.dev/link/unsafe-component-lifecycles", _componentName, newApiName, foundWillMountName !== null ? "\n " + foundWillMountName : "", foundWillReceivePropsName !== null ? "\n " + foundWillReceivePropsName : "", foundWillUpdateName !== null ? "\n " + foundWillUpdateName : "");
+ }
+ }
+ }
+ } // Cache unmasked context so we can avoid recreating masked context unless necessary.
+ // ReactFiberContext usually updates this cache but can't for newly-created instances.
+
+ if (isLegacyContextConsumer) {
+ cacheContext(workInProgress, unmaskedContext, context);
+ }
+ return instance;
+ }
+ function callComponentWillMount(workInProgress, instance) {
+ var oldState = instance.state;
+ if (typeof instance.componentWillMount === "function") {
+ instance.componentWillMount();
+ }
+ if (typeof instance.UNSAFE_componentWillMount === "function") {
+ instance.UNSAFE_componentWillMount();
+ }
+ if (oldState !== instance.state) {
+ {
+ error("%s.componentWillMount(): Assigning directly to this.state is " + "deprecated (except inside a component's " + "constructor). Use setState instead.", getComponentNameFromFiber(workInProgress) || "Component");
+ }
+ classComponentUpdater.enqueueReplaceState(instance, instance.state, null);
+ }
+ }
+ function callComponentWillReceiveProps(workInProgress, instance, newProps, nextContext) {
+ var oldState = instance.state;
+ if (typeof instance.componentWillReceiveProps === "function") {
+ instance.componentWillReceiveProps(newProps, nextContext);
+ }
+ if (typeof instance.UNSAFE_componentWillReceiveProps === "function") {
+ instance.UNSAFE_componentWillReceiveProps(newProps, nextContext);
+ }
+ if (instance.state !== oldState) {
+ {
+ var componentName = getComponentNameFromFiber(workInProgress) || "Component";
+ if (!didWarnAboutStateAssignmentForComponent.has(componentName)) {
+ didWarnAboutStateAssignmentForComponent.add(componentName);
+ error("%s.componentWillReceiveProps(): Assigning directly to " + "this.state is deprecated (except inside a component's " + "constructor). Use setState instead.", componentName);
+ }
+ }
+ classComponentUpdater.enqueueReplaceState(instance, instance.state, null);
+ }
+ } // Invokes the mount life-cycles on a previously never rendered instance.
+
+ function mountClassInstance(workInProgress, ctor, newProps, renderLanes) {
+ {
+ checkClassInstance(workInProgress, ctor, newProps);
+ }
+ var instance = workInProgress.stateNode;
+ instance.props = newProps;
+ instance.state = workInProgress.memoizedState;
+ instance.refs = emptyRefsObject;
+ initializeUpdateQueue(workInProgress);
+ var contextType = ctor.contextType;
+ if (typeof contextType === "object" && contextType !== null) {
+ instance.context = _readContext(contextType);
+ } else {
+ var unmaskedContext = getUnmaskedContext(workInProgress, ctor, true);
+ instance.context = getMaskedContext(workInProgress, unmaskedContext);
+ }
+ {
+ if (instance.state === newProps) {
+ var componentName = getComponentNameFromType(ctor) || "Component";
+ if (!didWarnAboutDirectlyAssigningPropsToState.has(componentName)) {
+ didWarnAboutDirectlyAssigningPropsToState.add(componentName);
+ error("%s: It is not recommended to assign props directly to state " + "because updates to props won't be reflected in state. " + "In most cases, it is better to use props directly.", componentName);
+ }
+ }
+ if (workInProgress.mode & StrictLegacyMode) {
+ ReactStrictModeWarnings.recordLegacyContextWarning(workInProgress, instance);
+ }
+ {
+ ReactStrictModeWarnings.recordUnsafeLifecycleWarnings(workInProgress, instance);
+ }
+ }
+ instance.state = workInProgress.memoizedState;
+ var getDerivedStateFromProps = ctor.getDerivedStateFromProps;
+ if (typeof getDerivedStateFromProps === "function") {
+ applyDerivedStateFromProps(workInProgress, ctor, getDerivedStateFromProps, newProps);
+ instance.state = workInProgress.memoizedState;
+ } // In order to support react-lifecycles-compat polyfilled components,
+ // Unsafe lifecycles should not be invoked for components using the new APIs.
+
+ if (typeof ctor.getDerivedStateFromProps !== "function" && typeof instance.getSnapshotBeforeUpdate !== "function" && (typeof instance.UNSAFE_componentWillMount === "function" || typeof instance.componentWillMount === "function")) {
+ callComponentWillMount(workInProgress, instance); // If we had additional state updates during this life-cycle, let's
+ // process them now.
+
+ processUpdateQueue(workInProgress, newProps, instance, renderLanes);
+ instance.state = workInProgress.memoizedState;
+ }
+ if (typeof instance.componentDidMount === "function") {
+ var fiberFlags = Update;
+ workInProgress.flags |= fiberFlags;
+ }
+ }
+ function resumeMountClassInstance(workInProgress, ctor, newProps, renderLanes) {
+ var instance = workInProgress.stateNode;
+ var oldProps = workInProgress.memoizedProps;
+ instance.props = oldProps;
+ var oldContext = instance.context;
+ var contextType = ctor.contextType;
+ var nextContext = emptyContextObject;
+ if (typeof contextType === "object" && contextType !== null) {
+ nextContext = _readContext(contextType);
+ } else {
+ var nextLegacyUnmaskedContext = getUnmaskedContext(workInProgress, ctor, true);
+ nextContext = getMaskedContext(workInProgress, nextLegacyUnmaskedContext);
+ }
+ var getDerivedStateFromProps = ctor.getDerivedStateFromProps;
+ var hasNewLifecycles = typeof getDerivedStateFromProps === "function" || typeof instance.getSnapshotBeforeUpdate === "function"; // Note: During these life-cycles, instance.props/instance.state are what
+ // ever the previously attempted to render - not the "current". However,
+ // during componentDidUpdate we pass the "current" props.
+ // In order to support react-lifecycles-compat polyfilled components,
+ // Unsafe lifecycles should not be invoked for components using the new APIs.
+
+ if (!hasNewLifecycles && (typeof instance.UNSAFE_componentWillReceiveProps === "function" || typeof instance.componentWillReceiveProps === "function")) {
+ if (oldProps !== newProps || oldContext !== nextContext) {
+ callComponentWillReceiveProps(workInProgress, instance, newProps, nextContext);
+ }
+ }
+ resetHasForceUpdateBeforeProcessing();
+ var oldState = workInProgress.memoizedState;
+ var newState = instance.state = oldState;
+ processUpdateQueue(workInProgress, newProps, instance, renderLanes);
+ newState = workInProgress.memoizedState;
+ if (oldProps === newProps && oldState === newState && !hasContextChanged() && !checkHasForceUpdateAfterProcessing()) {
+ // If an update was already in progress, we should schedule an Update
+ // effect even though we're bailing out, so that cWU/cDU are called.
+ if (typeof instance.componentDidMount === "function") {
+ var fiberFlags = Update;
+ workInProgress.flags |= fiberFlags;
+ }
+ return false;
+ }
+ if (typeof getDerivedStateFromProps === "function") {
+ applyDerivedStateFromProps(workInProgress, ctor, getDerivedStateFromProps, newProps);
+ newState = workInProgress.memoizedState;
+ }
+ var shouldUpdate = checkHasForceUpdateAfterProcessing() || checkShouldComponentUpdate(workInProgress, ctor, oldProps, newProps, oldState, newState, nextContext);
+ if (shouldUpdate) {
+ // In order to support react-lifecycles-compat polyfilled components,
+ // Unsafe lifecycles should not be invoked for components using the new APIs.
+ if (!hasNewLifecycles && (typeof instance.UNSAFE_componentWillMount === "function" || typeof instance.componentWillMount === "function")) {
+ if (typeof instance.componentWillMount === "function") {
+ instance.componentWillMount();
+ }
+ if (typeof instance.UNSAFE_componentWillMount === "function") {
+ instance.UNSAFE_componentWillMount();
+ }
+ }
+ if (typeof instance.componentDidMount === "function") {
+ var _fiberFlags = Update;
+ workInProgress.flags |= _fiberFlags;
+ }
+ } else {
+ // If an update was already in progress, we should schedule an Update
+ // effect even though we're bailing out, so that cWU/cDU are called.
+ if (typeof instance.componentDidMount === "function") {
+ var _fiberFlags2 = Update;
+ workInProgress.flags |= _fiberFlags2;
+ } // If shouldComponentUpdate returned false, we should still update the
+ // memoized state to indicate that this work can be reused.
+
+ workInProgress.memoizedProps = newProps;
+ workInProgress.memoizedState = newState;
+ } // Update the existing instance's state, props, and context pointers even
+ // if shouldComponentUpdate returns false.
+
+ instance.props = newProps;
+ instance.state = newState;
+ instance.context = nextContext;
+ return shouldUpdate;
+ } // Invokes the update life-cycles and returns false if it shouldn't rerender.
+
+ function updateClassInstance(current, workInProgress, ctor, newProps, renderLanes) {
+ var instance = workInProgress.stateNode;
+ cloneUpdateQueue(current, workInProgress);
+ var unresolvedOldProps = workInProgress.memoizedProps;
+ var oldProps = workInProgress.type === workInProgress.elementType ? unresolvedOldProps : resolveDefaultProps(workInProgress.type, unresolvedOldProps);
+ instance.props = oldProps;
+ var unresolvedNewProps = workInProgress.pendingProps;
+ var oldContext = instance.context;
+ var contextType = ctor.contextType;
+ var nextContext = emptyContextObject;
+ if (typeof contextType === "object" && contextType !== null) {
+ nextContext = _readContext(contextType);
+ } else {
+ var nextUnmaskedContext = getUnmaskedContext(workInProgress, ctor, true);
+ nextContext = getMaskedContext(workInProgress, nextUnmaskedContext);
+ }
+ var getDerivedStateFromProps = ctor.getDerivedStateFromProps;
+ var hasNewLifecycles = typeof getDerivedStateFromProps === "function" || typeof instance.getSnapshotBeforeUpdate === "function"; // Note: During these life-cycles, instance.props/instance.state are what
+ // ever the previously attempted to render - not the "current". However,
+ // during componentDidUpdate we pass the "current" props.
+ // In order to support react-lifecycles-compat polyfilled components,
+ // Unsafe lifecycles should not be invoked for components using the new APIs.
+
+ if (!hasNewLifecycles && (typeof instance.UNSAFE_componentWillReceiveProps === "function" || typeof instance.componentWillReceiveProps === "function")) {
+ if (unresolvedOldProps !== unresolvedNewProps || oldContext !== nextContext) {
+ callComponentWillReceiveProps(workInProgress, instance, newProps, nextContext);
+ }
+ }
+ resetHasForceUpdateBeforeProcessing();
+ var oldState = workInProgress.memoizedState;
+ var newState = instance.state = oldState;
+ processUpdateQueue(workInProgress, newProps, instance, renderLanes);
+ newState = workInProgress.memoizedState;
+ if (unresolvedOldProps === unresolvedNewProps && oldState === newState && !hasContextChanged() && !checkHasForceUpdateAfterProcessing() && !enableLazyContextPropagation) {
+ // If an update was already in progress, we should schedule an Update
+ // effect even though we're bailing out, so that cWU/cDU are called.
+ if (typeof instance.componentDidUpdate === "function") {
+ if (unresolvedOldProps !== current.memoizedProps || oldState !== current.memoizedState) {
+ workInProgress.flags |= Update;
+ }
+ }
+ if (typeof instance.getSnapshotBeforeUpdate === "function") {
+ if (unresolvedOldProps !== current.memoizedProps || oldState !== current.memoizedState) {
+ workInProgress.flags |= Snapshot;
+ }
+ }
+ return false;
+ }
+ if (typeof getDerivedStateFromProps === "function") {
+ applyDerivedStateFromProps(workInProgress, ctor, getDerivedStateFromProps, newProps);
+ newState = workInProgress.memoizedState;
+ }
+ var shouldUpdate = checkHasForceUpdateAfterProcessing() || checkShouldComponentUpdate(workInProgress, ctor, oldProps, newProps, oldState, newState, nextContext) ||
+ // TODO: In some cases, we'll end up checking if context has changed twice,
+ // both before and after `shouldComponentUpdate` has been called. Not ideal,
+ // but I'm loath to refactor this function. This only happens for memoized
+ // components so it's not that common.
+ enableLazyContextPropagation;
+ if (shouldUpdate) {
+ // In order to support react-lifecycles-compat polyfilled components,
+ // Unsafe lifecycles should not be invoked for components using the new APIs.
+ if (!hasNewLifecycles && (typeof instance.UNSAFE_componentWillUpdate === "function" || typeof instance.componentWillUpdate === "function")) {
+ if (typeof instance.componentWillUpdate === "function") {
+ instance.componentWillUpdate(newProps, newState, nextContext);
+ }
+ if (typeof instance.UNSAFE_componentWillUpdate === "function") {
+ instance.UNSAFE_componentWillUpdate(newProps, newState, nextContext);
+ }
+ }
+ if (typeof instance.componentDidUpdate === "function") {
+ workInProgress.flags |= Update;
+ }
+ if (typeof instance.getSnapshotBeforeUpdate === "function") {
+ workInProgress.flags |= Snapshot;
+ }
+ } else {
+ // If an update was already in progress, we should schedule an Update
+ // effect even though we're bailing out, so that cWU/cDU are called.
+ if (typeof instance.componentDidUpdate === "function") {
+ if (unresolvedOldProps !== current.memoizedProps || oldState !== current.memoizedState) {
+ workInProgress.flags |= Update;
+ }
+ }
+ if (typeof instance.getSnapshotBeforeUpdate === "function") {
+ if (unresolvedOldProps !== current.memoizedProps || oldState !== current.memoizedState) {
+ workInProgress.flags |= Snapshot;
+ }
+ } // If shouldComponentUpdate returned false, we should still update the
+ // memoized props/state to indicate that this work can be reused.
+
+ workInProgress.memoizedProps = newProps;
+ workInProgress.memoizedState = newState;
+ } // Update the existing instance's state, props, and context pointers even
+ // if shouldComponentUpdate returns false.
+
+ instance.props = newProps;
+ instance.state = newState;
+ instance.context = nextContext;
+ return shouldUpdate;
+ }
+ var didWarnAboutMaps;
+ var didWarnAboutGenerators;
+ var didWarnAboutStringRefs;
+ var ownerHasKeyUseWarning;
+ var ownerHasFunctionTypeWarning;
+ var warnForMissingKey = function warnForMissingKey(child, returnFiber) {};
+ {
+ didWarnAboutMaps = false;
+ didWarnAboutGenerators = false;
+ didWarnAboutStringRefs = {};
+ /**
+ * Warn if there's no key explicitly set on dynamic arrays of children or
+ * object keys are not valid. This allows us to keep track of children between
+ * updates.
+ */
+
+ ownerHasKeyUseWarning = {};
+ ownerHasFunctionTypeWarning = {};
+ warnForMissingKey = function warnForMissingKey(child, returnFiber) {
+ if (child === null || typeof child !== "object") {
+ return;
+ }
+ if (!child._store || child._store.validated || child.key != null) {
+ return;
+ }
+ if (typeof child._store !== "object") {
+ throw new Error("React Component in warnForMissingKey should have a _store. " + "This error is likely caused by a bug in React. Please file an issue.");
+ }
+ child._store.validated = true;
+ var componentName = getComponentNameFromFiber(returnFiber) || "Component";
+ if (ownerHasKeyUseWarning[componentName]) {
+ return;
+ }
+ ownerHasKeyUseWarning[componentName] = true;
+ error("Each child in a list should have a unique " + '"key" prop. See https://react.dev/link/warning-keys for ' + "more information.");
+ };
+ }
+ function coerceRef(returnFiber, current, element) {
+ var mixedRef = element.ref;
+ if (mixedRef !== null && typeof mixedRef !== "function" && typeof mixedRef !== "object") {
+ {
+ // TODO: Clean this up once we turn on the string ref warning for
+ // everyone, because the strict mode case will no longer be relevant
+ if ((returnFiber.mode & StrictLegacyMode || warnAboutStringRefs) &&
+ // We warn in ReactElement.js if owner and self are equal for string refs
+ // because these cannot be automatically converted to an arrow function
+ // using a codemod. Therefore, we don't have to warn about string refs again.
+ !(element._owner && element._self && element._owner.stateNode !== element._self)) {
+ var componentName = getComponentNameFromFiber(returnFiber) || "Component";
+ if (!didWarnAboutStringRefs[componentName]) {
+ {
+ error('A string ref, "%s", has been found within a strict mode tree. ' + "String refs are a source of potential bugs and should be avoided. " + "We recommend using useRef() or createRef() instead. " + "Learn more about using refs safely here: " + "https://react.dev/link/strict-mode-string-ref", mixedRef);
+ }
+ didWarnAboutStringRefs[componentName] = true;
+ }
+ }
+ }
+ if (element._owner) {
+ var owner = element._owner;
+ var inst;
+ if (owner) {
+ var ownerFiber = owner;
+ if (ownerFiber.tag !== ClassComponent) {
+ throw new Error("Function components cannot have string refs. " + "We recommend using useRef() instead. " + "Learn more about using refs safely here: " + "https://react.dev/link/strict-mode-string-ref");
+ }
+ inst = ownerFiber.stateNode;
+ }
+ if (!inst) {
+ throw new Error("Missing owner for string ref " + mixedRef + ". This error is likely caused by a " + "bug in React. Please file an issue.");
+ } // Assigning this to a const so Flow knows it won't change in the closure
+
+ var resolvedInst = inst;
+ {
+ checkPropStringCoercion(mixedRef, "ref");
+ }
+ var stringRef = "" + mixedRef; // Check if previous string ref matches new string ref
+
+ if (current !== null && current.ref !== null && typeof current.ref === "function" && current.ref._stringRef === stringRef) {
+ return current.ref;
+ }
+ var ref = function ref(value) {
+ var refs = resolvedInst.refs;
+ if (refs === emptyRefsObject) {
+ // This is a lazy pooled frozen object, so we need to initialize.
+ refs = resolvedInst.refs = {};
+ }
+ if (value === null) {
+ delete refs[stringRef];
+ } else {
+ refs[stringRef] = value;
+ }
+ };
+ ref._stringRef = stringRef;
+ return ref;
+ } else {
+ if (typeof mixedRef !== "string") {
+ throw new Error("Expected ref to be a function, a string, an object returned by React.createRef(), or null.");
+ }
+ if (!element._owner) {
+ throw new Error("Element ref was specified as a string (" + mixedRef + ") but no owner was set. This could happen for one of" + " the following reasons:\n" + "1. You may be adding a ref to a function component\n" + "2. You may be adding a ref to a component that was not created inside a component's render method\n" + "3. You have multiple copies of React loaded\n" + "See https://react.dev/link/refs-must-have-owner for more information.");
+ }
+ }
+ }
+ return mixedRef;
+ }
+ function throwOnInvalidObjectType(returnFiber, newChild) {
+ var childString = Object.prototype.toString.call(newChild);
+ throw new Error("Objects are not valid as a React child (found: " + (childString === "[object Object]" ? "object with keys {" + Object.keys(newChild).join(", ") + "}" : childString) + "). " + "If you meant to render a collection of children, use an array " + "instead.");
+ }
+ function warnOnFunctionType(returnFiber) {
+ {
+ var componentName = getComponentNameFromFiber(returnFiber) || "Component";
+ if (ownerHasFunctionTypeWarning[componentName]) {
+ return;
+ }
+ ownerHasFunctionTypeWarning[componentName] = true;
+ error("Functions are not valid as a React child. This may happen if " + "you return a Component instead of from render. " + "Or maybe you meant to call this function rather than return it.");
+ }
+ }
+ function resolveLazy(lazyType) {
+ var payload = lazyType._payload;
+ var init = lazyType._init;
+ return init(payload);
+ } // This wrapper function exists because I expect to clone the code in each path
+ // to be able to optimize each path individually by branching early. This needs
+ // a compiler or we can do it manually. Helpers that don't need this branching
+ // live outside of this function.
+
+ function ChildReconciler(shouldTrackSideEffects) {
+ function deleteChild(returnFiber, childToDelete) {
+ if (!shouldTrackSideEffects) {
+ // Noop.
+ return;
+ }
+ var deletions = returnFiber.deletions;
+ if (deletions === null) {
+ returnFiber.deletions = [childToDelete];
+ returnFiber.flags |= ChildDeletion;
+ } else {
+ deletions.push(childToDelete);
+ }
+ }
+ function deleteRemainingChildren(returnFiber, currentFirstChild) {
+ if (!shouldTrackSideEffects) {
+ // Noop.
+ return null;
+ } // TODO: For the shouldClone case, this could be micro-optimized a bit by
+ // assuming that after the first child we've already added everything.
+
+ var childToDelete = currentFirstChild;
+ while (childToDelete !== null) {
+ deleteChild(returnFiber, childToDelete);
+ childToDelete = childToDelete.sibling;
+ }
+ return null;
+ }
+ function mapRemainingChildren(returnFiber, currentFirstChild) {
+ // Add the remaining children to a temporary map so that we can find them by
+ // keys quickly. Implicit (null) keys get added to this set with their index
+ // instead.
+ var existingChildren = new Map();
+ var existingChild = currentFirstChild;
+ while (existingChild !== null) {
+ if (existingChild.key !== null) {
+ existingChildren.set(existingChild.key, existingChild);
+ } else {
+ existingChildren.set(existingChild.index, existingChild);
+ }
+ existingChild = existingChild.sibling;
+ }
+ return existingChildren;
+ }
+ function useFiber(fiber, pendingProps) {
+ // We currently set sibling to null and index to 0 here because it is easy
+ // to forget to do before returning it. E.g. for the single child case.
+ var clone = createWorkInProgress(fiber, pendingProps);
+ clone.index = 0;
+ clone.sibling = null;
+ return clone;
+ }
+ function placeChild(newFiber, lastPlacedIndex, newIndex) {
+ newFiber.index = newIndex;
+ if (!shouldTrackSideEffects) {
+ // During hydration, the useId algorithm needs to know which fibers are
+ // part of a list of children (arrays, iterators).
+ newFiber.flags |= Forked;
+ return lastPlacedIndex;
+ }
+ var current = newFiber.alternate;
+ if (current !== null) {
+ var oldIndex = current.index;
+ if (oldIndex < lastPlacedIndex) {
+ // This is a move.
+ newFiber.flags |= Placement;
+ return lastPlacedIndex;
+ } else {
+ // This item can stay in place.
+ return oldIndex;
+ }
+ } else {
+ // This is an insertion.
+ newFiber.flags |= Placement;
+ return lastPlacedIndex;
+ }
+ }
+ function placeSingleChild(newFiber) {
+ // This is simpler for the single child case. We only need to do a
+ // placement for inserting new children.
+ if (shouldTrackSideEffects && newFiber.alternate === null) {
+ newFiber.flags |= Placement;
+ }
+ return newFiber;
+ }
+ function updateTextNode(returnFiber, current, textContent, lanes) {
+ if (current === null || current.tag !== HostText) {
+ // Insert
+ var created = createFiberFromText(textContent, returnFiber.mode, lanes);
+ created.return = returnFiber;
+ return created;
+ } else {
+ // Update
+ var existing = useFiber(current, textContent);
+ existing.return = returnFiber;
+ return existing;
+ }
+ }
+ function updateElement(returnFiber, current, element, lanes) {
+ var elementType = element.type;
+ if (elementType === REACT_FRAGMENT_TYPE) {
+ return updateFragment(returnFiber, current, element.props.children, lanes, element.key);
+ }
+ if (current !== null) {
+ if (current.elementType === elementType ||
+ // Keep this check inline so it only runs on the false path:
+ isCompatibleFamilyForHotReloading(current, element) ||
+ // Lazy types should reconcile their resolved type.
+ // We need to do this after the Hot Reloading check above,
+ // because hot reloading has different semantics than prod because
+ // it doesn't resuspend. So we can't let the call below suspend.
+ typeof elementType === "object" && elementType !== null && elementType.$$typeof === REACT_LAZY_TYPE && resolveLazy(elementType) === current.type) {
+ // Move based on index
+ var existing = useFiber(current, element.props);
+ existing.ref = coerceRef(returnFiber, current, element);
+ existing.return = returnFiber;
+ {
+ existing._debugSource = element._source;
+ existing._debugOwner = element._owner;
+ }
+ return existing;
+ }
+ } // Insert
+
+ var created = createFiberFromElement(element, returnFiber.mode, lanes);
+ created.ref = coerceRef(returnFiber, current, element);
+ created.return = returnFiber;
+ return created;
+ }
+ function updatePortal(returnFiber, current, portal, lanes) {
+ if (current === null || current.tag !== HostPortal || current.stateNode.containerInfo !== portal.containerInfo || current.stateNode.implementation !== portal.implementation) {
+ // Insert
+ var created = createFiberFromPortal(portal, returnFiber.mode, lanes);
+ created.return = returnFiber;
+ return created;
+ } else {
+ // Update
+ var existing = useFiber(current, portal.children || []);
+ existing.return = returnFiber;
+ return existing;
+ }
+ }
+ function updateFragment(returnFiber, current, fragment, lanes, key) {
+ if (current === null || current.tag !== Fragment) {
+ // Insert
+ var created = createFiberFromFragment(fragment, returnFiber.mode, lanes, key);
+ created.return = returnFiber;
+ return created;
+ } else {
+ // Update
+ var existing = useFiber(current, fragment);
+ existing.return = returnFiber;
+ return existing;
+ }
+ }
+ function createChild(returnFiber, newChild, lanes) {
+ if (typeof newChild === "string" && newChild !== "" || typeof newChild === "number") {
+ // Text nodes don't have keys. If the previous node is implicitly keyed
+ // we can continue to replace it without aborting even if it is not a text
+ // node.
+ var created = createFiberFromText("" + newChild, returnFiber.mode, lanes);
+ created.return = returnFiber;
+ return created;
+ }
+ if (typeof newChild === "object" && newChild !== null) {
+ switch (newChild.$$typeof) {
+ case REACT_ELEMENT_TYPE:
+ {
+ var _created = createFiberFromElement(newChild, returnFiber.mode, lanes);
+ _created.ref = coerceRef(returnFiber, null, newChild);
+ _created.return = returnFiber;
+ return _created;
+ }
+ case REACT_PORTAL_TYPE:
+ {
+ var _created2 = createFiberFromPortal(newChild, returnFiber.mode, lanes);
+ _created2.return = returnFiber;
+ return _created2;
+ }
+ case REACT_LAZY_TYPE:
+ {
+ var payload = newChild._payload;
+ var init = newChild._init;
+ return createChild(returnFiber, init(payload), lanes);
+ }
+ }
+ if (isArray(newChild) || getIteratorFn(newChild)) {
+ var _created3 = createFiberFromFragment(newChild, returnFiber.mode, lanes, null);
+ _created3.return = returnFiber;
+ return _created3;
+ }
+ throwOnInvalidObjectType(returnFiber, newChild);
+ }
+ {
+ if (typeof newChild === "function") {
+ warnOnFunctionType(returnFiber);
+ }
+ }
+ return null;
+ }
+ function updateSlot(returnFiber, oldFiber, newChild, lanes) {
+ // Update the fiber if the keys match, otherwise return null.
+ var key = oldFiber !== null ? oldFiber.key : null;
+ if (typeof newChild === "string" && newChild !== "" || typeof newChild === "number") {
+ // Text nodes don't have keys. If the previous node is implicitly keyed
+ // we can continue to replace it without aborting even if it is not a text
+ // node.
+ if (key !== null) {
+ return null;
+ }
+ return updateTextNode(returnFiber, oldFiber, "" + newChild, lanes);
+ }
+ if (typeof newChild === "object" && newChild !== null) {
+ switch (newChild.$$typeof) {
+ case REACT_ELEMENT_TYPE:
+ {
+ if (newChild.key === key) {
+ return updateElement(returnFiber, oldFiber, newChild, lanes);
+ } else {
+ return null;
+ }
+ }
+ case REACT_PORTAL_TYPE:
+ {
+ if (newChild.key === key) {
+ return updatePortal(returnFiber, oldFiber, newChild, lanes);
+ } else {
+ return null;
+ }
+ }
+ case REACT_LAZY_TYPE:
+ {
+ var payload = newChild._payload;
+ var init = newChild._init;
+ return updateSlot(returnFiber, oldFiber, init(payload), lanes);
+ }
+ }
+ if (isArray(newChild) || getIteratorFn(newChild)) {
+ if (key !== null) {
+ return null;
+ }
+ return updateFragment(returnFiber, oldFiber, newChild, lanes, null);
+ }
+ throwOnInvalidObjectType(returnFiber, newChild);
+ }
+ {
+ if (typeof newChild === "function") {
+ warnOnFunctionType(returnFiber);
+ }
+ }
+ return null;
+ }
+ function updateFromMap(existingChildren, returnFiber, newIdx, newChild, lanes) {
+ if (typeof newChild === "string" && newChild !== "" || typeof newChild === "number") {
+ // Text nodes don't have keys, so we neither have to check the old nor
+ // new node for the key. If both are text nodes, they match.
+ var matchedFiber = existingChildren.get(newIdx) || null;
+ return updateTextNode(returnFiber, matchedFiber, "" + newChild, lanes);
+ }
+ if (typeof newChild === "object" && newChild !== null) {
+ switch (newChild.$$typeof) {
+ case REACT_ELEMENT_TYPE:
+ {
+ var _matchedFiber = existingChildren.get(newChild.key === null ? newIdx : newChild.key) || null;
+ return updateElement(returnFiber, _matchedFiber, newChild, lanes);
+ }
+ case REACT_PORTAL_TYPE:
+ {
+ var _matchedFiber2 = existingChildren.get(newChild.key === null ? newIdx : newChild.key) || null;
+ return updatePortal(returnFiber, _matchedFiber2, newChild, lanes);
+ }
+ case REACT_LAZY_TYPE:
+ var payload = newChild._payload;
+ var init = newChild._init;
+ return updateFromMap(existingChildren, returnFiber, newIdx, init(payload), lanes);
+ }
+ if (isArray(newChild) || getIteratorFn(newChild)) {
+ var _matchedFiber3 = existingChildren.get(newIdx) || null;
+ return updateFragment(returnFiber, _matchedFiber3, newChild, lanes, null);
+ }
+ throwOnInvalidObjectType(returnFiber, newChild);
+ }
+ {
+ if (typeof newChild === "function") {
+ warnOnFunctionType(returnFiber);
+ }
+ }
+ return null;
+ }
+ /**
+ * Warns if there is a duplicate or missing key
+ */
+
+ function warnOnInvalidKey(child, knownKeys, returnFiber) {
+ {
+ if (typeof child !== "object" || child === null) {
+ return knownKeys;
+ }
+ switch (child.$$typeof) {
+ case REACT_ELEMENT_TYPE:
+ case REACT_PORTAL_TYPE:
+ warnForMissingKey(child, returnFiber);
+ var key = child.key;
+ if (typeof key !== "string") {
+ break;
+ }
+ if (knownKeys === null) {
+ knownKeys = new Set();
+ knownKeys.add(key);
+ break;
+ }
+ if (!knownKeys.has(key)) {
+ knownKeys.add(key);
+ break;
+ }
+ error("Encountered two children with the same key, `%s`. " + "Keys should be unique so that components maintain their identity " + "across updates. Non-unique keys may cause children to be " + "duplicated and/or omitted — the behavior is unsupported and " + "could change in a future version.", key);
+ break;
+ case REACT_LAZY_TYPE:
+ var payload = child._payload;
+ var init = child._init;
+ warnOnInvalidKey(init(payload), knownKeys, returnFiber);
+ break;
+ }
+ }
+ return knownKeys;
+ }
+ function reconcileChildrenArray(returnFiber, currentFirstChild, newChildren, lanes) {
+ // This algorithm can't optimize by searching from both ends since we
+ // don't have backpointers on fibers. I'm trying to see how far we can get
+ // with that model. If it ends up not being worth the tradeoffs, we can
+ // add it later.
+ // Even with a two ended optimization, we'd want to optimize for the case
+ // where there are few changes and brute force the comparison instead of
+ // going for the Map. It'd like to explore hitting that path first in
+ // forward-only mode and only go for the Map once we notice that we need
+ // lots of look ahead. This doesn't handle reversal as well as two ended
+ // search but that's unusual. Besides, for the two ended optimization to
+ // work on Iterables, we'd need to copy the whole set.
+ // In this first iteration, we'll just live with hitting the bad case
+ // (adding everything to a Map) in for every insert/move.
+ // If you change this code, also update reconcileChildrenIterator() which
+ // uses the same algorithm.
+ {
+ // First, validate keys.
+ var knownKeys = null;
+ for (var i = 0; i < newChildren.length; i++) {
+ var child = newChildren[i];
+ knownKeys = warnOnInvalidKey(child, knownKeys, returnFiber);
+ }
+ }
+ var resultingFirstChild = null;
+ var previousNewFiber = null;
+ var oldFiber = currentFirstChild;
+ var lastPlacedIndex = 0;
+ var newIdx = 0;
+ var nextOldFiber = null;
+ for (; oldFiber !== null && newIdx < newChildren.length; newIdx++) {
+ if (oldFiber.index > newIdx) {
+ nextOldFiber = oldFiber;
+ oldFiber = null;
+ } else {
+ nextOldFiber = oldFiber.sibling;
+ }
+ var newFiber = updateSlot(returnFiber, oldFiber, newChildren[newIdx], lanes);
+ if (newFiber === null) {
+ // TODO: This breaks on empty slots like null children. That's
+ // unfortunate because it triggers the slow path all the time. We need
+ // a better way to communicate whether this was a miss or null,
+ // boolean, undefined, etc.
+ if (oldFiber === null) {
+ oldFiber = nextOldFiber;
+ }
+ break;
+ }
+ if (shouldTrackSideEffects) {
+ if (oldFiber && newFiber.alternate === null) {
+ // We matched the slot, but we didn't reuse the existing fiber, so we
+ // need to delete the existing child.
+ deleteChild(returnFiber, oldFiber);
+ }
+ }
+ lastPlacedIndex = placeChild(newFiber, lastPlacedIndex, newIdx);
+ if (previousNewFiber === null) {
+ // TODO: Move out of the loop. This only happens for the first run.
+ resultingFirstChild = newFiber;
+ } else {
+ // TODO: Defer siblings if we're not at the right index for this slot.
+ // I.e. if we had null values before, then we want to defer this
+ // for each null value. However, we also don't want to call updateSlot
+ // with the previous one.
+ previousNewFiber.sibling = newFiber;
+ }
+ previousNewFiber = newFiber;
+ oldFiber = nextOldFiber;
+ }
+ if (newIdx === newChildren.length) {
+ // We've reached the end of the new children. We can delete the rest.
+ deleteRemainingChildren(returnFiber, oldFiber);
+ return resultingFirstChild;
+ }
+ if (oldFiber === null) {
+ // If we don't have any more existing children we can choose a fast path
+ // since the rest will all be insertions.
+ for (; newIdx < newChildren.length; newIdx++) {
+ var _newFiber = createChild(returnFiber, newChildren[newIdx], lanes);
+ if (_newFiber === null) {
+ continue;
+ }
+ lastPlacedIndex = placeChild(_newFiber, lastPlacedIndex, newIdx);
+ if (previousNewFiber === null) {
+ // TODO: Move out of the loop. This only happens for the first run.
+ resultingFirstChild = _newFiber;
+ } else {
+ previousNewFiber.sibling = _newFiber;
+ }
+ previousNewFiber = _newFiber;
+ }
+ return resultingFirstChild;
+ } // Add all children to a key map for quick lookups.
+
+ var existingChildren = mapRemainingChildren(returnFiber, oldFiber); // Keep scanning and use the map to restore deleted items as moves.
+
+ for (; newIdx < newChildren.length; newIdx++) {
+ var _newFiber2 = updateFromMap(existingChildren, returnFiber, newIdx, newChildren[newIdx], lanes);
+ if (_newFiber2 !== null) {
+ if (shouldTrackSideEffects) {
+ if (_newFiber2.alternate !== null) {
+ // The new fiber is a work in progress, but if there exists a
+ // current, that means that we reused the fiber. We need to delete
+ // it from the child list so that we don't add it to the deletion
+ // list.
+ existingChildren.delete(_newFiber2.key === null ? newIdx : _newFiber2.key);
+ }
+ }
+ lastPlacedIndex = placeChild(_newFiber2, lastPlacedIndex, newIdx);
+ if (previousNewFiber === null) {
+ resultingFirstChild = _newFiber2;
+ } else {
+ previousNewFiber.sibling = _newFiber2;
+ }
+ previousNewFiber = _newFiber2;
+ }
+ }
+ if (shouldTrackSideEffects) {
+ // Any existing children that weren't consumed above were deleted. We need
+ // to add them to the deletion list.
+ existingChildren.forEach(function (child) {
+ return deleteChild(returnFiber, child);
+ });
+ }
+ return resultingFirstChild;
+ }
+ function reconcileChildrenIterator(returnFiber, currentFirstChild, newChildrenIterable, lanes) {
+ // This is the same implementation as reconcileChildrenArray(),
+ // but using the iterator instead.
+ var iteratorFn = getIteratorFn(newChildrenIterable);
+ if (typeof iteratorFn !== "function") {
+ throw new Error("An object is not an iterable. This error is likely caused by a bug in " + "React. Please file an issue.");
+ }
+ {
+ // We don't support rendering Generators because it's a mutation.
+ // See https://github.com/facebook/react/issues/12995
+ if (typeof Symbol === "function" &&
+ // $FlowFixMe Flow doesn't know about toStringTag
+ newChildrenIterable[Symbol.toStringTag] === "Generator") {
+ if (!didWarnAboutGenerators) {
+ error("Using Generators as children is unsupported and will likely yield " + "unexpected results because enumerating a generator mutates it. " + "You may convert it to an array with `Array.from()` or the " + "`[...spread]` operator before rendering. Keep in mind " + "you might need to polyfill these features for older browsers.");
+ }
+ didWarnAboutGenerators = true;
+ } // Warn about using Maps as children
+
+ if (newChildrenIterable.entries === iteratorFn) {
+ if (!didWarnAboutMaps) {
+ error("Using Maps as children is not supported. " + "Use an array of keyed ReactElements instead.");
+ }
+ didWarnAboutMaps = true;
+ } // First, validate keys.
+ // We'll get a different iterator later for the main pass.
+
+ var _newChildren = iteratorFn.call(newChildrenIterable);
+ if (_newChildren) {
+ var knownKeys = null;
+ var _step = _newChildren.next();
+ for (; !_step.done; _step = _newChildren.next()) {
+ var child = _step.value;
+ knownKeys = warnOnInvalidKey(child, knownKeys, returnFiber);
+ }
+ }
+ }
+ var newChildren = iteratorFn.call(newChildrenIterable);
+ if (newChildren == null) {
+ throw new Error("An iterable object provided no iterator.");
+ }
+ var resultingFirstChild = null;
+ var previousNewFiber = null;
+ var oldFiber = currentFirstChild;
+ var lastPlacedIndex = 0;
+ var newIdx = 0;
+ var nextOldFiber = null;
+ var step = newChildren.next();
+ for (; oldFiber !== null && !step.done; newIdx++, step = newChildren.next()) {
+ if (oldFiber.index > newIdx) {
+ nextOldFiber = oldFiber;
+ oldFiber = null;
+ } else {
+ nextOldFiber = oldFiber.sibling;
+ }
+ var newFiber = updateSlot(returnFiber, oldFiber, step.value, lanes);
+ if (newFiber === null) {
+ // TODO: This breaks on empty slots like null children. That's
+ // unfortunate because it triggers the slow path all the time. We need
+ // a better way to communicate whether this was a miss or null,
+ // boolean, undefined, etc.
+ if (oldFiber === null) {
+ oldFiber = nextOldFiber;
+ }
+ break;
+ }
+ if (shouldTrackSideEffects) {
+ if (oldFiber && newFiber.alternate === null) {
+ // We matched the slot, but we didn't reuse the existing fiber, so we
+ // need to delete the existing child.
+ deleteChild(returnFiber, oldFiber);
+ }
+ }
+ lastPlacedIndex = placeChild(newFiber, lastPlacedIndex, newIdx);
+ if (previousNewFiber === null) {
+ // TODO: Move out of the loop. This only happens for the first run.
+ resultingFirstChild = newFiber;
+ } else {
+ // TODO: Defer siblings if we're not at the right index for this slot.
+ // I.e. if we had null values before, then we want to defer this
+ // for each null value. However, we also don't want to call updateSlot
+ // with the previous one.
+ previousNewFiber.sibling = newFiber;
+ }
+ previousNewFiber = newFiber;
+ oldFiber = nextOldFiber;
+ }
+ if (step.done) {
+ // We've reached the end of the new children. We can delete the rest.
+ deleteRemainingChildren(returnFiber, oldFiber);
+ return resultingFirstChild;
+ }
+ if (oldFiber === null) {
+ // If we don't have any more existing children we can choose a fast path
+ // since the rest will all be insertions.
+ for (; !step.done; newIdx++, step = newChildren.next()) {
+ var _newFiber3 = createChild(returnFiber, step.value, lanes);
+ if (_newFiber3 === null) {
+ continue;
+ }
+ lastPlacedIndex = placeChild(_newFiber3, lastPlacedIndex, newIdx);
+ if (previousNewFiber === null) {
+ // TODO: Move out of the loop. This only happens for the first run.
+ resultingFirstChild = _newFiber3;
+ } else {
+ previousNewFiber.sibling = _newFiber3;
+ }
+ previousNewFiber = _newFiber3;
+ }
+ return resultingFirstChild;
+ } // Add all children to a key map for quick lookups.
+
+ var existingChildren = mapRemainingChildren(returnFiber, oldFiber); // Keep scanning and use the map to restore deleted items as moves.
+
+ for (; !step.done; newIdx++, step = newChildren.next()) {
+ var _newFiber4 = updateFromMap(existingChildren, returnFiber, newIdx, step.value, lanes);
+ if (_newFiber4 !== null) {
+ if (shouldTrackSideEffects) {
+ if (_newFiber4.alternate !== null) {
+ // The new fiber is a work in progress, but if there exists a
+ // current, that means that we reused the fiber. We need to delete
+ // it from the child list so that we don't add it to the deletion
+ // list.
+ existingChildren.delete(_newFiber4.key === null ? newIdx : _newFiber4.key);
+ }
+ }
+ lastPlacedIndex = placeChild(_newFiber4, lastPlacedIndex, newIdx);
+ if (previousNewFiber === null) {
+ resultingFirstChild = _newFiber4;
+ } else {
+ previousNewFiber.sibling = _newFiber4;
+ }
+ previousNewFiber = _newFiber4;
+ }
+ }
+ if (shouldTrackSideEffects) {
+ // Any existing children that weren't consumed above were deleted. We need
+ // to add them to the deletion list.
+ existingChildren.forEach(function (child) {
+ return deleteChild(returnFiber, child);
+ });
+ }
+ return resultingFirstChild;
+ }
+ function reconcileSingleTextNode(returnFiber, currentFirstChild, textContent, lanes) {
+ // There's no need to check for keys on text nodes since we don't have a
+ // way to define them.
+ if (currentFirstChild !== null && currentFirstChild.tag === HostText) {
+ // We already have an existing node so let's just update it and delete
+ // the rest.
+ deleteRemainingChildren(returnFiber, currentFirstChild.sibling);
+ var existing = useFiber(currentFirstChild, textContent);
+ existing.return = returnFiber;
+ return existing;
+ } // The existing first child is not a text node so we need to create one
+ // and delete the existing ones.
+
+ deleteRemainingChildren(returnFiber, currentFirstChild);
+ var created = createFiberFromText(textContent, returnFiber.mode, lanes);
+ created.return = returnFiber;
+ return created;
+ }
+ function reconcileSingleElement(returnFiber, currentFirstChild, element, lanes) {
+ var key = element.key;
+ var child = currentFirstChild;
+ while (child !== null) {
+ // TODO: If key === null and child.key === null, then this only applies to
+ // the first item in the list.
+ if (child.key === key) {
+ var elementType = element.type;
+ if (elementType === REACT_FRAGMENT_TYPE) {
+ if (child.tag === Fragment) {
+ deleteRemainingChildren(returnFiber, child.sibling);
+ var existing = useFiber(child, element.props.children);
+ existing.return = returnFiber;
+ {
+ existing._debugSource = element._source;
+ existing._debugOwner = element._owner;
+ }
+ return existing;
+ }
+ } else {
+ if (child.elementType === elementType ||
+ // Keep this check inline so it only runs on the false path:
+ isCompatibleFamilyForHotReloading(child, element) ||
+ // Lazy types should reconcile their resolved type.
+ // We need to do this after the Hot Reloading check above,
+ // because hot reloading has different semantics than prod because
+ // it doesn't resuspend. So we can't let the call below suspend.
+ typeof elementType === "object" && elementType !== null && elementType.$$typeof === REACT_LAZY_TYPE && resolveLazy(elementType) === child.type) {
+ deleteRemainingChildren(returnFiber, child.sibling);
+ var _existing = useFiber(child, element.props);
+ _existing.ref = coerceRef(returnFiber, child, element);
+ _existing.return = returnFiber;
+ {
+ _existing._debugSource = element._source;
+ _existing._debugOwner = element._owner;
+ }
+ return _existing;
+ }
+ } // Didn't match.
+
+ deleteRemainingChildren(returnFiber, child);
+ break;
+ } else {
+ deleteChild(returnFiber, child);
+ }
+ child = child.sibling;
+ }
+ if (element.type === REACT_FRAGMENT_TYPE) {
+ var created = createFiberFromFragment(element.props.children, returnFiber.mode, lanes, element.key);
+ created.return = returnFiber;
+ return created;
+ } else {
+ var _created4 = createFiberFromElement(element, returnFiber.mode, lanes);
+ _created4.ref = coerceRef(returnFiber, currentFirstChild, element);
+ _created4.return = returnFiber;
+ return _created4;
+ }
+ }
+ function reconcileSinglePortal(returnFiber, currentFirstChild, portal, lanes) {
+ var key = portal.key;
+ var child = currentFirstChild;
+ while (child !== null) {
+ // TODO: If key === null and child.key === null, then this only applies to
+ // the first item in the list.
+ if (child.key === key) {
+ if (child.tag === HostPortal && child.stateNode.containerInfo === portal.containerInfo && child.stateNode.implementation === portal.implementation) {
+ deleteRemainingChildren(returnFiber, child.sibling);
+ var existing = useFiber(child, portal.children || []);
+ existing.return = returnFiber;
+ return existing;
+ } else {
+ deleteRemainingChildren(returnFiber, child);
+ break;
+ }
+ } else {
+ deleteChild(returnFiber, child);
+ }
+ child = child.sibling;
+ }
+ var created = createFiberFromPortal(portal, returnFiber.mode, lanes);
+ created.return = returnFiber;
+ return created;
+ } // This API will tag the children with the side-effect of the reconciliation
+ // itself. They will be added to the side-effect list as we pass through the
+ // children and the parent.
+
+ function reconcileChildFibers(returnFiber, currentFirstChild, newChild, lanes) {
+ // This function is not recursive.
+ // If the top level item is an array, we treat it as a set of children,
+ // not as a fragment. Nested arrays on the other hand will be treated as
+ // fragment nodes. Recursion happens at the normal flow.
+ // Handle top level unkeyed fragments as if they were arrays.
+ // This leads to an ambiguity between <>{[...]}> and <>...>.
+ // We treat the ambiguous cases above the same.
+ var isUnkeyedTopLevelFragment = typeof newChild === "object" && newChild !== null && newChild.type === REACT_FRAGMENT_TYPE && newChild.key === null;
+ if (isUnkeyedTopLevelFragment) {
+ newChild = newChild.props.children;
+ } // Handle object types
+
+ if (typeof newChild === "object" && newChild !== null) {
+ switch (newChild.$$typeof) {
+ case REACT_ELEMENT_TYPE:
+ return placeSingleChild(reconcileSingleElement(returnFiber, currentFirstChild, newChild, lanes));
+ case REACT_PORTAL_TYPE:
+ return placeSingleChild(reconcileSinglePortal(returnFiber, currentFirstChild, newChild, lanes));
+ case REACT_LAZY_TYPE:
+ var payload = newChild._payload;
+ var init = newChild._init; // TODO: This function is supposed to be non-recursive.
+
+ return reconcileChildFibers(returnFiber, currentFirstChild, init(payload), lanes);
+ }
+ if (isArray(newChild)) {
+ return reconcileChildrenArray(returnFiber, currentFirstChild, newChild, lanes);
+ }
+ if (getIteratorFn(newChild)) {
+ return reconcileChildrenIterator(returnFiber, currentFirstChild, newChild, lanes);
+ }
+ throwOnInvalidObjectType(returnFiber, newChild);
+ }
+ if (typeof newChild === "string" && newChild !== "" || typeof newChild === "number") {
+ return placeSingleChild(reconcileSingleTextNode(returnFiber, currentFirstChild, "" + newChild, lanes));
+ }
+ {
+ if (typeof newChild === "function") {
+ warnOnFunctionType(returnFiber);
+ }
+ } // Remaining cases are all treated as empty.
+
+ return deleteRemainingChildren(returnFiber, currentFirstChild);
+ }
+ return reconcileChildFibers;
+ }
+ var reconcileChildFibers = ChildReconciler(true);
+ var mountChildFibers = ChildReconciler(false);
+ function cloneChildFibers(current, workInProgress) {
+ if (current !== null && workInProgress.child !== current.child) {
+ throw new Error("Resuming work not yet implemented.");
+ }
+ if (workInProgress.child === null) {
+ return;
+ }
+ var currentChild = workInProgress.child;
+ var newChild = createWorkInProgress(currentChild, currentChild.pendingProps);
+ workInProgress.child = newChild;
+ newChild.return = workInProgress;
+ while (currentChild.sibling !== null) {
+ currentChild = currentChild.sibling;
+ newChild = newChild.sibling = createWorkInProgress(currentChild, currentChild.pendingProps);
+ newChild.return = workInProgress;
+ }
+ newChild.sibling = null;
+ } // Reset a workInProgress child set to prepare it for a second pass.
+
+ function resetChildFibers(workInProgress, lanes) {
+ var child = workInProgress.child;
+ while (child !== null) {
+ resetWorkInProgress(child, lanes);
+ child = child.sibling;
+ }
+ }
+ var NO_CONTEXT = {};
+ var contextStackCursor$1 = createCursor(NO_CONTEXT);
+ var contextFiberStackCursor = createCursor(NO_CONTEXT);
+ var rootInstanceStackCursor = createCursor(NO_CONTEXT);
+ function requiredContext(c) {
+ if (c === NO_CONTEXT) {
+ throw new Error("Expected host context to exist. This error is likely caused by a bug " + "in React. Please file an issue.");
+ }
+ return c;
+ }
+ function getRootHostContainer() {
+ var rootInstance = requiredContext(rootInstanceStackCursor.current);
+ return rootInstance;
+ }
+ function pushHostContainer(fiber, nextRootInstance) {
+ // Push current root instance onto the stack;
+ // This allows us to reset root when portals are popped.
+ push(rootInstanceStackCursor, nextRootInstance, fiber); // Track the context and the Fiber that provided it.
+ // This enables us to pop only Fibers that provide unique contexts.
+
+ push(contextFiberStackCursor, fiber, fiber); // Finally, we need to push the host context to the stack.
+ // However, we can't just call getRootHostContext() and push it because
+ // we'd have a different number of entries on the stack depending on
+ // whether getRootHostContext() throws somewhere in renderer code or not.
+ // So we push an empty value first. This lets us safely unwind on errors.
+
+ push(contextStackCursor$1, NO_CONTEXT, fiber);
+ var nextRootContext = getRootHostContext(); // Now that we know this function doesn't throw, replace it.
+
+ pop(contextStackCursor$1, fiber);
+ push(contextStackCursor$1, nextRootContext, fiber);
+ }
+ function popHostContainer(fiber) {
+ pop(contextStackCursor$1, fiber);
+ pop(contextFiberStackCursor, fiber);
+ pop(rootInstanceStackCursor, fiber);
+ }
+ function getHostContext() {
+ var context = requiredContext(contextStackCursor$1.current);
+ return context;
+ }
+ function pushHostContext(fiber) {
+ var rootInstance = requiredContext(rootInstanceStackCursor.current);
+ var context = requiredContext(contextStackCursor$1.current);
+ var nextContext = getChildHostContext(context, fiber.type); // Don't push this Fiber's context unless it's unique.
+
+ if (context === nextContext) {
+ return;
+ } // Track the context and the Fiber that provided it.
+ // This enables us to pop only Fibers that provide unique contexts.
+
+ push(contextFiberStackCursor, fiber, fiber);
+ push(contextStackCursor$1, nextContext, fiber);
+ }
+ function popHostContext(fiber) {
+ // Do not pop unless this Fiber provided the current context.
+ // pushHostContext() only pushes Fibers that provide unique contexts.
+ if (contextFiberStackCursor.current !== fiber) {
+ return;
+ }
+ pop(contextStackCursor$1, fiber);
+ pop(contextFiberStackCursor, fiber);
+ }
+ var DefaultSuspenseContext = 0; // The Suspense Context is split into two parts. The lower bits is
+ // inherited deeply down the subtree. The upper bits only affect
+ // this immediate suspense boundary and gets reset each new
+ // boundary or suspense list.
+
+ var SubtreeSuspenseContextMask = 1; // Subtree Flags:
+ // InvisibleParentSuspenseContext indicates that one of our parent Suspense
+ // boundaries is not currently showing visible main content.
+ // Either because it is already showing a fallback or is not mounted at all.
+ // We can use this to determine if it is desirable to trigger a fallback at
+ // the parent. If not, then we might need to trigger undesirable boundaries
+ // and/or suspend the commit to avoid hiding the parent content.
+
+ var InvisibleParentSuspenseContext = 1; // Shallow Flags:
+ // ForceSuspenseFallback can be used by SuspenseList to force newly added
+ // items into their fallback state during one of the render passes.
+
+ var ForceSuspenseFallback = 2;
+ var suspenseStackCursor = createCursor(DefaultSuspenseContext);
+ function hasSuspenseContext(parentContext, flag) {
+ return (parentContext & flag) !== 0;
+ }
+ function setDefaultShallowSuspenseContext(parentContext) {
+ return parentContext & SubtreeSuspenseContextMask;
+ }
+ function setShallowSuspenseContext(parentContext, shallowContext) {
+ return parentContext & SubtreeSuspenseContextMask | shallowContext;
+ }
+ function addSubtreeSuspenseContext(parentContext, subtreeContext) {
+ return parentContext | subtreeContext;
+ }
+ function pushSuspenseContext(fiber, newContext) {
+ push(suspenseStackCursor, newContext, fiber);
+ }
+ function popSuspenseContext(fiber) {
+ pop(suspenseStackCursor, fiber);
+ }
+ function shouldCaptureSuspense(workInProgress, hasInvisibleParent) {
+ // If it was the primary children that just suspended, capture and render the
+ // fallback. Otherwise, don't capture and bubble to the next boundary.
+ var nextState = workInProgress.memoizedState;
+ if (nextState !== null) {
+ if (nextState.dehydrated !== null) {
+ // A dehydrated boundary always captures.
+ return true;
+ }
+ return false;
+ }
+ var props = workInProgress.memoizedProps; // Regular boundaries always capture.
+
+ {
+ return true;
+ } // If it's a boundary we should avoid, then we prefer to bubble up to the
+ }
+ function findFirstSuspended(row) {
+ var node = row;
+ while (node !== null) {
+ if (node.tag === SuspenseComponent) {
+ var state = node.memoizedState;
+ if (state !== null) {
+ var dehydrated = state.dehydrated;
+ if (dehydrated === null || isSuspenseInstancePending() || isSuspenseInstanceFallback()) {
+ return node;
+ }
+ }
+ } else if (node.tag === SuspenseListComponent &&
+ // revealOrder undefined can't be trusted because it don't
+ // keep track of whether it suspended or not.
+ node.memoizedProps.revealOrder !== undefined) {
+ var didSuspend = (node.flags & DidCapture) !== NoFlags;
+ if (didSuspend) {
+ return node;
+ }
+ } else if (node.child !== null) {
+ node.child.return = node;
+ node = node.child;
+ continue;
+ }
+ if (node === row) {
+ return null;
+ }
+ while (node.sibling === null) {
+ if (node.return === null || node.return === row) {
+ return null;
+ }
+ node = node.return;
+ }
+ node.sibling.return = node.return;
+ node = node.sibling;
+ }
+ return null;
+ }
+ var NoFlags$1 = /* */
+ 0; // Represents whether effect should fire.
+
+ var HasEffect = /* */
+ 1; // Represents the phase in which the effect (not the clean-up) fires.
+
+ var Insertion = /* */
+ 2;
+ var Layout = /* */
+ 4;
+ var Passive$1 = /* */
+ 8;
+
+ // and should be reset before starting a new render.
+ // This tracks which mutable sources need to be reset after a render.
+
+ var workInProgressSources = [];
+ function resetWorkInProgressVersions() {
+ for (var i = 0; i < workInProgressSources.length; i++) {
+ var mutableSource = workInProgressSources[i];
+ {
+ mutableSource._workInProgressVersionSecondary = null;
+ }
+ }
+ workInProgressSources.length = 0;
+ }
+ var ReactCurrentDispatcher$1 = ReactSharedInternals.ReactCurrentDispatcher,
+ ReactCurrentBatchConfig$1 = ReactSharedInternals.ReactCurrentBatchConfig;
+ var didWarnAboutMismatchedHooksForComponent;
+ var didWarnUncachedGetSnapshot;
+ {
+ didWarnAboutMismatchedHooksForComponent = new Set();
+ }
+
+ // These are set right before calling the component.
+ var renderLanes = NoLanes; // The work-in-progress fiber. I've named it differently to distinguish it from
+ // the work-in-progress hook.
+
+ var currentlyRenderingFiber$1 = null; // Hooks are stored as a linked list on the fiber's memoizedState field. The
+ // current hook list is the list that belongs to the current fiber. The
+ // work-in-progress hook list is a new list that will be added to the
+ // work-in-progress fiber.
+
+ var currentHook = null;
+ var workInProgressHook = null; // Whether an update was scheduled at any point during the render phase. This
+ // does not get reset if we do another render pass; only when we're completely
+ // finished evaluating this component. This is an optimization so we know
+ // whether we need to clear render phase updates after a throw.
+
+ var didScheduleRenderPhaseUpdate = false; // Where an update was scheduled only during the current render pass. This
+ // gets reset after each attempt.
+ // TODO: Maybe there's some way to consolidate this with
+ // `didScheduleRenderPhaseUpdate`. Or with `numberOfReRenders`.
+
+ var didScheduleRenderPhaseUpdateDuringThisPass = false; // Counts the number of useId hooks in this component.
+ // hydration). This counter is global, so client ids are not stable across
+ // render attempts.
+
+ var globalClientIdCounter = 0;
+ var RE_RENDER_LIMIT = 25; // In DEV, this is the name of the currently executing primitive hook
+
+ var currentHookNameInDev = null; // In DEV, this list ensures that hooks are called in the same order between renders.
+ // The list stores the order of hooks used during the initial render (mount).
+ // Subsequent renders (updates) reference this list.
+
+ var hookTypesDev = null;
+ var hookTypesUpdateIndexDev = -1; // In DEV, this tracks whether currently rendering component needs to ignore
+ // the dependencies for Hooks that need them (e.g. useEffect or useMemo).
+ // When true, such Hooks will always be "remounted". Only used during hot reload.
+
+ var ignorePreviousDependencies = false;
+ function mountHookTypesDev() {
+ {
+ var hookName = currentHookNameInDev;
+ if (hookTypesDev === null) {
+ hookTypesDev = [hookName];
+ } else {
+ hookTypesDev.push(hookName);
+ }
+ }
+ }
+ function updateHookTypesDev() {
+ {
+ var hookName = currentHookNameInDev;
+ if (hookTypesDev !== null) {
+ hookTypesUpdateIndexDev++;
+ if (hookTypesDev[hookTypesUpdateIndexDev] !== hookName) {
+ warnOnHookMismatchInDev(hookName);
+ }
+ }
+ }
+ }
+ function checkDepsAreArrayDev(deps) {
+ {
+ if (deps !== undefined && deps !== null && !isArray(deps)) {
+ // Verify deps, but only on mount to avoid extra checks.
+ // It's unlikely their type would change as usually you define them inline.
+ error("%s received a final argument that is not an array (instead, received `%s`). When " + "specified, the final argument must be an array.", currentHookNameInDev, typeof deps);
+ }
+ }
+ }
+ function warnOnHookMismatchInDev(currentHookName) {
+ {
+ var componentName = getComponentNameFromFiber(currentlyRenderingFiber$1);
+ if (!didWarnAboutMismatchedHooksForComponent.has(componentName)) {
+ didWarnAboutMismatchedHooksForComponent.add(componentName);
+ if (hookTypesDev !== null) {
+ var table = "";
+ var secondColumnStart = 30;
+ for (var i = 0; i <= hookTypesUpdateIndexDev; i++) {
+ var oldHookName = hookTypesDev[i];
+ var newHookName = i === hookTypesUpdateIndexDev ? currentHookName : oldHookName;
+ var row = i + 1 + ". " + oldHookName; // Extra space so second column lines up
+ // lol @ IE not supporting String#repeat
+
+ while (row.length < secondColumnStart) {
+ row += " ";
+ }
+ row += newHookName + "\n";
+ table += row;
+ }
+ error("React has detected a change in the order of Hooks called by %s. " + "This will lead to bugs and errors if not fixed. " + "For more information, read the Rules of Hooks: https://react.dev/link/rules-of-hooks\n\n" + " Previous render Next render\n" + " ------------------------------------------------------\n" + "%s" + " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", componentName, table);
+ }
+ }
+ }
+ }
+ function throwInvalidHookError() {
+ throw new 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:\n" + "1. You might have mismatching versions of React and the renderer (such as React DOM)\n" + "2. You might be breaking the Rules of Hooks\n" + "3. You might have more than one copy of React in the same app\n" + "See https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem.");
+ }
+ function areHookInputsEqual(nextDeps, prevDeps) {
+ {
+ if (ignorePreviousDependencies) {
+ // Only true when this component is being hot reloaded.
+ return false;
+ }
+ }
+ 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, "[" + prevDeps.join(", ") + "]", "[" + nextDeps.join(", ") + "]");
+ }
+ }
+ for (var i = 0; i < prevDeps.length && i < nextDeps.length; i++) {
+ if (objectIs(nextDeps[i], prevDeps[i])) {
+ continue;
+ }
+ return false;
+ }
+ return true;
+ }
+ function renderWithHooks(current, workInProgress, Component, props, secondArg, nextRenderLanes) {
+ renderLanes = nextRenderLanes;
+ currentlyRenderingFiber$1 = workInProgress;
+ {
+ hookTypesDev = current !== null ? current._debugHookTypes : null;
+ hookTypesUpdateIndexDev = -1; // Used for hot reloading:
+
+ ignorePreviousDependencies = current !== null && current.type !== workInProgress.type;
+ }
+ workInProgress.memoizedState = null;
+ workInProgress.updateQueue = null;
+ workInProgress.lanes = NoLanes; // The following should have already been reset
+ // currentHook = null;
+ // workInProgressHook = null;
+ // didScheduleRenderPhaseUpdate = false;
+ // localIdCounter = 0;
+ // TODO Warn if no hooks are used at all during mount, then some are used during update.
+ // Currently we will identify the update render as a mount because memoizedState === null.
+ // This is tricky because it's valid for certain types of components (e.g. React.lazy)
+ // Using memoizedState to differentiate between mount/update only works if at least one stateful hook is used.
+ // Non-stateful hooks (e.g. context) don't get added to memoizedState,
+ // so memoizedState would be null during updates and mounts.
+
+ {
+ if (current !== null && current.memoizedState !== null) {
+ ReactCurrentDispatcher$1.current = HooksDispatcherOnUpdateInDEV;
+ } else if (hookTypesDev !== null) {
+ // This dispatcher handles an edge case where a component is updating,
+ // but no stateful hooks have been used.
+ // We want to match the production code behavior (which will use HooksDispatcherOnMount),
+ // but with the extra DEV validation to ensure hooks ordering hasn't changed.
+ // This dispatcher does that.
+ ReactCurrentDispatcher$1.current = HooksDispatcherOnMountWithHookTypesInDEV;
+ } else {
+ ReactCurrentDispatcher$1.current = HooksDispatcherOnMountInDEV;
+ }
+ }
+ var children = Component(props, secondArg); // Check if there was a render phase update
+
+ if (didScheduleRenderPhaseUpdateDuringThisPass) {
+ // Keep rendering in a loop for as long as render phase updates continue to
+ // be scheduled. Use a counter to prevent infinite loops.
+ var numberOfReRenders = 0;
+ do {
+ didScheduleRenderPhaseUpdateDuringThisPass = false;
+ if (numberOfReRenders >= RE_RENDER_LIMIT) {
+ throw new Error("Too many re-renders. React limits the number of renders to prevent " + "an infinite loop.");
+ }
+ numberOfReRenders += 1;
+ {
+ // Even when hot reloading, allow dependencies to stabilize
+ // after first render to prevent infinite render phase updates.
+ ignorePreviousDependencies = false;
+ } // Start over from the beginning of the list
+
+ currentHook = null;
+ workInProgressHook = null;
+ workInProgress.updateQueue = null;
+ {
+ // Also validate hook order for cascading updates.
+ hookTypesUpdateIndexDev = -1;
+ }
+ ReactCurrentDispatcher$1.current = HooksDispatcherOnRerenderInDEV;
+ children = Component(props, secondArg);
+ } while (didScheduleRenderPhaseUpdateDuringThisPass);
+ } // We can assume the previous dispatcher is always this one, since we set it
+ // at the beginning of the render phase and there's no re-entrance.
+
+ ReactCurrentDispatcher$1.current = ContextOnlyDispatcher;
+ {
+ workInProgress._debugHookTypes = hookTypesDev;
+ } // This check uses currentHook so that it works the same in DEV and prod bundles.
+ // hookTypesDev could catch more cases (e.g. context) but only in DEV bundles.
+
+ var didRenderTooFewHooks = currentHook !== null && currentHook.next !== null;
+ renderLanes = NoLanes;
+ currentlyRenderingFiber$1 = null;
+ currentHook = null;
+ workInProgressHook = null;
+ {
+ currentHookNameInDev = null;
+ hookTypesDev = null;
+ hookTypesUpdateIndexDev = -1; // Confirm that a static flag was not added or removed since the last
+ // render. If this fires, it suggests that we incorrectly reset the static
+ // flags in some other part of the codebase. This has happened before, for
+ // example, in the SuspenseList implementation.
+
+ if (current !== null && (current.flags & StaticMask) !== (workInProgress.flags & StaticMask) &&
+ // Disable this warning in legacy mode, because legacy Suspense is weird
+ // and creates false positives. To make this work in legacy mode, we'd
+ // need to mark fibers that commit in an incomplete state, somehow. For
+ // now I'll disable the warning that most of the bugs that would trigger
+ // it are either exclusive to concurrent mode or exist in both.
+ (current.mode & ConcurrentMode) !== NoMode) {
+ error("Internal React error: Expected static flag was missing. Please " + "notify the React team.");
+ }
+ }
+ didScheduleRenderPhaseUpdate = false; // This is reset by checkDidRenderIdHook
+ // localIdCounter = 0;
+
+ if (didRenderTooFewHooks) {
+ throw new Error("Rendered fewer hooks than expected. This may be caused by an accidental " + "early return statement.");
+ }
+ return children;
+ }
+ function bailoutHooks(current, workInProgress, lanes) {
+ workInProgress.updateQueue = current.updateQueue; // TODO: Don't need to reset the flags here, because they're reset in the
+ // complete phase (bubbleProperties).
+
+ {
+ workInProgress.flags &= ~(Passive | Update);
+ }
+ current.lanes = removeLanes(current.lanes, lanes);
+ }
+ function resetHooksAfterThrow() {
+ // We can assume the previous dispatcher is always this one, since we set it
+ // at the beginning of the render phase and there's no re-entrance.
+ ReactCurrentDispatcher$1.current = ContextOnlyDispatcher;
+ if (didScheduleRenderPhaseUpdate) {
+ // There were render phase updates. These are only valid for this render
+ // phase, which we are now aborting. Remove the updates from the queues so
+ // they do not persist to the next render. Do not remove updates from hooks
+ // that weren't processed.
+ //
+ // Only reset the updates from the queue if it has a clone. If it does
+ // not have a clone, that means it wasn't processed, and the updates were
+ // scheduled before we entered the render phase.
+ var hook = currentlyRenderingFiber$1.memoizedState;
+ while (hook !== null) {
+ var queue = hook.queue;
+ if (queue !== null) {
+ queue.pending = null;
+ }
+ hook = hook.next;
+ }
+ didScheduleRenderPhaseUpdate = false;
+ }
+ renderLanes = NoLanes;
+ currentlyRenderingFiber$1 = null;
+ currentHook = null;
+ workInProgressHook = null;
+ {
+ hookTypesDev = null;
+ hookTypesUpdateIndexDev = -1;
+ currentHookNameInDev = null;
+ isUpdatingOpaqueValueInRenderPhase = false;
+ }
+ didScheduleRenderPhaseUpdateDuringThisPass = false;
+ }
+ function mountWorkInProgressHook() {
+ var hook = {
+ memoizedState: null,
+ baseState: null,
+ baseQueue: null,
+ queue: null,
+ next: null
+ };
+ if (workInProgressHook === null) {
+ // This is the first hook in the list
+ currentlyRenderingFiber$1.memoizedState = workInProgressHook = hook;
+ } else {
+ // Append to the end of the list
+ workInProgressHook = workInProgressHook.next = hook;
+ }
+ return workInProgressHook;
+ }
+ function updateWorkInProgressHook() {
+ // This function is used both for updates and for re-renders triggered by a
+ // render phase update. It assumes there is either a current hook we can
+ // clone, or a work-in-progress hook from a previous render pass that we can
+ // use as a base. When we reach the end of the base list, we must switch to
+ // the dispatcher used for mounts.
+ var nextCurrentHook;
+ if (currentHook === null) {
+ var current = currentlyRenderingFiber$1.alternate;
+ if (current !== null) {
+ nextCurrentHook = current.memoizedState;
+ } else {
+ nextCurrentHook = null;
+ }
+ } else {
+ nextCurrentHook = currentHook.next;
+ }
+ var nextWorkInProgressHook;
+ if (workInProgressHook === null) {
+ nextWorkInProgressHook = currentlyRenderingFiber$1.memoizedState;
+ } else {
+ nextWorkInProgressHook = workInProgressHook.next;
+ }
+ if (nextWorkInProgressHook !== null) {
+ // There's already a work-in-progress. Reuse it.
+ workInProgressHook = nextWorkInProgressHook;
+ nextWorkInProgressHook = workInProgressHook.next;
+ currentHook = nextCurrentHook;
+ } else {
+ // Clone from the current hook.
+ if (nextCurrentHook === null) {
+ throw new Error("Rendered more hooks than during the previous render.");
+ }
+ currentHook = nextCurrentHook;
+ var newHook = {
+ memoizedState: currentHook.memoizedState,
+ baseState: currentHook.baseState,
+ baseQueue: currentHook.baseQueue,
+ queue: currentHook.queue,
+ next: null
+ };
+ if (workInProgressHook === null) {
+ // This is the first hook in the list.
+ currentlyRenderingFiber$1.memoizedState = workInProgressHook = newHook;
+ } else {
+ // Append to the end of the list.
+ workInProgressHook = workInProgressHook.next = newHook;
+ }
+ }
+ return workInProgressHook;
+ }
+ function createFunctionComponentUpdateQueue() {
+ return {
+ lastEffect: null,
+ stores: null
+ };
+ }
+ function basicStateReducer(state, action) {
+ // $FlowFixMe: Flow doesn't like mixed types
+ return typeof action === "function" ? action(state) : action;
+ }
+ function mountReducer(reducer, initialArg, init) {
+ var hook = mountWorkInProgressHook();
+ var initialState;
+ if (init !== undefined) {
+ initialState = init(initialArg);
+ } else {
+ initialState = initialArg;
+ }
+ hook.memoizedState = hook.baseState = initialState;
+ var queue = {
+ pending: null,
+ interleaved: null,
+ lanes: NoLanes,
+ dispatch: null,
+ lastRenderedReducer: reducer,
+ lastRenderedState: initialState
+ };
+ hook.queue = queue;
+ var dispatch = queue.dispatch = dispatchReducerAction.bind(null, currentlyRenderingFiber$1, queue);
+ return [hook.memoizedState, dispatch];
+ }
+ function updateReducer(reducer, initialArg, init) {
+ var hook = updateWorkInProgressHook();
+ var queue = hook.queue;
+ if (queue === null) {
+ throw new Error("Should have a queue. This is likely a bug in React. Please file an issue.");
+ }
+ queue.lastRenderedReducer = reducer;
+ var current = currentHook; // The last rebase update that is NOT part of the base state.
+
+ var baseQueue = current.baseQueue; // The last pending update that hasn't been processed yet.
+
+ var pendingQueue = queue.pending;
+ if (pendingQueue !== null) {
+ // We have new updates that haven't been processed yet.
+ // We'll add them to the base queue.
+ if (baseQueue !== null) {
+ // Merge the pending queue and the base queue.
+ var baseFirst = baseQueue.next;
+ var pendingFirst = pendingQueue.next;
+ baseQueue.next = pendingFirst;
+ pendingQueue.next = baseFirst;
+ }
+ {
+ if (current.baseQueue !== baseQueue) {
+ // Internal invariant that should never happen, but feasibly could in
+ // the future if we implement resuming, or some form of that.
+ error("Internal error: Expected work-in-progress queue to be a clone. " + "This is a bug in React.");
+ }
+ }
+ current.baseQueue = baseQueue = pendingQueue;
+ queue.pending = null;
+ }
+ if (baseQueue !== null) {
+ // We have a queue to process.
+ var first = baseQueue.next;
+ var newState = current.baseState;
+ var newBaseState = null;
+ var newBaseQueueFirst = null;
+ var newBaseQueueLast = null;
+ var update = first;
+ do {
+ var updateLane = update.lane;
+ if (!isSubsetOfLanes(renderLanes, updateLane)) {
+ // Priority is insufficient. Skip this update. If this is the first
+ // skipped update, the previous update/state is the new base
+ // update/state.
+ var clone = {
+ lane: updateLane,
+ action: update.action,
+ hasEagerState: update.hasEagerState,
+ eagerState: update.eagerState,
+ next: null
+ };
+ if (newBaseQueueLast === null) {
+ newBaseQueueFirst = newBaseQueueLast = clone;
+ newBaseState = newState;
+ } else {
+ newBaseQueueLast = newBaseQueueLast.next = clone;
+ } // Update the remaining priority in the queue.
+ // TODO: Don't need to accumulate this. Instead, we can remove
+ // renderLanes from the original lanes.
+
+ currentlyRenderingFiber$1.lanes = mergeLanes(currentlyRenderingFiber$1.lanes, updateLane);
+ markSkippedUpdateLanes(updateLane);
+ } else {
+ // This update does have sufficient priority.
+ if (newBaseQueueLast !== null) {
+ var _clone = {
+ // This update is going to be committed so we never want uncommit
+ // it. Using NoLane works because 0 is a subset of all bitmasks, so
+ // this will never be skipped by the check above.
+ lane: NoLane,
+ action: update.action,
+ hasEagerState: update.hasEagerState,
+ eagerState: update.eagerState,
+ next: null
+ };
+ newBaseQueueLast = newBaseQueueLast.next = _clone;
+ } // Process this update.
+
+ if (update.hasEagerState) {
+ // If this update is a state update (not a reducer) and was processed eagerly,
+ // we can use the eagerly computed state
+ newState = update.eagerState;
+ } else {
+ var action = update.action;
+ newState = reducer(newState, action);
+ }
+ }
+ update = update.next;
+ } while (update !== null && update !== first);
+ if (newBaseQueueLast === null) {
+ newBaseState = newState;
+ } else {
+ newBaseQueueLast.next = newBaseQueueFirst;
+ } // Mark that the fiber performed work, but only if the new state is
+ // different from the current state.
+
+ if (!objectIs(newState, hook.memoizedState)) {
+ markWorkInProgressReceivedUpdate();
+ }
+ hook.memoizedState = newState;
+ hook.baseState = newBaseState;
+ hook.baseQueue = newBaseQueueLast;
+ queue.lastRenderedState = newState;
+ } // Interleaved updates are stored on a separate queue. We aren't going to
+ // process them during this render, but we do need to track which lanes
+ // are remaining.
+
+ var lastInterleaved = queue.interleaved;
+ if (lastInterleaved !== null) {
+ var interleaved = lastInterleaved;
+ do {
+ var interleavedLane = interleaved.lane;
+ currentlyRenderingFiber$1.lanes = mergeLanes(currentlyRenderingFiber$1.lanes, interleavedLane);
+ markSkippedUpdateLanes(interleavedLane);
+ interleaved = interleaved.next;
+ } while (interleaved !== lastInterleaved);
+ } else if (baseQueue === null) {
+ // `queue.lanes` is used for entangling transitions. We can set it back to
+ // zero once the queue is empty.
+ queue.lanes = NoLanes;
+ }
+ var dispatch = queue.dispatch;
+ return [hook.memoizedState, dispatch];
+ }
+ function rerenderReducer(reducer, initialArg, init) {
+ var hook = updateWorkInProgressHook();
+ var queue = hook.queue;
+ if (queue === null) {
+ throw new Error("Should have a queue. This is likely a bug in React. Please file an issue.");
+ }
+ queue.lastRenderedReducer = reducer; // This is a re-render. Apply the new render phase updates to the previous
+ // work-in-progress hook.
+
+ var dispatch = queue.dispatch;
+ var lastRenderPhaseUpdate = queue.pending;
+ var newState = hook.memoizedState;
+ if (lastRenderPhaseUpdate !== null) {
+ // The queue doesn't persist past this render pass.
+ queue.pending = null;
+ var firstRenderPhaseUpdate = lastRenderPhaseUpdate.next;
+ var update = firstRenderPhaseUpdate;
+ do {
+ // Process this render phase update. We don't have to check the
+ // priority because it will always be the same as the current
+ // render's.
+ var action = update.action;
+ newState = reducer(newState, action);
+ update = update.next;
+ } while (update !== firstRenderPhaseUpdate); // Mark that the fiber performed work, but only if the new state is
+ // different from the current state.
+
+ if (!objectIs(newState, hook.memoizedState)) {
+ markWorkInProgressReceivedUpdate();
+ }
+ hook.memoizedState = newState; // Don't persist the state accumulated from the render phase updates to
+ // the base state unless the queue is empty.
+ // TODO: Not sure if this is the desired semantics, but it's what we
+ // do for gDSFP. I can't remember why.
+
+ if (hook.baseQueue === null) {
+ hook.baseState = newState;
+ }
+ queue.lastRenderedState = newState;
+ }
+ return [newState, dispatch];
+ }
+ function mountMutableSource(source, getSnapshot, subscribe) {
+ {
+ return undefined;
+ }
+ }
+ function updateMutableSource(source, getSnapshot, subscribe) {
+ {
+ return undefined;
+ }
+ }
+ function mountSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
+ var fiber = currentlyRenderingFiber$1;
+ var hook = mountWorkInProgressHook();
+ var nextSnapshot;
+ {
+ nextSnapshot = getSnapshot();
+ {
+ if (!didWarnUncachedGetSnapshot) {
+ var cachedSnapshot = getSnapshot();
+ if (!objectIs(nextSnapshot, cachedSnapshot)) {
+ error("The result of getSnapshot should be cached to avoid an infinite loop");
+ didWarnUncachedGetSnapshot = true;
+ }
+ }
+ } // Unless we're rendering a blocking lane, schedule a consistency check.
+ // Right before committing, we will walk the tree and check if any of the
+ // stores were mutated.
+ //
+ // We won't do this if we're hydrating server-rendered content, because if
+ // the content is stale, it's already visible anyway. Instead we'll patch
+ // it up in a passive effect.
+
+ var root = getWorkInProgressRoot();
+ if (root === null) {
+ throw new Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");
+ }
+ if (!includesBlockingLane(root, renderLanes)) {
+ pushStoreConsistencyCheck(fiber, getSnapshot, nextSnapshot);
+ }
+ } // Read the current snapshot from the store on every render. This breaks the
+ // normal rules of React, and only works because store updates are
+ // always synchronous.
+
+ hook.memoizedState = nextSnapshot;
+ var inst = {
+ value: nextSnapshot,
+ getSnapshot: getSnapshot
+ };
+ hook.queue = inst; // Schedule an effect to subscribe to the store.
+
+ mountEffect(subscribeToStore.bind(null, fiber, inst, subscribe), [subscribe]); // Schedule an effect to update the mutable instance fields. We will update
+ // this whenever subscribe, getSnapshot, or value changes. Because there's no
+ // clean-up function, and we track the deps correctly, we can call pushEffect
+ // directly, without storing any additional state. For the same reason, we
+ // don't need to set a static flag, either.
+ // TODO: We can move this to the passive phase once we add a pre-commit
+ // consistency check. See the next comment.
+
+ fiber.flags |= Passive;
+ pushEffect(HasEffect | Passive$1, updateStoreInstance.bind(null, fiber, inst, nextSnapshot, getSnapshot), undefined, null);
+ return nextSnapshot;
+ }
+ function updateSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
+ var fiber = currentlyRenderingFiber$1;
+ var hook = updateWorkInProgressHook(); // Read the current snapshot from the store on every render. This breaks the
+ // normal rules of React, and only works because store updates are
+ // always synchronous.
+
+ var nextSnapshot = getSnapshot();
+ {
+ if (!didWarnUncachedGetSnapshot) {
+ var cachedSnapshot = getSnapshot();
+ if (!objectIs(nextSnapshot, cachedSnapshot)) {
+ error("The result of getSnapshot should be cached to avoid an infinite loop");
+ didWarnUncachedGetSnapshot = true;
+ }
+ }
+ }
+ var prevSnapshot = hook.memoizedState;
+ var snapshotChanged = !objectIs(prevSnapshot, nextSnapshot);
+ if (snapshotChanged) {
+ hook.memoizedState = nextSnapshot;
+ markWorkInProgressReceivedUpdate();
+ }
+ var inst = hook.queue;
+ updateEffect(subscribeToStore.bind(null, fiber, inst, subscribe), [subscribe]); // Whenever getSnapshot or subscribe changes, we need to check in the
+ // commit phase if there was an interleaved mutation. In concurrent mode
+ // this can happen all the time, but even in synchronous mode, an earlier
+ // effect may have mutated the store.
+
+ if (inst.getSnapshot !== getSnapshot || snapshotChanged ||
+ // Check if the susbcribe function changed. We can save some memory by
+ // checking whether we scheduled a subscription effect above.
+ workInProgressHook !== null && workInProgressHook.memoizedState.tag & HasEffect) {
+ fiber.flags |= Passive;
+ pushEffect(HasEffect | Passive$1, updateStoreInstance.bind(null, fiber, inst, nextSnapshot, getSnapshot), undefined, null); // Unless we're rendering a blocking lane, schedule a consistency check.
+ // Right before committing, we will walk the tree and check if any of the
+ // stores were mutated.
+
+ var root = getWorkInProgressRoot();
+ if (root === null) {
+ throw new Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");
+ }
+ if (!includesBlockingLane(root, renderLanes)) {
+ pushStoreConsistencyCheck(fiber, getSnapshot, nextSnapshot);
+ }
+ }
+ return nextSnapshot;
+ }
+ function pushStoreConsistencyCheck(fiber, getSnapshot, renderedSnapshot) {
+ fiber.flags |= StoreConsistency;
+ var check = {
+ getSnapshot: getSnapshot,
+ value: renderedSnapshot
+ };
+ var componentUpdateQueue = currentlyRenderingFiber$1.updateQueue;
+ if (componentUpdateQueue === null) {
+ componentUpdateQueue = createFunctionComponentUpdateQueue();
+ currentlyRenderingFiber$1.updateQueue = componentUpdateQueue;
+ componentUpdateQueue.stores = [check];
+ } else {
+ var stores = componentUpdateQueue.stores;
+ if (stores === null) {
+ componentUpdateQueue.stores = [check];
+ } else {
+ stores.push(check);
+ }
+ }
+ }
+ function updateStoreInstance(fiber, inst, nextSnapshot, getSnapshot) {
+ // These are updated in the passive phase
+ inst.value = nextSnapshot;
+ inst.getSnapshot = getSnapshot; // Something may have been mutated in between render and commit. This could
+ // have been in an event that fired before the passive effects, or it could
+ // have been in a layout effect. In that case, we would have used the old
+ // snapsho and getSnapshot values to bail out. We need to check one more time.
+
+ if (checkIfSnapshotChanged(inst)) {
+ // Force a re-render.
+ forceStoreRerender(fiber);
+ }
+ }
+ function subscribeToStore(fiber, inst, subscribe) {
+ var handleStoreChange = function handleStoreChange() {
+ // The store changed. Check if the snapshot changed since the last time we
+ // read from the store.
+ if (checkIfSnapshotChanged(inst)) {
+ // Force a re-render.
+ forceStoreRerender(fiber);
+ }
+ }; // Subscribe to the store and return a clean-up function.
+
+ return subscribe(handleStoreChange);
+ }
+ function checkIfSnapshotChanged(inst) {
+ var latestGetSnapshot = inst.getSnapshot;
+ var prevValue = inst.value;
+ try {
+ var nextValue = latestGetSnapshot();
+ return !objectIs(prevValue, nextValue);
+ } catch (error) {
+ return true;
+ }
+ }
+ function forceStoreRerender(fiber) {
+ var root = enqueueConcurrentRenderForLane(fiber, SyncLane);
+ if (root !== null) {
+ scheduleUpdateOnFiber(root, fiber, SyncLane, NoTimestamp);
+ }
+ }
+ function mountState(initialState) {
+ var hook = mountWorkInProgressHook();
+ if (typeof initialState === "function") {
+ // $FlowFixMe: Flow doesn't like mixed types
+ initialState = initialState();
+ }
+ hook.memoizedState = hook.baseState = initialState;
+ var queue = {
+ pending: null,
+ interleaved: null,
+ lanes: NoLanes,
+ dispatch: null,
+ lastRenderedReducer: basicStateReducer,
+ lastRenderedState: initialState
+ };
+ hook.queue = queue;
+ var dispatch = queue.dispatch = dispatchSetState.bind(null, currentlyRenderingFiber$1, queue);
+ return [hook.memoizedState, dispatch];
+ }
+ function updateState(initialState) {
+ return updateReducer(basicStateReducer);
+ }
+ function rerenderState(initialState) {
+ return rerenderReducer(basicStateReducer);
+ }
+ function pushEffect(tag, create, destroy, deps) {
+ var effect = {
+ tag: tag,
+ create: create,
+ destroy: destroy,
+ deps: deps,
+ // Circular
+ next: null
+ };
+ var componentUpdateQueue = currentlyRenderingFiber$1.updateQueue;
+ if (componentUpdateQueue === null) {
+ componentUpdateQueue = createFunctionComponentUpdateQueue();
+ currentlyRenderingFiber$1.updateQueue = componentUpdateQueue;
+ componentUpdateQueue.lastEffect = effect.next = effect;
+ } else {
+ var lastEffect = componentUpdateQueue.lastEffect;
+ if (lastEffect === null) {
+ componentUpdateQueue.lastEffect = effect.next = effect;
+ } else {
+ var firstEffect = lastEffect.next;
+ lastEffect.next = effect;
+ effect.next = firstEffect;
+ componentUpdateQueue.lastEffect = effect;
+ }
+ }
+ return effect;
+ }
+ function mountRef(initialValue) {
+ var hook = mountWorkInProgressHook();
+ {
+ var _ref2 = {
+ current: initialValue
+ };
+ hook.memoizedState = _ref2;
+ return _ref2;
+ }
+ }
+ function updateRef(initialValue) {
+ var hook = updateWorkInProgressHook();
+ return hook.memoizedState;
+ }
+ function mountEffectImpl(fiberFlags, hookFlags, create, deps) {
+ var hook = mountWorkInProgressHook();
+ var nextDeps = deps === undefined ? null : deps;
+ currentlyRenderingFiber$1.flags |= fiberFlags;
+ hook.memoizedState = pushEffect(HasEffect | hookFlags, create, undefined, nextDeps);
+ }
+ function updateEffectImpl(fiberFlags, hookFlags, create, deps) {
+ var hook = updateWorkInProgressHook();
+ var nextDeps = deps === undefined ? null : deps;
+ var destroy = undefined;
+ if (currentHook !== null) {
+ var prevEffect = currentHook.memoizedState;
+ destroy = prevEffect.destroy;
+ if (nextDeps !== null) {
+ var prevDeps = prevEffect.deps;
+ if (areHookInputsEqual(nextDeps, prevDeps)) {
+ hook.memoizedState = pushEffect(hookFlags, create, destroy, nextDeps);
+ return;
+ }
+ }
+ }
+ currentlyRenderingFiber$1.flags |= fiberFlags;
+ hook.memoizedState = pushEffect(HasEffect | hookFlags, create, destroy, nextDeps);
+ }
+ function mountEffect(create, deps) {
+ {
+ return mountEffectImpl(Passive | PassiveStatic, Passive$1, create, deps);
+ }
+ }
+ function updateEffect(create, deps) {
+ return updateEffectImpl(Passive, Passive$1, create, deps);
+ }
+ function mountInsertionEffect(create, deps) {
+ return mountEffectImpl(Update, Insertion, create, deps);
+ }
+ function updateInsertionEffect(create, deps) {
+ return updateEffectImpl(Update, Insertion, create, deps);
+ }
+ function mountLayoutEffect(create, deps) {
+ var fiberFlags = Update;
+ return mountEffectImpl(fiberFlags, Layout, create, deps);
+ }
+ function updateLayoutEffect(create, deps) {
+ return updateEffectImpl(Update, Layout, create, deps);
+ }
+ function imperativeHandleEffect(create, ref) {
+ if (typeof ref === "function") {
+ var refCallback = ref;
+ var _inst = create();
+ refCallback(_inst);
+ return function () {
+ refCallback(null);
+ };
+ } else if (ref !== null && ref !== undefined) {
+ var refObject = ref;
+ {
+ if (!refObject.hasOwnProperty("current")) {
+ error("Expected useImperativeHandle() first argument to either be a " + "ref callback or React.createRef() object. Instead received: %s.", "an object with keys {" + Object.keys(refObject).join(", ") + "}");
+ }
+ }
+ var _inst2 = create();
+ refObject.current = _inst2;
+ return function () {
+ refObject.current = null;
+ };
+ }
+ }
+ function mountImperativeHandle(ref, create, deps) {
+ {
+ if (typeof create !== "function") {
+ error("Expected useImperativeHandle() second argument to be a function " + "that creates a handle. Instead received: %s.", create !== null ? typeof create : "null");
+ }
+ } // TODO: If deps are provided, should we skip comparing the ref itself?
+
+ var effectDeps = deps !== null && deps !== undefined ? deps.concat([ref]) : null;
+ var fiberFlags = Update;
+ return mountEffectImpl(fiberFlags, Layout, imperativeHandleEffect.bind(null, create, ref), effectDeps);
+ }
+ function updateImperativeHandle(ref, create, deps) {
+ {
+ if (typeof create !== "function") {
+ error("Expected useImperativeHandle() second argument to be a function " + "that creates a handle. Instead received: %s.", create !== null ? typeof create : "null");
+ }
+ } // TODO: If deps are provided, should we skip comparing the ref itself?
+
+ var effectDeps = deps !== null && deps !== undefined ? deps.concat([ref]) : null;
+ return updateEffectImpl(Update, Layout, imperativeHandleEffect.bind(null, create, ref), effectDeps);
+ }
+ function mountDebugValue(value, formatterFn) {
+ // This hook is normally a no-op.
+ // The react-debug-hooks package injects its own implementation
+ // so that e.g. DevTools can display custom hook values.
+ }
+ var updateDebugValue = mountDebugValue;
+ function mountCallback(callback, deps) {
+ var hook = mountWorkInProgressHook();
+ var nextDeps = deps === undefined ? null : deps;
+ hook.memoizedState = [callback, nextDeps];
+ return callback;
+ }
+ function updateCallback(callback, deps) {
+ var hook = updateWorkInProgressHook();
+ var nextDeps = deps === undefined ? null : deps;
+ var prevState = hook.memoizedState;
+ if (prevState !== null) {
+ if (nextDeps !== null) {
+ var prevDeps = prevState[1];
+ if (areHookInputsEqual(nextDeps, prevDeps)) {
+ return prevState[0];
+ }
+ }
+ }
+ hook.memoizedState = [callback, nextDeps];
+ return callback;
+ }
+ function mountMemo(nextCreate, deps) {
+ var hook = mountWorkInProgressHook();
+ var nextDeps = deps === undefined ? null : deps;
+ var nextValue = nextCreate();
+ hook.memoizedState = [nextValue, nextDeps];
+ return nextValue;
+ }
+ function updateMemo(nextCreate, deps) {
+ var hook = updateWorkInProgressHook();
+ var nextDeps = deps === undefined ? null : deps;
+ var prevState = hook.memoizedState;
+ if (prevState !== null) {
+ // Assume these are defined. If they're not, areHookInputsEqual will warn.
+ if (nextDeps !== null) {
+ var prevDeps = prevState[1];
+ if (areHookInputsEqual(nextDeps, prevDeps)) {
+ return prevState[0];
+ }
+ }
+ }
+ var nextValue = nextCreate();
+ hook.memoizedState = [nextValue, nextDeps];
+ return nextValue;
+ }
+ function mountDeferredValue(value) {
+ var hook = mountWorkInProgressHook();
+ hook.memoizedState = value;
+ return value;
+ }
+ function updateDeferredValue(value) {
+ var hook = updateWorkInProgressHook();
+ var resolvedCurrentHook = currentHook;
+ var prevValue = resolvedCurrentHook.memoizedState;
+ return updateDeferredValueImpl(hook, prevValue, value);
+ }
+ function rerenderDeferredValue(value) {
+ var hook = updateWorkInProgressHook();
+ if (currentHook === null) {
+ // This is a rerender during a mount.
+ hook.memoizedState = value;
+ return value;
+ } else {
+ // This is a rerender during an update.
+ var prevValue = currentHook.memoizedState;
+ return updateDeferredValueImpl(hook, prevValue, value);
+ }
+ }
+ function updateDeferredValueImpl(hook, prevValue, value) {
+ var shouldDeferValue = !includesOnlyNonUrgentLanes(renderLanes);
+ if (shouldDeferValue) {
+ // This is an urgent update. If the value has changed, keep using the
+ // previous value and spawn a deferred render to update it later.
+ if (!objectIs(value, prevValue)) {
+ // Schedule a deferred render
+ var deferredLane = claimNextTransitionLane();
+ currentlyRenderingFiber$1.lanes = mergeLanes(currentlyRenderingFiber$1.lanes, deferredLane);
+ markSkippedUpdateLanes(deferredLane); // Set this to true to indicate that the rendered value is inconsistent
+ // from the latest value. The name "baseState" doesn't really match how we
+ // use it because we're reusing a state hook field instead of creating a
+ // new one.
+
+ hook.baseState = true;
+ } // Reuse the previous value
+
+ return prevValue;
+ } else {
+ // This is not an urgent update, so we can use the latest value regardless
+ // of what it is. No need to defer it.
+ // However, if we're currently inside a spawned render, then we need to mark
+ // this as an update to prevent the fiber from bailing out.
+ //
+ // `baseState` is true when the current value is different from the rendered
+ // value. The name doesn't really match how we use it because we're reusing
+ // a state hook field instead of creating a new one.
+ if (hook.baseState) {
+ // Flip this back to false.
+ hook.baseState = false;
+ markWorkInProgressReceivedUpdate();
+ }
+ hook.memoizedState = value;
+ return value;
+ }
+ }
+ function startTransition(setPending, callback, options) {
+ var previousPriority = getCurrentUpdatePriority();
+ setCurrentUpdatePriority(higherEventPriority(previousPriority, ContinuousEventPriority));
+ setPending(true);
+ var prevTransition = ReactCurrentBatchConfig$1.transition;
+ ReactCurrentBatchConfig$1.transition = {};
+ var currentTransition = ReactCurrentBatchConfig$1.transition;
+ {
+ ReactCurrentBatchConfig$1.transition._updatedFibers = new Set();
+ }
+ try {
+ setPending(false);
+ callback();
+ } finally {
+ setCurrentUpdatePriority(previousPriority);
+ ReactCurrentBatchConfig$1.transition = prevTransition;
+ {
+ if (prevTransition === null && currentTransition._updatedFibers) {
+ var updatedFibersCount = currentTransition._updatedFibers.size;
+ if (updatedFibersCount > 10) {
+ warn("Detected a large number of updates inside startTransition. " + "If this is due to a subscription please re-write it to use React provided hooks. " + "Otherwise concurrent mode guarantees are off the table.");
+ }
+ currentTransition._updatedFibers.clear();
+ }
+ }
+ }
+ }
+ function mountTransition() {
+ var _mountState = mountState(false),
+ isPending = _mountState[0],
+ setPending = _mountState[1]; // The `start` method never changes.
+
+ var start = startTransition.bind(null, setPending);
+ var hook = mountWorkInProgressHook();
+ hook.memoizedState = start;
+ return [isPending, start];
+ }
+ function updateTransition() {
+ var _updateState = updateState(),
+ isPending = _updateState[0];
+ var hook = updateWorkInProgressHook();
+ var start = hook.memoizedState;
+ return [isPending, start];
+ }
+ function rerenderTransition() {
+ var _rerenderState = rerenderState(),
+ isPending = _rerenderState[0];
+ var hook = updateWorkInProgressHook();
+ var start = hook.memoizedState;
+ return [isPending, start];
+ }
+ var isUpdatingOpaqueValueInRenderPhase = false;
+ function getIsUpdatingOpaqueValueInRenderPhaseInDEV() {
+ {
+ return isUpdatingOpaqueValueInRenderPhase;
+ }
+ }
+ function mountId() {
+ var hook = mountWorkInProgressHook();
+ var root = getWorkInProgressRoot(); // TODO: In Fizz, id generation is specific to each server config. Maybe we
+ // should do this in Fiber, too? Deferring this decision for now because
+ // there's no other place to store the prefix except for an internal field on
+ // the public createRoot object, which the fiber tree does not currently have
+ // a reference to.
+
+ var identifierPrefix = root.identifierPrefix;
+ var id;
+ {
+ // Use a lowercase r prefix for client-generated ids.
+ var globalClientId = globalClientIdCounter++;
+ id = ":" + identifierPrefix + "r" + globalClientId.toString(32) + ":";
+ }
+ hook.memoizedState = id;
+ return id;
+ }
+ function updateId() {
+ var hook = updateWorkInProgressHook();
+ var id = hook.memoizedState;
+ return id;
+ }
+ function dispatchReducerAction(fiber, queue, action) {
+ {
+ if (typeof arguments[3] === "function") {
+ error("State updates from the useState() and useReducer() Hooks don't support the " + "second callback argument. To execute a side effect after " + "rendering, declare it in the component body with useEffect().");
+ }
+ }
+ var lane = requestUpdateLane(fiber);
+ var update = {
+ lane: lane,
+ action: action,
+ hasEagerState: false,
+ eagerState: null,
+ next: null
+ };
+ if (isRenderPhaseUpdate(fiber)) {
+ enqueueRenderPhaseUpdate(queue, update);
+ } else {
+ var root = enqueueConcurrentHookUpdate(fiber, queue, update, lane);
+ if (root !== null) {
+ var eventTime = requestEventTime();
+ scheduleUpdateOnFiber(root, fiber, lane, eventTime);
+ entangleTransitionUpdate(root, queue, lane);
+ }
+ }
+ }
+ function dispatchSetState(fiber, queue, action) {
+ {
+ if (typeof arguments[3] === "function") {
+ error("State updates from the useState() and useReducer() Hooks don't support the " + "second callback argument. To execute a side effect after " + "rendering, declare it in the component body with useEffect().");
+ }
+ }
+ var lane = requestUpdateLane(fiber);
+ var update = {
+ lane: lane,
+ action: action,
+ hasEagerState: false,
+ eagerState: null,
+ next: null
+ };
+ if (isRenderPhaseUpdate(fiber)) {
+ enqueueRenderPhaseUpdate(queue, update);
+ } else {
+ var alternate = fiber.alternate;
+ if (fiber.lanes === NoLanes && (alternate === null || alternate.lanes === NoLanes)) {
+ // The queue is currently empty, which means we can eagerly compute the
+ // next state before entering the render phase. If the new state is the
+ // same as the current state, we may be able to bail out entirely.
+ var lastRenderedReducer = queue.lastRenderedReducer;
+ if (lastRenderedReducer !== null) {
+ var prevDispatcher;
+ {
+ prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
+ }
+ try {
+ var currentState = queue.lastRenderedState;
+ var eagerState = lastRenderedReducer(currentState, action); // Stash the eagerly computed state, and the reducer used to compute
+ // it, on the update object. If the reducer hasn't changed by the
+ // time we enter the render phase, then the eager state can be used
+ // without calling the reducer again.
+
+ update.hasEagerState = true;
+ update.eagerState = eagerState;
+ if (objectIs(eagerState, currentState)) {
+ // Fast path. We can bail out without scheduling React to re-render.
+ // It's still possible that we'll need to rebase this update later,
+ // if the component re-renders for a different reason and by that
+ // time the reducer has changed.
+ // TODO: Do we still need to entangle transitions in this case?
+ enqueueConcurrentHookUpdateAndEagerlyBailout(fiber, queue, update, lane);
+ return;
+ }
+ } catch (error) {
+ // Suppress the error. It will throw again in the render phase.
+ } finally {
+ {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ }
+ }
+ }
+ var root = enqueueConcurrentHookUpdate(fiber, queue, update, lane);
+ if (root !== null) {
+ var eventTime = requestEventTime();
+ scheduleUpdateOnFiber(root, fiber, lane, eventTime);
+ entangleTransitionUpdate(root, queue, lane);
+ }
+ }
+ }
+ function isRenderPhaseUpdate(fiber) {
+ var alternate = fiber.alternate;
+ return fiber === currentlyRenderingFiber$1 || alternate !== null && alternate === currentlyRenderingFiber$1;
+ }
+ function enqueueRenderPhaseUpdate(queue, update) {
+ // 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.
+ didScheduleRenderPhaseUpdateDuringThisPass = didScheduleRenderPhaseUpdate = true;
+ var pending = queue.pending;
+ if (pending === null) {
+ // This is the first update. Create a circular list.
+ update.next = update;
+ } else {
+ update.next = pending.next;
+ pending.next = update;
+ }
+ queue.pending = update;
+ } // TODO: Move to ReactFiberConcurrentUpdates?
+
+ function entangleTransitionUpdate(root, queue, lane) {
+ if (isTransitionLane(lane)) {
+ var queueLanes = queue.lanes; // If any entangled lanes are no longer pending on the root, then they
+ // must have finished. We can remove them from the shared queue, which
+ // represents a superset of the actually pending lanes. In some cases we
+ // may entangle more than we need to, but that's OK. In fact it's worse if
+ // we *don't* entangle when we should.
+
+ queueLanes = intersectLanes(queueLanes, root.pendingLanes); // Entangle the new transition lane with the other transition lanes.
+
+ var newQueueLanes = mergeLanes(queueLanes, lane);
+ queue.lanes = newQueueLanes; // Even if queue.lanes already include lane, we don't know for certain if
+ // the lane finished since the last time we entangled it. So we need to
+ // entangle it again, just to be sure.
+
+ markRootEntangled(root, newQueueLanes);
+ }
+ }
+ var ContextOnlyDispatcher = {
+ readContext: _readContext,
+ useCallback: throwInvalidHookError,
+ useContext: throwInvalidHookError,
+ useEffect: throwInvalidHookError,
+ useImperativeHandle: throwInvalidHookError,
+ useInsertionEffect: throwInvalidHookError,
+ useLayoutEffect: throwInvalidHookError,
+ useMemo: throwInvalidHookError,
+ useReducer: throwInvalidHookError,
+ useRef: throwInvalidHookError,
+ useState: throwInvalidHookError,
+ useDebugValue: throwInvalidHookError,
+ useDeferredValue: throwInvalidHookError,
+ useTransition: throwInvalidHookError,
+ useMutableSource: throwInvalidHookError,
+ useSyncExternalStore: throwInvalidHookError,
+ useId: throwInvalidHookError,
+ unstable_isNewReconciler: enableNewReconciler
+ };
+ var HooksDispatcherOnMountInDEV = null;
+ var HooksDispatcherOnMountWithHookTypesInDEV = null;
+ var HooksDispatcherOnUpdateInDEV = null;
+ var HooksDispatcherOnRerenderInDEV = null;
+ var InvalidNestedHooksDispatcherOnMountInDEV = null;
+ var InvalidNestedHooksDispatcherOnUpdateInDEV = null;
+ var InvalidNestedHooksDispatcherOnRerenderInDEV = null;
+ {
+ var warnInvalidContextAccess = function warnInvalidContextAccess() {
+ error("Context can only be read while React is rendering. " + "In classes, you can read it in the render method or getDerivedStateFromProps. " + "In function components, you can read it directly in the function body, but not " + "inside Hooks like useReducer() or useMemo().");
+ };
+ var warnInvalidHookAccess = function warnInvalidHookAccess() {
+ error("Do not call Hooks inside useEffect(...), useMemo(...), or other built-in Hooks. " + "You can only call Hooks at the top level of your React function. " + "For more information, see " + "https://react.dev/link/rules-of-hooks");
+ };
+ HooksDispatcherOnMountInDEV = {
+ readContext: function readContext(context) {
+ return _readContext(context);
+ },
+ useCallback: function useCallback(callback, deps) {
+ currentHookNameInDev = "useCallback";
+ mountHookTypesDev();
+ checkDepsAreArrayDev(deps);
+ return mountCallback(callback, deps);
+ },
+ useContext: function useContext(context) {
+ currentHookNameInDev = "useContext";
+ mountHookTypesDev();
+ return _readContext(context);
+ },
+ useEffect: function useEffect(create, deps) {
+ currentHookNameInDev = "useEffect";
+ mountHookTypesDev();
+ checkDepsAreArrayDev(deps);
+ return mountEffect(create, deps);
+ },
+ useImperativeHandle: function useImperativeHandle(ref, create, deps) {
+ currentHookNameInDev = "useImperativeHandle";
+ mountHookTypesDev();
+ checkDepsAreArrayDev(deps);
+ return mountImperativeHandle(ref, create, deps);
+ },
+ useInsertionEffect: function useInsertionEffect(create, deps) {
+ currentHookNameInDev = "useInsertionEffect";
+ mountHookTypesDev();
+ checkDepsAreArrayDev(deps);
+ return mountInsertionEffect(create, deps);
+ },
+ useLayoutEffect: function useLayoutEffect(create, deps) {
+ currentHookNameInDev = "useLayoutEffect";
+ mountHookTypesDev();
+ checkDepsAreArrayDev(deps);
+ return mountLayoutEffect(create, deps);
+ },
+ useMemo: function useMemo(create, deps) {
+ currentHookNameInDev = "useMemo";
+ mountHookTypesDev();
+ checkDepsAreArrayDev(deps);
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
+ try {
+ return mountMemo(create, deps);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useReducer: function useReducer(reducer, initialArg, init) {
+ currentHookNameInDev = "useReducer";
+ mountHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
+ try {
+ return mountReducer(reducer, initialArg, init);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useRef: function useRef(initialValue) {
+ currentHookNameInDev = "useRef";
+ mountHookTypesDev();
+ return mountRef(initialValue);
+ },
+ useState: function useState(initialState) {
+ currentHookNameInDev = "useState";
+ mountHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
+ try {
+ return mountState(initialState);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useDebugValue: function useDebugValue(value, formatterFn) {
+ currentHookNameInDev = "useDebugValue";
+ mountHookTypesDev();
+ return mountDebugValue();
+ },
+ useDeferredValue: function useDeferredValue(value) {
+ currentHookNameInDev = "useDeferredValue";
+ mountHookTypesDev();
+ return mountDeferredValue(value);
+ },
+ useTransition: function useTransition() {
+ currentHookNameInDev = "useTransition";
+ mountHookTypesDev();
+ return mountTransition();
+ },
+ useMutableSource: function useMutableSource(source, getSnapshot, subscribe) {
+ currentHookNameInDev = "useMutableSource";
+ mountHookTypesDev();
+ return mountMutableSource();
+ },
+ useSyncExternalStore: function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
+ currentHookNameInDev = "useSyncExternalStore";
+ mountHookTypesDev();
+ return mountSyncExternalStore(subscribe, getSnapshot);
+ },
+ useId: function useId() {
+ currentHookNameInDev = "useId";
+ mountHookTypesDev();
+ return mountId();
+ },
+ unstable_isNewReconciler: enableNewReconciler
+ };
+ HooksDispatcherOnMountWithHookTypesInDEV = {
+ readContext: function readContext(context) {
+ return _readContext(context);
+ },
+ useCallback: function useCallback(callback, deps) {
+ currentHookNameInDev = "useCallback";
+ updateHookTypesDev();
+ return mountCallback(callback, deps);
+ },
+ useContext: function useContext(context) {
+ currentHookNameInDev = "useContext";
+ updateHookTypesDev();
+ return _readContext(context);
+ },
+ useEffect: function useEffect(create, deps) {
+ currentHookNameInDev = "useEffect";
+ updateHookTypesDev();
+ return mountEffect(create, deps);
+ },
+ useImperativeHandle: function useImperativeHandle(ref, create, deps) {
+ currentHookNameInDev = "useImperativeHandle";
+ updateHookTypesDev();
+ return mountImperativeHandle(ref, create, deps);
+ },
+ useInsertionEffect: function useInsertionEffect(create, deps) {
+ currentHookNameInDev = "useInsertionEffect";
+ updateHookTypesDev();
+ return mountInsertionEffect(create, deps);
+ },
+ useLayoutEffect: function useLayoutEffect(create, deps) {
+ currentHookNameInDev = "useLayoutEffect";
+ updateHookTypesDev();
+ return mountLayoutEffect(create, deps);
+ },
+ useMemo: function useMemo(create, deps) {
+ currentHookNameInDev = "useMemo";
+ updateHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
+ try {
+ return mountMemo(create, deps);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useReducer: function useReducer(reducer, initialArg, init) {
+ currentHookNameInDev = "useReducer";
+ updateHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
+ try {
+ return mountReducer(reducer, initialArg, init);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useRef: function useRef(initialValue) {
+ currentHookNameInDev = "useRef";
+ updateHookTypesDev();
+ return mountRef(initialValue);
+ },
+ useState: function useState(initialState) {
+ currentHookNameInDev = "useState";
+ updateHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
+ try {
+ return mountState(initialState);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useDebugValue: function useDebugValue(value, formatterFn) {
+ currentHookNameInDev = "useDebugValue";
+ updateHookTypesDev();
+ return mountDebugValue();
+ },
+ useDeferredValue: function useDeferredValue(value) {
+ currentHookNameInDev = "useDeferredValue";
+ updateHookTypesDev();
+ return mountDeferredValue(value);
+ },
+ useTransition: function useTransition() {
+ currentHookNameInDev = "useTransition";
+ updateHookTypesDev();
+ return mountTransition();
+ },
+ useMutableSource: function useMutableSource(source, getSnapshot, subscribe) {
+ currentHookNameInDev = "useMutableSource";
+ updateHookTypesDev();
+ return mountMutableSource();
+ },
+ useSyncExternalStore: function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
+ currentHookNameInDev = "useSyncExternalStore";
+ updateHookTypesDev();
+ return mountSyncExternalStore(subscribe, getSnapshot);
+ },
+ useId: function useId() {
+ currentHookNameInDev = "useId";
+ updateHookTypesDev();
+ return mountId();
+ },
+ unstable_isNewReconciler: enableNewReconciler
+ };
+ HooksDispatcherOnUpdateInDEV = {
+ readContext: function readContext(context) {
+ return _readContext(context);
+ },
+ useCallback: function useCallback(callback, deps) {
+ currentHookNameInDev = "useCallback";
+ updateHookTypesDev();
+ return updateCallback(callback, deps);
+ },
+ useContext: function useContext(context) {
+ currentHookNameInDev = "useContext";
+ updateHookTypesDev();
+ return _readContext(context);
+ },
+ useEffect: function useEffect(create, deps) {
+ currentHookNameInDev = "useEffect";
+ updateHookTypesDev();
+ return updateEffect(create, deps);
+ },
+ useImperativeHandle: function useImperativeHandle(ref, create, deps) {
+ currentHookNameInDev = "useImperativeHandle";
+ updateHookTypesDev();
+ return updateImperativeHandle(ref, create, deps);
+ },
+ useInsertionEffect: function useInsertionEffect(create, deps) {
+ currentHookNameInDev = "useInsertionEffect";
+ updateHookTypesDev();
+ return updateInsertionEffect(create, deps);
+ },
+ useLayoutEffect: function useLayoutEffect(create, deps) {
+ currentHookNameInDev = "useLayoutEffect";
+ updateHookTypesDev();
+ return updateLayoutEffect(create, deps);
+ },
+ useMemo: function useMemo(create, deps) {
+ currentHookNameInDev = "useMemo";
+ updateHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
+ try {
+ return updateMemo(create, deps);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useReducer: function useReducer(reducer, initialArg, init) {
+ currentHookNameInDev = "useReducer";
+ updateHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
+ try {
+ return updateReducer(reducer, initialArg, init);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useRef: function useRef(initialValue) {
+ currentHookNameInDev = "useRef";
+ updateHookTypesDev();
+ return updateRef();
+ },
+ useState: function useState(initialState) {
+ currentHookNameInDev = "useState";
+ updateHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
+ try {
+ return updateState(initialState);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useDebugValue: function useDebugValue(value, formatterFn) {
+ currentHookNameInDev = "useDebugValue";
+ updateHookTypesDev();
+ return updateDebugValue();
+ },
+ useDeferredValue: function useDeferredValue(value) {
+ currentHookNameInDev = "useDeferredValue";
+ updateHookTypesDev();
+ return updateDeferredValue(value);
+ },
+ useTransition: function useTransition() {
+ currentHookNameInDev = "useTransition";
+ updateHookTypesDev();
+ return updateTransition();
+ },
+ useMutableSource: function useMutableSource(source, getSnapshot, subscribe) {
+ currentHookNameInDev = "useMutableSource";
+ updateHookTypesDev();
+ return updateMutableSource();
+ },
+ useSyncExternalStore: function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
+ currentHookNameInDev = "useSyncExternalStore";
+ updateHookTypesDev();
+ return updateSyncExternalStore(subscribe, getSnapshot);
+ },
+ useId: function useId() {
+ currentHookNameInDev = "useId";
+ updateHookTypesDev();
+ return updateId();
+ },
+ unstable_isNewReconciler: enableNewReconciler
+ };
+ HooksDispatcherOnRerenderInDEV = {
+ readContext: function readContext(context) {
+ return _readContext(context);
+ },
+ useCallback: function useCallback(callback, deps) {
+ currentHookNameInDev = "useCallback";
+ updateHookTypesDev();
+ return updateCallback(callback, deps);
+ },
+ useContext: function useContext(context) {
+ currentHookNameInDev = "useContext";
+ updateHookTypesDev();
+ return _readContext(context);
+ },
+ useEffect: function useEffect(create, deps) {
+ currentHookNameInDev = "useEffect";
+ updateHookTypesDev();
+ return updateEffect(create, deps);
+ },
+ useImperativeHandle: function useImperativeHandle(ref, create, deps) {
+ currentHookNameInDev = "useImperativeHandle";
+ updateHookTypesDev();
+ return updateImperativeHandle(ref, create, deps);
+ },
+ useInsertionEffect: function useInsertionEffect(create, deps) {
+ currentHookNameInDev = "useInsertionEffect";
+ updateHookTypesDev();
+ return updateInsertionEffect(create, deps);
+ },
+ useLayoutEffect: function useLayoutEffect(create, deps) {
+ currentHookNameInDev = "useLayoutEffect";
+ updateHookTypesDev();
+ return updateLayoutEffect(create, deps);
+ },
+ useMemo: function useMemo(create, deps) {
+ currentHookNameInDev = "useMemo";
+ updateHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnRerenderInDEV;
+ try {
+ return updateMemo(create, deps);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useReducer: function useReducer(reducer, initialArg, init) {
+ currentHookNameInDev = "useReducer";
+ updateHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnRerenderInDEV;
+ try {
+ return rerenderReducer(reducer, initialArg, init);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useRef: function useRef(initialValue) {
+ currentHookNameInDev = "useRef";
+ updateHookTypesDev();
+ return updateRef();
+ },
+ useState: function useState(initialState) {
+ currentHookNameInDev = "useState";
+ updateHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnRerenderInDEV;
+ try {
+ return rerenderState(initialState);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useDebugValue: function useDebugValue(value, formatterFn) {
+ currentHookNameInDev = "useDebugValue";
+ updateHookTypesDev();
+ return updateDebugValue();
+ },
+ useDeferredValue: function useDeferredValue(value) {
+ currentHookNameInDev = "useDeferredValue";
+ updateHookTypesDev();
+ return rerenderDeferredValue(value);
+ },
+ useTransition: function useTransition() {
+ currentHookNameInDev = "useTransition";
+ updateHookTypesDev();
+ return rerenderTransition();
+ },
+ useMutableSource: function useMutableSource(source, getSnapshot, subscribe) {
+ currentHookNameInDev = "useMutableSource";
+ updateHookTypesDev();
+ return updateMutableSource();
+ },
+ useSyncExternalStore: function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
+ currentHookNameInDev = "useSyncExternalStore";
+ updateHookTypesDev();
+ return updateSyncExternalStore(subscribe, getSnapshot);
+ },
+ useId: function useId() {
+ currentHookNameInDev = "useId";
+ updateHookTypesDev();
+ return updateId();
+ },
+ unstable_isNewReconciler: enableNewReconciler
+ };
+ InvalidNestedHooksDispatcherOnMountInDEV = {
+ readContext: function readContext(context) {
+ warnInvalidContextAccess();
+ return _readContext(context);
+ },
+ useCallback: function useCallback(callback, deps) {
+ currentHookNameInDev = "useCallback";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ return mountCallback(callback, deps);
+ },
+ useContext: function useContext(context) {
+ currentHookNameInDev = "useContext";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ return _readContext(context);
+ },
+ useEffect: function useEffect(create, deps) {
+ currentHookNameInDev = "useEffect";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ return mountEffect(create, deps);
+ },
+ useImperativeHandle: function useImperativeHandle(ref, create, deps) {
+ currentHookNameInDev = "useImperativeHandle";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ return mountImperativeHandle(ref, create, deps);
+ },
+ useInsertionEffect: function useInsertionEffect(create, deps) {
+ currentHookNameInDev = "useInsertionEffect";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ return mountInsertionEffect(create, deps);
+ },
+ useLayoutEffect: function useLayoutEffect(create, deps) {
+ currentHookNameInDev = "useLayoutEffect";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ return mountLayoutEffect(create, deps);
+ },
+ useMemo: function useMemo(create, deps) {
+ currentHookNameInDev = "useMemo";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
+ try {
+ return mountMemo(create, deps);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useReducer: function useReducer(reducer, initialArg, init) {
+ currentHookNameInDev = "useReducer";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
+ try {
+ return mountReducer(reducer, initialArg, init);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useRef: function useRef(initialValue) {
+ currentHookNameInDev = "useRef";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ return mountRef(initialValue);
+ },
+ useState: function useState(initialState) {
+ currentHookNameInDev = "useState";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnMountInDEV;
+ try {
+ return mountState(initialState);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useDebugValue: function useDebugValue(value, formatterFn) {
+ currentHookNameInDev = "useDebugValue";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ return mountDebugValue();
+ },
+ useDeferredValue: function useDeferredValue(value) {
+ currentHookNameInDev = "useDeferredValue";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ return mountDeferredValue(value);
+ },
+ useTransition: function useTransition() {
+ currentHookNameInDev = "useTransition";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ return mountTransition();
+ },
+ useMutableSource: function useMutableSource(source, getSnapshot, subscribe) {
+ currentHookNameInDev = "useMutableSource";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ return mountMutableSource();
+ },
+ useSyncExternalStore: function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
+ currentHookNameInDev = "useSyncExternalStore";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ return mountSyncExternalStore(subscribe, getSnapshot);
+ },
+ useId: function useId() {
+ currentHookNameInDev = "useId";
+ warnInvalidHookAccess();
+ mountHookTypesDev();
+ return mountId();
+ },
+ unstable_isNewReconciler: enableNewReconciler
+ };
+ InvalidNestedHooksDispatcherOnUpdateInDEV = {
+ readContext: function readContext(context) {
+ warnInvalidContextAccess();
+ return _readContext(context);
+ },
+ useCallback: function useCallback(callback, deps) {
+ currentHookNameInDev = "useCallback";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateCallback(callback, deps);
+ },
+ useContext: function useContext(context) {
+ currentHookNameInDev = "useContext";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return _readContext(context);
+ },
+ useEffect: function useEffect(create, deps) {
+ currentHookNameInDev = "useEffect";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateEffect(create, deps);
+ },
+ useImperativeHandle: function useImperativeHandle(ref, create, deps) {
+ currentHookNameInDev = "useImperativeHandle";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateImperativeHandle(ref, create, deps);
+ },
+ useInsertionEffect: function useInsertionEffect(create, deps) {
+ currentHookNameInDev = "useInsertionEffect";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateInsertionEffect(create, deps);
+ },
+ useLayoutEffect: function useLayoutEffect(create, deps) {
+ currentHookNameInDev = "useLayoutEffect";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateLayoutEffect(create, deps);
+ },
+ useMemo: function useMemo(create, deps) {
+ currentHookNameInDev = "useMemo";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
+ try {
+ return updateMemo(create, deps);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useReducer: function useReducer(reducer, initialArg, init) {
+ currentHookNameInDev = "useReducer";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
+ try {
+ return updateReducer(reducer, initialArg, init);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useRef: function useRef(initialValue) {
+ currentHookNameInDev = "useRef";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateRef();
+ },
+ useState: function useState(initialState) {
+ currentHookNameInDev = "useState";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
+ try {
+ return updateState(initialState);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useDebugValue: function useDebugValue(value, formatterFn) {
+ currentHookNameInDev = "useDebugValue";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateDebugValue();
+ },
+ useDeferredValue: function useDeferredValue(value) {
+ currentHookNameInDev = "useDeferredValue";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateDeferredValue(value);
+ },
+ useTransition: function useTransition() {
+ currentHookNameInDev = "useTransition";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateTransition();
+ },
+ useMutableSource: function useMutableSource(source, getSnapshot, subscribe) {
+ currentHookNameInDev = "useMutableSource";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateMutableSource();
+ },
+ useSyncExternalStore: function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
+ currentHookNameInDev = "useSyncExternalStore";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateSyncExternalStore(subscribe, getSnapshot);
+ },
+ useId: function useId() {
+ currentHookNameInDev = "useId";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateId();
+ },
+ unstable_isNewReconciler: enableNewReconciler
+ };
+ InvalidNestedHooksDispatcherOnRerenderInDEV = {
+ readContext: function readContext(context) {
+ warnInvalidContextAccess();
+ return _readContext(context);
+ },
+ useCallback: function useCallback(callback, deps) {
+ currentHookNameInDev = "useCallback";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateCallback(callback, deps);
+ },
+ useContext: function useContext(context) {
+ currentHookNameInDev = "useContext";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return _readContext(context);
+ },
+ useEffect: function useEffect(create, deps) {
+ currentHookNameInDev = "useEffect";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateEffect(create, deps);
+ },
+ useImperativeHandle: function useImperativeHandle(ref, create, deps) {
+ currentHookNameInDev = "useImperativeHandle";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateImperativeHandle(ref, create, deps);
+ },
+ useInsertionEffect: function useInsertionEffect(create, deps) {
+ currentHookNameInDev = "useInsertionEffect";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateInsertionEffect(create, deps);
+ },
+ useLayoutEffect: function useLayoutEffect(create, deps) {
+ currentHookNameInDev = "useLayoutEffect";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateLayoutEffect(create, deps);
+ },
+ useMemo: function useMemo(create, deps) {
+ currentHookNameInDev = "useMemo";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
+ try {
+ return updateMemo(create, deps);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useReducer: function useReducer(reducer, initialArg, init) {
+ currentHookNameInDev = "useReducer";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
+ try {
+ return rerenderReducer(reducer, initialArg, init);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useRef: function useRef(initialValue) {
+ currentHookNameInDev = "useRef";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateRef();
+ },
+ useState: function useState(initialState) {
+ currentHookNameInDev = "useState";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ var prevDispatcher = ReactCurrentDispatcher$1.current;
+ ReactCurrentDispatcher$1.current = InvalidNestedHooksDispatcherOnUpdateInDEV;
+ try {
+ return rerenderState(initialState);
+ } finally {
+ ReactCurrentDispatcher$1.current = prevDispatcher;
+ }
+ },
+ useDebugValue: function useDebugValue(value, formatterFn) {
+ currentHookNameInDev = "useDebugValue";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateDebugValue();
+ },
+ useDeferredValue: function useDeferredValue(value) {
+ currentHookNameInDev = "useDeferredValue";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return rerenderDeferredValue(value);
+ },
+ useTransition: function useTransition() {
+ currentHookNameInDev = "useTransition";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return rerenderTransition();
+ },
+ useMutableSource: function useMutableSource(source, getSnapshot, subscribe) {
+ currentHookNameInDev = "useMutableSource";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateMutableSource();
+ },
+ useSyncExternalStore: function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
+ currentHookNameInDev = "useSyncExternalStore";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateSyncExternalStore(subscribe, getSnapshot);
+ },
+ useId: function useId() {
+ currentHookNameInDev = "useId";
+ warnInvalidHookAccess();
+ updateHookTypesDev();
+ return updateId();
+ },
+ unstable_isNewReconciler: enableNewReconciler
+ };
+ }
+ var now$1 = Scheduler.unstable_now;
+ var commitTime = 0;
+ var layoutEffectStartTime = -1;
+ var profilerStartTime = -1;
+ var passiveEffectStartTime = -1;
+ /**
+ * Tracks whether the current update was a nested/cascading update (scheduled from a layout effect).
+ *
+ * The overall sequence is:
+ * 1. render
+ * 2. commit (and call `onRender`, `onCommit`)
+ * 3. check for nested updates
+ * 4. flush passive effects (and call `onPostCommit`)
+ *
+ * Nested updates are identified in step 3 above,
+ * but step 4 still applies to the work that was just committed.
+ * We use two flags to track nested updates then:
+ * one tracks whether the upcoming update is a nested update,
+ * and the other tracks whether the current update was a nested update.
+ * The first value gets synced to the second at the start of the render phase.
+ */
+
+ var currentUpdateIsNested = false;
+ var nestedUpdateScheduled = false;
+ function isCurrentUpdateNested() {
+ return currentUpdateIsNested;
+ }
+ function markNestedUpdateScheduled() {
+ {
+ nestedUpdateScheduled = true;
+ }
+ }
+ function resetNestedUpdateFlag() {
+ {
+ currentUpdateIsNested = false;
+ nestedUpdateScheduled = false;
+ }
+ }
+ function syncNestedUpdateFlag() {
+ {
+ currentUpdateIsNested = nestedUpdateScheduled;
+ nestedUpdateScheduled = false;
+ }
+ }
+ function getCommitTime() {
+ return commitTime;
+ }
+ function recordCommitTime() {
+ commitTime = now$1();
+ }
+ function startProfilerTimer(fiber) {
+ profilerStartTime = now$1();
+ if (fiber.actualStartTime < 0) {
+ fiber.actualStartTime = now$1();
+ }
+ }
+ function stopProfilerTimerIfRunning(fiber) {
+ profilerStartTime = -1;
+ }
+ function stopProfilerTimerIfRunningAndRecordDelta(fiber, overrideBaseTime) {
+ if (profilerStartTime >= 0) {
+ var elapsedTime = now$1() - profilerStartTime;
+ fiber.actualDuration += elapsedTime;
+ if (overrideBaseTime) {
+ fiber.selfBaseDuration = elapsedTime;
+ }
+ profilerStartTime = -1;
+ }
+ }
+ function recordLayoutEffectDuration(fiber) {
+ if (layoutEffectStartTime >= 0) {
+ var elapsedTime = now$1() - layoutEffectStartTime;
+ layoutEffectStartTime = -1; // Store duration on the next nearest Profiler ancestor
+ // Or the root (for the DevTools Profiler to read)
+
+ var parentFiber = fiber.return;
+ while (parentFiber !== null) {
+ switch (parentFiber.tag) {
+ case HostRoot:
+ var root = parentFiber.stateNode;
+ root.effectDuration += elapsedTime;
+ return;
+ case Profiler:
+ var parentStateNode = parentFiber.stateNode;
+ parentStateNode.effectDuration += elapsedTime;
+ return;
+ }
+ parentFiber = parentFiber.return;
+ }
+ }
+ }
+ function recordPassiveEffectDuration(fiber) {
+ if (passiveEffectStartTime >= 0) {
+ var elapsedTime = now$1() - passiveEffectStartTime;
+ passiveEffectStartTime = -1; // Store duration on the next nearest Profiler ancestor
+ // Or the root (for the DevTools Profiler to read)
+
+ var parentFiber = fiber.return;
+ while (parentFiber !== null) {
+ switch (parentFiber.tag) {
+ case HostRoot:
+ var root = parentFiber.stateNode;
+ if (root !== null) {
+ root.passiveEffectDuration += elapsedTime;
+ }
+ return;
+ case Profiler:
+ var parentStateNode = parentFiber.stateNode;
+ if (parentStateNode !== null) {
+ // Detached fibers have their state node cleared out.
+ // In this case, the return pointer is also cleared out,
+ // so we won't be able to report the time spent in this Profiler's subtree.
+ parentStateNode.passiveEffectDuration += elapsedTime;
+ }
+ return;
+ }
+ parentFiber = parentFiber.return;
+ }
+ }
+ }
+ function startLayoutEffectTimer() {
+ layoutEffectStartTime = now$1();
+ }
+ function startPassiveEffectTimer() {
+ passiveEffectStartTime = now$1();
+ }
+ function transferActualDuration(fiber) {
+ // Transfer time spent rendering these children so we don't lose it
+ // after we rerender. This is used as a helper in special cases
+ // where we should count the work of multiple passes.
+ var child = fiber.child;
+ while (child) {
+ fiber.actualDuration += child.actualDuration;
+ child = child.sibling;
+ }
+ }
+ function createCapturedValueAtFiber(value, source) {
+ // If the value is an error, call this function immediately after it is thrown
+ // so the stack is accurate.
+ return {
+ value: value,
+ source: source,
+ stack: getStackByFiberInDevAndProd(source),
+ digest: null
+ };
+ }
+ function createCapturedValue(value, digest, stack) {
+ return {
+ value: value,
+ source: null,
+ stack: stack != null ? stack : null,
+ digest: digest != null ? digest : null
+ };
+ }
+ if (typeof ReactNativePrivateInterface.ReactFiberErrorDialog.showErrorDialog !== "function") {
+ throw new Error("Expected ReactFiberErrorDialog.showErrorDialog to be a function.");
+ }
+ function showErrorDialog(boundary, errorInfo) {
+ var capturedError = {
+ componentStack: errorInfo.stack !== null ? errorInfo.stack : "",
+ error: errorInfo.value,
+ errorBoundary: boundary !== null && boundary.tag === ClassComponent ? boundary.stateNode : null
+ };
+ return ReactNativePrivateInterface.ReactFiberErrorDialog.showErrorDialog(capturedError);
+ }
+ function logCapturedError(boundary, errorInfo) {
+ try {
+ var logError = showErrorDialog(boundary, errorInfo); // Allow injected showErrorDialog() to prevent default console.error logging.
+ // This enables renderers like ReactNative to better manage redbox behavior.
+
+ if (logError === false) {
+ return;
+ }
+ var error = errorInfo.value;
+ if (true) {
+ var source = errorInfo.source;
+ var stack = errorInfo.stack;
+ var componentStack = stack !== null ? stack : ""; // Browsers support silencing uncaught errors by calling
+ // `preventDefault()` in window `error` handler.
+ // We record this information as an expando on the error.
+
+ if (error != null && error._suppressLogging) {
+ if (boundary.tag === ClassComponent) {
+ // The error is recoverable and was silenced.
+ // Ignore it and don't print the stack addendum.
+ // This is handy for testing error boundaries without noise.
+ return;
+ } // The error is fatal. Since the silencing might have
+ // been accidental, we'll surface it anyway.
+ // However, the browser would have silenced the original error
+ // so we'll print it first, and then print the stack addendum.
+
+ console["error"](error); // Don't transform to our wrapper
+ // For a more detailed description of this block, see:
+ // https://github.com/facebook/react/pull/13384
+ }
+ var componentName = source ? getComponentNameFromFiber(source) : null;
+ var componentNameMessage = componentName ? "The above error occurred in the <" + componentName + "> component:" : "The above error occurred in one of your React components:";
+ var errorBoundaryMessage;
+ if (boundary.tag === HostRoot) {
+ errorBoundaryMessage = "Consider adding an error boundary to your tree to customize error handling behavior.\n" + "Visit https://react.dev/link/error-boundaries to learn more about error boundaries.";
+ } else {
+ var errorBoundaryName = getComponentNameFromFiber(boundary) || "Anonymous";
+ errorBoundaryMessage = "React will try to recreate this component tree from scratch " + ("using the error boundary you provided, " + errorBoundaryName + ".");
+ }
+ var combinedMessage = componentNameMessage + "\n" + componentStack + "\n\n" + ("" + errorBoundaryMessage); // In development, we provide our own message with just the component stack.
+ // We don't include the original error message and JS stack because the browser
+ // has already printed it. Even if the application swallows the error, it is still
+ // displayed by the browser thanks to the DEV-only fake event trick in ReactErrorUtils.
+
+ console["error"](combinedMessage); // Don't transform to our wrapper
+ } else {
+ // In production, we print the error directly.
+ // This will include the message, the JS stack, and anything the browser wants to show.
+ // We pass the error object instead of custom message so that the browser displays the error natively.
+ console["error"](error); // Don't transform to our wrapper
+ }
+ } catch (e) {
+ // This method must not throw, or React internal state will get messed up.
+ // If console.error is overridden, or logCapturedError() shows a dialog that throws,
+ // we want to report this error outside of the normal stack as a last resort.
+ // https://github.com/facebook/react/issues/13188
+ setTimeout(function () {
+ throw e;
+ });
+ }
+ }
+ var PossiblyWeakMap$1 = typeof WeakMap === "function" ? WeakMap : Map;
+ function createRootErrorUpdate(fiber, errorInfo, lane) {
+ var update = createUpdate(NoTimestamp, lane); // Unmount the root by rendering null.
+
+ update.tag = CaptureUpdate; // Caution: React DevTools currently depends on this property
+ // being called "element".
+
+ update.payload = {
+ element: null
+ };
+ var error = errorInfo.value;
+ update.callback = function () {
+ onUncaughtError(error);
+ logCapturedError(fiber, errorInfo);
+ };
+ return update;
+ }
+ function createClassErrorUpdate(fiber, errorInfo, lane) {
+ var update = createUpdate(NoTimestamp, lane);
+ update.tag = CaptureUpdate;
+ var getDerivedStateFromError = fiber.type.getDerivedStateFromError;
+ if (typeof getDerivedStateFromError === "function") {
+ var error$1 = errorInfo.value;
+ update.payload = function () {
+ return getDerivedStateFromError(error$1);
+ };
+ update.callback = function () {
+ {
+ markFailedErrorBoundaryForHotReloading(fiber);
+ }
+ logCapturedError(fiber, errorInfo);
+ };
+ }
+ var inst = fiber.stateNode;
+ if (inst !== null && typeof inst.componentDidCatch === "function") {
+ update.callback = function callback() {
+ {
+ markFailedErrorBoundaryForHotReloading(fiber);
+ }
+ logCapturedError(fiber, errorInfo);
+ if (typeof getDerivedStateFromError !== "function") {
+ // To preserve the preexisting retry behavior of error boundaries,
+ // we keep track of which ones already failed during this batch.
+ // This gets reset before we yield back to the browser.
+ // TODO: Warn in strict mode if getDerivedStateFromError is
+ // not defined.
+ markLegacyErrorBoundaryAsFailed(this);
+ }
+ var error$1 = errorInfo.value;
+ var stack = errorInfo.stack;
+ this.componentDidCatch(error$1, {
+ componentStack: stack !== null ? stack : ""
+ });
+ {
+ if (typeof getDerivedStateFromError !== "function") {
+ // If componentDidCatch is the only error boundary method defined,
+ // then it needs to call setState to recover from errors.
+ // If no state update is scheduled then the boundary will swallow the error.
+ if (!includesSomeLane(fiber.lanes, SyncLane)) {
+ error("%s: Error boundaries should implement getDerivedStateFromError(). " + "In that method, return a state update to display an error message or fallback UI.", getComponentNameFromFiber(fiber) || "Unknown");
+ }
+ }
+ }
+ };
+ }
+ return update;
+ }
+ function attachPingListener(root, wakeable, lanes) {
+ // Attach a ping listener
+ //
+ // The data might resolve before we have a chance to commit the fallback. Or,
+ // in the case of a refresh, we'll never commit a fallback. So we need to
+ // attach a listener now. When it resolves ("pings"), we can decide whether to
+ // try rendering the tree again.
+ //
+ // Only attach a listener if one does not already exist for the lanes
+ // we're currently rendering (which acts like a "thread ID" here).
+ //
+ // We only need to do this in concurrent mode. Legacy Suspense always
+ // commits fallbacks synchronously, so there are no pings.
+ var pingCache = root.pingCache;
+ var threadIDs;
+ if (pingCache === null) {
+ pingCache = root.pingCache = new PossiblyWeakMap$1();
+ threadIDs = new Set();
+ pingCache.set(wakeable, threadIDs);
+ } else {
+ threadIDs = pingCache.get(wakeable);
+ if (threadIDs === undefined) {
+ threadIDs = new Set();
+ pingCache.set(wakeable, threadIDs);
+ }
+ }
+ if (!threadIDs.has(lanes)) {
+ // Memoize using the thread ID to prevent redundant listeners.
+ threadIDs.add(lanes);
+ var ping = pingSuspendedRoot.bind(null, root, wakeable, lanes);
+ {
+ if (isDevToolsPresent) {
+ // If we have pending work still, restore the original updaters
+ restorePendingUpdaters(root, lanes);
+ }
+ }
+ wakeable.then(ping, ping);
+ }
+ }
+ function attachRetryListener(suspenseBoundary, root, wakeable, lanes) {
+ // Retry listener
+ //
+ // If the fallback does commit, we need to attach a different type of
+ // listener. This one schedules an update on the Suspense boundary to turn
+ // the fallback state off.
+ //
+ // Stash the wakeable on the boundary fiber so we can access it in the
+ // commit phase.
+ //
+ // When the wakeable resolves, we'll attempt to render the boundary
+ // again ("retry").
+ var wakeables = suspenseBoundary.updateQueue;
+ if (wakeables === null) {
+ var updateQueue = new Set();
+ updateQueue.add(wakeable);
+ suspenseBoundary.updateQueue = updateQueue;
+ } else {
+ wakeables.add(wakeable);
+ }
+ }
+ function resetSuspendedComponent(sourceFiber, rootRenderLanes) {
+ // A legacy mode Suspense quirk, only relevant to hook components.
+
+ var tag = sourceFiber.tag;
+ if ((sourceFiber.mode & ConcurrentMode) === NoMode && (tag === FunctionComponent || tag === ForwardRef || tag === SimpleMemoComponent)) {
+ var currentSource = sourceFiber.alternate;
+ if (currentSource) {
+ sourceFiber.updateQueue = currentSource.updateQueue;
+ sourceFiber.memoizedState = currentSource.memoizedState;
+ sourceFiber.lanes = currentSource.lanes;
+ } else {
+ sourceFiber.updateQueue = null;
+ sourceFiber.memoizedState = null;
+ }
+ }
+ }
+ function getNearestSuspenseBoundaryToCapture(returnFiber) {
+ var node = returnFiber;
+ do {
+ if (node.tag === SuspenseComponent && shouldCaptureSuspense(node)) {
+ return node;
+ } // This boundary already captured during this render. Continue to the next
+ // boundary.
+
+ node = node.return;
+ } while (node !== null);
+ return null;
+ }
+ function markSuspenseBoundaryShouldCapture(suspenseBoundary, returnFiber, sourceFiber, root, rootRenderLanes) {
+ // This marks a Suspense boundary so that when we're unwinding the stack,
+ // it captures the suspended "exception" and does a second (fallback) pass.
+ if ((suspenseBoundary.mode & ConcurrentMode) === NoMode) {
+ // Legacy Mode Suspense
+ //
+ // If the boundary is in legacy mode, we should *not*
+ // suspend the commit. Pretend as if the suspended component rendered
+ // null and keep rendering. When the Suspense boundary completes,
+ // we'll do a second pass to render the fallback.
+ if (suspenseBoundary === returnFiber) {
+ // Special case where we suspended while reconciling the children of
+ // a Suspense boundary's inner Offscreen wrapper fiber. This happens
+ // when a React.lazy component is a direct child of a
+ // Suspense boundary.
+ //
+ // Suspense boundaries are implemented as multiple fibers, but they
+ // are a single conceptual unit. The legacy mode behavior where we
+ // pretend the suspended fiber committed as `null` won't work,
+ // because in this case the "suspended" fiber is the inner
+ // Offscreen wrapper.
+ //
+ // Because the contents of the boundary haven't started rendering
+ // yet (i.e. nothing in the tree has partially rendered) we can
+ // switch to the regular, concurrent mode behavior: mark the
+ // boundary with ShouldCapture and enter the unwind phase.
+ suspenseBoundary.flags |= ShouldCapture;
+ } else {
+ suspenseBoundary.flags |= DidCapture;
+ sourceFiber.flags |= ForceUpdateForLegacySuspense; // We're going to commit this fiber even though it didn't complete.
+ // But we shouldn't call any lifecycle methods or callbacks. Remove
+ // all lifecycle effect tags.
+
+ sourceFiber.flags &= ~(LifecycleEffectMask | Incomplete);
+ if (sourceFiber.tag === ClassComponent) {
+ var currentSourceFiber = sourceFiber.alternate;
+ if (currentSourceFiber === null) {
+ // This is a new mount. Change the tag so it's not mistaken for a
+ // completed class component. For example, we should not call
+ // componentWillUnmount if it is deleted.
+ sourceFiber.tag = IncompleteClassComponent;
+ } else {
+ // When we try rendering again, we should not reuse the current fiber,
+ // since it's known to be in an inconsistent state. Use a force update to
+ // prevent a bail out.
+ var update = createUpdate(NoTimestamp, SyncLane);
+ update.tag = ForceUpdate;
+ enqueueUpdate(sourceFiber, update, SyncLane);
+ }
+ } // The source fiber did not complete. Mark it with Sync priority to
+ // indicate that it still has pending work.
+
+ sourceFiber.lanes = mergeLanes(sourceFiber.lanes, SyncLane);
+ }
+ return suspenseBoundary;
+ } // Confirmed that the boundary is in a concurrent mode tree. Continue
+ // with the normal suspend path.
+ //
+ // After this we'll use a set of heuristics to determine whether this
+ // render pass will run to completion or restart or "suspend" the commit.
+ // The actual logic for this is spread out in different places.
+ //
+ // This first principle is that if we're going to suspend when we complete
+ // a root, then we should also restart if we get an update or ping that
+ // might unsuspend it, and vice versa. The only reason to suspend is
+ // because you think you might want to restart before committing. However,
+ // it doesn't make sense to restart only while in the period we're suspended.
+ //
+ // Restarting too aggressively is also not good because it starves out any
+ // intermediate loading state. So we use heuristics to determine when.
+ // Suspense Heuristics
+ //
+ // If nothing threw a Promise or all the same fallbacks are already showing,
+ // then don't suspend/restart.
+ //
+ // If this is an initial render of a new tree of Suspense boundaries and
+ // those trigger a fallback, then don't suspend/restart. We want to ensure
+ // that we can show the initial loading state as quickly as possible.
+ //
+ // If we hit a "Delayed" case, such as when we'd switch from content back into
+ // a fallback, then we should always suspend/restart. Transitions apply
+ // to this case. If none is defined, JND is used instead.
+ //
+ // If we're already showing a fallback and it gets "retried", allowing us to show
+ // another level, but there's still an inner boundary that would show a fallback,
+ // then we suspend/restart for 500ms since the last time we showed a fallback
+ // anywhere in the tree. This effectively throttles progressive loading into a
+ // consistent train of commits. This also gives us an opportunity to restart to
+ // get to the completed state slightly earlier.
+ //
+ // If there's ambiguity due to batching it's resolved in preference of:
+ // 1) "delayed", 2) "initial render", 3) "retry".
+ //
+ // We want to ensure that a "busy" state doesn't get force committed. We want to
+ // ensure that new initial loading states can commit as soon as possible.
+
+ suspenseBoundary.flags |= ShouldCapture; // TODO: I think we can remove this, since we now use `DidCapture` in
+ // the begin phase to prevent an early bailout.
+
+ suspenseBoundary.lanes = rootRenderLanes;
+ return suspenseBoundary;
+ }
+ function throwException(root, returnFiber, sourceFiber, value, rootRenderLanes) {
+ // The source fiber did not complete.
+ sourceFiber.flags |= Incomplete;
+ {
+ if (isDevToolsPresent) {
+ // If we have pending work still, restore the original updaters
+ restorePendingUpdaters(root, rootRenderLanes);
+ }
+ }
+ if (value !== null && typeof value === "object" && typeof value.then === "function") {
+ // This is a wakeable. The component suspended.
+ var wakeable = value;
+ resetSuspendedComponent(sourceFiber);
+ var suspenseBoundary = getNearestSuspenseBoundaryToCapture(returnFiber);
+ if (suspenseBoundary !== null) {
+ suspenseBoundary.flags &= ~ForceClientRender;
+ markSuspenseBoundaryShouldCapture(suspenseBoundary, returnFiber, sourceFiber, root, rootRenderLanes); // We only attach ping listeners in concurrent mode. Legacy Suspense always
+ // commits fallbacks synchronously, so there are no pings.
+
+ if (suspenseBoundary.mode & ConcurrentMode) {
+ attachPingListener(root, wakeable, rootRenderLanes);
+ }
+ attachRetryListener(suspenseBoundary, root, wakeable);
+ return;
+ } else {
+ // No boundary was found. Unless this is a sync update, this is OK.
+ // We can suspend and wait for more data to arrive.
+ if (!includesSyncLane(rootRenderLanes)) {
+ // This is not a sync update. Suspend. Since we're not activating a
+ // Suspense boundary, this will unwind all the way to the root without
+ // performing a second pass to render a fallback. (This is arguably how
+ // refresh transitions should work, too, since we're not going to commit
+ // the fallbacks anyway.)
+ //
+ // This case also applies to initial hydration.
+ attachPingListener(root, wakeable, rootRenderLanes);
+ renderDidSuspendDelayIfPossible();
+ return;
+ } // This is a sync/discrete update. We treat this case like an error
+ // because discrete renders are expected to produce a complete tree
+ // synchronously to maintain consistency with external state.
+
+ var uncaughtSuspenseError = new Error("A component suspended while responding to synchronous input. This " + "will cause the UI to be replaced with a loading indicator. To " + "fix, updates that suspend should be wrapped " + "with startTransition."); // If we're outside a transition, fall through to the regular error path.
+ // The error will be caught by the nearest suspense boundary.
+
+ value = uncaughtSuspenseError;
+ }
+ }
+ value = createCapturedValueAtFiber(value, sourceFiber);
+ renderDidError(value); // We didn't find a boundary that could handle this type of exception. Start
+ // over and traverse parent path again, this time treating the exception
+ // as an error.
+
+ var workInProgress = returnFiber;
+ do {
+ switch (workInProgress.tag) {
+ case HostRoot:
+ {
+ var _errorInfo = value;
+ workInProgress.flags |= ShouldCapture;
+ var lane = pickArbitraryLane(rootRenderLanes);
+ workInProgress.lanes = mergeLanes(workInProgress.lanes, lane);
+ var update = createRootErrorUpdate(workInProgress, _errorInfo, lane);
+ enqueueCapturedUpdate(workInProgress, update);
+ return;
+ }
+ case ClassComponent:
+ // Capture and retry
+ var errorInfo = value;
+ var ctor = workInProgress.type;
+ var instance = workInProgress.stateNode;
+ if ((workInProgress.flags & DidCapture) === NoFlags && (typeof ctor.getDerivedStateFromError === "function" || instance !== null && typeof instance.componentDidCatch === "function" && !isAlreadyFailedLegacyErrorBoundary(instance))) {
+ workInProgress.flags |= ShouldCapture;
+ var _lane = pickArbitraryLane(rootRenderLanes);
+ workInProgress.lanes = mergeLanes(workInProgress.lanes, _lane); // Schedule the error boundary to re-render using updated state
+
+ var _update = createClassErrorUpdate(workInProgress, errorInfo, _lane);
+ enqueueCapturedUpdate(workInProgress, _update);
+ return;
+ }
+ break;
+ }
+ workInProgress = workInProgress.return;
+ } while (workInProgress !== null);
+ }
+ function getSuspendedCache() {
+ {
+ return null;
+ } // This function is called when a Suspense boundary suspends. It returns the
+ }
+ var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
+ var didReceiveUpdate = false;
+ var didWarnAboutBadClass;
+ var didWarnAboutModulePatternComponent;
+ var didWarnAboutContextTypeOnFunctionComponent;
+ var didWarnAboutGetDerivedStateOnFunctionComponent;
+ var didWarnAboutFunctionRefs;
+ var didWarnAboutReassigningProps;
+ var didWarnAboutRevealOrder;
+ var didWarnAboutTailOptions;
+ {
+ didWarnAboutBadClass = {};
+ didWarnAboutModulePatternComponent = {};
+ didWarnAboutContextTypeOnFunctionComponent = {};
+ didWarnAboutGetDerivedStateOnFunctionComponent = {};
+ didWarnAboutFunctionRefs = {};
+ didWarnAboutReassigningProps = false;
+ didWarnAboutRevealOrder = {};
+ didWarnAboutTailOptions = {};
+ }
+ function reconcileChildren(current, workInProgress, nextChildren, renderLanes) {
+ if (current === null) {
+ // If this is a fresh new component that hasn't been rendered yet, we
+ // won't update its child set by applying minimal side-effects. Instead,
+ // we will add them all to the child before it gets rendered. That means
+ // we can optimize this reconciliation pass by not tracking side-effects.
+ workInProgress.child = mountChildFibers(workInProgress, null, nextChildren, renderLanes);
+ } else {
+ // If the current child is the same as the work in progress, it means that
+ // we haven't yet started any work on these children. Therefore, we use
+ // the clone algorithm to create a copy of all the current children.
+ // If we had any progressed work already, that is invalid at this point so
+ // let's throw it out.
+ workInProgress.child = reconcileChildFibers(workInProgress, current.child, nextChildren, renderLanes);
+ }
+ }
+ function forceUnmountCurrentAndReconcile(current, workInProgress, nextChildren, renderLanes) {
+ // This function is fork of reconcileChildren. It's used in cases where we
+ // want to reconcile without matching against the existing set. This has the
+ // effect of all current children being unmounted; even if the type and key
+ // are the same, the old child is unmounted and a new child is created.
+ //
+ // To do this, we're going to go through the reconcile algorithm twice. In
+ // the first pass, we schedule a deletion for all the current children by
+ // passing null.
+ workInProgress.child = reconcileChildFibers(workInProgress, current.child, null, renderLanes); // In the second pass, we mount the new children. The trick here is that we
+ // pass null in place of where we usually pass the current child set. This has
+ // the effect of remounting all children regardless of whether their
+ // identities match.
+
+ workInProgress.child = reconcileChildFibers(workInProgress, null, nextChildren, renderLanes);
+ }
+ function updateForwardRef(current, workInProgress, Component, nextProps, renderLanes) {
+ // TODO: current can be non-null here even if the component
+ // hasn't yet mounted. This happens after the first render suspends.
+ // We'll need to figure out if this is fine or can cause issues.
+ {
+ if (workInProgress.type !== workInProgress.elementType) {
+ // Lazy component props can't be validated in createElement
+ // because they're only guaranteed to be resolved here.
+ var innerPropTypes = Component.propTypes;
+ if (innerPropTypes) {
+ checkPropTypes(innerPropTypes, nextProps,
+ // Resolved props
+ "prop", getComponentNameFromType(Component));
+ }
+ }
+ }
+ var render = Component.render;
+ var ref = workInProgress.ref; // The rest is a fork of updateFunctionComponent
+
+ var nextChildren;
+ prepareToReadContext(workInProgress, renderLanes);
+ {
+ ReactCurrentOwner$1.current = workInProgress;
+ setIsRendering(true);
+ nextChildren = renderWithHooks(current, workInProgress, render, nextProps, ref, renderLanes);
+ setIsRendering(false);
+ }
+ if (current !== null && !didReceiveUpdate) {
+ bailoutHooks(current, workInProgress, renderLanes);
+ return bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes);
+ }
+ workInProgress.flags |= PerformedWork;
+ reconcileChildren(current, workInProgress, nextChildren, renderLanes);
+ return workInProgress.child;
+ }
+ function updateMemoComponent(current, workInProgress, Component, nextProps, renderLanes) {
+ if (current === null) {
+ var type = Component.type;
+ if (isSimpleFunctionComponent(type) && Component.compare === null &&
+ // SimpleMemoComponent codepath doesn't resolve outer props either.
+ Component.defaultProps === undefined) {
+ var resolvedType = type;
+ {
+ resolvedType = resolveFunctionForHotReloading(type);
+ } // If this is a plain function component without default props,
+ // and with only the default shallow comparison, we upgrade it
+ // to a SimpleMemoComponent to allow fast path updates.
+
+ workInProgress.tag = SimpleMemoComponent;
+ workInProgress.type = resolvedType;
+ {
+ validateFunctionComponentInDev(workInProgress, type);
+ }
+ return updateSimpleMemoComponent(current, workInProgress, resolvedType, nextProps, renderLanes);
+ }
+ {
+ var innerPropTypes = type.propTypes;
+ if (innerPropTypes) {
+ // Inner memo component props aren't currently validated in createElement.
+ // We could move it there, but we'd still need this for lazy code path.
+ checkPropTypes(innerPropTypes, nextProps,
+ // Resolved props
+ "prop", getComponentNameFromType(type));
+ }
+ }
+ var child = createFiberFromTypeAndProps(Component.type, null, nextProps, workInProgress, workInProgress.mode, renderLanes);
+ child.ref = workInProgress.ref;
+ child.return = workInProgress;
+ workInProgress.child = child;
+ return child;
+ }
+ {
+ var _type = Component.type;
+ var _innerPropTypes = _type.propTypes;
+ if (_innerPropTypes) {
+ // Inner memo component props aren't currently validated in createElement.
+ // We could move it there, but we'd still need this for lazy code path.
+ checkPropTypes(_innerPropTypes, nextProps,
+ // Resolved props
+ "prop", getComponentNameFromType(_type));
+ }
+ }
+ var currentChild = current.child; // This is always exactly one child
+
+ var hasScheduledUpdateOrContext = checkScheduledUpdateOrContext(current, renderLanes);
+ if (!hasScheduledUpdateOrContext) {
+ // This will be the props with resolved defaultProps,
+ // unlike current.memoizedProps which will be the unresolved ones.
+ var prevProps = currentChild.memoizedProps; // Default to shallow comparison
+
+ var compare = Component.compare;
+ compare = compare !== null ? compare : shallowEqual;
+ if (compare(prevProps, nextProps) && current.ref === workInProgress.ref) {
+ return bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes);
+ }
+ } // React DevTools reads this flag.
+
+ workInProgress.flags |= PerformedWork;
+ var newChild = createWorkInProgress(currentChild, nextProps);
+ newChild.ref = workInProgress.ref;
+ newChild.return = workInProgress;
+ workInProgress.child = newChild;
+ return newChild;
+ }
+ function updateSimpleMemoComponent(current, workInProgress, Component, nextProps, renderLanes) {
+ // TODO: current can be non-null here even if the component
+ // hasn't yet mounted. This happens when the inner render suspends.
+ // We'll need to figure out if this is fine or can cause issues.
+ {
+ if (workInProgress.type !== workInProgress.elementType) {
+ // Lazy component props can't be validated in createElement
+ // because they're only guaranteed to be resolved here.
+ var outerMemoType = workInProgress.elementType;
+ if (outerMemoType.$$typeof === REACT_LAZY_TYPE) {
+ // We warn when you define propTypes on lazy()
+ // so let's just skip over it to find memo() outer wrapper.
+ // Inner props for memo are validated later.
+ var lazyComponent = outerMemoType;
+ var payload = lazyComponent._payload;
+ var init = lazyComponent._init;
+ try {
+ outerMemoType = init(payload);
+ } catch (x) {
+ outerMemoType = null;
+ } // Inner propTypes will be validated in the function component path.
+
+ var outerPropTypes = outerMemoType && outerMemoType.propTypes;
+ if (outerPropTypes) {
+ checkPropTypes(outerPropTypes, nextProps,
+ // Resolved (SimpleMemoComponent has no defaultProps)
+ "prop", getComponentNameFromType(outerMemoType));
+ }
+ }
+ }
+ }
+ if (current !== null) {
+ var prevProps = current.memoizedProps;
+ if (shallowEqual(prevProps, nextProps) && current.ref === workInProgress.ref &&
+ // Prevent bailout if the implementation changed due to hot reload.
+ workInProgress.type === current.type) {
+ didReceiveUpdate = false; // The props are shallowly equal. Reuse the previous props object, like we
+ // would during a normal fiber bailout.
+ //
+ // We don't have strong guarantees that the props object is referentially
+ // equal during updates where we can't bail out anyway — like if the props
+ // are shallowly equal, but there's a local state or context update in the
+ // same batch.
+ //
+ // However, as a principle, we should aim to make the behavior consistent
+ // across different ways of memoizing a component. For example, React.memo
+ // has a different internal Fiber layout if you pass a normal function
+ // component (SimpleMemoComponent) versus if you pass a different type
+ // like forwardRef (MemoComponent). But this is an implementation detail.
+ // Wrapping a component in forwardRef (or React.lazy, etc) shouldn't
+ // affect whether the props object is reused during a bailout.
+
+ workInProgress.pendingProps = nextProps = prevProps;
+ if (!checkScheduledUpdateOrContext(current, renderLanes)) {
+ // The pending lanes were cleared at the beginning of beginWork. We're
+ // about to bail out, but there might be other lanes that weren't
+ // included in the current render. Usually, the priority level of the
+ // remaining updates is accumulated during the evaluation of the
+ // component (i.e. when processing the update queue). But since since
+ // we're bailing out early *without* evaluating the component, we need
+ // to account for it here, too. Reset to the value of the current fiber.
+ // NOTE: This only applies to SimpleMemoComponent, not MemoComponent,
+ // because a MemoComponent fiber does not have hooks or an update queue;
+ // rather, it wraps around an inner component, which may or may not
+ // contains hooks.
+ // TODO: Move the reset at in beginWork out of the common path so that
+ // this is no longer necessary.
+ workInProgress.lanes = current.lanes;
+ return bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes);
+ } else if ((current.flags & ForceUpdateForLegacySuspense) !== NoFlags) {
+ // This is a special case that only exists for legacy mode.
+ // See https://github.com/facebook/react/pull/19216.
+ didReceiveUpdate = true;
+ }
+ }
+ }
+ return updateFunctionComponent(current, workInProgress, Component, nextProps, renderLanes);
+ }
+ function updateOffscreenComponent(current, workInProgress, renderLanes) {
+ var nextProps = workInProgress.pendingProps;
+ var nextChildren = nextProps.children;
+ var prevState = current !== null ? current.memoizedState : null;
+ if (nextProps.mode === "hidden" || enableLegacyHidden) {
+ // Rendering a hidden tree.
+ if ((workInProgress.mode & ConcurrentMode) === NoMode) {
+ // In legacy sync mode, don't defer the subtree. Render it now.
+ // TODO: Consider how Offscreen should work with transitions in the future
+ var nextState = {
+ baseLanes: NoLanes,
+ cachePool: null,
+ transitions: null
+ };
+ workInProgress.memoizedState = nextState;
+ pushRenderLanes(workInProgress, renderLanes);
+ } else if (!includesSomeLane(renderLanes, OffscreenLane)) {
+ var spawnedCachePool = null; // We're hidden, and we're not rendering at Offscreen. We will bail out
+ // and resume this tree later.
+
+ var nextBaseLanes;
+ if (prevState !== null) {
+ var prevBaseLanes = prevState.baseLanes;
+ nextBaseLanes = mergeLanes(prevBaseLanes, renderLanes);
+ } else {
+ nextBaseLanes = renderLanes;
+ } // Schedule this fiber to re-render at offscreen priority. Then bailout.
+
+ workInProgress.lanes = workInProgress.childLanes = laneToLanes(OffscreenLane);
+ var _nextState = {
+ baseLanes: nextBaseLanes,
+ cachePool: spawnedCachePool,
+ transitions: null
+ };
+ workInProgress.memoizedState = _nextState;
+ workInProgress.updateQueue = null;
+ // to avoid a push/pop misalignment.
+
+ pushRenderLanes(workInProgress, nextBaseLanes);
+ return null;
+ } else {
+ // This is the second render. The surrounding visible content has already
+ // committed. Now we resume rendering the hidden tree.
+ // Rendering at offscreen, so we can clear the base lanes.
+ var _nextState2 = {
+ baseLanes: NoLanes,
+ cachePool: null,
+ transitions: null
+ };
+ workInProgress.memoizedState = _nextState2; // Push the lanes that were skipped when we bailed out.
+
+ var subtreeRenderLanes = prevState !== null ? prevState.baseLanes : renderLanes;
+ pushRenderLanes(workInProgress, subtreeRenderLanes);
+ }
+ } else {
+ // Rendering a visible tree.
+ var _subtreeRenderLanes;
+ if (prevState !== null) {
+ // We're going from hidden -> visible.
+ _subtreeRenderLanes = mergeLanes(prevState.baseLanes, renderLanes);
+ workInProgress.memoizedState = null;
+ } else {
+ // We weren't previously hidden, and we still aren't, so there's nothing
+ // special to do. Need to push to the stack regardless, though, to avoid
+ // a push/pop misalignment.
+ _subtreeRenderLanes = renderLanes;
+ }
+ pushRenderLanes(workInProgress, _subtreeRenderLanes);
+ }
+ reconcileChildren(current, workInProgress, nextChildren, renderLanes);
+ return workInProgress.child;
+ } // Note: These happen to have identical begin phases, for now. We shouldn't hold
+
+ function updateFragment(current, workInProgress, renderLanes) {
+ var nextChildren = workInProgress.pendingProps;
+ reconcileChildren(current, workInProgress, nextChildren, renderLanes);
+ return workInProgress.child;
+ }
+ function updateMode(current, workInProgress, renderLanes) {
+ var nextChildren = workInProgress.pendingProps.children;
+ reconcileChildren(current, workInProgress, nextChildren, renderLanes);
+ return workInProgress.child;
+ }
+ function updateProfiler(current, workInProgress, renderLanes) {
+ {
+ workInProgress.flags |= Update;
+ {
+ // Reset effect durations for the next eventual effect phase.
+ // These are reset during render to allow the DevTools commit hook a chance to read them,
+ var stateNode = workInProgress.stateNode;
+ stateNode.effectDuration = 0;
+ stateNode.passiveEffectDuration = 0;
+ }
+ }
+ var nextProps = workInProgress.pendingProps;
+ var nextChildren = nextProps.children;
+ reconcileChildren(current, workInProgress, nextChildren, renderLanes);
+ return workInProgress.child;
+ }
+ function markRef(current, workInProgress) {
+ var ref = workInProgress.ref;
+ if (current === null && ref !== null || current !== null && current.ref !== ref) {
+ // Schedule a Ref effect
+ workInProgress.flags |= Ref;
+ }
+ }
+ function updateFunctionComponent(current, workInProgress, Component, nextProps, renderLanes) {
+ {
+ if (workInProgress.type !== workInProgress.elementType) {
+ // Lazy component props can't be validated in createElement
+ // because they're only guaranteed to be resolved here.
+ var innerPropTypes = Component.propTypes;
+ if (innerPropTypes) {
+ checkPropTypes(innerPropTypes, nextProps,
+ // Resolved props
+ "prop", getComponentNameFromType(Component));
+ }
+ }
+ }
+ var context;
+ {
+ var unmaskedContext = getUnmaskedContext(workInProgress, Component, true);
+ context = getMaskedContext(workInProgress, unmaskedContext);
+ }
+ var nextChildren;
+ prepareToReadContext(workInProgress, renderLanes);
+ {
+ ReactCurrentOwner$1.current = workInProgress;
+ setIsRendering(true);
+ nextChildren = renderWithHooks(current, workInProgress, Component, nextProps, context, renderLanes);
+ setIsRendering(false);
+ }
+ if (current !== null && !didReceiveUpdate) {
+ bailoutHooks(current, workInProgress, renderLanes);
+ return bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes);
+ }
+ workInProgress.flags |= PerformedWork;
+ reconcileChildren(current, workInProgress, nextChildren, renderLanes);
+ return workInProgress.child;
+ }
+ function updateClassComponent(current, workInProgress, Component, nextProps, renderLanes) {
+ {
+ // This is used by DevTools to force a boundary to error.
+ switch (shouldError(workInProgress)) {
+ case false:
+ {
+ var _instance = workInProgress.stateNode;
+ var ctor = workInProgress.type; // TODO This way of resetting the error boundary state is a hack.
+ // Is there a better way to do this?
+
+ var tempInstance = new ctor(workInProgress.memoizedProps, _instance.context);
+ var state = tempInstance.state;
+ _instance.updater.enqueueSetState(_instance, state, null);
+ break;
+ }
+ case true:
+ {
+ workInProgress.flags |= DidCapture;
+ workInProgress.flags |= ShouldCapture; // eslint-disable-next-line react-internal/prod-error-codes
+
+ var error$1 = new Error("Simulated error coming from DevTools");
+ var lane = pickArbitraryLane(renderLanes);
+ workInProgress.lanes = mergeLanes(workInProgress.lanes, lane); // Schedule the error boundary to re-render using updated state
+
+ var update = createClassErrorUpdate(workInProgress, createCapturedValueAtFiber(error$1, workInProgress), lane);
+ enqueueCapturedUpdate(workInProgress, update);
+ break;
+ }
+ }
+ if (workInProgress.type !== workInProgress.elementType) {
+ // Lazy component props can't be validated in createElement
+ // because they're only guaranteed to be resolved here.
+ var innerPropTypes = Component.propTypes;
+ if (innerPropTypes) {
+ checkPropTypes(innerPropTypes, nextProps,
+ // Resolved props
+ "prop", getComponentNameFromType(Component));
+ }
+ }
+ } // Push context providers early to prevent context stack mismatches.
+ // During mounting we don't know the child context yet as the instance doesn't exist.
+ // We will invalidate the child context in finishClassComponent() right after rendering.
+
+ var hasContext;
+ if (isContextProvider(Component)) {
+ hasContext = true;
+ pushContextProvider(workInProgress);
+ } else {
+ hasContext = false;
+ }
+ prepareToReadContext(workInProgress, renderLanes);
+ var instance = workInProgress.stateNode;
+ var shouldUpdate;
+ if (instance === null) {
+ resetSuspendedCurrentOnMountInLegacyMode(current, workInProgress); // In the initial pass we might need to construct the instance.
+
+ constructClassInstance(workInProgress, Component, nextProps);
+ mountClassInstance(workInProgress, Component, nextProps, renderLanes);
+ shouldUpdate = true;
+ } else if (current === null) {
+ // In a resume, we'll already have an instance we can reuse.
+ shouldUpdate = resumeMountClassInstance(workInProgress, Component, nextProps, renderLanes);
+ } else {
+ shouldUpdate = updateClassInstance(current, workInProgress, Component, nextProps, renderLanes);
+ }
+ var nextUnitOfWork = finishClassComponent(current, workInProgress, Component, shouldUpdate, hasContext, renderLanes);
+ {
+ var inst = workInProgress.stateNode;
+ if (shouldUpdate && inst.props !== nextProps) {
+ if (!didWarnAboutReassigningProps) {
+ error("It looks like %s is reassigning its own `this.props` while rendering. " + "This is not supported and can lead to confusing bugs.", getComponentNameFromFiber(workInProgress) || "a component");
+ }
+ didWarnAboutReassigningProps = true;
+ }
+ }
+ return nextUnitOfWork;
+ }
+ function finishClassComponent(current, workInProgress, Component, shouldUpdate, hasContext, renderLanes) {
+ // Refs should update even if shouldComponentUpdate returns false
+ markRef(current, workInProgress);
+ var didCaptureError = (workInProgress.flags & DidCapture) !== NoFlags;
+ if (!shouldUpdate && !didCaptureError) {
+ // Context providers should defer to sCU for rendering
+ if (hasContext) {
+ invalidateContextProvider(workInProgress, Component, false);
+ }
+ return bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes);
+ }
+ var instance = workInProgress.stateNode; // Rerender
+
+ ReactCurrentOwner$1.current = workInProgress;
+ var nextChildren;
+ if (didCaptureError && typeof Component.getDerivedStateFromError !== "function") {
+ // If we captured an error, but getDerivedStateFromError is not defined,
+ // unmount all the children. componentDidCatch will schedule an update to
+ // re-render a fallback. This is temporary until we migrate everyone to
+ // the new API.
+ // TODO: Warn in a future release.
+ nextChildren = null;
+ {
+ stopProfilerTimerIfRunning();
+ }
+ } else {
+ {
+ setIsRendering(true);
+ nextChildren = instance.render();
+ setIsRendering(false);
+ }
+ } // React DevTools reads this flag.
+
+ workInProgress.flags |= PerformedWork;
+ if (current !== null && didCaptureError) {
+ // If we're recovering from an error, reconcile without reusing any of
+ // the existing children. Conceptually, the normal children and the children
+ // that are shown on error are two different sets, so we shouldn't reuse
+ // normal children even if their identities match.
+ forceUnmountCurrentAndReconcile(current, workInProgress, nextChildren, renderLanes);
+ } else {
+ reconcileChildren(current, workInProgress, nextChildren, renderLanes);
+ } // Memoize state using the values we just used to render.
+ // TODO: Restructure so we never read values from the instance.
+
+ workInProgress.memoizedState = instance.state; // The context might have changed so we need to recalculate it.
+
+ if (hasContext) {
+ invalidateContextProvider(workInProgress, Component, true);
+ }
+ return workInProgress.child;
+ }
+ function pushHostRootContext(workInProgress) {
+ var root = workInProgress.stateNode;
+ if (root.pendingContext) {
+ pushTopLevelContextObject(workInProgress, root.pendingContext, root.pendingContext !== root.context);
+ } else if (root.context) {
+ // Should always be set
+ pushTopLevelContextObject(workInProgress, root.context, false);
+ }
+ pushHostContainer(workInProgress, root.containerInfo);
+ }
+ function updateHostRoot(current, workInProgress, renderLanes) {
+ pushHostRootContext(workInProgress);
+ if (current === null) {
+ throw new Error("Should have a current fiber. This is a bug in React.");
+ }
+ var nextProps = workInProgress.pendingProps;
+ var prevState = workInProgress.memoizedState;
+ var prevChildren = prevState.element;
+ cloneUpdateQueue(current, workInProgress);
+ processUpdateQueue(workInProgress, nextProps, null, renderLanes);
+ var nextState = workInProgress.memoizedState;
+ var root = workInProgress.stateNode;
+ // being called "element".
+
+ var nextChildren = nextState.element;
+ {
+ if (nextChildren === prevChildren) {
+ return bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes);
+ }
+ reconcileChildren(current, workInProgress, nextChildren, renderLanes);
+ }
+ return workInProgress.child;
+ }
+ function updateHostComponent(current, workInProgress, renderLanes) {
+ pushHostContext(workInProgress);
+ var type = workInProgress.type;
+ var nextProps = workInProgress.pendingProps;
+ var prevProps = current !== null ? current.memoizedProps : null;
+ var nextChildren = nextProps.children;
+ if (prevProps !== null && shouldSetTextContent()) {
+ // If we're switching from a direct text child to a normal child, or to
+ // empty, we need to schedule the text content to be reset.
+ workInProgress.flags |= ContentReset;
+ }
+ markRef(current, workInProgress);
+ reconcileChildren(current, workInProgress, nextChildren, renderLanes);
+ return workInProgress.child;
+ }
+ function updateHostText(current, workInProgress) {
+ // immediately after.
+
+ return null;
+ }
+ function mountLazyComponent(_current, workInProgress, elementType, renderLanes) {
+ resetSuspendedCurrentOnMountInLegacyMode(_current, workInProgress);
+ var props = workInProgress.pendingProps;
+ var lazyComponent = elementType;
+ var payload = lazyComponent._payload;
+ var init = lazyComponent._init;
+ var Component = init(payload); // Store the unwrapped component in the type.
+
+ workInProgress.type = Component;
+ var resolvedTag = workInProgress.tag = resolveLazyComponentTag(Component);
+ var resolvedProps = resolveDefaultProps(Component, props);
+ var child;
+ switch (resolvedTag) {
+ case FunctionComponent:
+ {
+ {
+ validateFunctionComponentInDev(workInProgress, Component);
+ workInProgress.type = Component = resolveFunctionForHotReloading(Component);
+ }
+ child = updateFunctionComponent(null, workInProgress, Component, resolvedProps, renderLanes);
+ return child;
+ }
+ case ClassComponent:
+ {
+ {
+ workInProgress.type = Component = resolveClassForHotReloading(Component);
+ }
+ child = updateClassComponent(null, workInProgress, Component, resolvedProps, renderLanes);
+ return child;
+ }
+ case ForwardRef:
+ {
+ {
+ workInProgress.type = Component = resolveForwardRefForHotReloading(Component);
+ }
+ child = updateForwardRef(null, workInProgress, Component, resolvedProps, renderLanes);
+ return child;
+ }
+ case MemoComponent:
+ {
+ {
+ if (workInProgress.type !== workInProgress.elementType) {
+ var outerPropTypes = Component.propTypes;
+ if (outerPropTypes) {
+ checkPropTypes(outerPropTypes, resolvedProps,
+ // Resolved for outer only
+ "prop", getComponentNameFromType(Component));
+ }
+ }
+ }
+ child = updateMemoComponent(null, workInProgress, Component, resolveDefaultProps(Component.type, resolvedProps),
+ // The inner type can have defaults too
+ renderLanes);
+ return child;
+ }
+ }
+ var hint = "";
+ {
+ if (Component !== null && typeof Component === "object" && Component.$$typeof === REACT_LAZY_TYPE) {
+ hint = " Did you wrap a component in React.lazy() more than once?";
+ }
+ } // This message intentionally doesn't mention ForwardRef or MemoComponent
+ // because the fact that it's a separate type of work is an
+ // implementation detail.
+
+ throw new Error("Element type is invalid. Received a promise that resolves to: " + Component + ". " + ("Lazy element type must resolve to a class or function." + hint));
+ }
+ function mountIncompleteClassComponent(_current, workInProgress, Component, nextProps, renderLanes) {
+ resetSuspendedCurrentOnMountInLegacyMode(_current, workInProgress); // Promote the fiber to a class and try rendering again.
+
+ workInProgress.tag = ClassComponent; // The rest of this function is a fork of `updateClassComponent`
+ // Push context providers early to prevent context stack mismatches.
+ // During mounting we don't know the child context yet as the instance doesn't exist.
+ // We will invalidate the child context in finishClassComponent() right after rendering.
+
+ var hasContext;
+ if (isContextProvider(Component)) {
+ hasContext = true;
+ pushContextProvider(workInProgress);
+ } else {
+ hasContext = false;
+ }
+ prepareToReadContext(workInProgress, renderLanes);
+ constructClassInstance(workInProgress, Component, nextProps);
+ mountClassInstance(workInProgress, Component, nextProps, renderLanes);
+ return finishClassComponent(null, workInProgress, Component, true, hasContext, renderLanes);
+ }
+ function mountIndeterminateComponent(_current, workInProgress, Component, renderLanes) {
+ resetSuspendedCurrentOnMountInLegacyMode(_current, workInProgress);
+ var props = workInProgress.pendingProps;
+ var context;
+ {
+ var unmaskedContext = getUnmaskedContext(workInProgress, Component, false);
+ context = getMaskedContext(workInProgress, unmaskedContext);
+ }
+ prepareToReadContext(workInProgress, renderLanes);
+ var value;
+ {
+ if (Component.prototype && typeof Component.prototype.render === "function") {
+ var componentName = getComponentNameFromType(Component) || "Unknown";
+ if (!didWarnAboutBadClass[componentName]) {
+ error("The <%s /> component appears to have a render method, but doesn't extend React.Component. " + "This is likely to cause errors. Change %s to extend React.Component instead.", componentName, componentName);
+ didWarnAboutBadClass[componentName] = true;
+ }
+ }
+ if (workInProgress.mode & StrictLegacyMode) {
+ ReactStrictModeWarnings.recordLegacyContextWarning(workInProgress, null);
+ }
+ setIsRendering(true);
+ ReactCurrentOwner$1.current = workInProgress;
+ value = renderWithHooks(null, workInProgress, Component, props, context, renderLanes);
+ setIsRendering(false);
+ }
+ workInProgress.flags |= PerformedWork;
+ {
+ // Support for module components is deprecated and is removed behind a flag.
+ // Whether or not it would crash later, we want to show a good message in DEV first.
+ if (typeof value === "object" && value !== null && typeof value.render === "function" && value.$$typeof === undefined) {
+ var _componentName = getComponentNameFromType(Component) || "Unknown";
+ if (!didWarnAboutModulePatternComponent[_componentName]) {
+ error("The <%s /> component appears to be a function component that returns a class instance. " + "Change %s to a class that extends React.Component instead. " + "If you can't use a class try assigning the prototype on the function as a workaround. " + "`%s.prototype = React.Component.prototype`. Don't use an arrow function since it " + "cannot be called with `new` by React.", _componentName, _componentName, _componentName);
+ didWarnAboutModulePatternComponent[_componentName] = true;
+ }
+ }
+ }
+ if (
+ // Run these checks in production only if the flag is off.
+ // Eventually we'll delete this branch altogether.
+ typeof value === "object" && value !== null && typeof value.render === "function" && value.$$typeof === undefined) {
+ {
+ var _componentName2 = getComponentNameFromType(Component) || "Unknown";
+ if (!didWarnAboutModulePatternComponent[_componentName2]) {
+ error("The <%s /> component appears to be a function component that returns a class instance. " + "Change %s to a class that extends React.Component instead. " + "If you can't use a class try assigning the prototype on the function as a workaround. " + "`%s.prototype = React.Component.prototype`. Don't use an arrow function since it " + "cannot be called with `new` by React.", _componentName2, _componentName2, _componentName2);
+ didWarnAboutModulePatternComponent[_componentName2] = true;
+ }
+ } // Proceed under the assumption that this is a class instance
+
+ workInProgress.tag = ClassComponent; // Throw out any hooks that were used.
+
+ workInProgress.memoizedState = null;
+ workInProgress.updateQueue = null; // Push context providers early to prevent context stack mismatches.
+ // During mounting we don't know the child context yet as the instance doesn't exist.
+ // We will invalidate the child context in finishClassComponent() right after rendering.
+
+ var hasContext = false;
+ if (isContextProvider(Component)) {
+ hasContext = true;
+ pushContextProvider(workInProgress);
+ } else {
+ hasContext = false;
+ }
+ workInProgress.memoizedState = value.state !== null && value.state !== undefined ? value.state : null;
+ initializeUpdateQueue(workInProgress);
+ adoptClassInstance(workInProgress, value);
+ mountClassInstance(workInProgress, Component, props, renderLanes);
+ return finishClassComponent(null, workInProgress, Component, true, hasContext, renderLanes);
+ } else {
+ // Proceed under the assumption that this is a function component
+ workInProgress.tag = FunctionComponent;
+ reconcileChildren(null, workInProgress, value, renderLanes);
+ {
+ validateFunctionComponentInDev(workInProgress, Component);
+ }
+ return workInProgress.child;
+ }
+ }
+ function validateFunctionComponentInDev(workInProgress, Component) {
+ {
+ if (Component) {
+ if (Component.childContextTypes) {
+ error("%s(...): childContextTypes cannot be defined on a function component.", Component.displayName || Component.name || "Component");
+ }
+ }
+ if (workInProgress.ref !== null) {
+ var info = "";
+ var ownerName = getCurrentFiberOwnerNameInDevOrNull();
+ if (ownerName) {
+ info += "\n\nCheck the render method of `" + ownerName + "`.";
+ }
+ var warningKey = ownerName || "";
+ var debugSource = workInProgress._debugSource;
+ if (debugSource) {
+ warningKey = debugSource.fileName + ":" + debugSource.lineNumber;
+ }
+ if (!didWarnAboutFunctionRefs[warningKey]) {
+ didWarnAboutFunctionRefs[warningKey] = true;
+ error("Function components cannot be given refs. " + "Attempts to access this ref will fail. " + "Did you mean to use React.forwardRef()?%s", info);
+ }
+ }
+ if (typeof Component.getDerivedStateFromProps === "function") {
+ var _componentName3 = getComponentNameFromType(Component) || "Unknown";
+ if (!didWarnAboutGetDerivedStateOnFunctionComponent[_componentName3]) {
+ error("%s: Function components do not support getDerivedStateFromProps.", _componentName3);
+ didWarnAboutGetDerivedStateOnFunctionComponent[_componentName3] = true;
+ }
+ }
+ if (typeof Component.contextType === "object" && Component.contextType !== null) {
+ var _componentName4 = getComponentNameFromType(Component) || "Unknown";
+ if (!didWarnAboutContextTypeOnFunctionComponent[_componentName4]) {
+ error("%s: Function components do not support contextType.", _componentName4);
+ didWarnAboutContextTypeOnFunctionComponent[_componentName4] = true;
+ }
+ }
+ }
+ }
+ var SUSPENDED_MARKER = {
+ dehydrated: null,
+ treeContext: null,
+ retryLane: NoLane
+ };
+ function mountSuspenseOffscreenState(renderLanes) {
+ return {
+ baseLanes: renderLanes,
+ cachePool: getSuspendedCache(),
+ transitions: null
+ };
+ }
+ function updateSuspenseOffscreenState(prevOffscreenState, renderLanes) {
+ var cachePool = null;
+ return {
+ baseLanes: mergeLanes(prevOffscreenState.baseLanes, renderLanes),
+ cachePool: cachePool,
+ transitions: prevOffscreenState.transitions
+ };
+ } // TODO: Probably should inline this back
+
+ function shouldRemainOnFallback(suspenseContext, current, workInProgress, renderLanes) {
+ // If we're already showing a fallback, there are cases where we need to
+ // remain on that fallback regardless of whether the content has resolved.
+ // For example, SuspenseList coordinates when nested content appears.
+ if (current !== null) {
+ var suspenseState = current.memoizedState;
+ if (suspenseState === null) {
+ // Currently showing content. Don't hide it, even if ForceSuspenseFallback
+ // is true. More precise name might be "ForceRemainSuspenseFallback".
+ // Note: This is a factoring smell. Can't remain on a fallback if there's
+ // no fallback to remain on.
+ return false;
+ }
+ } // Not currently showing content. Consult the Suspense context.
+
+ return hasSuspenseContext(suspenseContext, ForceSuspenseFallback);
+ }
+ function getRemainingWorkInPrimaryTree(current, renderLanes) {
+ // TODO: Should not remove render lanes that were pinged during this render
+ return removeLanes(current.childLanes, renderLanes);
+ }
+ function updateSuspenseComponent(current, workInProgress, renderLanes) {
+ var nextProps = workInProgress.pendingProps; // This is used by DevTools to force a boundary to suspend.
+
+ {
+ if (shouldSuspend(workInProgress)) {
+ workInProgress.flags |= DidCapture;
+ }
+ }
+ var suspenseContext = suspenseStackCursor.current;
+ var showFallback = false;
+ var didSuspend = (workInProgress.flags & DidCapture) !== NoFlags;
+ if (didSuspend || shouldRemainOnFallback(suspenseContext, current)) {
+ // Something in this boundary's subtree already suspended. Switch to
+ // rendering the fallback children.
+ showFallback = true;
+ workInProgress.flags &= ~DidCapture;
+ } else {
+ // Attempting the main content
+ if (current === null || current.memoizedState !== null) {
+ // This is a new mount or this boundary is already showing a fallback state.
+ // Mark this subtree context as having at least one invisible parent that could
+ // handle the fallback state.
+ // Avoided boundaries are not considered since they cannot handle preferred fallback states.
+ {
+ suspenseContext = addSubtreeSuspenseContext(suspenseContext, InvisibleParentSuspenseContext);
+ }
+ }
+ }
+ suspenseContext = setDefaultShallowSuspenseContext(suspenseContext);
+ pushSuspenseContext(workInProgress, suspenseContext); // OK, the next part is confusing. We're about to reconcile the Suspense
+ // boundary's children. This involves some custom reconciliation logic. Two
+ // main reasons this is so complicated.
+ //
+ // First, Legacy Mode has different semantics for backwards compatibility. The
+ // primary tree will commit in an inconsistent state, so when we do the
+ // second pass to render the fallback, we do some exceedingly, uh, clever
+ // hacks to make that not totally break. Like transferring effects and
+ // deletions from hidden tree. In Concurrent Mode, it's much simpler,
+ // because we bailout on the primary tree completely and leave it in its old
+ // state, no effects. Same as what we do for Offscreen (except that
+ // Offscreen doesn't have the first render pass).
+ //
+ // Second is hydration. During hydration, the Suspense fiber has a slightly
+ // different layout, where the child points to a dehydrated fragment, which
+ // contains the DOM rendered by the server.
+ //
+ // Third, even if you set all that aside, Suspense is like error boundaries in
+ // that we first we try to render one tree, and if that fails, we render again
+ // and switch to a different tree. Like a try/catch block. So we have to track
+ // which branch we're currently rendering. Ideally we would model this using
+ // a stack.
+
+ if (current === null) {
+ var suspenseState = workInProgress.memoizedState;
+ if (suspenseState !== null) {
+ var dehydrated = suspenseState.dehydrated;
+ if (dehydrated !== null) {
+ return mountDehydratedSuspenseComponent(workInProgress);
+ }
+ }
+ var nextPrimaryChildren = nextProps.children;
+ var nextFallbackChildren = nextProps.fallback;
+ if (showFallback) {
+ var fallbackFragment = mountSuspenseFallbackChildren(workInProgress, nextPrimaryChildren, nextFallbackChildren, renderLanes);
+ var primaryChildFragment = workInProgress.child;
+ primaryChildFragment.memoizedState = mountSuspenseOffscreenState(renderLanes);
+ workInProgress.memoizedState = SUSPENDED_MARKER;
+ return fallbackFragment;
+ } else {
+ return mountSuspensePrimaryChildren(workInProgress, nextPrimaryChildren);
+ }
+ } else {
+ // This is an update.
+ // Special path for hydration
+ var prevState = current.memoizedState;
+ if (prevState !== null) {
+ var _dehydrated = prevState.dehydrated;
+ if (_dehydrated !== null) {
+ return updateDehydratedSuspenseComponent(current, workInProgress, didSuspend, nextProps, _dehydrated, prevState, renderLanes);
+ }
+ }
+ if (showFallback) {
+ var _nextFallbackChildren = nextProps.fallback;
+ var _nextPrimaryChildren = nextProps.children;
+ var fallbackChildFragment = updateSuspenseFallbackChildren(current, workInProgress, _nextPrimaryChildren, _nextFallbackChildren, renderLanes);
+ var _primaryChildFragment2 = workInProgress.child;
+ var prevOffscreenState = current.child.memoizedState;
+ _primaryChildFragment2.memoizedState = prevOffscreenState === null ? mountSuspenseOffscreenState(renderLanes) : updateSuspenseOffscreenState(prevOffscreenState, renderLanes);
+ _primaryChildFragment2.childLanes = getRemainingWorkInPrimaryTree(current, renderLanes);
+ workInProgress.memoizedState = SUSPENDED_MARKER;
+ return fallbackChildFragment;
+ } else {
+ var _nextPrimaryChildren2 = nextProps.children;
+ var _primaryChildFragment3 = updateSuspensePrimaryChildren(current, workInProgress, _nextPrimaryChildren2, renderLanes);
+ workInProgress.memoizedState = null;
+ return _primaryChildFragment3;
+ }
+ }
+ }
+ function mountSuspensePrimaryChildren(workInProgress, primaryChildren, renderLanes) {
+ var mode = workInProgress.mode;
+ var primaryChildProps = {
+ mode: "visible",
+ children: primaryChildren
+ };
+ var primaryChildFragment = mountWorkInProgressOffscreenFiber(primaryChildProps, mode);
+ primaryChildFragment.return = workInProgress;
+ workInProgress.child = primaryChildFragment;
+ return primaryChildFragment;
+ }
+ function mountSuspenseFallbackChildren(workInProgress, primaryChildren, fallbackChildren, renderLanes) {
+ var mode = workInProgress.mode;
+ var progressedPrimaryFragment = workInProgress.child;
+ var primaryChildProps = {
+ mode: "hidden",
+ children: primaryChildren
+ };
+ var primaryChildFragment;
+ var fallbackChildFragment;
+ if ((mode & ConcurrentMode) === NoMode && progressedPrimaryFragment !== null) {
+ // In legacy mode, we commit the primary tree as if it successfully
+ // completed, even though it's in an inconsistent state.
+ primaryChildFragment = progressedPrimaryFragment;
+ primaryChildFragment.childLanes = NoLanes;
+ primaryChildFragment.pendingProps = primaryChildProps;
+ if (workInProgress.mode & ProfileMode) {
+ // Reset the durations from the first pass so they aren't included in the
+ // final amounts. This seems counterintuitive, since we're intentionally
+ // not measuring part of the render phase, but this makes it match what we
+ // do in Concurrent Mode.
+ primaryChildFragment.actualDuration = 0;
+ primaryChildFragment.actualStartTime = -1;
+ primaryChildFragment.selfBaseDuration = 0;
+ primaryChildFragment.treeBaseDuration = 0;
+ }
+ fallbackChildFragment = createFiberFromFragment(fallbackChildren, mode, renderLanes, null);
+ } else {
+ primaryChildFragment = mountWorkInProgressOffscreenFiber(primaryChildProps, mode);
+ fallbackChildFragment = createFiberFromFragment(fallbackChildren, mode, renderLanes, null);
+ }
+ primaryChildFragment.return = workInProgress;
+ fallbackChildFragment.return = workInProgress;
+ primaryChildFragment.sibling = fallbackChildFragment;
+ workInProgress.child = primaryChildFragment;
+ return fallbackChildFragment;
+ }
+ function mountWorkInProgressOffscreenFiber(offscreenProps, mode, renderLanes) {
+ // The props argument to `createFiberFromOffscreen` is `any` typed, so we use
+ // this wrapper function to constrain it.
+ return createFiberFromOffscreen(offscreenProps, mode, NoLanes, null);
+ }
+ function updateWorkInProgressOffscreenFiber(current, offscreenProps) {
+ // The props argument to `createWorkInProgress` is `any` typed, so we use this
+ // wrapper function to constrain it.
+ return createWorkInProgress(current, offscreenProps);
+ }
+ function updateSuspensePrimaryChildren(current, workInProgress, primaryChildren, renderLanes) {
+ var currentPrimaryChildFragment = current.child;
+ var currentFallbackChildFragment = currentPrimaryChildFragment.sibling;
+ var primaryChildFragment = updateWorkInProgressOffscreenFiber(currentPrimaryChildFragment, {
+ mode: "visible",
+ children: primaryChildren
+ });
+ if ((workInProgress.mode & ConcurrentMode) === NoMode) {
+ primaryChildFragment.lanes = renderLanes;
+ }
+ primaryChildFragment.return = workInProgress;
+ primaryChildFragment.sibling = null;
+ if (currentFallbackChildFragment !== null) {
+ // Delete the fallback child fragment
+ var deletions = workInProgress.deletions;
+ if (deletions === null) {
+ workInProgress.deletions = [currentFallbackChildFragment];
+ workInProgress.flags |= ChildDeletion;
+ } else {
+ deletions.push(currentFallbackChildFragment);
+ }
+ }
+ workInProgress.child = primaryChildFragment;
+ return primaryChildFragment;
+ }
+ function updateSuspenseFallbackChildren(current, workInProgress, primaryChildren, fallbackChildren, renderLanes) {
+ var mode = workInProgress.mode;
+ var currentPrimaryChildFragment = current.child;
+ var currentFallbackChildFragment = currentPrimaryChildFragment.sibling;
+ var primaryChildProps = {
+ mode: "hidden",
+ children: primaryChildren
+ };
+ var primaryChildFragment;
+ if (
+ // In legacy mode, we commit the primary tree as if it successfully
+ // completed, even though it's in an inconsistent state.
+ (mode & ConcurrentMode) === NoMode &&
+ // Make sure we're on the second pass, i.e. the primary child fragment was
+ // already cloned. In legacy mode, the only case where this isn't true is
+ // when DevTools forces us to display a fallback; we skip the first render
+ // pass entirely and go straight to rendering the fallback. (In Concurrent
+ // Mode, SuspenseList can also trigger this scenario, but this is a legacy-
+ // only codepath.)
+ workInProgress.child !== currentPrimaryChildFragment) {
+ var progressedPrimaryFragment = workInProgress.child;
+ primaryChildFragment = progressedPrimaryFragment;
+ primaryChildFragment.childLanes = NoLanes;
+ primaryChildFragment.pendingProps = primaryChildProps;
+ if (workInProgress.mode & ProfileMode) {
+ // Reset the durations from the first pass so they aren't included in the
+ // final amounts. This seems counterintuitive, since we're intentionally
+ // not measuring part of the render phase, but this makes it match what we
+ // do in Concurrent Mode.
+ primaryChildFragment.actualDuration = 0;
+ primaryChildFragment.actualStartTime = -1;
+ primaryChildFragment.selfBaseDuration = currentPrimaryChildFragment.selfBaseDuration;
+ primaryChildFragment.treeBaseDuration = currentPrimaryChildFragment.treeBaseDuration;
+ } // The fallback fiber was added as a deletion during the first pass.
+ // However, since we're going to remain on the fallback, we no longer want
+ // to delete it.
+
+ workInProgress.deletions = null;
+ } else {
+ primaryChildFragment = updateWorkInProgressOffscreenFiber(currentPrimaryChildFragment, primaryChildProps); // Since we're reusing a current tree, we need to reuse the flags, too.
+ // (We don't do this in legacy mode, because in legacy mode we don't re-use
+ // the current tree; see previous branch.)
+
+ primaryChildFragment.subtreeFlags = currentPrimaryChildFragment.subtreeFlags & StaticMask;
+ }
+ var fallbackChildFragment;
+ if (currentFallbackChildFragment !== null) {
+ fallbackChildFragment = createWorkInProgress(currentFallbackChildFragment, fallbackChildren);
+ } else {
+ fallbackChildFragment = createFiberFromFragment(fallbackChildren, mode, renderLanes, null); // Needs a placement effect because the parent (the Suspense boundary) already
+ // mounted but this is a new fiber.
+
+ fallbackChildFragment.flags |= Placement;
+ }
+ fallbackChildFragment.return = workInProgress;
+ primaryChildFragment.return = workInProgress;
+ primaryChildFragment.sibling = fallbackChildFragment;
+ workInProgress.child = primaryChildFragment;
+ return fallbackChildFragment;
+ }
+ function retrySuspenseComponentWithoutHydrating(current, workInProgress, renderLanes, recoverableError) {
+ // Falling back to client rendering. Because this has performance
+ // implications, it's considered a recoverable error, even though the user
+ // likely won't observe anything wrong with the UI.
+ //
+ // The error is passed in as an argument to enforce that every caller provide
+ // a custom message, or explicitly opt out (currently the only path that opts
+ // out is legacy mode; every concurrent path provides an error).
+ if (recoverableError !== null) {
+ queueHydrationError(recoverableError);
+ } // This will add the old fiber to the deletion list
+
+ reconcileChildFibers(workInProgress, current.child, null, renderLanes); // We're now not suspended nor dehydrated.
+
+ var nextProps = workInProgress.pendingProps;
+ var primaryChildren = nextProps.children;
+ var primaryChildFragment = mountSuspensePrimaryChildren(workInProgress, primaryChildren); // Needs a placement effect because the parent (the Suspense boundary) already
+ // mounted but this is a new fiber.
+
+ primaryChildFragment.flags |= Placement;
+ workInProgress.memoizedState = null;
+ return primaryChildFragment;
+ }
+ function mountSuspenseFallbackAfterRetryWithoutHydrating(current, workInProgress, primaryChildren, fallbackChildren, renderLanes) {
+ var fiberMode = workInProgress.mode;
+ var primaryChildProps = {
+ mode: "visible",
+ children: primaryChildren
+ };
+ var primaryChildFragment = mountWorkInProgressOffscreenFiber(primaryChildProps, fiberMode);
+ var fallbackChildFragment = createFiberFromFragment(fallbackChildren, fiberMode, renderLanes, null); // Needs a placement effect because the parent (the Suspense
+ // boundary) already mounted but this is a new fiber.
+
+ fallbackChildFragment.flags |= Placement;
+ primaryChildFragment.return = workInProgress;
+ fallbackChildFragment.return = workInProgress;
+ primaryChildFragment.sibling = fallbackChildFragment;
+ workInProgress.child = primaryChildFragment;
+ if ((workInProgress.mode & ConcurrentMode) !== NoMode) {
+ // We will have dropped the effect list which contains the
+ // deletion. We need to reconcile to delete the current child.
+ reconcileChildFibers(workInProgress, current.child, null, renderLanes);
+ }
+ return fallbackChildFragment;
+ }
+ function mountDehydratedSuspenseComponent(workInProgress, suspenseInstance, renderLanes) {
+ // During the first pass, we'll bail out and not drill into the children.
+ // Instead, we'll leave the content in place and try to hydrate it later.
+ if ((workInProgress.mode & ConcurrentMode) === NoMode) {
+ {
+ error("Cannot hydrate Suspense in legacy mode. Switch from " + "ReactDOM.hydrate(element, container) to " + "ReactDOMClient.hydrateRoot(container, )" + ".render(element) or remove the Suspense components from " + "the server rendered components.");
+ }
+ workInProgress.lanes = laneToLanes(SyncLane);
+ } else if (isSuspenseInstanceFallback()) {
+ // This is a client-only boundary. Since we won't get any content from the server
+ // for this, we need to schedule that at a higher priority based on when it would
+ // have timed out. In theory we could render it in this pass but it would have the
+ // wrong priority associated with it and will prevent hydration of parent path.
+ // Instead, we'll leave work left on it to render it in a separate commit.
+ // TODO This time should be the time at which the server rendered response that is
+ // a parent to this boundary was displayed. However, since we currently don't have
+ // a protocol to transfer that time, we'll just estimate it by using the current
+ // time. This will mean that Suspense timeouts are slightly shifted to later than
+ // they should be.
+ // Schedule a normal pri update to render this content.
+ workInProgress.lanes = laneToLanes(DefaultHydrationLane);
+ } else {
+ // We'll continue hydrating the rest at offscreen priority since we'll already
+ // be showing the right content coming from the server, it is no rush.
+ workInProgress.lanes = laneToLanes(OffscreenLane);
+ }
+ return null;
+ }
+ function updateDehydratedSuspenseComponent(current, workInProgress, didSuspend, nextProps, suspenseInstance, suspenseState, renderLanes) {
+ if (!didSuspend) {
+ if ((workInProgress.mode & ConcurrentMode) === NoMode) {
+ return retrySuspenseComponentWithoutHydrating(current, workInProgress, renderLanes,
+ // TODO: When we delete legacy mode, we should make this error argument
+ // required — every concurrent mode path that causes hydration to
+ // de-opt to client rendering should have an error message.
+ null);
+ }
+ if (isSuspenseInstanceFallback()) {
+ // This boundary is in a permanent fallback state. In this case, we'll never
+ // get an update and we'll never be able to hydrate the final content. Let's just try the
+ // client side render instead.
+ var digest, message, stack;
+ {
+ var _getSuspenseInstanceF = getSuspenseInstanceFallbackErrorDetails();
+ digest = _getSuspenseInstanceF.digest;
+ message = _getSuspenseInstanceF.message;
+ stack = _getSuspenseInstanceF.stack;
+ }
+ var error;
+ if (message) {
+ // eslint-disable-next-line react-internal/prod-error-codes
+ error = new Error(message);
+ } else {
+ error = new Error("The server could not finish this Suspense boundary, likely " + "due to an error during server rendering. Switched to " + "client rendering.");
+ }
+ var capturedValue = createCapturedValue(error, digest, stack);
+ return retrySuspenseComponentWithoutHydrating(current, workInProgress, renderLanes, capturedValue);
+ }
+ // any context has changed, we need to treat is as if the input might have changed.
+
+ var hasContextChanged = includesSomeLane(renderLanes, current.childLanes);
+ if (didReceiveUpdate || hasContextChanged) {
+ // This boundary has changed since the first render. This means that we are now unable to
+ // hydrate it. We might still be able to hydrate it using a higher priority lane.
+ var root = getWorkInProgressRoot();
+ if (root !== null) {
+ var attemptHydrationAtLane = getBumpedLaneForHydration(root, renderLanes);
+ if (attemptHydrationAtLane !== NoLane && attemptHydrationAtLane !== suspenseState.retryLane) {
+ // Intentionally mutating since this render will get interrupted. This
+ // is one of the very rare times where we mutate the current tree
+ // during the render phase.
+ suspenseState.retryLane = attemptHydrationAtLane; // TODO: Ideally this would inherit the event time of the current render
+
+ var eventTime = NoTimestamp;
+ enqueueConcurrentRenderForLane(current, attemptHydrationAtLane);
+ scheduleUpdateOnFiber(root, current, attemptHydrationAtLane, eventTime);
+ }
+ } // If we have scheduled higher pri work above, this will probably just abort the render
+ // since we now have higher priority work, but in case it doesn't, we need to prepare to
+ // render something, if we time out. Even if that requires us to delete everything and
+ // skip hydration.
+ // Delay having to do this as long as the suspense timeout allows us.
+
+ renderDidSuspendDelayIfPossible();
+ var _capturedValue = createCapturedValue(new Error("This Suspense boundary received an update before it finished " + "hydrating. This caused the boundary to switch to client rendering. " + "The usual way to fix this is to wrap the original update " + "in startTransition."));
+ return retrySuspenseComponentWithoutHydrating(current, workInProgress, renderLanes, _capturedValue);
+ } else if (isSuspenseInstancePending()) {
+ // This component is still pending more data from the server, so we can't hydrate its
+ // content. We treat it as if this component suspended itself. It might seem as if
+ // we could just try to render it client-side instead. However, this will perform a
+ // lot of unnecessary work and is unlikely to complete since it often will suspend
+ // on missing data anyway. Additionally, the server might be able to render more
+ // than we can on the client yet. In that case we'd end up with more fallback states
+ // on the client than if we just leave it alone. If the server times out or errors
+ // these should update this boundary to the permanent Fallback state instead.
+ // Mark it as having captured (i.e. suspended).
+ workInProgress.flags |= DidCapture; // Leave the child in place. I.e. the dehydrated fragment.
+
+ workInProgress.child = current.child; // Register a callback to retry this boundary once the server has sent the result.
+
+ var retry = retryDehydratedSuspenseBoundary.bind(null, current);
+ registerSuspenseInstanceRetry();
+ return null;
+ } else {
+ // This is the first attempt.
+ reenterHydrationStateFromDehydratedSuspenseInstance(workInProgress, suspenseInstance, suspenseState.treeContext);
+ var primaryChildren = nextProps.children;
+ var primaryChildFragment = mountSuspensePrimaryChildren(workInProgress, primaryChildren); // Mark the children as hydrating. This is a fast path to know whether this
+ // tree is part of a hydrating tree. This is used to determine if a child
+ // node has fully mounted yet, and for scheduling event replaying.
+ // Conceptually this is similar to Placement in that a new subtree is
+ // inserted into the React tree here. It just happens to not need DOM
+ // mutations because it already exists.
+
+ primaryChildFragment.flags |= Hydrating;
+ return primaryChildFragment;
+ }
+ } else {
+ // This is the second render pass. We already attempted to hydrated, but
+ // something either suspended or errored.
+ if (workInProgress.flags & ForceClientRender) {
+ // Something errored during hydration. Try again without hydrating.
+ workInProgress.flags &= ~ForceClientRender;
+ var _capturedValue2 = createCapturedValue(new Error("There was an error while hydrating this Suspense boundary. " + "Switched to client rendering."));
+ return retrySuspenseComponentWithoutHydrating(current, workInProgress, renderLanes, _capturedValue2);
+ } else if (workInProgress.memoizedState !== null) {
+ // Something suspended and we should still be in dehydrated mode.
+ // Leave the existing child in place.
+ workInProgress.child = current.child; // The dehydrated completion pass expects this flag to be there
+ // but the normal suspense pass doesn't.
+
+ workInProgress.flags |= DidCapture;
+ return null;
+ } else {
+ // Suspended but we should no longer be in dehydrated mode.
+ // Therefore we now have to render the fallback.
+ var nextPrimaryChildren = nextProps.children;
+ var nextFallbackChildren = nextProps.fallback;
+ var fallbackChildFragment = mountSuspenseFallbackAfterRetryWithoutHydrating(current, workInProgress, nextPrimaryChildren, nextFallbackChildren, renderLanes);
+ var _primaryChildFragment4 = workInProgress.child;
+ _primaryChildFragment4.memoizedState = mountSuspenseOffscreenState(renderLanes);
+ workInProgress.memoizedState = SUSPENDED_MARKER;
+ return fallbackChildFragment;
+ }
+ }
+ }
+ function scheduleSuspenseWorkOnFiber(fiber, renderLanes, propagationRoot) {
+ fiber.lanes = mergeLanes(fiber.lanes, renderLanes);
+ var alternate = fiber.alternate;
+ if (alternate !== null) {
+ alternate.lanes = mergeLanes(alternate.lanes, renderLanes);
+ }
+ scheduleContextWorkOnParentPath(fiber.return, renderLanes, propagationRoot);
+ }
+ function propagateSuspenseContextChange(workInProgress, firstChild, renderLanes) {
+ // Mark any Suspense boundaries with fallbacks as having work to do.
+ // If they were previously forced into fallbacks, they may now be able
+ // to unblock.
+ var node = firstChild;
+ while (node !== null) {
+ if (node.tag === SuspenseComponent) {
+ var state = node.memoizedState;
+ if (state !== null) {
+ scheduleSuspenseWorkOnFiber(node, renderLanes, workInProgress);
+ }
+ } else if (node.tag === SuspenseListComponent) {
+ // If the tail is hidden there might not be an Suspense boundaries
+ // to schedule work on. In this case we have to schedule it on the
+ // list itself.
+ // We don't have to traverse to the children of the list since
+ // the list will propagate the change when it rerenders.
+ scheduleSuspenseWorkOnFiber(node, renderLanes, workInProgress);
+ } else if (node.child !== null) {
+ node.child.return = node;
+ node = node.child;
+ continue;
+ }
+ if (node === workInProgress) {
+ return;
+ }
+ while (node.sibling === null) {
+ if (node.return === null || node.return === workInProgress) {
+ return;
+ }
+ node = node.return;
+ }
+ node.sibling.return = node.return;
+ node = node.sibling;
+ }
+ }
+ function findLastContentRow(firstChild) {
+ // This is going to find the last row among these children that is already
+ // showing content on the screen, as opposed to being in fallback state or
+ // new. If a row has multiple Suspense boundaries, any of them being in the
+ // fallback state, counts as the whole row being in a fallback state.
+ // Note that the "rows" will be workInProgress, but any nested children
+ // will still be current since we haven't rendered them yet. The mounted
+ // order may not be the same as the new order. We use the new order.
+ var row = firstChild;
+ var lastContentRow = null;
+ while (row !== null) {
+ var currentRow = row.alternate; // New rows can't be content rows.
+
+ if (currentRow !== null && findFirstSuspended(currentRow) === null) {
+ lastContentRow = row;
+ }
+ row = row.sibling;
+ }
+ return lastContentRow;
+ }
+ function validateRevealOrder(revealOrder) {
+ {
+ if (revealOrder !== undefined && revealOrder !== "forwards" && revealOrder !== "backwards" && revealOrder !== "together" && !didWarnAboutRevealOrder[revealOrder]) {
+ didWarnAboutRevealOrder[revealOrder] = true;
+ if (typeof revealOrder === "string") {
+ switch (revealOrder.toLowerCase()) {
+ case "together":
+ case "forwards":
+ case "backwards":
+ {
+ error('"%s" is not a valid value for revealOrder on . ' + 'Use lowercase "%s" instead.', revealOrder, revealOrder.toLowerCase());
+ break;
+ }
+ case "forward":
+ case "backward":
+ {
+ error('"%s" is not a valid value for revealOrder on . ' + 'React uses the -s suffix in the spelling. Use "%ss" instead.', revealOrder, revealOrder.toLowerCase());
+ break;
+ }
+ default:
+ error('"%s" is not a supported revealOrder on . ' + 'Did you mean "together", "forwards" or "backwards"?', revealOrder);
+ break;
+ }
+ } else {
+ error("%s is not a supported value for revealOrder on . " + 'Did you mean "together", "forwards" or "backwards"?', revealOrder);
+ }
+ }
+ }
+ }
+ function validateTailOptions(tailMode, revealOrder) {
+ {
+ if (tailMode !== undefined && !didWarnAboutTailOptions[tailMode]) {
+ if (tailMode !== "collapsed" && tailMode !== "hidden") {
+ didWarnAboutTailOptions[tailMode] = true;
+ error('"%s" is not a supported value for tail on . ' + 'Did you mean "collapsed" or "hidden"?', tailMode);
+ } else if (revealOrder !== "forwards" && revealOrder !== "backwards") {
+ didWarnAboutTailOptions[tailMode] = true;
+ error(' is only valid if revealOrder is ' + '"forwards" or "backwards". ' + 'Did you mean to specify revealOrder="forwards"?', tailMode);
+ }
+ }
+ }
+ }
+ function validateSuspenseListNestedChild(childSlot, index) {
+ {
+ var isAnArray = isArray(childSlot);
+ var isIterable = !isAnArray && typeof getIteratorFn(childSlot) === "function";
+ if (isAnArray || isIterable) {
+ var type = isAnArray ? "array" : "iterable";
+ error("A nested %s was passed to row #%s in . Wrap it in " + "an additional SuspenseList to configure its revealOrder: " + " ... " + "{%s} ... " + "", type, index, type);
+ return false;
+ }
+ }
+ return true;
+ }
+ function validateSuspenseListChildren(children, revealOrder) {
+ {
+ if ((revealOrder === "forwards" || revealOrder === "backwards") && children !== undefined && children !== null && children !== false) {
+ if (isArray(children)) {
+ for (var i = 0; i < children.length; i++) {
+ if (!validateSuspenseListNestedChild(children[i], i)) {
+ return;
+ }
+ }
+ } else {
+ var iteratorFn = getIteratorFn(children);
+ if (typeof iteratorFn === "function") {
+ var childrenIterator = iteratorFn.call(children);
+ if (childrenIterator) {
+ var step = childrenIterator.next();
+ var _i = 0;
+ for (; !step.done; step = childrenIterator.next()) {
+ if (!validateSuspenseListNestedChild(step.value, _i)) {
+ return;
+ }
+ _i++;
+ }
+ }
+ } else {
+ error('A single row was passed to a . ' + "This is not useful since it needs multiple rows. " + "Did you mean to pass multiple children or an array?", revealOrder);
+ }
+ }
+ }
+ }
+ }
+ function initSuspenseListRenderState(workInProgress, isBackwards, tail, lastContentRow, tailMode) {
+ var renderState = workInProgress.memoizedState;
+ if (renderState === null) {
+ workInProgress.memoizedState = {
+ isBackwards: isBackwards,
+ rendering: null,
+ renderingStartTime: 0,
+ last: lastContentRow,
+ tail: tail,
+ tailMode: tailMode
+ };
+ } else {
+ // We can reuse the existing object from previous renders.
+ renderState.isBackwards = isBackwards;
+ renderState.rendering = null;
+ renderState.renderingStartTime = 0;
+ renderState.last = lastContentRow;
+ renderState.tail = tail;
+ renderState.tailMode = tailMode;
+ }
+ } // This can end up rendering this component multiple passes.
+ // The first pass splits the children fibers into two sets. A head and tail.
+ // We first render the head. If anything is in fallback state, we do another
+ // pass through beginWork to rerender all children (including the tail) with
+ // the force suspend context. If the first render didn't have anything in
+ // in fallback state. Then we render each row in the tail one-by-one.
+ // That happens in the completeWork phase without going back to beginWork.
+
+ function updateSuspenseListComponent(current, workInProgress, renderLanes) {
+ var nextProps = workInProgress.pendingProps;
+ var revealOrder = nextProps.revealOrder;
+ var tailMode = nextProps.tail;
+ var newChildren = nextProps.children;
+ validateRevealOrder(revealOrder);
+ validateTailOptions(tailMode, revealOrder);
+ validateSuspenseListChildren(newChildren, revealOrder);
+ reconcileChildren(current, workInProgress, newChildren, renderLanes);
+ var suspenseContext = suspenseStackCursor.current;
+ var shouldForceFallback = hasSuspenseContext(suspenseContext, ForceSuspenseFallback);
+ if (shouldForceFallback) {
+ suspenseContext = setShallowSuspenseContext(suspenseContext, ForceSuspenseFallback);
+ workInProgress.flags |= DidCapture;
+ } else {
+ var didSuspendBefore = current !== null && (current.flags & DidCapture) !== NoFlags;
+ if (didSuspendBefore) {
+ // If we previously forced a fallback, we need to schedule work
+ // on any nested boundaries to let them know to try to render
+ // again. This is the same as context updating.
+ propagateSuspenseContextChange(workInProgress, workInProgress.child, renderLanes);
+ }
+ suspenseContext = setDefaultShallowSuspenseContext(suspenseContext);
+ }
+ pushSuspenseContext(workInProgress, suspenseContext);
+ if ((workInProgress.mode & ConcurrentMode) === NoMode) {
+ // In legacy mode, SuspenseList doesn't work so we just
+ // use make it a noop by treating it as the default revealOrder.
+ workInProgress.memoizedState = null;
+ } else {
+ switch (revealOrder) {
+ case "forwards":
+ {
+ var lastContentRow = findLastContentRow(workInProgress.child);
+ var tail;
+ if (lastContentRow === null) {
+ // The whole list is part of the tail.
+ // TODO: We could fast path by just rendering the tail now.
+ tail = workInProgress.child;
+ workInProgress.child = null;
+ } else {
+ // Disconnect the tail rows after the content row.
+ // We're going to render them separately later.
+ tail = lastContentRow.sibling;
+ lastContentRow.sibling = null;
+ }
+ initSuspenseListRenderState(workInProgress, false,
+ // isBackwards
+ tail, lastContentRow, tailMode);
+ break;
+ }
+ case "backwards":
+ {
+ // We're going to find the first row that has existing content.
+ // At the same time we're going to reverse the list of everything
+ // we pass in the meantime. That's going to be our tail in reverse
+ // order.
+ var _tail = null;
+ var row = workInProgress.child;
+ workInProgress.child = null;
+ while (row !== null) {
+ var currentRow = row.alternate; // New rows can't be content rows.
+
+ if (currentRow !== null && findFirstSuspended(currentRow) === null) {
+ // This is the beginning of the main content.
+ workInProgress.child = row;
+ break;
+ }
+ var nextRow = row.sibling;
+ row.sibling = _tail;
+ _tail = row;
+ row = nextRow;
+ } // TODO: If workInProgress.child is null, we can continue on the tail immediately.
+
+ initSuspenseListRenderState(workInProgress, true,
+ // isBackwards
+ _tail, null,
+ // last
+ tailMode);
+ break;
+ }
+ case "together":
+ {
+ initSuspenseListRenderState(workInProgress, false,
+ // isBackwards
+ null,
+ // tail
+ null,
+ // last
+ undefined);
+ break;
+ }
+ default:
+ {
+ // The default reveal order is the same as not having
+ // a boundary.
+ workInProgress.memoizedState = null;
+ }
+ }
+ }
+ return workInProgress.child;
+ }
+ function updatePortalComponent(current, workInProgress, renderLanes) {
+ pushHostContainer(workInProgress, workInProgress.stateNode.containerInfo);
+ var nextChildren = workInProgress.pendingProps;
+ if (current === null) {
+ // Portals are special because we don't append the children during mount
+ // but at commit. Therefore we need to track insertions which the normal
+ // flow doesn't do during mount. This doesn't happen at the root because
+ // the root always starts with a "current" with a null child.
+ // TODO: Consider unifying this with how the root works.
+ workInProgress.child = reconcileChildFibers(workInProgress, null, nextChildren, renderLanes);
+ } else {
+ reconcileChildren(current, workInProgress, nextChildren, renderLanes);
+ }
+ return workInProgress.child;
+ }
+ var hasWarnedAboutUsingNoValuePropOnContextProvider = false;
+ function updateContextProvider(current, workInProgress, renderLanes) {
+ var providerType = workInProgress.type;
+ var context = providerType._context;
+ var newProps = workInProgress.pendingProps;
+ var oldProps = workInProgress.memoizedProps;
+ var newValue = newProps.value;
+ {
+ if (!("value" in newProps)) {
+ if (!hasWarnedAboutUsingNoValuePropOnContextProvider) {
+ hasWarnedAboutUsingNoValuePropOnContextProvider = true;
+ error("The `value` prop is required for the ``. Did you misspell it or forget to pass it?");
+ }
+ }
+ var providerPropTypes = workInProgress.type.propTypes;
+ if (providerPropTypes) {
+ checkPropTypes(providerPropTypes, newProps, "prop", "Context.Provider");
+ }
+ }
+ pushProvider(workInProgress, context, newValue);
+ {
+ if (oldProps !== null) {
+ var oldValue = oldProps.value;
+ if (objectIs(oldValue, newValue)) {
+ // No change. Bailout early if children are the same.
+ if (oldProps.children === newProps.children && !hasContextChanged()) {
+ return bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes);
+ }
+ } else {
+ // The context value changed. Search for matching consumers and schedule
+ // them to update.
+ propagateContextChange(workInProgress, context, renderLanes);
+ }
+ }
+ }
+ var newChildren = newProps.children;
+ reconcileChildren(current, workInProgress, newChildren, renderLanes);
+ return workInProgress.child;
+ }
+ var hasWarnedAboutUsingContextAsConsumer = false;
+ function updateContextConsumer(current, workInProgress, renderLanes) {
+ var context = workInProgress.type; // The logic below for Context differs depending on PROD or DEV mode. In
+ // DEV mode, we create a separate object for Context.Consumer that acts
+ // like a proxy to Context. This proxy object adds unnecessary code in PROD
+ // so we use the old behaviour (Context.Consumer references Context) to
+ // reduce size and overhead. The separate object references context via
+ // a property called "_context", which also gives us the ability to check
+ // in DEV mode if this property exists or not and warn if it does not.
+
+ {
+ if (context._context === undefined) {
+ // This may be because it's a Context (rather than a Consumer).
+ // Or it may be because it's older React where they're the same thing.
+ // We only want to warn if we're sure it's a new React.
+ if (context !== context.Consumer) {
+ if (!hasWarnedAboutUsingContextAsConsumer) {
+ hasWarnedAboutUsingContextAsConsumer = true;
+ error("Rendering directly is not supported and will be removed in " + "a future major release. Did you mean to render instead?");
+ }
+ }
+ } else {
+ context = context._context;
+ }
+ }
+ var newProps = workInProgress.pendingProps;
+ var render = newProps.children;
+ {
+ if (typeof render !== "function") {
+ error("A context consumer was rendered with multiple children, or a child " + "that isn't a function. A context consumer expects a single child " + "that is a function. If you did pass a function, make sure there " + "is no trailing or leading whitespace around it.");
+ }
+ }
+ prepareToReadContext(workInProgress, renderLanes);
+ var newValue = _readContext(context);
+ var newChildren;
+ {
+ ReactCurrentOwner$1.current = workInProgress;
+ setIsRendering(true);
+ newChildren = render(newValue);
+ setIsRendering(false);
+ }
+ workInProgress.flags |= PerformedWork;
+ reconcileChildren(current, workInProgress, newChildren, renderLanes);
+ return workInProgress.child;
+ }
+ function markWorkInProgressReceivedUpdate() {
+ didReceiveUpdate = true;
+ }
+ function resetSuspendedCurrentOnMountInLegacyMode(current, workInProgress) {
+ if ((workInProgress.mode & ConcurrentMode) === NoMode) {
+ if (current !== null) {
+ // A lazy component only mounts if it suspended inside a non-
+ // concurrent tree, in an inconsistent state. We want to treat it like
+ // a new mount, even though an empty version of it already committed.
+ // Disconnect the alternate pointers.
+ current.alternate = null;
+ workInProgress.alternate = null; // Since this is conceptually a new fiber, schedule a Placement effect
+
+ workInProgress.flags |= Placement;
+ }
+ }
+ }
+ function bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes) {
+ if (current !== null) {
+ // Reuse previous dependencies
+ workInProgress.dependencies = current.dependencies;
+ }
+ {
+ // Don't update "base" render times for bailouts.
+ stopProfilerTimerIfRunning();
+ }
+ markSkippedUpdateLanes(workInProgress.lanes); // Check if the children have any pending work.
+
+ if (!includesSomeLane(renderLanes, workInProgress.childLanes)) {
+ // The children don't have any work either. We can skip them.
+ // TODO: Once we add back resuming, we should check if the children are
+ // a work-in-progress set. If so, we need to transfer their effects.
+ {
+ return null;
+ }
+ } // This fiber doesn't have work, but its subtree does. Clone the child
+ // fibers and continue.
+
+ cloneChildFibers(current, workInProgress);
+ return workInProgress.child;
+ }
+ function remountFiber(current, oldWorkInProgress, newWorkInProgress) {
+ {
+ var returnFiber = oldWorkInProgress.return;
+ if (returnFiber === null) {
+ // eslint-disable-next-line react-internal/prod-error-codes
+ throw new Error("Cannot swap the root fiber.");
+ } // Disconnect from the old current.
+ // It will get deleted.
+
+ current.alternate = null;
+ oldWorkInProgress.alternate = null; // Connect to the new tree.
+
+ newWorkInProgress.index = oldWorkInProgress.index;
+ newWorkInProgress.sibling = oldWorkInProgress.sibling;
+ newWorkInProgress.return = oldWorkInProgress.return;
+ newWorkInProgress.ref = oldWorkInProgress.ref; // Replace the child/sibling pointers above it.
+
+ if (oldWorkInProgress === returnFiber.child) {
+ returnFiber.child = newWorkInProgress;
+ } else {
+ var prevSibling = returnFiber.child;
+ if (prevSibling === null) {
+ // eslint-disable-next-line react-internal/prod-error-codes
+ throw new Error("Expected parent to have a child.");
+ }
+ while (prevSibling.sibling !== oldWorkInProgress) {
+ prevSibling = prevSibling.sibling;
+ if (prevSibling === null) {
+ // eslint-disable-next-line react-internal/prod-error-codes
+ throw new Error("Expected to find the previous sibling.");
+ }
+ }
+ prevSibling.sibling = newWorkInProgress;
+ } // Delete the old fiber and place the new one.
+ // Since the old fiber is disconnected, we have to schedule it manually.
+
+ var deletions = returnFiber.deletions;
+ if (deletions === null) {
+ returnFiber.deletions = [current];
+ returnFiber.flags |= ChildDeletion;
+ } else {
+ deletions.push(current);
+ }
+ newWorkInProgress.flags |= Placement; // Restart work from the new fiber.
+
+ return newWorkInProgress;
+ }
+ }
+ function checkScheduledUpdateOrContext(current, renderLanes) {
+ // Before performing an early bailout, we must check if there are pending
+ // updates or context.
+ var updateLanes = current.lanes;
+ if (includesSomeLane(updateLanes, renderLanes)) {
+ return true;
+ } // No pending update, but because context is propagated lazily, we need
+
+ return false;
+ }
+ function attemptEarlyBailoutIfNoScheduledUpdate(current, workInProgress, renderLanes) {
+ // This fiber does not have any pending work. Bailout without entering
+ // the begin phase. There's still some bookkeeping we that needs to be done
+ // in this optimized path, mostly pushing stuff onto the stack.
+ switch (workInProgress.tag) {
+ case HostRoot:
+ pushHostRootContext(workInProgress);
+ var root = workInProgress.stateNode;
+ break;
+ case HostComponent:
+ pushHostContext(workInProgress);
+ break;
+ case ClassComponent:
+ {
+ var Component = workInProgress.type;
+ if (isContextProvider(Component)) {
+ pushContextProvider(workInProgress);
+ }
+ break;
+ }
+ case HostPortal:
+ pushHostContainer(workInProgress, workInProgress.stateNode.containerInfo);
+ break;
+ case ContextProvider:
+ {
+ var newValue = workInProgress.memoizedProps.value;
+ var context = workInProgress.type._context;
+ pushProvider(workInProgress, context, newValue);
+ break;
+ }
+ case Profiler:
+ {
+ // Profiler should only call onRender when one of its descendants actually rendered.
+ var hasChildWork = includesSomeLane(renderLanes, workInProgress.childLanes);
+ if (hasChildWork) {
+ workInProgress.flags |= Update;
+ }
+ {
+ // Reset effect durations for the next eventual effect phase.
+ // These are reset during render to allow the DevTools commit hook a chance to read them,
+ var stateNode = workInProgress.stateNode;
+ stateNode.effectDuration = 0;
+ stateNode.passiveEffectDuration = 0;
+ }
+ }
+ break;
+ case SuspenseComponent:
+ {
+ var state = workInProgress.memoizedState;
+ if (state !== null) {
+ if (state.dehydrated !== null) {
+ pushSuspenseContext(workInProgress, setDefaultShallowSuspenseContext(suspenseStackCursor.current)); // We know that this component will suspend again because if it has
+ // been unsuspended it has committed as a resolved Suspense component.
+ // If it needs to be retried, it should have work scheduled on it.
+
+ workInProgress.flags |= DidCapture; // We should never render the children of a dehydrated boundary until we
+ // upgrade it. We return null instead of bailoutOnAlreadyFinishedWork.
+
+ return null;
+ } // If this boundary is currently timed out, we need to decide
+ // whether to retry the primary children, or to skip over it and
+ // go straight to the fallback. Check the priority of the primary
+ // child fragment.
+
+ var primaryChildFragment = workInProgress.child;
+ var primaryChildLanes = primaryChildFragment.childLanes;
+ if (includesSomeLane(renderLanes, primaryChildLanes)) {
+ // The primary children have pending work. Use the normal path
+ // to attempt to render the primary children again.
+ return updateSuspenseComponent(current, workInProgress, renderLanes);
+ } else {
+ // The primary child fragment does not have pending work marked
+ // on it
+ pushSuspenseContext(workInProgress, setDefaultShallowSuspenseContext(suspenseStackCursor.current)); // The primary children do not have pending work with sufficient
+ // priority. Bailout.
+
+ var child = bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes);
+ if (child !== null) {
+ // The fallback children have pending work. Skip over the
+ // primary children and work on the fallback.
+ return child.sibling;
+ } else {
+ // Note: We can return `null` here because we already checked
+ // whether there were nested context consumers, via the call to
+ // `bailoutOnAlreadyFinishedWork` above.
+ return null;
+ }
+ }
+ } else {
+ pushSuspenseContext(workInProgress, setDefaultShallowSuspenseContext(suspenseStackCursor.current));
+ }
+ break;
+ }
+ case SuspenseListComponent:
+ {
+ var didSuspendBefore = (current.flags & DidCapture) !== NoFlags;
+ var _hasChildWork = includesSomeLane(renderLanes, workInProgress.childLanes);
+ if (didSuspendBefore) {
+ if (_hasChildWork) {
+ // If something was in fallback state last time, and we have all the
+ // same children then we're still in progressive loading state.
+ // Something might get unblocked by state updates or retries in the
+ // tree which will affect the tail. So we need to use the normal
+ // path to compute the correct tail.
+ return updateSuspenseListComponent(current, workInProgress, renderLanes);
+ } // If none of the children had any work, that means that none of
+ // them got retried so they'll still be blocked in the same way
+ // as before. We can fast bail out.
+
+ workInProgress.flags |= DidCapture;
+ } // If nothing suspended before and we're rendering the same children,
+ // then the tail doesn't matter. Anything new that suspends will work
+ // in the "together" mode, so we can continue from the state we had.
+
+ var renderState = workInProgress.memoizedState;
+ if (renderState !== null) {
+ // Reset to the "together" mode in case we've started a different
+ // update in the past but didn't complete it.
+ renderState.rendering = null;
+ renderState.tail = null;
+ renderState.lastEffect = null;
+ }
+ pushSuspenseContext(workInProgress, suspenseStackCursor.current);
+ if (_hasChildWork) {
+ break;
+ } else {
+ // If none of the children had any work, that means that none of
+ // them got retried so they'll still be blocked in the same way
+ // as before. We can fast bail out.
+ return null;
+ }
+ }
+ case OffscreenComponent:
+ case LegacyHiddenComponent:
+ {
+ // Need to check if the tree still needs to be deferred. This is
+ // almost identical to the logic used in the normal update path,
+ // so we'll just enter that. The only difference is we'll bail out
+ // at the next level instead of this one, because the child props
+ // have not changed. Which is fine.
+ // TODO: Probably should refactor `beginWork` to split the bailout
+ // path from the normal path. I'm tempted to do a labeled break here
+ // but I won't :)
+ workInProgress.lanes = NoLanes;
+ return updateOffscreenComponent(current, workInProgress, renderLanes);
+ }
+ }
+ return bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes);
+ }
+ function beginWork(current, workInProgress, renderLanes) {
+ {
+ if (workInProgress._debugNeedsRemount && current !== null) {
+ // This will restart the begin phase with a new fiber.
+ return remountFiber(current, workInProgress, createFiberFromTypeAndProps(workInProgress.type, workInProgress.key, workInProgress.pendingProps, workInProgress._debugOwner || null, workInProgress.mode, workInProgress.lanes));
+ }
+ }
+ if (current !== null) {
+ var oldProps = current.memoizedProps;
+ var newProps = workInProgress.pendingProps;
+ if (oldProps !== newProps || hasContextChanged() ||
+ // Force a re-render if the implementation changed due to hot reload:
+ workInProgress.type !== current.type) {
+ // If props or context changed, mark the fiber as having performed work.
+ // This may be unset if the props are determined to be equal later (memo).
+ didReceiveUpdate = true;
+ } else {
+ // Neither props nor legacy context changes. Check if there's a pending
+ // update or context change.
+ var hasScheduledUpdateOrContext = checkScheduledUpdateOrContext(current, renderLanes);
+ if (!hasScheduledUpdateOrContext &&
+ // If this is the second pass of an error or suspense boundary, there
+ // may not be work scheduled on `current`, so we check for this flag.
+ (workInProgress.flags & DidCapture) === NoFlags) {
+ // No pending updates or context. Bail out now.
+ didReceiveUpdate = false;
+ return attemptEarlyBailoutIfNoScheduledUpdate(current, workInProgress, renderLanes);
+ }
+ if ((current.flags & ForceUpdateForLegacySuspense) !== NoFlags) {
+ // This is a special case that only exists for legacy mode.
+ // See https://github.com/facebook/react/pull/19216.
+ didReceiveUpdate = true;
+ } else {
+ // An update was scheduled on this fiber, but there are no new props
+ // nor legacy context. Set this to false. If an update queue or context
+ // consumer produces a changed value, it will set this to true. Otherwise,
+ // the component will assume the children have not changed and bail out.
+ didReceiveUpdate = false;
+ }
+ }
+ } else {
+ didReceiveUpdate = false;
+ } // Before entering the begin phase, clear pending update priority.
+ // TODO: This assumes that we're about to evaluate the component and process
+ // the update queue. However, there's an exception: SimpleMemoComponent
+ // sometimes bails out later in the begin phase. This indicates that we should
+ // move this assignment out of the common path and into each branch.
+
+ workInProgress.lanes = NoLanes;
+ switch (workInProgress.tag) {
+ case IndeterminateComponent:
+ {
+ return mountIndeterminateComponent(current, workInProgress, workInProgress.type, renderLanes);
+ }
+ case LazyComponent:
+ {
+ var elementType = workInProgress.elementType;
+ return mountLazyComponent(current, workInProgress, elementType, renderLanes);
+ }
+ case FunctionComponent:
+ {
+ var Component = workInProgress.type;
+ var unresolvedProps = workInProgress.pendingProps;
+ var resolvedProps = workInProgress.elementType === Component ? unresolvedProps : resolveDefaultProps(Component, unresolvedProps);
+ return updateFunctionComponent(current, workInProgress, Component, resolvedProps, renderLanes);
+ }
+ case ClassComponent:
+ {
+ var _Component = workInProgress.type;
+ var _unresolvedProps = workInProgress.pendingProps;
+ var _resolvedProps = workInProgress.elementType === _Component ? _unresolvedProps : resolveDefaultProps(_Component, _unresolvedProps);
+ return updateClassComponent(current, workInProgress, _Component, _resolvedProps, renderLanes);
+ }
+ case HostRoot:
+ return updateHostRoot(current, workInProgress, renderLanes);
+ case HostComponent:
+ return updateHostComponent(current, workInProgress, renderLanes);
+ case HostText:
+ return updateHostText();
+ case SuspenseComponent:
+ return updateSuspenseComponent(current, workInProgress, renderLanes);
+ case HostPortal:
+ return updatePortalComponent(current, workInProgress, renderLanes);
+ case ForwardRef:
+ {
+ var type = workInProgress.type;
+ var _unresolvedProps2 = workInProgress.pendingProps;
+ var _resolvedProps2 = workInProgress.elementType === type ? _unresolvedProps2 : resolveDefaultProps(type, _unresolvedProps2);
+ return updateForwardRef(current, workInProgress, type, _resolvedProps2, renderLanes);
+ }
+ case Fragment:
+ return updateFragment(current, workInProgress, renderLanes);
+ case Mode:
+ return updateMode(current, workInProgress, renderLanes);
+ case Profiler:
+ return updateProfiler(current, workInProgress, renderLanes);
+ case ContextProvider:
+ return updateContextProvider(current, workInProgress, renderLanes);
+ case ContextConsumer:
+ return updateContextConsumer(current, workInProgress, renderLanes);
+ case MemoComponent:
+ {
+ var _type2 = workInProgress.type;
+ var _unresolvedProps3 = workInProgress.pendingProps; // Resolve outer props first, then resolve inner props.
+
+ var _resolvedProps3 = resolveDefaultProps(_type2, _unresolvedProps3);
+ {
+ if (workInProgress.type !== workInProgress.elementType) {
+ var outerPropTypes = _type2.propTypes;
+ if (outerPropTypes) {
+ checkPropTypes(outerPropTypes, _resolvedProps3,
+ // Resolved for outer only
+ "prop", getComponentNameFromType(_type2));
+ }
+ }
+ }
+ _resolvedProps3 = resolveDefaultProps(_type2.type, _resolvedProps3);
+ return updateMemoComponent(current, workInProgress, _type2, _resolvedProps3, renderLanes);
+ }
+ case SimpleMemoComponent:
+ {
+ return updateSimpleMemoComponent(current, workInProgress, workInProgress.type, workInProgress.pendingProps, renderLanes);
+ }
+ case IncompleteClassComponent:
+ {
+ var _Component2 = workInProgress.type;
+ var _unresolvedProps4 = workInProgress.pendingProps;
+ var _resolvedProps4 = workInProgress.elementType === _Component2 ? _unresolvedProps4 : resolveDefaultProps(_Component2, _unresolvedProps4);
+ return mountIncompleteClassComponent(current, workInProgress, _Component2, _resolvedProps4, renderLanes);
+ }
+ case SuspenseListComponent:
+ {
+ return updateSuspenseListComponent(current, workInProgress, renderLanes);
+ }
+ case ScopeComponent:
+ {
+ break;
+ }
+ case OffscreenComponent:
+ {
+ return updateOffscreenComponent(current, workInProgress, renderLanes);
+ }
+ }
+ throw new Error("Unknown unit of work tag (" + workInProgress.tag + "). This error is likely caused by a bug in " + "React. Please file an issue.");
+ }
+ function markUpdate(workInProgress) {
+ // Tag the fiber with an update effect. This turns a Placement into
+ // a PlacementAndUpdate.
+ workInProgress.flags |= Update;
+ }
+ function markRef$1(workInProgress) {
+ workInProgress.flags |= Ref;
+ }
+ function hadNoMutationsEffects(current, completedWork) {
+ var didBailout = current !== null && current.child === completedWork.child;
+ if (didBailout) {
+ return true;
+ }
+ if ((completedWork.flags & ChildDeletion) !== NoFlags) {
+ return false;
+ } // TODO: If we move the `hadNoMutationsEffects` call after `bubbleProperties`
+ // then we only have to check the `completedWork.subtreeFlags`.
+
+ var child = completedWork.child;
+ while (child !== null) {
+ if ((child.flags & MutationMask) !== NoFlags || (child.subtreeFlags & MutationMask) !== NoFlags) {
+ return false;
+ }
+ child = child.sibling;
+ }
+ return true;
+ }
+ var _appendAllChildren;
+ var updateHostContainer;
+ var updateHostComponent$1;
+ var updateHostText$1;
+ {
+ // Persistent host tree mode
+ _appendAllChildren = function appendAllChildren(parent, workInProgress, needsVisibilityToggle, isHidden) {
+ // We only have the top Fiber that was created but we need recurse down its
+ // children to find all the terminal nodes.
+ var node = workInProgress.child;
+ while (node !== null) {
+ // eslint-disable-next-line no-labels
+ if (node.tag === HostComponent) {
+ var instance = node.stateNode;
+ if (needsVisibilityToggle && isHidden) {
+ // This child is inside a timed out tree. Hide it.
+ var props = node.memoizedProps;
+ var type = node.type;
+ instance = cloneHiddenInstance(instance);
+ }
+ appendInitialChild(parent, instance);
+ } else if (node.tag === HostText) {
+ var _instance = node.stateNode;
+ if (needsVisibilityToggle && isHidden) {
+ // This child is inside a timed out tree. Hide it.
+ var text = node.memoizedProps;
+ _instance = cloneHiddenTextInstance();
+ }
+ appendInitialChild(parent, _instance);
+ } else if (node.tag === HostPortal) ;else if (node.tag === OffscreenComponent && node.memoizedState !== null) {
+ // The children in this boundary are hidden. Toggle their visibility
+ // before appending.
+ var child = node.child;
+ if (child !== null) {
+ child.return = node;
+ }
+ _appendAllChildren(parent, node, true, true);
+ } else if (node.child !== null) {
+ node.child.return = node;
+ node = node.child;
+ continue;
+ } // $FlowFixMe This is correct but Flow is confused by the labeled break.
+
+ node = node;
+ if (node === workInProgress) {
+ return;
+ }
+ while (node.sibling === null) {
+ if (node.return === null || node.return === workInProgress) {
+ return;
+ }
+ node = node.return;
+ }
+ node.sibling.return = node.return;
+ node = node.sibling;
+ }
+ }; // An unfortunate fork of appendAllChildren because we have two different parent types.
+
+ var _appendAllChildrenToContainer = function appendAllChildrenToContainer(containerChildSet, workInProgress, needsVisibilityToggle, isHidden) {
+ // We only have the top Fiber that was created but we need recurse down its
+ // children to find all the terminal nodes.
+ var node = workInProgress.child;
+ while (node !== null) {
+ // eslint-disable-next-line no-labels
+ if (node.tag === HostComponent) {
+ var instance = node.stateNode;
+ if (needsVisibilityToggle && isHidden) {
+ // This child is inside a timed out tree. Hide it.
+ var props = node.memoizedProps;
+ var type = node.type;
+ instance = cloneHiddenInstance(instance);
+ }
+ appendChildToContainerChildSet(containerChildSet, instance);
+ } else if (node.tag === HostText) {
+ var _instance2 = node.stateNode;
+ if (needsVisibilityToggle && isHidden) {
+ // This child is inside a timed out tree. Hide it.
+ var text = node.memoizedProps;
+ _instance2 = cloneHiddenTextInstance();
+ }
+ appendChildToContainerChildSet(containerChildSet, _instance2);
+ } else if (node.tag === HostPortal) ;else if (node.tag === OffscreenComponent && node.memoizedState !== null) {
+ // The children in this boundary are hidden. Toggle their visibility
+ // before appending.
+ var child = node.child;
+ if (child !== null) {
+ child.return = node;
+ }
+ _appendAllChildrenToContainer(containerChildSet, node, true, true);
+ } else if (node.child !== null) {
+ node.child.return = node;
+ node = node.child;
+ continue;
+ } // $FlowFixMe This is correct but Flow is confused by the labeled break.
+
+ node = node;
+ if (node === workInProgress) {
+ return;
+ }
+ while (node.sibling === null) {
+ if (node.return === null || node.return === workInProgress) {
+ return;
+ }
+ node = node.return;
+ }
+ node.sibling.return = node.return;
+ node = node.sibling;
+ }
+ };
+ updateHostContainer = function updateHostContainer(current, workInProgress) {
+ var portalOrRoot = workInProgress.stateNode;
+ var childrenUnchanged = hadNoMutationsEffects(current, workInProgress);
+ if (childrenUnchanged) ;else {
+ var container = portalOrRoot.containerInfo;
+ var newChildSet = createContainerChildSet(container); // If children might have changed, we have to add them all to the set.
+
+ _appendAllChildrenToContainer(newChildSet, workInProgress, false, false);
+ portalOrRoot.pendingChildren = newChildSet; // Schedule an update on the container to swap out the container.
+
+ markUpdate(workInProgress);
+ finalizeContainerChildren(container, newChildSet);
+ }
+ };
+ updateHostComponent$1 = function updateHostComponent$1(current, workInProgress, type, newProps, rootContainerInstance) {
+ var currentInstance = current.stateNode;
+ var oldProps = current.memoizedProps; // If there are no effects associated with this node, then none of our children had any updates.
+ // This guarantees that we can reuse all of them.
+
+ var childrenUnchanged = hadNoMutationsEffects(current, workInProgress);
+ if (childrenUnchanged && oldProps === newProps) {
+ // No changes, just reuse the existing instance.
+ // Note that this might release a previous clone.
+ workInProgress.stateNode = currentInstance;
+ return;
+ }
+ var recyclableInstance = workInProgress.stateNode;
+ var currentHostContext = getHostContext();
+ var updatePayload = null;
+ if (oldProps !== newProps) {
+ updatePayload = prepareUpdate(recyclableInstance, type, oldProps, newProps);
+ }
+ if (childrenUnchanged && updatePayload === null) {
+ // No changes, just reuse the existing instance.
+ // Note that this might release a previous clone.
+ workInProgress.stateNode = currentInstance;
+ return;
+ }
+ var newInstance = cloneInstance(currentInstance, updatePayload, type, oldProps, newProps, workInProgress, childrenUnchanged);
+ workInProgress.stateNode = newInstance;
+ if (childrenUnchanged) {
+ // If there are no other effects in this tree, we need to flag this node as having one.
+ // Even though we're not going to use it for anything.
+ // Otherwise parents won't know that there are new children to propagate upwards.
+ markUpdate(workInProgress);
+ } else {
+ // If children might have changed, we have to add them all to the set.
+ _appendAllChildren(newInstance, workInProgress, false, false);
+ }
+ };
+ updateHostText$1 = function updateHostText$1(current, workInProgress, oldText, newText) {
+ if (oldText !== newText) {
+ // If the text content differs, we'll create a new text instance for it.
+ var rootContainerInstance = getRootHostContainer();
+ var currentHostContext = getHostContext();
+ workInProgress.stateNode = createTextInstance(newText, rootContainerInstance, currentHostContext, workInProgress); // We'll have to mark it as having an effect, even though we won't use the effect for anything.
+ // This lets the parents know that at least one of their children has changed.
+
+ markUpdate(workInProgress);
+ } else {
+ workInProgress.stateNode = current.stateNode;
+ }
+ };
+ }
+ function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
+ switch (renderState.tailMode) {
+ case "hidden":
+ {
+ // Any insertions at the end of the tail list after this point
+ // should be invisible. If there are already mounted boundaries
+ // anything before them are not considered for collapsing.
+ // Therefore we need to go through the whole tail to find if
+ // there are any.
+ var tailNode = renderState.tail;
+ var lastTailNode = null;
+ while (tailNode !== null) {
+ if (tailNode.alternate !== null) {
+ lastTailNode = tailNode;
+ }
+ tailNode = tailNode.sibling;
+ } // Next we're simply going to delete all insertions after the
+ // last rendered item.
+
+ if (lastTailNode === null) {
+ // All remaining items in the tail are insertions.
+ renderState.tail = null;
+ } else {
+ // Detach the insertion after the last node that was already
+ // inserted.
+ lastTailNode.sibling = null;
+ }
+ break;
+ }
+ case "collapsed":
+ {
+ // Any insertions at the end of the tail list after this point
+ // should be invisible. If there are already mounted boundaries
+ // anything before them are not considered for collapsing.
+ // Therefore we need to go through the whole tail to find if
+ // there are any.
+ var _tailNode = renderState.tail;
+ var _lastTailNode = null;
+ while (_tailNode !== null) {
+ if (_tailNode.alternate !== null) {
+ _lastTailNode = _tailNode;
+ }
+ _tailNode = _tailNode.sibling;
+ } // Next we're simply going to delete all insertions after the
+ // last rendered item.
+
+ if (_lastTailNode === null) {
+ // All remaining items in the tail are insertions.
+ if (!hasRenderedATailFallback && renderState.tail !== null) {
+ // We suspended during the head. We want to show at least one
+ // row at the tail. So we'll keep on and cut off the rest.
+ renderState.tail.sibling = null;
+ } else {
+ renderState.tail = null;
+ }
+ } else {
+ // Detach the insertion after the last node that was already
+ // inserted.
+ _lastTailNode.sibling = null;
+ }
+ break;
+ }
+ }
+ }
+ function bubbleProperties(completedWork) {
+ var didBailout = completedWork.alternate !== null && completedWork.alternate.child === completedWork.child;
+ var newChildLanes = NoLanes;
+ var subtreeFlags = NoFlags;
+ if (!didBailout) {
+ // Bubble up the earliest expiration time.
+ if ((completedWork.mode & ProfileMode) !== NoMode) {
+ // In profiling mode, resetChildExpirationTime is also used to reset
+ // profiler durations.
+ var actualDuration = completedWork.actualDuration;
+ var treeBaseDuration = completedWork.selfBaseDuration;
+ var child = completedWork.child;
+ while (child !== null) {
+ newChildLanes = mergeLanes(newChildLanes, mergeLanes(child.lanes, child.childLanes));
+ subtreeFlags |= child.subtreeFlags;
+ subtreeFlags |= child.flags; // When a fiber is cloned, its actualDuration is reset to 0. This value will
+ // only be updated if work is done on the fiber (i.e. it doesn't bailout).
+ // When work is done, it should bubble to the parent's actualDuration. If
+ // the fiber has not been cloned though, (meaning no work was done), then
+ // this value will reflect the amount of time spent working on a previous
+ // render. In that case it should not bubble. We determine whether it was
+ // cloned by comparing the child pointer.
+
+ actualDuration += child.actualDuration;
+ treeBaseDuration += child.treeBaseDuration;
+ child = child.sibling;
+ }
+ completedWork.actualDuration = actualDuration;
+ completedWork.treeBaseDuration = treeBaseDuration;
+ } else {
+ var _child = completedWork.child;
+ while (_child !== null) {
+ newChildLanes = mergeLanes(newChildLanes, mergeLanes(_child.lanes, _child.childLanes));
+ subtreeFlags |= _child.subtreeFlags;
+ subtreeFlags |= _child.flags; // Update the return pointer so the tree is consistent. This is a code
+ // smell because it assumes the commit phase is never concurrent with
+ // the render phase. Will address during refactor to alternate model.
+
+ _child.return = completedWork;
+ _child = _child.sibling;
+ }
+ }
+ completedWork.subtreeFlags |= subtreeFlags;
+ } else {
+ // Bubble up the earliest expiration time.
+ if ((completedWork.mode & ProfileMode) !== NoMode) {
+ // In profiling mode, resetChildExpirationTime is also used to reset
+ // profiler durations.
+ var _treeBaseDuration = completedWork.selfBaseDuration;
+ var _child2 = completedWork.child;
+ while (_child2 !== null) {
+ newChildLanes = mergeLanes(newChildLanes, mergeLanes(_child2.lanes, _child2.childLanes)); // "Static" flags share the lifetime of the fiber/hook they belong to,
+ // so we should bubble those up even during a bailout. All the other
+ // flags have a lifetime only of a single render + commit, so we should
+ // ignore them.
+
+ subtreeFlags |= _child2.subtreeFlags & StaticMask;
+ subtreeFlags |= _child2.flags & StaticMask;
+ _treeBaseDuration += _child2.treeBaseDuration;
+ _child2 = _child2.sibling;
+ }
+ completedWork.treeBaseDuration = _treeBaseDuration;
+ } else {
+ var _child3 = completedWork.child;
+ while (_child3 !== null) {
+ newChildLanes = mergeLanes(newChildLanes, mergeLanes(_child3.lanes, _child3.childLanes)); // "Static" flags share the lifetime of the fiber/hook they belong to,
+ // so we should bubble those up even during a bailout. All the other
+ // flags have a lifetime only of a single render + commit, so we should
+ // ignore them.
+
+ subtreeFlags |= _child3.subtreeFlags & StaticMask;
+ subtreeFlags |= _child3.flags & StaticMask; // Update the return pointer so the tree is consistent. This is a code
+ // smell because it assumes the commit phase is never concurrent with
+ // the render phase. Will address during refactor to alternate model.
+
+ _child3.return = completedWork;
+ _child3 = _child3.sibling;
+ }
+ }
+ completedWork.subtreeFlags |= subtreeFlags;
+ }
+ completedWork.childLanes = newChildLanes;
+ return didBailout;
+ }
+ function completeDehydratedSuspenseBoundary(current, workInProgress, nextState) {
+ var wasHydrated = popHydrationState();
+ if (nextState !== null && nextState.dehydrated !== null) {
+ // We might be inside a hydration state the first time we're picking up this
+ // Suspense boundary, and also after we've reentered it for further hydration.
+ if (current === null) {
+ if (!wasHydrated) {
+ throw new Error("A dehydrated suspense component was completed without a hydrated node. " + "This is probably a bug in React.");
+ }
+ prepareToHydrateHostSuspenseInstance();
+ bubbleProperties(workInProgress);
+ {
+ if ((workInProgress.mode & ProfileMode) !== NoMode) {
+ var isTimedOutSuspense = nextState !== null;
+ if (isTimedOutSuspense) {
+ // Don't count time spent in a timed out Suspense subtree as part of the base duration.
+ var primaryChildFragment = workInProgress.child;
+ if (primaryChildFragment !== null) {
+ // $FlowFixMe Flow doesn't support type casting in combination with the -= operator
+ workInProgress.treeBaseDuration -= primaryChildFragment.treeBaseDuration;
+ }
+ }
+ }
+ }
+ return false;
+ } else {
+ if ((workInProgress.flags & DidCapture) === NoFlags) {
+ // This boundary did not suspend so it's now hydrated and unsuspended.
+ workInProgress.memoizedState = null;
+ } // If nothing suspended, we need to schedule an effect to mark this boundary
+ // as having hydrated so events know that they're free to be invoked.
+ // It's also a signal to replay events and the suspense callback.
+ // If something suspended, schedule an effect to attach retry listeners.
+ // So we might as well always mark this.
+
+ workInProgress.flags |= Update;
+ bubbleProperties(workInProgress);
+ {
+ if ((workInProgress.mode & ProfileMode) !== NoMode) {
+ var _isTimedOutSuspense = nextState !== null;
+ if (_isTimedOutSuspense) {
+ // Don't count time spent in a timed out Suspense subtree as part of the base duration.
+ var _primaryChildFragment = workInProgress.child;
+ if (_primaryChildFragment !== null) {
+ // $FlowFixMe Flow doesn't support type casting in combination with the -= operator
+ workInProgress.treeBaseDuration -= _primaryChildFragment.treeBaseDuration;
+ }
+ }
+ }
+ }
+ return false;
+ }
+ } else {
+ // Successfully completed this tree. If this was a forced client render,
+ // there may have been recoverable errors during first hydration
+ // attempt. If so, add them to a queue so we can log them in the
+ // commit phase.
+ upgradeHydrationErrorsToRecoverable(); // Fall through to normal Suspense path
+
+ return true;
+ }
+ }
+ function completeWork(current, workInProgress, renderLanes) {
+ var newProps = workInProgress.pendingProps; // Note: This intentionally doesn't check if we're hydrating because comparing
+ // to the current tree provider fiber is just as fast and less error-prone.
+ // Ideally we would have a special version of the work loop only
+ // for hydration.
+
+ popTreeContext(workInProgress);
+ switch (workInProgress.tag) {
+ case IndeterminateComponent:
+ case LazyComponent:
+ case SimpleMemoComponent:
+ case FunctionComponent:
+ case ForwardRef:
+ case Fragment:
+ case Mode:
+ case Profiler:
+ case ContextConsumer:
+ case MemoComponent:
+ bubbleProperties(workInProgress);
+ return null;
+ case ClassComponent:
+ {
+ var Component = workInProgress.type;
+ if (isContextProvider(Component)) {
+ popContext(workInProgress);
+ }
+ bubbleProperties(workInProgress);
+ return null;
+ }
+ case HostRoot:
+ {
+ var fiberRoot = workInProgress.stateNode;
+ popHostContainer(workInProgress);
+ popTopLevelContextObject(workInProgress);
+ resetWorkInProgressVersions();
+ if (fiberRoot.pendingContext) {
+ fiberRoot.context = fiberRoot.pendingContext;
+ fiberRoot.pendingContext = null;
+ }
+ if (current === null || current.child === null) {
+ // If we hydrated, pop so that we can delete any remaining children
+ // that weren't hydrated.
+ var wasHydrated = popHydrationState();
+ if (wasHydrated) {
+ // If we hydrated, then we'll need to schedule an update for
+ // the commit side-effects on the root.
+ markUpdate(workInProgress);
+ } else {
+ if (current !== null) {
+ var prevState = current.memoizedState;
+ if (
+ // Check if this is a client root
+ !prevState.isDehydrated ||
+ // Check if we reverted to client rendering (e.g. due to an error)
+ (workInProgress.flags & ForceClientRender) !== NoFlags) {
+ // Schedule an effect to clear this container at the start of the
+ // next commit. This handles the case of React rendering into a
+ // container with previous children. It's also safe to do for
+ // updates too, because current.child would only be null if the
+ // previous render was null (so the container would already
+ // be empty).
+ workInProgress.flags |= Snapshot; // If this was a forced client render, there may have been
+ // recoverable errors during first hydration attempt. If so, add
+ // them to a queue so we can log them in the commit phase.
+
+ upgradeHydrationErrorsToRecoverable();
+ }
+ }
+ }
+ }
+ updateHostContainer(current, workInProgress);
+ bubbleProperties(workInProgress);
+ return null;
+ }
+ case HostComponent:
+ {
+ popHostContext(workInProgress);
+ var rootContainerInstance = getRootHostContainer();
+ var type = workInProgress.type;
+ if (current !== null && workInProgress.stateNode != null) {
+ updateHostComponent$1(current, workInProgress, type, newProps, rootContainerInstance);
+ if (current.ref !== workInProgress.ref) {
+ markRef$1(workInProgress);
+ }
+ } else {
+ if (!newProps) {
+ if (workInProgress.stateNode === null) {
+ throw new Error("We must have new props for new mounts. This error is likely " + "caused by a bug in React. Please file an issue.");
+ } // This can happen when we abort work.
+
+ bubbleProperties(workInProgress);
+ return null;
+ }
+ var currentHostContext = getHostContext(); // TODO: Move createInstance to beginWork and keep it on a context
+ // "stack" as the parent. Then append children as we go in beginWork
+ // or completeWork depending on whether we want to add them top->down or
+ // bottom->up. Top->down is faster in IE11.
+
+ var _wasHydrated = popHydrationState();
+ if (_wasHydrated) {
+ // TODO: Move this and createInstance step into the beginPhase
+ // to consolidate.
+ if (prepareToHydrateHostInstance()) {
+ // If changes to the hydrated node need to be applied at the
+ // commit-phase we mark this as such.
+ markUpdate(workInProgress);
+ }
+ } else {
+ var instance = createInstance(type, newProps, rootContainerInstance, currentHostContext, workInProgress);
+ _appendAllChildren(instance, workInProgress, false, false);
+ workInProgress.stateNode = instance; // Certain renderers require commit-time effects for initial mount.
+ }
+ if (workInProgress.ref !== null) {
+ // If there is a ref on a host node we need to schedule a callback
+ markRef$1(workInProgress);
+ }
+ }
+ bubbleProperties(workInProgress);
+ return null;
+ }
+ case HostText:
+ {
+ var newText = newProps;
+ if (current && workInProgress.stateNode != null) {
+ var oldText = current.memoizedProps; // If we have an alternate, that means this is an update and we need
+ // to schedule a side-effect to do the updates.
+
+ updateHostText$1(current, workInProgress, oldText, newText);
+ } else {
+ if (typeof newText !== "string") {
+ if (workInProgress.stateNode === null) {
+ throw new Error("We must have new props for new mounts. This error is likely " + "caused by a bug in React. Please file an issue.");
+ } // This can happen when we abort work.
+ }
+ var _rootContainerInstance = getRootHostContainer();
+ var _currentHostContext = getHostContext();
+ var _wasHydrated2 = popHydrationState();
+ if (_wasHydrated2) {
+ if (prepareToHydrateHostTextInstance()) {
+ markUpdate(workInProgress);
+ }
+ } else {
+ workInProgress.stateNode = createTextInstance(newText, _rootContainerInstance, _currentHostContext, workInProgress);
+ }
+ }
+ bubbleProperties(workInProgress);
+ return null;
+ }
+ case SuspenseComponent:
+ {
+ popSuspenseContext(workInProgress);
+ var nextState = workInProgress.memoizedState; // Special path for dehydrated boundaries. We may eventually move this
+ // to its own fiber type so that we can add other kinds of hydration
+ // boundaries that aren't associated with a Suspense tree. In anticipation
+ // of such a refactor, all the hydration logic is contained in
+ // this branch.
+
+ if (current === null || current.memoizedState !== null && current.memoizedState.dehydrated !== null) {
+ var fallthroughToNormalSuspensePath = completeDehydratedSuspenseBoundary(current, workInProgress, nextState);
+ if (!fallthroughToNormalSuspensePath) {
+ if (workInProgress.flags & ShouldCapture) {
+ // Special case. There were remaining unhydrated nodes. We treat
+ // this as a mismatch. Revert to client rendering.
+ return workInProgress;
+ } else {
+ // Did not finish hydrating, either because this is the initial
+ // render or because something suspended.
+ return null;
+ }
+ } // Continue with the normal Suspense path.
+ }
+ if ((workInProgress.flags & DidCapture) !== NoFlags) {
+ // Something suspended. Re-render with the fallback children.
+ workInProgress.lanes = renderLanes; // Do not reset the effect list.
+
+ if ((workInProgress.mode & ProfileMode) !== NoMode) {
+ transferActualDuration(workInProgress);
+ } // Don't bubble properties in this case.
+
+ return workInProgress;
+ }
+ var nextDidTimeout = nextState !== null;
+ var prevDidTimeout = current !== null && current.memoizedState !== null;
+ // a passive effect, which is when we process the transitions
+
+ if (nextDidTimeout !== prevDidTimeout) {
+ // an effect to toggle the subtree's visibility. When we switch from
+ // fallback -> primary, the inner Offscreen fiber schedules this effect
+ // as part of its normal complete phase. But when we switch from
+ // primary -> fallback, the inner Offscreen fiber does not have a complete
+ // phase. So we need to schedule its effect here.
+ //
+ // We also use this flag to connect/disconnect the effects, but the same
+ // logic applies: when re-connecting, the Offscreen fiber's complete
+ // phase will handle scheduling the effect. It's only when the fallback
+ // is active that we have to do anything special.
+
+ if (nextDidTimeout) {
+ var _offscreenFiber2 = workInProgress.child;
+ _offscreenFiber2.flags |= Visibility; // TODO: This will still suspend a synchronous tree if anything
+ // in the concurrent tree already suspended during this render.
+ // This is a known bug.
+
+ if ((workInProgress.mode & ConcurrentMode) !== NoMode) {
+ // TODO: Move this back to throwException because this is too late
+ // if this is a large tree which is common for initial loads. We
+ // don't know if we should restart a render or not until we get
+ // this marker, and this is too late.
+ // If this render already had a ping or lower pri updates,
+ // and this is the first time we know we're going to suspend we
+ // should be able to immediately restart from within throwException.
+ var hasInvisibleChildContext = current === null && (workInProgress.memoizedProps.unstable_avoidThisFallback !== true || !enableSuspenseAvoidThisFallback);
+ if (hasInvisibleChildContext || hasSuspenseContext(suspenseStackCursor.current, InvisibleParentSuspenseContext)) {
+ // If this was in an invisible tree or a new render, then showing
+ // this boundary is ok.
+ renderDidSuspend();
+ } else {
+ // Otherwise, we're going to have to hide content so we should
+ // suspend for longer if possible.
+ renderDidSuspendDelayIfPossible();
+ }
+ }
+ }
+ }
+ var wakeables = workInProgress.updateQueue;
+ if (wakeables !== null) {
+ // Schedule an effect to attach a retry listener to the promise.
+ // TODO: Move to passive phase
+ workInProgress.flags |= Update;
+ }
+ bubbleProperties(workInProgress);
+ {
+ if ((workInProgress.mode & ProfileMode) !== NoMode) {
+ if (nextDidTimeout) {
+ // Don't count time spent in a timed out Suspense subtree as part of the base duration.
+ var primaryChildFragment = workInProgress.child;
+ if (primaryChildFragment !== null) {
+ // $FlowFixMe Flow doesn't support type casting in combination with the -= operator
+ workInProgress.treeBaseDuration -= primaryChildFragment.treeBaseDuration;
+ }
+ }
+ }
+ }
+ return null;
+ }
+ case HostPortal:
+ popHostContainer(workInProgress);
+ updateHostContainer(current, workInProgress);
+ if (current === null) {
+ preparePortalMount(workInProgress.stateNode.containerInfo);
+ }
+ bubbleProperties(workInProgress);
+ return null;
+ case ContextProvider:
+ // Pop provider fiber
+ var context = workInProgress.type._context;
+ popProvider(context, workInProgress);
+ bubbleProperties(workInProgress);
+ return null;
+ case IncompleteClassComponent:
+ {
+ // Same as class component case. I put it down here so that the tags are
+ // sequential to ensure this switch is compiled to a jump table.
+ var _Component = workInProgress.type;
+ if (isContextProvider(_Component)) {
+ popContext(workInProgress);
+ }
+ bubbleProperties(workInProgress);
+ return null;
+ }
+ case SuspenseListComponent:
+ {
+ popSuspenseContext(workInProgress);
+ var renderState = workInProgress.memoizedState;
+ if (renderState === null) {
+ // We're running in the default, "independent" mode.
+ // We don't do anything in this mode.
+ bubbleProperties(workInProgress);
+ return null;
+ }
+ var didSuspendAlready = (workInProgress.flags & DidCapture) !== NoFlags;
+ var renderedTail = renderState.rendering;
+ if (renderedTail === null) {
+ // We just rendered the head.
+ if (!didSuspendAlready) {
+ // This is the first pass. We need to figure out if anything is still
+ // suspended in the rendered set.
+ // If new content unsuspended, but there's still some content that
+ // didn't. Then we need to do a second pass that forces everything
+ // to keep showing their fallbacks.
+ // We might be suspended if something in this render pass suspended, or
+ // something in the previous committed pass suspended. Otherwise,
+ // there's no chance so we can skip the expensive call to
+ // findFirstSuspended.
+ var cannotBeSuspended = renderHasNotSuspendedYet() && (current === null || (current.flags & DidCapture) === NoFlags);
+ if (!cannotBeSuspended) {
+ var row = workInProgress.child;
+ while (row !== null) {
+ var suspended = findFirstSuspended(row);
+ if (suspended !== null) {
+ didSuspendAlready = true;
+ workInProgress.flags |= DidCapture;
+ cutOffTailIfNeeded(renderState, false); // If this is a newly suspended tree, it might not get committed as
+ // part of the second pass. In that case nothing will subscribe to
+ // its thenables. Instead, we'll transfer its thenables to the
+ // SuspenseList so that it can retry if they resolve.
+ // There might be multiple of these in the list but since we're
+ // going to wait for all of them anyway, it doesn't really matter
+ // which ones gets to ping. In theory we could get clever and keep
+ // track of how many dependencies remain but it gets tricky because
+ // in the meantime, we can add/remove/change items and dependencies.
+ // We might bail out of the loop before finding any but that
+ // doesn't matter since that means that the other boundaries that
+ // we did find already has their listeners attached.
+
+ var newThenables = suspended.updateQueue;
+ if (newThenables !== null) {
+ workInProgress.updateQueue = newThenables;
+ workInProgress.flags |= Update;
+ } // Rerender the whole list, but this time, we'll force fallbacks
+ // to stay in place.
+ // Reset the effect flags before doing the second pass since that's now invalid.
+ // Reset the child fibers to their original state.
+
+ workInProgress.subtreeFlags = NoFlags;
+ resetChildFibers(workInProgress, renderLanes); // Set up the Suspense Context to force suspense and immediately
+ // rerender the children.
+
+ pushSuspenseContext(workInProgress, setShallowSuspenseContext(suspenseStackCursor.current, ForceSuspenseFallback)); // Don't bubble properties in this case.
+
+ return workInProgress.child;
+ }
+ row = row.sibling;
+ }
+ }
+ if (renderState.tail !== null && now() > getRenderTargetTime()) {
+ // We have already passed our CPU deadline but we still have rows
+ // left in the tail. We'll just give up further attempts to render
+ // the main content and only render fallbacks.
+ workInProgress.flags |= DidCapture;
+ didSuspendAlready = true;
+ cutOffTailIfNeeded(renderState, false); // Since nothing actually suspended, there will nothing to ping this
+ // to get it started back up to attempt the next item. While in terms
+ // of priority this work has the same priority as this current render,
+ // it's not part of the same transition once the transition has
+ // committed. If it's sync, we still want to yield so that it can be
+ // painted. Conceptually, this is really the same as pinging.
+ // We can use any RetryLane even if it's the one currently rendering
+ // since we're leaving it behind on this node.
+
+ workInProgress.lanes = SomeRetryLane;
+ }
+ } else {
+ cutOffTailIfNeeded(renderState, false);
+ } // Next we're going to render the tail.
+ } else {
+ // Append the rendered row to the child list.
+ if (!didSuspendAlready) {
+ var _suspended = findFirstSuspended(renderedTail);
+ if (_suspended !== null) {
+ workInProgress.flags |= DidCapture;
+ didSuspendAlready = true; // Ensure we transfer the update queue to the parent so that it doesn't
+ // get lost if this row ends up dropped during a second pass.
+
+ var _newThenables = _suspended.updateQueue;
+ if (_newThenables !== null) {
+ workInProgress.updateQueue = _newThenables;
+ workInProgress.flags |= Update;
+ }
+ cutOffTailIfNeeded(renderState, true); // This might have been modified.
+
+ if (renderState.tail === null && renderState.tailMode === "hidden" && !renderedTail.alternate && !getIsHydrating() // We don't cut it if we're hydrating.
+ ) {
+ // We're done.
+ bubbleProperties(workInProgress);
+ return null;
+ }
+ } else if (
+ // The time it took to render last row is greater than the remaining
+ // time we have to render. So rendering one more row would likely
+ // exceed it.
+ now() * 2 - renderState.renderingStartTime > getRenderTargetTime() && renderLanes !== OffscreenLane) {
+ // We have now passed our CPU deadline and we'll just give up further
+ // attempts to render the main content and only render fallbacks.
+ // The assumption is that this is usually faster.
+ workInProgress.flags |= DidCapture;
+ didSuspendAlready = true;
+ cutOffTailIfNeeded(renderState, false); // Since nothing actually suspended, there will nothing to ping this
+ // to get it started back up to attempt the next item. While in terms
+ // of priority this work has the same priority as this current render,
+ // it's not part of the same transition once the transition has
+ // committed. If it's sync, we still want to yield so that it can be
+ // painted. Conceptually, this is really the same as pinging.
+ // We can use any RetryLane even if it's the one currently rendering
+ // since we're leaving it behind on this node.
+
+ workInProgress.lanes = SomeRetryLane;
+ }
+ }
+ if (renderState.isBackwards) {
+ // The effect list of the backwards tail will have been added
+ // to the end. This breaks the guarantee that life-cycles fire in
+ // sibling order but that isn't a strong guarantee promised by React.
+ // Especially since these might also just pop in during future commits.
+ // Append to the beginning of the list.
+ renderedTail.sibling = workInProgress.child;
+ workInProgress.child = renderedTail;
+ } else {
+ var previousSibling = renderState.last;
+ if (previousSibling !== null) {
+ previousSibling.sibling = renderedTail;
+ } else {
+ workInProgress.child = renderedTail;
+ }
+ renderState.last = renderedTail;
+ }
+ }
+ if (renderState.tail !== null) {
+ // We still have tail rows to render.
+ // Pop a row.
+ var next = renderState.tail;
+ renderState.rendering = next;
+ renderState.tail = next.sibling;
+ renderState.renderingStartTime = now();
+ next.sibling = null; // Restore the context.
+ // TODO: We can probably just avoid popping it instead and only
+ // setting it the first time we go from not suspended to suspended.
+
+ var suspenseContext = suspenseStackCursor.current;
+ if (didSuspendAlready) {
+ suspenseContext = setShallowSuspenseContext(suspenseContext, ForceSuspenseFallback);
+ } else {
+ suspenseContext = setDefaultShallowSuspenseContext(suspenseContext);
+ }
+ pushSuspenseContext(workInProgress, suspenseContext); // Do a pass over the next row.
+ // Don't bubble properties in this case.
+
+ return next;
+ }
+ bubbleProperties(workInProgress);
+ return null;
+ }
+ case ScopeComponent:
+ {
+ break;
+ }
+ case OffscreenComponent:
+ case LegacyHiddenComponent:
+ {
+ popRenderLanes(workInProgress);
+ var _nextState = workInProgress.memoizedState;
+ var nextIsHidden = _nextState !== null;
+ if (current !== null) {
+ var _prevState = current.memoizedState;
+ var prevIsHidden = _prevState !== null;
+ if (prevIsHidden !== nextIsHidden &&
+ // LegacyHidden doesn't do any hiding — it only pre-renders.
+ !enableLegacyHidden) {
+ workInProgress.flags |= Visibility;
+ }
+ }
+ if (!nextIsHidden || (workInProgress.mode & ConcurrentMode) === NoMode) {
+ bubbleProperties(workInProgress);
+ } else {
+ // Don't bubble properties for hidden children unless we're rendering
+ // at offscreen priority.
+ if (includesSomeLane(subtreeRenderLanes, OffscreenLane)) {
+ bubbleProperties(workInProgress);
+ }
+ }
+ return null;
+ }
+ case CacheComponent:
+ {
+ return null;
+ }
+ case TracingMarkerComponent:
+ {
+ return null;
+ }
+ }
+ throw new Error("Unknown unit of work tag (" + workInProgress.tag + "). This error is likely caused by a bug in " + "React. Please file an issue.");
+ }
+ function unwindWork(current, workInProgress, renderLanes) {
+ // Note: This intentionally doesn't check if we're hydrating because comparing
+ // to the current tree provider fiber is just as fast and less error-prone.
+ // Ideally we would have a special version of the work loop only
+ // for hydration.
+ popTreeContext(workInProgress);
+ switch (workInProgress.tag) {
+ case ClassComponent:
+ {
+ var Component = workInProgress.type;
+ if (isContextProvider(Component)) {
+ popContext(workInProgress);
+ }
+ var flags = workInProgress.flags;
+ if (flags & ShouldCapture) {
+ workInProgress.flags = flags & ~ShouldCapture | DidCapture;
+ if ((workInProgress.mode & ProfileMode) !== NoMode) {
+ transferActualDuration(workInProgress);
+ }
+ return workInProgress;
+ }
+ return null;
+ }
+ case HostRoot:
+ {
+ var root = workInProgress.stateNode;
+ popHostContainer(workInProgress);
+ popTopLevelContextObject(workInProgress);
+ resetWorkInProgressVersions();
+ var _flags = workInProgress.flags;
+ if ((_flags & ShouldCapture) !== NoFlags && (_flags & DidCapture) === NoFlags) {
+ // There was an error during render that wasn't captured by a suspense
+ // boundary. Do a second pass on the root to unmount the children.
+ workInProgress.flags = _flags & ~ShouldCapture | DidCapture;
+ return workInProgress;
+ } // We unwound to the root without completing it. Exit.
+
+ return null;
+ }
+ case HostComponent:
+ {
+ // TODO: popHydrationState
+ popHostContext(workInProgress);
+ return null;
+ }
+ case SuspenseComponent:
+ {
+ popSuspenseContext(workInProgress);
+ var suspenseState = workInProgress.memoizedState;
+ if (suspenseState !== null && suspenseState.dehydrated !== null) {
+ if (workInProgress.alternate === null) {
+ throw new Error("Threw in newly mounted dehydrated component. This is likely a bug in " + "React. Please file an issue.");
+ }
+ }
+ var _flags2 = workInProgress.flags;
+ if (_flags2 & ShouldCapture) {
+ workInProgress.flags = _flags2 & ~ShouldCapture | DidCapture; // Captured a suspense effect. Re-render the boundary.
+
+ if ((workInProgress.mode & ProfileMode) !== NoMode) {
+ transferActualDuration(workInProgress);
+ }
+ return workInProgress;
+ }
+ return null;
+ }
+ case SuspenseListComponent:
+ {
+ popSuspenseContext(workInProgress); // SuspenseList doesn't actually catch anything. It should've been
+ // caught by a nested boundary. If not, it should bubble through.
+
+ return null;
+ }
+ case HostPortal:
+ popHostContainer(workInProgress);
+ return null;
+ case ContextProvider:
+ var context = workInProgress.type._context;
+ popProvider(context, workInProgress);
+ return null;
+ case OffscreenComponent:
+ case LegacyHiddenComponent:
+ popRenderLanes(workInProgress);
+ return null;
+ case CacheComponent:
+ return null;
+ default:
+ return null;
+ }
+ }
+ function unwindInterruptedWork(current, interruptedWork, renderLanes) {
+ // Note: This intentionally doesn't check if we're hydrating because comparing
+ // to the current tree provider fiber is just as fast and less error-prone.
+ // Ideally we would have a special version of the work loop only
+ // for hydration.
+ popTreeContext(interruptedWork);
+ switch (interruptedWork.tag) {
+ case ClassComponent:
+ {
+ var childContextTypes = interruptedWork.type.childContextTypes;
+ if (childContextTypes !== null && childContextTypes !== undefined) {
+ popContext(interruptedWork);
+ }
+ break;
+ }
+ case HostRoot:
+ {
+ var root = interruptedWork.stateNode;
+ popHostContainer(interruptedWork);
+ popTopLevelContextObject(interruptedWork);
+ resetWorkInProgressVersions();
+ break;
+ }
+ case HostComponent:
+ {
+ popHostContext(interruptedWork);
+ break;
+ }
+ case HostPortal:
+ popHostContainer(interruptedWork);
+ break;
+ case SuspenseComponent:
+ popSuspenseContext(interruptedWork);
+ break;
+ case SuspenseListComponent:
+ popSuspenseContext(interruptedWork);
+ break;
+ case ContextProvider:
+ var context = interruptedWork.type._context;
+ popProvider(context, interruptedWork);
+ break;
+ case OffscreenComponent:
+ case LegacyHiddenComponent:
+ popRenderLanes(interruptedWork);
+ break;
+ }
+ }
+ var didWarnAboutUndefinedSnapshotBeforeUpdate = null;
+ {
+ didWarnAboutUndefinedSnapshotBeforeUpdate = new Set();
+ } // Used during the commit phase to track the state of the Offscreen component stack.
+ var PossiblyWeakSet = typeof WeakSet === "function" ? WeakSet : Set;
+ var nextEffect = null; // Used for Profiling builds to track updaters.
+
+ var inProgressLanes = null;
+ var inProgressRoot = null;
+ function reportUncaughtErrorInDEV(error) {
+ // Wrapping each small part of the commit phase into a guarded
+ // callback is a bit too slow (https://github.com/facebook/react/pull/21666).
+ // But we rely on it to surface errors to DEV tools like overlays
+ // (https://github.com/facebook/react/issues/21712).
+ // As a compromise, rethrow only caught errors in a guard.
+ {
+ invokeGuardedCallback(null, function () {
+ throw error;
+ });
+ clearCaughtError();
+ }
+ }
+ var callComponentWillUnmountWithTimer = function callComponentWillUnmountWithTimer(current, instance) {
+ instance.props = current.memoizedProps;
+ instance.state = current.memoizedState;
+ if (current.mode & ProfileMode) {
+ try {
+ startLayoutEffectTimer();
+ instance.componentWillUnmount();
+ } finally {
+ recordLayoutEffectDuration(current);
+ }
+ } else {
+ instance.componentWillUnmount();
+ }
+ }; // Capture errors so they don't interrupt mounting.
+
+ function safelyCallComponentWillUnmount(current, nearestMountedAncestor, instance) {
+ try {
+ callComponentWillUnmountWithTimer(current, instance);
+ } catch (error) {
+ captureCommitPhaseError(current, nearestMountedAncestor, error);
+ }
+ } // Capture errors so they don't interrupt mounting.
+
+ function safelyDetachRef(current, nearestMountedAncestor) {
+ var ref = current.ref;
+ if (ref !== null) {
+ if (typeof ref === "function") {
+ var retVal;
+ try {
+ if (enableProfilerTimer && enableProfilerCommitHooks && current.mode & ProfileMode) {
+ try {
+ startLayoutEffectTimer();
+ retVal = ref(null);
+ } finally {
+ recordLayoutEffectDuration(current);
+ }
+ } else {
+ retVal = ref(null);
+ }
+ } catch (error) {
+ captureCommitPhaseError(current, nearestMountedAncestor, error);
+ }
+ {
+ if (typeof retVal === "function") {
+ error("Unexpected return value from a callback ref in %s. " + "A callback ref should not return a function.", getComponentNameFromFiber(current));
+ }
+ }
+ } else {
+ ref.current = null;
+ }
+ }
+ }
+ function safelyCallDestroy(current, nearestMountedAncestor, destroy) {
+ try {
+ destroy();
+ } catch (error) {
+ captureCommitPhaseError(current, nearestMountedAncestor, error);
+ }
+ }
+ var focusedInstanceHandle = null;
+ var shouldFireAfterActiveInstanceBlur = false;
+ function commitBeforeMutationEffects(root, firstChild) {
+ focusedInstanceHandle = prepareForCommit(root.containerInfo);
+ nextEffect = firstChild;
+ commitBeforeMutationEffects_begin(); // We no longer need to track the active instance fiber
+
+ var shouldFire = shouldFireAfterActiveInstanceBlur;
+ shouldFireAfterActiveInstanceBlur = false;
+ focusedInstanceHandle = null;
+ return shouldFire;
+ }
+ function commitBeforeMutationEffects_begin() {
+ while (nextEffect !== null) {
+ var fiber = nextEffect; // This phase is only used for beforeActiveInstanceBlur.
+
+ var child = fiber.child;
+ if ((fiber.subtreeFlags & BeforeMutationMask) !== NoFlags && child !== null) {
+ child.return = fiber;
+ nextEffect = child;
+ } else {
+ commitBeforeMutationEffects_complete();
+ }
+ }
+ }
+ function commitBeforeMutationEffects_complete() {
+ while (nextEffect !== null) {
+ var fiber = nextEffect;
+ setCurrentFiber(fiber);
+ try {
+ commitBeforeMutationEffectsOnFiber(fiber);
+ } catch (error) {
+ captureCommitPhaseError(fiber, fiber.return, error);
+ }
+ resetCurrentFiber();
+ var sibling = fiber.sibling;
+ if (sibling !== null) {
+ sibling.return = fiber.return;
+ nextEffect = sibling;
+ return;
+ }
+ nextEffect = fiber.return;
+ }
+ }
+ function commitBeforeMutationEffectsOnFiber(finishedWork) {
+ var current = finishedWork.alternate;
+ var flags = finishedWork.flags;
+ if ((flags & Snapshot) !== NoFlags) {
+ setCurrentFiber(finishedWork);
+ switch (finishedWork.tag) {
+ case FunctionComponent:
+ case ForwardRef:
+ case SimpleMemoComponent:
+ {
+ break;
+ }
+ case ClassComponent:
+ {
+ if (current !== null) {
+ var prevProps = current.memoizedProps;
+ var prevState = current.memoizedState;
+ var instance = finishedWork.stateNode; // We could update instance props and state here,
+ // but instead we rely on them being set during last render.
+ // TODO: revisit this when we implement resuming.
+
+ {
+ if (finishedWork.type === finishedWork.elementType && !didWarnAboutReassigningProps) {
+ if (instance.props !== finishedWork.memoizedProps) {
+ error("Expected %s props to match memoized props before " + "getSnapshotBeforeUpdate. " + "This might either be because of a bug in React, or because " + "a component reassigns its own `this.props`. " + "Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
+ }
+ if (instance.state !== finishedWork.memoizedState) {
+ error("Expected %s state to match memoized state before " + "getSnapshotBeforeUpdate. " + "This might either be because of a bug in React, or because " + "a component reassigns its own `this.state`. " + "Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
+ }
+ }
+ }
+ var snapshot = instance.getSnapshotBeforeUpdate(finishedWork.elementType === finishedWork.type ? prevProps : resolveDefaultProps(finishedWork.type, prevProps), prevState);
+ {
+ var didWarnSet = didWarnAboutUndefinedSnapshotBeforeUpdate;
+ if (snapshot === undefined && !didWarnSet.has(finishedWork.type)) {
+ didWarnSet.add(finishedWork.type);
+ error("%s.getSnapshotBeforeUpdate(): A snapshot value (or null) " + "must be returned. You have returned undefined.", getComponentNameFromFiber(finishedWork));
+ }
+ }
+ instance.__reactInternalSnapshotBeforeUpdate = snapshot;
+ }
+ break;
+ }
+ case HostRoot:
+ {
+ break;
+ }
+ case HostComponent:
+ case HostText:
+ case HostPortal:
+ case IncompleteClassComponent:
+ // Nothing to do for these component types
+ break;
+ default:
+ {
+ throw new Error("This unit of work tag should not have side-effects. This error is " + "likely caused by a bug in React. Please file an issue.");
+ }
+ }
+ resetCurrentFiber();
+ }
+ }
+ function commitHookEffectListUnmount(flags, finishedWork, nearestMountedAncestor) {
+ var updateQueue = finishedWork.updateQueue;
+ var lastEffect = updateQueue !== null ? updateQueue.lastEffect : null;
+ if (lastEffect !== null) {
+ var firstEffect = lastEffect.next;
+ var effect = firstEffect;
+ do {
+ if ((effect.tag & flags) === flags) {
+ // Unmount
+ var destroy = effect.destroy;
+ effect.destroy = undefined;
+ if (destroy !== undefined) {
+ {
+ if ((flags & Insertion) !== NoFlags$1) {
+ setIsRunningInsertionEffect(true);
+ }
+ }
+ safelyCallDestroy(finishedWork, nearestMountedAncestor, destroy);
+ {
+ if ((flags & Insertion) !== NoFlags$1) {
+ setIsRunningInsertionEffect(false);
+ }
+ }
+ }
+ }
+ effect = effect.next;
+ } while (effect !== firstEffect);
+ }
+ }
+ function commitHookEffectListMount(flags, finishedWork) {
+ var updateQueue = finishedWork.updateQueue;
+ var lastEffect = updateQueue !== null ? updateQueue.lastEffect : null;
+ if (lastEffect !== null) {
+ var firstEffect = lastEffect.next;
+ var effect = firstEffect;
+ do {
+ if ((effect.tag & flags) === flags) {
+ var create = effect.create;
+ {
+ if ((flags & Insertion) !== NoFlags$1) {
+ setIsRunningInsertionEffect(true);
+ }
+ }
+ effect.destroy = create();
+ {
+ if ((flags & Insertion) !== NoFlags$1) {
+ setIsRunningInsertionEffect(false);
+ }
+ }
+ {
+ var destroy = effect.destroy;
+ if (destroy !== undefined && typeof destroy !== "function") {
+ var hookName = void 0;
+ if ((effect.tag & Layout) !== NoFlags) {
+ hookName = "useLayoutEffect";
+ } else if ((effect.tag & Insertion) !== NoFlags) {
+ hookName = "useInsertionEffect";
+ } else {
+ hookName = "useEffect";
+ }
+ var addendum = void 0;
+ if (destroy === null) {
+ addendum = " You returned null. If your effect does not require clean " + "up, return undefined (or nothing).";
+ } else if (typeof destroy.then === "function") {
+ addendum = "\n\nIt looks like you wrote " + hookName + "(async () => ...) or returned a Promise. " + "Instead, write the async function inside your effect " + "and call it immediately:\n\n" + hookName + "(() => {\n" + " async function fetchData() {\n" + " // You can await here\n" + " const response = await MyAPI.getData(someId);\n" + " // ...\n" + " }\n" + " fetchData();\n" + "}, [someId]); // Or [] if effect doesn't need props or state\n\n" + "Learn more about data fetching with Hooks: https://react.dev/link/hooks-data-fetching";
+ } else {
+ addendum = " You returned: " + destroy;
+ }
+ error("%s must not return anything besides a function, " + "which is used for clean-up.%s", hookName, addendum);
+ }
+ }
+ }
+ effect = effect.next;
+ } while (effect !== firstEffect);
+ }
+ }
+ function commitPassiveEffectDurations(finishedRoot, finishedWork) {
+ {
+ // Only Profilers with work in their subtree will have an Update effect scheduled.
+ if ((finishedWork.flags & Update) !== NoFlags) {
+ switch (finishedWork.tag) {
+ case Profiler:
+ {
+ var passiveEffectDuration = finishedWork.stateNode.passiveEffectDuration;
+ var _finishedWork$memoize = finishedWork.memoizedProps,
+ id = _finishedWork$memoize.id,
+ onPostCommit = _finishedWork$memoize.onPostCommit; // This value will still reflect the previous commit phase.
+ // It does not get reset until the start of the next commit phase.
+
+ var commitTime = getCommitTime();
+ var phase = finishedWork.alternate === null ? "mount" : "update";
+ {
+ if (isCurrentUpdateNested()) {
+ phase = "nested-update";
+ }
+ }
+ if (typeof onPostCommit === "function") {
+ onPostCommit(id, phase, passiveEffectDuration, commitTime);
+ } // Bubble times to the next nearest ancestor Profiler.
+ // After we process that Profiler, we'll bubble further up.
+
+ var parentFiber = finishedWork.return;
+ outer: while (parentFiber !== null) {
+ switch (parentFiber.tag) {
+ case HostRoot:
+ var root = parentFiber.stateNode;
+ root.passiveEffectDuration += passiveEffectDuration;
+ break outer;
+ case Profiler:
+ var parentStateNode = parentFiber.stateNode;
+ parentStateNode.passiveEffectDuration += passiveEffectDuration;
+ break outer;
+ }
+ parentFiber = parentFiber.return;
+ }
+ break;
+ }
+ }
+ }
+ }
+ }
+ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork, committedLanes) {
+ if ((finishedWork.flags & LayoutMask) !== NoFlags) {
+ switch (finishedWork.tag) {
+ case FunctionComponent:
+ case ForwardRef:
+ case SimpleMemoComponent:
+ {
+ {
+ // At this point layout effects have already been destroyed (during mutation phase).
+ // This is done to prevent sibling component effects from interfering with each other,
+ // e.g. a destroy function in one component should never override a ref set
+ // by a create function in another component during the same commit.
+ if (finishedWork.mode & ProfileMode) {
+ try {
+ startLayoutEffectTimer();
+ commitHookEffectListMount(Layout | HasEffect, finishedWork);
+ } finally {
+ recordLayoutEffectDuration(finishedWork);
+ }
+ } else {
+ commitHookEffectListMount(Layout | HasEffect, finishedWork);
+ }
+ }
+ break;
+ }
+ case ClassComponent:
+ {
+ var instance = finishedWork.stateNode;
+ if (finishedWork.flags & Update) {
+ {
+ if (current === null) {
+ // We could update instance props and state here,
+ // but instead we rely on them being set during last render.
+ // TODO: revisit this when we implement resuming.
+ {
+ if (finishedWork.type === finishedWork.elementType && !didWarnAboutReassigningProps) {
+ if (instance.props !== finishedWork.memoizedProps) {
+ error("Expected %s props to match memoized props before " + "componentDidMount. " + "This might either be because of a bug in React, or because " + "a component reassigns its own `this.props`. " + "Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
+ }
+ if (instance.state !== finishedWork.memoizedState) {
+ error("Expected %s state to match memoized state before " + "componentDidMount. " + "This might either be because of a bug in React, or because " + "a component reassigns its own `this.state`. " + "Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
+ }
+ }
+ }
+ if (finishedWork.mode & ProfileMode) {
+ try {
+ startLayoutEffectTimer();
+ instance.componentDidMount();
+ } finally {
+ recordLayoutEffectDuration(finishedWork);
+ }
+ } else {
+ instance.componentDidMount();
+ }
+ } else {
+ var prevProps = finishedWork.elementType === finishedWork.type ? current.memoizedProps : resolveDefaultProps(finishedWork.type, current.memoizedProps);
+ var prevState = current.memoizedState; // We could update instance props and state here,
+ // but instead we rely on them being set during last render.
+ // TODO: revisit this when we implement resuming.
+
+ {
+ if (finishedWork.type === finishedWork.elementType && !didWarnAboutReassigningProps) {
+ if (instance.props !== finishedWork.memoizedProps) {
+ error("Expected %s props to match memoized props before " + "componentDidUpdate. " + "This might either be because of a bug in React, or because " + "a component reassigns its own `this.props`. " + "Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
+ }
+ if (instance.state !== finishedWork.memoizedState) {
+ error("Expected %s state to match memoized state before " + "componentDidUpdate. " + "This might either be because of a bug in React, or because " + "a component reassigns its own `this.state`. " + "Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
+ }
+ }
+ }
+ if (finishedWork.mode & ProfileMode) {
+ try {
+ startLayoutEffectTimer();
+ instance.componentDidUpdate(prevProps, prevState, instance.__reactInternalSnapshotBeforeUpdate);
+ } finally {
+ recordLayoutEffectDuration(finishedWork);
+ }
+ } else {
+ instance.componentDidUpdate(prevProps, prevState, instance.__reactInternalSnapshotBeforeUpdate);
+ }
+ }
+ }
+ } // TODO: I think this is now always non-null by the time it reaches the
+ // commit phase. Consider removing the type check.
+
+ var updateQueue = finishedWork.updateQueue;
+ if (updateQueue !== null) {
+ {
+ if (finishedWork.type === finishedWork.elementType && !didWarnAboutReassigningProps) {
+ if (instance.props !== finishedWork.memoizedProps) {
+ error("Expected %s props to match memoized props before " + "processing the update queue. " + "This might either be because of a bug in React, or because " + "a component reassigns its own `this.props`. " + "Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
+ }
+ if (instance.state !== finishedWork.memoizedState) {
+ error("Expected %s state to match memoized state before " + "processing the update queue. " + "This might either be because of a bug in React, or because " + "a component reassigns its own `this.state`. " + "Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance");
+ }
+ }
+ } // We could update instance props and state here,
+ // but instead we rely on them being set during last render.
+ // TODO: revisit this when we implement resuming.
+
+ commitUpdateQueue(finishedWork, updateQueue, instance);
+ }
+ break;
+ }
+ case HostRoot:
+ {
+ // TODO: I think this is now always non-null by the time it reaches the
+ // commit phase. Consider removing the type check.
+ var _updateQueue = finishedWork.updateQueue;
+ if (_updateQueue !== null) {
+ var _instance = null;
+ if (finishedWork.child !== null) {
+ switch (finishedWork.child.tag) {
+ case HostComponent:
+ _instance = getPublicInstance(finishedWork.child.stateNode);
+ break;
+ case ClassComponent:
+ _instance = finishedWork.child.stateNode;
+ break;
+ }
+ }
+ commitUpdateQueue(finishedWork, _updateQueue, _instance);
+ }
+ break;
+ }
+ case HostComponent:
+ {
+ var _instance2 = finishedWork.stateNode; // Renderers may schedule work to be done after host components are mounted
+ // (eg DOM renderer may schedule auto-focus for inputs and form controls).
+ // These effects should only be committed when components are first mounted,
+ // aka when there is no current/alternate.
+
+ if (current === null && finishedWork.flags & Update) {
+ var type = finishedWork.type;
+ var props = finishedWork.memoizedProps;
+ commitMount();
+ }
+ break;
+ }
+ case HostText:
+ {
+ // We have no life-cycles associated with text.
+ break;
+ }
+ case HostPortal:
+ {
+ // We have no life-cycles associated with portals.
+ break;
+ }
+ case Profiler:
+ {
+ {
+ var _finishedWork$memoize2 = finishedWork.memoizedProps,
+ onCommit = _finishedWork$memoize2.onCommit,
+ onRender = _finishedWork$memoize2.onRender;
+ var effectDuration = finishedWork.stateNode.effectDuration;
+ var commitTime = getCommitTime();
+ var phase = current === null ? "mount" : "update";
+ {
+ if (isCurrentUpdateNested()) {
+ phase = "nested-update";
+ }
+ }
+ if (typeof onRender === "function") {
+ onRender(finishedWork.memoizedProps.id, phase, finishedWork.actualDuration, finishedWork.treeBaseDuration, finishedWork.actualStartTime, commitTime);
+ }
+ {
+ if (typeof onCommit === "function") {
+ onCommit(finishedWork.memoizedProps.id, phase, effectDuration, commitTime);
+ } // Schedule a passive effect for this Profiler to call onPostCommit hooks.
+ // This effect should be scheduled even if there is no onPostCommit callback for this Profiler,
+ // because the effect is also where times bubble to parent Profilers.
+
+ enqueuePendingPassiveProfilerEffect(finishedWork); // Propagate layout effect durations to the next nearest Profiler ancestor.
+ // Do not reset these values until the next render so DevTools has a chance to read them first.
+
+ var parentFiber = finishedWork.return;
+ outer: while (parentFiber !== null) {
+ switch (parentFiber.tag) {
+ case HostRoot:
+ var root = parentFiber.stateNode;
+ root.effectDuration += effectDuration;
+ break outer;
+ case Profiler:
+ var parentStateNode = parentFiber.stateNode;
+ parentStateNode.effectDuration += effectDuration;
+ break outer;
+ }
+ parentFiber = parentFiber.return;
+ }
+ }
+ }
+ break;
+ }
+ case SuspenseComponent:
+ {
+ break;
+ }
+ case SuspenseListComponent:
+ case IncompleteClassComponent:
+ case ScopeComponent:
+ case OffscreenComponent:
+ case LegacyHiddenComponent:
+ case TracingMarkerComponent:
+ {
+ break;
+ }
+ default:
+ throw new Error("This unit of work tag should not have side-effects. This error is " + "likely caused by a bug in React. Please file an issue.");
+ }
+ }
+ {
+ {
+ if (finishedWork.flags & Ref) {
+ commitAttachRef(finishedWork);
+ }
+ }
+ }
+ }
+ function commitAttachRef(finishedWork) {
+ var ref = finishedWork.ref;
+ if (ref !== null) {
+ var instance = finishedWork.stateNode;
+ var instanceToUse;
+ switch (finishedWork.tag) {
+ case HostComponent:
+ instanceToUse = getPublicInstance(instance);
+ break;
+ default:
+ instanceToUse = instance;
+ } // Moved outside to ensure DCE works with this flag
+
+ if (typeof ref === "function") {
+ var retVal;
+ if (finishedWork.mode & ProfileMode) {
+ try {
+ startLayoutEffectTimer();
+ retVal = ref(instanceToUse);
+ } finally {
+ recordLayoutEffectDuration(finishedWork);
+ }
+ } else {
+ retVal = ref(instanceToUse);
+ }
+ {
+ if (typeof retVal === "function") {
+ error("Unexpected return value from a callback ref in %s. " + "A callback ref should not return a function.", getComponentNameFromFiber(finishedWork));
+ }
+ }
+ } else {
+ {
+ if (!ref.hasOwnProperty("current")) {
+ error("Unexpected ref object provided for %s. " + "Use either a ref-setter function or React.createRef().", getComponentNameFromFiber(finishedWork));
+ }
+ }
+ ref.current = instanceToUse;
+ }
+ }
+ }
+ function detachFiberMutation(fiber) {
+ // Cut off the return pointer to disconnect it from the tree.
+ // This enables us to detect and warn against state updates on an unmounted component.
+ // It also prevents events from bubbling from within disconnected components.
+ //
+ // Ideally, we should also clear the child pointer of the parent alternate to let this
+ // get GC:ed but we don't know which for sure which parent is the current
+ // one so we'll settle for GC:ing the subtree of this child.
+ // This child itself will be GC:ed when the parent updates the next time.
+ //
+ // Note that we can't clear child or sibling pointers yet.
+ // They're needed for passive effects and for findDOMNode.
+ // We defer those fields, and all other cleanup, to the passive phase (see detachFiberAfterEffects).
+ //
+ // Don't reset the alternate yet, either. We need that so we can detach the
+ // alternate's fields in the passive phase. Clearing the return pointer is
+ // sufficient for findDOMNode semantics.
+ var alternate = fiber.alternate;
+ if (alternate !== null) {
+ alternate.return = null;
+ }
+ fiber.return = null;
+ }
+ function detachFiberAfterEffects(fiber) {
+ var alternate = fiber.alternate;
+ if (alternate !== null) {
+ fiber.alternate = null;
+ detachFiberAfterEffects(alternate);
+ } // Note: Defensively using negation instead of < in case
+ // `deletedTreeCleanUpLevel` is undefined.
+
+ {
+ // Clear cyclical Fiber fields. This level alone is designed to roughly
+ // approximate the planned Fiber refactor. In that world, `setState` will be
+ // bound to a special "instance" object instead of a Fiber. The Instance
+ // object will not have any of these fields. It will only be connected to
+ // the fiber tree via a single link at the root. So if this level alone is
+ // sufficient to fix memory issues, that bodes well for our plans.
+ fiber.child = null;
+ fiber.deletions = null;
+ fiber.sibling = null; // The `stateNode` is cyclical because on host nodes it points to the host
+ // tree, which has its own pointers to children, parents, and siblings.
+ // The other host nodes also point back to fibers, so we should detach that
+ // one, too.
+
+ if (fiber.tag === HostComponent) {
+ var hostInstance = fiber.stateNode;
+ }
+ fiber.stateNode = null; // I'm intentionally not clearing the `return` field in this level. We
+ // already disconnect the `return` pointer at the root of the deleted
+ // subtree (in `detachFiberMutation`). Besides, `return` by itself is not
+ // cyclical — it's only cyclical when combined with `child`, `sibling`, and
+ // `alternate`. But we'll clear it in the next level anyway, just in case.
+
+ {
+ fiber._debugOwner = null;
+ }
+ {
+ // Theoretically, nothing in here should be necessary, because we already
+ // disconnected the fiber from the tree. So even if something leaks this
+ // particular fiber, it won't leak anything else
+ //
+ // The purpose of this branch is to be super aggressive so we can measure
+ // if there's any difference in memory impact. If there is, that could
+ // indicate a React leak we don't know about.
+ fiber.return = null;
+ fiber.dependencies = null;
+ fiber.memoizedProps = null;
+ fiber.memoizedState = null;
+ fiber.pendingProps = null;
+ fiber.stateNode = null; // TODO: Move to `commitPassiveUnmountInsideDeletedTreeOnFiber` instead.
+
+ fiber.updateQueue = null;
+ }
+ }
+ }
+ function emptyPortalContainer(current) {
+ var portal = current.stateNode;
+ var containerInfo = portal.containerInfo;
+ var emptyChildSet = createContainerChildSet(containerInfo);
+ }
+ function commitPlacement(finishedWork) {
+ {
+ return;
+ } // Recursively insert all host nodes into the parent.
+ }
+ function commitDeletionEffects(root, returnFiber, deletedFiber) {
+ {
+ // Detach refs and call componentWillUnmount() on the whole subtree.
+ commitDeletionEffectsOnFiber(root, returnFiber, deletedFiber);
+ }
+ detachFiberMutation(deletedFiber);
+ }
+ function recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, parent) {
+ // TODO: Use a static flag to skip trees that don't have unmount effects
+ var child = parent.child;
+ while (child !== null) {
+ commitDeletionEffectsOnFiber(finishedRoot, nearestMountedAncestor, child);
+ child = child.sibling;
+ }
+ }
+ function commitDeletionEffectsOnFiber(finishedRoot, nearestMountedAncestor, deletedFiber) {
+ onCommitUnmount(deletedFiber); // The cases in this outer switch modify the stack before they traverse
+ // into their subtree. There are simpler cases in the inner switch
+ // that don't modify the stack.
+
+ switch (deletedFiber.tag) {
+ case HostComponent:
+ {
+ {
+ safelyDetachRef(deletedFiber, nearestMountedAncestor);
+ } // Intentional fallthrough to next branch
+ }
+ // eslint-disable-next-line-no-fallthrough
+
+ case HostText:
+ {
+ // We only need to remove the nearest host child. Set the host parent
+ // to `null` on the stack to indicate that nested children don't
+ // need to be removed.
+ {
+ recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber);
+ }
+ return;
+ }
+ case DehydratedFragment:
+ {
+ return;
+ }
+ case HostPortal:
+ {
+ {
+ emptyPortalContainer(deletedFiber);
+ recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber);
+ }
+ return;
+ }
+ case FunctionComponent:
+ case ForwardRef:
+ case MemoComponent:
+ case SimpleMemoComponent:
+ {
+ {
+ var updateQueue = deletedFiber.updateQueue;
+ if (updateQueue !== null) {
+ var lastEffect = updateQueue.lastEffect;
+ if (lastEffect !== null) {
+ var firstEffect = lastEffect.next;
+ var effect = firstEffect;
+ do {
+ var _effect = effect,
+ destroy = _effect.destroy,
+ tag = _effect.tag;
+ if (destroy !== undefined) {
+ if ((tag & Insertion) !== NoFlags$1) {
+ safelyCallDestroy(deletedFiber, nearestMountedAncestor, destroy);
+ } else if ((tag & Layout) !== NoFlags$1) {
+ if (deletedFiber.mode & ProfileMode) {
+ startLayoutEffectTimer();
+ safelyCallDestroy(deletedFiber, nearestMountedAncestor, destroy);
+ recordLayoutEffectDuration(deletedFiber);
+ } else {
+ safelyCallDestroy(deletedFiber, nearestMountedAncestor, destroy);
+ }
+ }
+ }
+ effect = effect.next;
+ } while (effect !== firstEffect);
+ }
+ }
+ }
+ recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber);
+ return;
+ }
+ case ClassComponent:
+ {
+ {
+ safelyDetachRef(deletedFiber, nearestMountedAncestor);
+ var instance = deletedFiber.stateNode;
+ if (typeof instance.componentWillUnmount === "function") {
+ safelyCallComponentWillUnmount(deletedFiber, nearestMountedAncestor, instance);
+ }
+ }
+ recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber);
+ return;
+ }
+ case ScopeComponent:
+ {
+ recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber);
+ return;
+ }
+ case OffscreenComponent:
+ {
+ {
+ recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber);
+ }
+ break;
+ }
+ default:
+ {
+ recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber);
+ return;
+ }
+ }
+ }
+ function commitSuspenseCallback(finishedWork) {
+ // TODO: Move this to passive phase
+ var newState = finishedWork.memoizedState;
+ }
+ function attachSuspenseRetryListeners(finishedWork) {
+ // If this boundary just timed out, then it will have a set of wakeables.
+ // For each wakeable, attach a listener so that when it resolves, React
+ // attempts to re-render the boundary in the primary (pre-timeout) state.
+ var wakeables = finishedWork.updateQueue;
+ if (wakeables !== null) {
+ finishedWork.updateQueue = null;
+ var retryCache = finishedWork.stateNode;
+ if (retryCache === null) {
+ retryCache = finishedWork.stateNode = new PossiblyWeakSet();
+ }
+ wakeables.forEach(function (wakeable) {
+ // Memoize using the boundary fiber to prevent redundant listeners.
+ var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
+ if (!retryCache.has(wakeable)) {
+ retryCache.add(wakeable);
+ {
+ if (isDevToolsPresent) {
+ if (inProgressLanes !== null && inProgressRoot !== null) {
+ // If we have pending work still, associate the original updaters with it.
+ restorePendingUpdaters(inProgressRoot, inProgressLanes);
+ } else {
+ throw Error("Expected finished root and lanes to be set. This is a bug in React.");
+ }
+ }
+ }
+ wakeable.then(retry, retry);
+ }
+ });
+ }
+ } // This function detects when a Suspense boundary goes from visible to hidden.
+ function commitMutationEffects(root, finishedWork, committedLanes) {
+ inProgressLanes = committedLanes;
+ inProgressRoot = root;
+ setCurrentFiber(finishedWork);
+ commitMutationEffectsOnFiber(finishedWork, root);
+ setCurrentFiber(finishedWork);
+ inProgressLanes = null;
+ inProgressRoot = null;
+ }
+ function recursivelyTraverseMutationEffects(root, parentFiber, lanes) {
+ // Deletions effects can be scheduled on any fiber type. They need to happen
+ // before the children effects hae fired.
+ var deletions = parentFiber.deletions;
+ if (deletions !== null) {
+ for (var i = 0; i < deletions.length; i++) {
+ var childToDelete = deletions[i];
+ try {
+ commitDeletionEffects(root, parentFiber, childToDelete);
+ } catch (error) {
+ captureCommitPhaseError(childToDelete, parentFiber, error);
+ }
+ }
+ }
+ var prevDebugFiber = getCurrentFiber();
+ if (parentFiber.subtreeFlags & MutationMask) {
+ var child = parentFiber.child;
+ while (child !== null) {
+ setCurrentFiber(child);
+ commitMutationEffectsOnFiber(child, root);
+ child = child.sibling;
+ }
+ }
+ setCurrentFiber(prevDebugFiber);
+ }
+ function commitMutationEffectsOnFiber(finishedWork, root, lanes) {
+ var current = finishedWork.alternate;
+ var flags = finishedWork.flags; // The effect flag should be checked *after* we refine the type of fiber,
+ // because the fiber tag is more specific. An exception is any flag related
+ // to reconcilation, because those can be set on all fiber types.
+
+ switch (finishedWork.tag) {
+ case FunctionComponent:
+ case ForwardRef:
+ case MemoComponent:
+ case SimpleMemoComponent:
+ {
+ recursivelyTraverseMutationEffects(root, finishedWork);
+ commitReconciliationEffects(finishedWork);
+ if (flags & Update) {
+ try {
+ commitHookEffectListUnmount(Insertion | HasEffect, finishedWork, finishedWork.return);
+ commitHookEffectListMount(Insertion | HasEffect, finishedWork);
+ } catch (error) {
+ captureCommitPhaseError(finishedWork, finishedWork.return, error);
+ } // Layout effects are destroyed during the mutation phase so that all
+ // destroy functions for all fibers are called before any create functions.
+ // This prevents sibling component effects from interfering with each other,
+ // e.g. a destroy function in one component should never override a ref set
+ // by a create function in another component during the same commit.
+
+ if (finishedWork.mode & ProfileMode) {
+ try {
+ startLayoutEffectTimer();
+ commitHookEffectListUnmount(Layout | HasEffect, finishedWork, finishedWork.return);
+ } catch (error) {
+ captureCommitPhaseError(finishedWork, finishedWork.return, error);
+ }
+ recordLayoutEffectDuration(finishedWork);
+ } else {
+ try {
+ commitHookEffectListUnmount(Layout | HasEffect, finishedWork, finishedWork.return);
+ } catch (error) {
+ captureCommitPhaseError(finishedWork, finishedWork.return, error);
+ }
+ }
+ }
+ return;
+ }
+ case ClassComponent:
+ {
+ recursivelyTraverseMutationEffects(root, finishedWork);
+ commitReconciliationEffects(finishedWork);
+ if (flags & Ref) {
+ if (current !== null) {
+ safelyDetachRef(current, current.return);
+ }
+ }
+ return;
+ }
+ case HostComponent:
+ {
+ recursivelyTraverseMutationEffects(root, finishedWork);
+ commitReconciliationEffects(finishedWork);
+ if (flags & Ref) {
+ if (current !== null) {
+ safelyDetachRef(current, current.return);
+ }
+ }
+ return;
+ }
+ case HostText:
+ {
+ recursivelyTraverseMutationEffects(root, finishedWork);
+ commitReconciliationEffects(finishedWork);
+ return;
+ }
+ case HostRoot:
+ {
+ recursivelyTraverseMutationEffects(root, finishedWork);
+ commitReconciliationEffects(finishedWork);
+ if (flags & Update) {
+ {
+ var containerInfo = root.containerInfo;
+ var pendingChildren = root.pendingChildren;
+ try {
+ replaceContainerChildren(containerInfo, pendingChildren);
+ } catch (error) {
+ captureCommitPhaseError(finishedWork, finishedWork.return, error);
+ }
+ }
+ }
+ return;
+ }
+ case HostPortal:
+ {
+ recursivelyTraverseMutationEffects(root, finishedWork);
+ commitReconciliationEffects(finishedWork);
+ if (flags & Update) {
+ {
+ var portal = finishedWork.stateNode;
+ var _containerInfo = portal.containerInfo;
+ var _pendingChildren = portal.pendingChildren;
+ try {
+ replaceContainerChildren(_containerInfo, _pendingChildren);
+ } catch (error) {
+ captureCommitPhaseError(finishedWork, finishedWork.return, error);
+ }
+ }
+ }
+ return;
+ }
+ case SuspenseComponent:
+ {
+ recursivelyTraverseMutationEffects(root, finishedWork);
+ commitReconciliationEffects(finishedWork);
+ var offscreenFiber = finishedWork.child;
+ if (offscreenFiber.flags & Visibility) {
+ var offscreenInstance = offscreenFiber.stateNode;
+ var newState = offscreenFiber.memoizedState;
+ var isHidden = newState !== null; // Track the current state on the Offscreen instance so we can
+ // read it during an event
+
+ offscreenInstance.isHidden = isHidden;
+ if (isHidden) {
+ var wasHidden = offscreenFiber.alternate !== null && offscreenFiber.alternate.memoizedState !== null;
+ if (!wasHidden) {
+ // TODO: Move to passive phase
+ markCommitTimeOfFallback();
+ }
+ }
+ }
+ if (flags & Update) {
+ try {
+ commitSuspenseCallback(finishedWork);
+ } catch (error) {
+ captureCommitPhaseError(finishedWork, finishedWork.return, error);
+ }
+ attachSuspenseRetryListeners(finishedWork);
+ }
+ return;
+ }
+ case OffscreenComponent:
+ {
+ var _wasHidden = current !== null && current.memoizedState !== null;
+ {
+ recursivelyTraverseMutationEffects(root, finishedWork);
+ }
+ commitReconciliationEffects(finishedWork);
+ if (flags & Visibility) {
+ var _offscreenInstance = finishedWork.stateNode;
+ var _newState = finishedWork.memoizedState;
+ var _isHidden = _newState !== null;
+ // read it during an event
+
+ _offscreenInstance.isHidden = _isHidden;
+ }
+ return;
+ }
+ case SuspenseListComponent:
+ {
+ recursivelyTraverseMutationEffects(root, finishedWork);
+ commitReconciliationEffects(finishedWork);
+ if (flags & Update) {
+ attachSuspenseRetryListeners(finishedWork);
+ }
+ return;
+ }
+ case ScopeComponent:
+ {
+ return;
+ }
+ default:
+ {
+ recursivelyTraverseMutationEffects(root, finishedWork);
+ commitReconciliationEffects(finishedWork);
+ return;
+ }
+ }
+ }
+ function commitReconciliationEffects(finishedWork) {
+ // Placement effects (insertions, reorders) can be scheduled on any fiber
+ // type. They needs to happen after the children effects have fired, but
+ // before the effects on this fiber have fired.
+ var flags = finishedWork.flags;
+ if (flags & Placement) {
+ try {
+ commitPlacement(finishedWork);
+ } catch (error) {
+ captureCommitPhaseError(finishedWork, finishedWork.return, error);
+ } // Clear the "placement" from effect tag so that we know that this is
+ // inserted, before any life-cycles like componentDidMount gets called.
+ // TODO: findDOMNode doesn't rely on this any more but isMounted does
+ // and isMounted is deprecated anyway so we should be able to kill this.
+
+ finishedWork.flags &= ~Placement;
+ }
+ if (flags & Hydrating) {
+ finishedWork.flags &= ~Hydrating;
+ }
+ }
+ function commitLayoutEffects(finishedWork, root, committedLanes) {
+ inProgressLanes = committedLanes;
+ inProgressRoot = root;
+ nextEffect = finishedWork;
+ commitLayoutEffects_begin(finishedWork, root, committedLanes);
+ inProgressLanes = null;
+ inProgressRoot = null;
+ }
+ function commitLayoutEffects_begin(subtreeRoot, root, committedLanes) {
+ // Suspense layout effects semantics don't change for legacy roots.
+ var isModernRoot = (subtreeRoot.mode & ConcurrentMode) !== NoMode;
+ while (nextEffect !== null) {
+ var fiber = nextEffect;
+ var firstChild = fiber.child;
+ if ((fiber.subtreeFlags & LayoutMask) !== NoFlags && firstChild !== null) {
+ firstChild.return = fiber;
+ nextEffect = firstChild;
+ } else {
+ commitLayoutMountEffects_complete(subtreeRoot, root, committedLanes);
+ }
+ }
+ }
+ function commitLayoutMountEffects_complete(subtreeRoot, root, committedLanes) {
+ while (nextEffect !== null) {
+ var fiber = nextEffect;
+ if ((fiber.flags & LayoutMask) !== NoFlags) {
+ var current = fiber.alternate;
+ setCurrentFiber(fiber);
+ try {
+ commitLayoutEffectOnFiber(root, current, fiber, committedLanes);
+ } catch (error) {
+ captureCommitPhaseError(fiber, fiber.return, error);
+ }
+ resetCurrentFiber();
+ }
+ if (fiber === subtreeRoot) {
+ nextEffect = null;
+ return;
+ }
+ var sibling = fiber.sibling;
+ if (sibling !== null) {
+ sibling.return = fiber.return;
+ nextEffect = sibling;
+ return;
+ }
+ nextEffect = fiber.return;
+ }
+ }
+ function commitPassiveMountEffects(root, finishedWork, committedLanes, committedTransitions) {
+ nextEffect = finishedWork;
+ commitPassiveMountEffects_begin(finishedWork, root, committedLanes, committedTransitions);
+ }
+ function commitPassiveMountEffects_begin(subtreeRoot, root, committedLanes, committedTransitions) {
+ while (nextEffect !== null) {
+ var fiber = nextEffect;
+ var firstChild = fiber.child;
+ if ((fiber.subtreeFlags & PassiveMask) !== NoFlags && firstChild !== null) {
+ firstChild.return = fiber;
+ nextEffect = firstChild;
+ } else {
+ commitPassiveMountEffects_complete(subtreeRoot, root, committedLanes, committedTransitions);
+ }
+ }
+ }
+ function commitPassiveMountEffects_complete(subtreeRoot, root, committedLanes, committedTransitions) {
+ while (nextEffect !== null) {
+ var fiber = nextEffect;
+ if ((fiber.flags & Passive) !== NoFlags) {
+ setCurrentFiber(fiber);
+ try {
+ commitPassiveMountOnFiber(root, fiber, committedLanes, committedTransitions);
+ } catch (error) {
+ captureCommitPhaseError(fiber, fiber.return, error);
+ }
+ resetCurrentFiber();
+ }
+ if (fiber === subtreeRoot) {
+ nextEffect = null;
+ return;
+ }
+ var sibling = fiber.sibling;
+ if (sibling !== null) {
+ sibling.return = fiber.return;
+ nextEffect = sibling;
+ return;
+ }
+ nextEffect = fiber.return;
+ }
+ }
+ function commitPassiveMountOnFiber(finishedRoot, finishedWork, committedLanes, committedTransitions) {
+ switch (finishedWork.tag) {
+ case FunctionComponent:
+ case ForwardRef:
+ case SimpleMemoComponent:
+ {
+ if (finishedWork.mode & ProfileMode) {
+ startPassiveEffectTimer();
+ try {
+ commitHookEffectListMount(Passive$1 | HasEffect, finishedWork);
+ } finally {
+ recordPassiveEffectDuration(finishedWork);
+ }
+ } else {
+ commitHookEffectListMount(Passive$1 | HasEffect, finishedWork);
+ }
+ break;
+ }
+ }
+ }
+ function commitPassiveUnmountEffects(firstChild) {
+ nextEffect = firstChild;
+ commitPassiveUnmountEffects_begin();
+ }
+ function commitPassiveUnmountEffects_begin() {
+ while (nextEffect !== null) {
+ var fiber = nextEffect;
+ var child = fiber.child;
+ if ((nextEffect.flags & ChildDeletion) !== NoFlags) {
+ var deletions = fiber.deletions;
+ if (deletions !== null) {
+ for (var i = 0; i < deletions.length; i++) {
+ var fiberToDelete = deletions[i];
+ nextEffect = fiberToDelete;
+ commitPassiveUnmountEffectsInsideOfDeletedTree_begin(fiberToDelete, fiber);
+ }
+ {
+ // A fiber was deleted from this parent fiber, but it's still part of
+ // the previous (alternate) parent fiber's list of children. Because
+ // children are a linked list, an earlier sibling that's still alive
+ // will be connected to the deleted fiber via its `alternate`:
+ //
+ // live fiber
+ // --alternate--> previous live fiber
+ // --sibling--> deleted fiber
+ //
+ // We can't disconnect `alternate` on nodes that haven't been deleted
+ // yet, but we can disconnect the `sibling` and `child` pointers.
+ var previousFiber = fiber.alternate;
+ if (previousFiber !== null) {
+ var detachedChild = previousFiber.child;
+ if (detachedChild !== null) {
+ previousFiber.child = null;
+ do {
+ var detachedSibling = detachedChild.sibling;
+ detachedChild.sibling = null;
+ detachedChild = detachedSibling;
+ } while (detachedChild !== null);
+ }
+ }
+ }
+ nextEffect = fiber;
+ }
+ }
+ if ((fiber.subtreeFlags & PassiveMask) !== NoFlags && child !== null) {
+ child.return = fiber;
+ nextEffect = child;
+ } else {
+ commitPassiveUnmountEffects_complete();
+ }
+ }
+ }
+ function commitPassiveUnmountEffects_complete() {
+ while (nextEffect !== null) {
+ var fiber = nextEffect;
+ if ((fiber.flags & Passive) !== NoFlags) {
+ setCurrentFiber(fiber);
+ commitPassiveUnmountOnFiber(fiber);
+ resetCurrentFiber();
+ }
+ var sibling = fiber.sibling;
+ if (sibling !== null) {
+ sibling.return = fiber.return;
+ nextEffect = sibling;
+ return;
+ }
+ nextEffect = fiber.return;
+ }
+ }
+ function commitPassiveUnmountOnFiber(finishedWork) {
+ switch (finishedWork.tag) {
+ case FunctionComponent:
+ case ForwardRef:
+ case SimpleMemoComponent:
+ {
+ if (finishedWork.mode & ProfileMode) {
+ startPassiveEffectTimer();
+ commitHookEffectListUnmount(Passive$1 | HasEffect, finishedWork, finishedWork.return);
+ recordPassiveEffectDuration(finishedWork);
+ } else {
+ commitHookEffectListUnmount(Passive$1 | HasEffect, finishedWork, finishedWork.return);
+ }
+ break;
+ }
+ }
+ }
+ function commitPassiveUnmountEffectsInsideOfDeletedTree_begin(deletedSubtreeRoot, nearestMountedAncestor) {
+ while (nextEffect !== null) {
+ var fiber = nextEffect; // Deletion effects fire in parent -> child order
+ // TODO: Check if fiber has a PassiveStatic flag
+
+ setCurrentFiber(fiber);
+ commitPassiveUnmountInsideDeletedTreeOnFiber(fiber, nearestMountedAncestor);
+ resetCurrentFiber();
+ var child = fiber.child; // TODO: Only traverse subtree if it has a PassiveStatic flag. (But, if we
+ // do this, still need to handle `deletedTreeCleanUpLevel` correctly.)
+
+ if (child !== null) {
+ child.return = fiber;
+ nextEffect = child;
+ } else {
+ commitPassiveUnmountEffectsInsideOfDeletedTree_complete(deletedSubtreeRoot);
+ }
+ }
+ }
+ function commitPassiveUnmountEffectsInsideOfDeletedTree_complete(deletedSubtreeRoot) {
+ while (nextEffect !== null) {
+ var fiber = nextEffect;
+ var sibling = fiber.sibling;
+ var returnFiber = fiber.return;
+ {
+ // Recursively traverse the entire deleted tree and clean up fiber fields.
+ // This is more aggressive than ideal, and the long term goal is to only
+ // have to detach the deleted tree at the root.
+ detachFiberAfterEffects(fiber);
+ if (fiber === deletedSubtreeRoot) {
+ nextEffect = null;
+ return;
+ }
+ }
+ if (sibling !== null) {
+ sibling.return = returnFiber;
+ nextEffect = sibling;
+ return;
+ }
+ nextEffect = returnFiber;
+ }
+ }
+ function commitPassiveUnmountInsideDeletedTreeOnFiber(current, nearestMountedAncestor) {
+ switch (current.tag) {
+ case FunctionComponent:
+ case ForwardRef:
+ case SimpleMemoComponent:
+ {
+ if (current.mode & ProfileMode) {
+ startPassiveEffectTimer();
+ commitHookEffectListUnmount(Passive$1, current, nearestMountedAncestor);
+ recordPassiveEffectDuration(current);
+ } else {
+ commitHookEffectListUnmount(Passive$1, current, nearestMountedAncestor);
+ }
+ break;
+ }
+ }
+ } // TODO: Reuse reappearLayoutEffects traversal here?
+
+ var COMPONENT_TYPE = 0;
+ var HAS_PSEUDO_CLASS_TYPE = 1;
+ var ROLE_TYPE = 2;
+ var TEST_NAME_TYPE = 3;
+ var TEXT_TYPE = 4;
+ if (typeof Symbol === "function" && Symbol.for) {
+ var symbolFor = Symbol.for;
+ COMPONENT_TYPE = symbolFor("selector.component");
+ HAS_PSEUDO_CLASS_TYPE = symbolFor("selector.has_pseudo_class");
+ ROLE_TYPE = symbolFor("selector.role");
+ TEST_NAME_TYPE = symbolFor("selector.test_id");
+ TEXT_TYPE = symbolFor("selector.text");
+ }
+ var ReactCurrentActQueue = ReactSharedInternals.ReactCurrentActQueue;
+ function isLegacyActEnvironment(fiber) {
+ {
+ // Legacy mode. We preserve the behavior of React 17's act. It assumes an
+ // act environment whenever `jest` is defined, but you can still turn off
+ // spurious warnings by setting IS_REACT_ACT_ENVIRONMENT explicitly
+ // to false.
+ var isReactActEnvironmentGlobal =
+ // $FlowExpectedError – Flow doesn't know about IS_REACT_ACT_ENVIRONMENT global
+ typeof IS_REACT_ACT_ENVIRONMENT !== "undefined" ? IS_REACT_ACT_ENVIRONMENT : undefined; // $FlowExpectedError - Flow doesn't know about jest
+ return warnsIfNotActing;
+ }
+ }
+ function isConcurrentActEnvironment() {
+ {
+ var isReactActEnvironmentGlobal =
+ // $FlowExpectedError – Flow doesn't know about IS_REACT_ACT_ENVIRONMENT global
+ typeof IS_REACT_ACT_ENVIRONMENT !== "undefined" ? IS_REACT_ACT_ENVIRONMENT : undefined;
+ if (!isReactActEnvironmentGlobal && ReactCurrentActQueue.current !== null) {
+ // TODO: Include link to relevant documentation page.
+ error("The current testing environment is not configured to support " + "act(...)");
+ }
+ return isReactActEnvironmentGlobal;
+ }
+ }
+ var ceil = Math.ceil;
+ var ReactCurrentDispatcher$2 = ReactSharedInternals.ReactCurrentDispatcher,
+ ReactCurrentOwner$2 = ReactSharedInternals.ReactCurrentOwner,
+ ReactCurrentBatchConfig$2 = ReactSharedInternals.ReactCurrentBatchConfig,
+ ReactCurrentActQueue$1 = ReactSharedInternals.ReactCurrentActQueue;
+ var NoContext = /* */
+ 0;
+ var BatchedContext = /* */
+ 1;
+ var RenderContext = /* */
+ 2;
+ var CommitContext = /* */
+ 4;
+ var RootInProgress = 0;
+ var RootFatalErrored = 1;
+ var RootErrored = 2;
+ var RootSuspended = 3;
+ var RootSuspendedWithDelay = 4;
+ var RootCompleted = 5;
+ var RootDidNotComplete = 6; // Describes where we are in the React execution stack
+
+ var executionContext = NoContext; // The root we're working on
+
+ var workInProgressRoot = null; // The fiber we're working on
+
+ var workInProgress = null; // The lanes we're rendering
+
+ var workInProgressRootRenderLanes = NoLanes; // Stack that allows components to change the render lanes for its subtree
+ // This is a superset of the lanes we started working on at the root. The only
+ // case where it's different from `workInProgressRootRenderLanes` is when we
+ // enter a subtree that is hidden and needs to be unhidden: Suspense and
+ // Offscreen component.
+ //
+ // Most things in the work loop should deal with workInProgressRootRenderLanes.
+ // Most things in begin/complete phases should deal with subtreeRenderLanes.
+
+ var subtreeRenderLanes = NoLanes;
+ var subtreeRenderLanesCursor = createCursor(NoLanes); // Whether to root completed, errored, suspended, etc.
+
+ var workInProgressRootExitStatus = RootInProgress; // A fatal error, if one is thrown
+
+ var workInProgressRootFatalError = null; // "Included" lanes refer to lanes that were worked on during this render. It's
+ // slightly different than `renderLanes` because `renderLanes` can change as you
+ // enter and exit an Offscreen tree. This value is the combination of all render
+ // lanes for the entire render phase.
+
+ var workInProgressRootIncludedLanes = NoLanes; // The work left over by components that were visited during this render. Only
+ // includes unprocessed updates, not work in bailed out children.
+
+ var workInProgressRootSkippedLanes = NoLanes; // Lanes that were updated (in an interleaved event) during this render.
+
+ var workInProgressRootInterleavedUpdatedLanes = NoLanes; // Lanes that were updated during the render phase (*not* an interleaved event).
+
+ var workInProgressRootPingedLanes = NoLanes; // Errors that are thrown during the render phase.
+
+ var workInProgressRootConcurrentErrors = null; // These are errors that we recovered from without surfacing them to the UI.
+ // We will log them once the tree commits.
+
+ var workInProgressRootRecoverableErrors = null; // The most recent time we committed a fallback. This lets us ensure a train
+ // model where we don't commit new loading states in too quick succession.
+
+ var globalMostRecentFallbackTime = 0;
+ var FALLBACK_THROTTLE_MS = 500; // The absolute time for when we should start giving up on rendering
+ // more and prefer CPU suspense heuristics instead.
+
+ var workInProgressRootRenderTargetTime = Infinity; // How long a render is supposed to take before we start following CPU
+ // suspense heuristics and opt out of rendering more content.
+
+ var RENDER_TIMEOUT_MS = 500;
+ var workInProgressTransitions = null;
+ function resetRenderTimer() {
+ workInProgressRootRenderTargetTime = now() + RENDER_TIMEOUT_MS;
+ }
+ function getRenderTargetTime() {
+ return workInProgressRootRenderTargetTime;
+ }
+ var hasUncaughtError = false;
+ var firstUncaughtError = null;
+ var legacyErrorBoundariesThatAlreadyFailed = null; // Only used when enableProfilerNestedUpdateScheduledHook is true;
+ var rootDoesHavePassiveEffects = false;
+ var rootWithPendingPassiveEffects = null;
+ var pendingPassiveEffectsLanes = NoLanes;
+ var pendingPassiveProfilerEffects = [];
+ var pendingPassiveTransitions = null; // Use these to prevent an infinite loop of nested updates
+
+ var NESTED_UPDATE_LIMIT = 50;
+ var nestedUpdateCount = 0;
+ var rootWithNestedUpdates = null;
+ var isFlushingPassiveEffects = false;
+ var didScheduleUpdateDuringPassiveEffects = false;
+ var NESTED_PASSIVE_UPDATE_LIMIT = 50;
+ var nestedPassiveUpdateCount = 0;
+ var rootWithPassiveNestedUpdates = null; // If two updates are scheduled within the same event, we should treat their
+ // event times as simultaneous, even if the actual clock time has advanced
+ // between the first and second call.
+
+ var currentEventTime = NoTimestamp;
+ var currentEventTransitionLane = NoLanes;
+ var isRunningInsertionEffect = false;
+ function getWorkInProgressRoot() {
+ return workInProgressRoot;
+ }
+ function requestEventTime() {
+ if ((executionContext & (RenderContext | CommitContext)) !== NoContext) {
+ // We're inside React, so it's fine to read the actual time.
+ return now();
+ } // We're not inside React, so we may be in the middle of a browser event.
+
+ if (currentEventTime !== NoTimestamp) {
+ // Use the same start time for all updates until we enter React again.
+ return currentEventTime;
+ } // This is the first update since React yielded. Compute a new start time.
+
+ currentEventTime = now();
+ return currentEventTime;
+ }
+ function requestUpdateLane(fiber) {
+ // Special cases
+ var mode = fiber.mode;
+ if ((mode & ConcurrentMode) === NoMode) {
+ return SyncLane;
+ } else if ((executionContext & RenderContext) !== NoContext && workInProgressRootRenderLanes !== NoLanes) {
+ // This is a render phase update. These are not officially supported. The
+ // old behavior is to give this the same "thread" (lanes) as
+ // whatever is currently rendering. So if you call `setState` on a component
+ // that happens later in the same render, it will flush. Ideally, we want to
+ // remove the special case and treat them as if they came from an
+ // interleaved event. Regardless, this pattern is not officially supported.
+ // This behavior is only a fallback. The flag only exists until we can roll
+ // out the setState warning, since existing code might accidentally rely on
+ // the current behavior.
+ return pickArbitraryLane(workInProgressRootRenderLanes);
+ }
+ var isTransition = requestCurrentTransition() !== NoTransition;
+ if (isTransition) {
+ if (ReactCurrentBatchConfig$2.transition !== null) {
+ var transition = ReactCurrentBatchConfig$2.transition;
+ if (!transition._updatedFibers) {
+ transition._updatedFibers = new Set();
+ }
+ transition._updatedFibers.add(fiber);
+ } // The algorithm for assigning an update to a lane should be stable for all
+ // updates at the same priority within the same event. To do this, the
+ // inputs to the algorithm must be the same.
+ //
+ // The trick we use is to cache the first of each of these inputs within an
+ // event. Then reset the cached values once we can be sure the event is
+ // over. Our heuristic for that is whenever we enter a concurrent work loop.
+
+ if (currentEventTransitionLane === NoLane) {
+ // All transitions within the same event are assigned the same lane.
+ currentEventTransitionLane = claimNextTransitionLane();
+ }
+ return currentEventTransitionLane;
+ } // Updates originating inside certain React methods, like flushSync, have
+ // their priority set by tracking it with a context variable.
+ //
+ // The opaque type returned by the host config is internally a lane, so we can
+ // use that directly.
+ // TODO: Move this type conversion to the event priority module.
+
+ var updateLane = getCurrentUpdatePriority();
+ if (updateLane !== NoLane) {
+ return updateLane;
+ } // This update originated outside React. Ask the host environment for an
+ // appropriate priority, based on the type of event.
+ //
+ // The opaque type returned by the host config is internally a lane, so we can
+ // use that directly.
+ // TODO: Move this type conversion to the event priority module.
+
+ var eventLane = getCurrentEventPriority();
+ return eventLane;
+ }
+ function requestRetryLane(fiber) {
+ // This is a fork of `requestUpdateLane` designed specifically for Suspense
+ // "retries" — a special update that attempts to flip a Suspense boundary
+ // from its placeholder state to its primary/resolved state.
+ // Special cases
+ var mode = fiber.mode;
+ if ((mode & ConcurrentMode) === NoMode) {
+ return SyncLane;
+ }
+ return claimNextRetryLane();
+ }
+ function scheduleUpdateOnFiber(root, fiber, lane, eventTime) {
+ checkForNestedUpdates();
+ {
+ if (isRunningInsertionEffect) {
+ error("useInsertionEffect must not schedule updates.");
+ }
+ }
+ {
+ if (isFlushingPassiveEffects) {
+ didScheduleUpdateDuringPassiveEffects = true;
+ }
+ } // Mark that the root has a pending update.
+
+ markRootUpdated(root, lane, eventTime);
+ if ((executionContext & RenderContext) !== NoLanes && root === workInProgressRoot) {
+ // This update was dispatched during the render phase. This is a mistake
+ // if the update originates from user space (with the exception of local
+ // hook updates, which are handled differently and don't reach this
+ // function), but there are some internal React features that use this as
+ // an implementation detail, like selective hydration.
+ warnAboutRenderPhaseUpdatesInDEV(fiber); // Track lanes that were updated during the render phase
+ } else {
+ // This is a normal update, scheduled from outside the render phase. For
+ // example, during an input event.
+ {
+ if (isDevToolsPresent) {
+ addFiberToLanesMap(root, fiber, lane);
+ }
+ }
+ warnIfUpdatesNotWrappedWithActDEV(fiber);
+ if (root === workInProgressRoot) {
+ // Received an update to a tree that's in the middle of rendering. Mark
+ // that there was an interleaved update work on this root. Unless the
+ // `deferRenderPhaseUpdateToNextBatch` flag is off and this is a render
+ // phase update. In that case, we don't treat render phase updates as if
+ // they were interleaved, for backwards compat reasons.
+ if ((executionContext & RenderContext) === NoContext) {
+ workInProgressRootInterleavedUpdatedLanes = mergeLanes(workInProgressRootInterleavedUpdatedLanes, lane);
+ }
+ if (workInProgressRootExitStatus === RootSuspendedWithDelay) {
+ // The root already suspended with a delay, which means this render
+ // definitely won't finish. Since we have a new update, let's mark it as
+ // suspended now, right before marking the incoming update. This has the
+ // effect of interrupting the current render and switching to the update.
+ // TODO: Make sure this doesn't override pings that happen while we've
+ // already started rendering.
+ markRootSuspended$1(root, workInProgressRootRenderLanes);
+ }
+ }
+ ensureRootIsScheduled(root, eventTime);
+ if (lane === SyncLane && executionContext === NoContext && (fiber.mode & ConcurrentMode) === NoMode &&
+ // Treat `act` as if it's inside `batchedUpdates`, even in legacy mode.
+ !ReactCurrentActQueue$1.isBatchingLegacy) {
+ // Flush the synchronous work now, unless we're already working or inside
+ // a batch. This is intentionally inside scheduleUpdateOnFiber instead of
+ // scheduleCallbackForFiber to preserve the ability to schedule a callback
+ // without immediately flushing it. We only do this for user-initiated
+ // updates, to preserve historical behavior of legacy mode.
+ resetRenderTimer();
+ flushSyncCallbacksOnlyInLegacyMode();
+ }
+ }
+ }
+ function isUnsafeClassRenderPhaseUpdate(fiber) {
+ // Check if this is a render phase update. Only called by class components,
+ // which special (deprecated) behavior for UNSAFE_componentWillReceive props.
+ return (
+ // TODO: Remove outdated deferRenderPhaseUpdateToNextBatch experiment. We
+ // decided not to enable it.
+ (executionContext & RenderContext) !== NoContext
+ );
+ } // Use this function to schedule a task for a root. There's only one task per
+ // root; if a task was already scheduled, we'll check to make sure the priority
+ // of the existing task is the same as the priority of the next level that the
+ // root has work on. This function is called on every update, and right before
+ // exiting a task.
+
+ function ensureRootIsScheduled(root, currentTime) {
+ var existingCallbackNode = root.callbackNode; // Check if any lanes are being starved by other work. If so, mark them as
+ // expired so we know to work on those next.
+
+ markStarvedLanesAsExpired(root, currentTime); // Determine the next lanes to work on, and their priority.
+
+ var nextLanes = getNextLanes(root, root === workInProgressRoot ? workInProgressRootRenderLanes : NoLanes);
+ if (nextLanes === NoLanes) {
+ // Special case: There's nothing to work on.
+ if (existingCallbackNode !== null) {
+ cancelCallback$1(existingCallbackNode);
+ }
+ root.callbackNode = null;
+ root.callbackPriority = NoLane;
+ return;
+ } // We use the highest priority lane to represent the priority of the callback.
+
+ var newCallbackPriority = getHighestPriorityLane(nextLanes); // Check if there's an existing task. We may be able to reuse it.
+
+ var existingCallbackPriority = root.callbackPriority;
+ if (existingCallbackPriority === newCallbackPriority &&
+ // Special case related to `act`. If the currently scheduled task is a
+ // Scheduler task, rather than an `act` task, cancel it and re-scheduled
+ // on the `act` queue.
+ !(ReactCurrentActQueue$1.current !== null && existingCallbackNode !== fakeActCallbackNode)) {
+ {
+ // If we're going to re-use an existing task, it needs to exist.
+ // Assume that discrete update microtasks are non-cancellable and null.
+ // TODO: Temporary until we confirm this warning is not fired.
+ if (existingCallbackNode == null && existingCallbackPriority !== SyncLane) {
+ error("Expected scheduled callback to exist. This error is likely caused by a bug in React. Please file an issue.");
+ }
+ } // The priority hasn't changed. We can reuse the existing task. Exit.
+
+ return;
+ }
+ if (existingCallbackNode != null) {
+ // Cancel the existing callback. We'll schedule a new one below.
+ cancelCallback$1(existingCallbackNode);
+ } // Schedule a new callback.
+
+ var newCallbackNode;
+ if (newCallbackPriority === SyncLane) {
+ // Special case: Sync React callbacks are scheduled on a special
+ // internal queue
+ if (root.tag === LegacyRoot) {
+ if (ReactCurrentActQueue$1.isBatchingLegacy !== null) {
+ ReactCurrentActQueue$1.didScheduleLegacyUpdate = true;
+ }
+ scheduleLegacySyncCallback(performSyncWorkOnRoot.bind(null, root));
+ } else {
+ scheduleSyncCallback(performSyncWorkOnRoot.bind(null, root));
+ }
+ {
+ // Flush the queue in an Immediate task.
+ scheduleCallback$1(ImmediatePriority, flushSyncCallbacks);
+ }
+ newCallbackNode = null;
+ } else {
+ var schedulerPriorityLevel;
+ switch (lanesToEventPriority(nextLanes)) {
+ case DiscreteEventPriority:
+ schedulerPriorityLevel = ImmediatePriority;
+ break;
+ case ContinuousEventPriority:
+ schedulerPriorityLevel = UserBlockingPriority;
+ break;
+ case DefaultEventPriority:
+ schedulerPriorityLevel = NormalPriority;
+ break;
+ case IdleEventPriority:
+ schedulerPriorityLevel = IdlePriority;
+ break;
+ default:
+ schedulerPriorityLevel = NormalPriority;
+ break;
+ }
+ newCallbackNode = scheduleCallback$1(schedulerPriorityLevel, performConcurrentWorkOnRoot.bind(null, root));
+ }
+ root.callbackPriority = newCallbackPriority;
+ root.callbackNode = newCallbackNode;
+ } // This is the entry point for every concurrent task, i.e. anything that
+ // goes through Scheduler.
+
+ function performConcurrentWorkOnRoot(root, didTimeout) {
+ {
+ resetNestedUpdateFlag();
+ } // Since we know we're in a React event, we can clear the current
+ // event time. The next update will compute a new event time.
+
+ currentEventTime = NoTimestamp;
+ currentEventTransitionLane = NoLanes;
+ if ((executionContext & (RenderContext | CommitContext)) !== NoContext) {
+ throw new Error("Should not already be working.");
+ } // Flush any pending passive effects before deciding which lanes to work on,
+ // in case they schedule additional work.
+
+ var originalCallbackNode = root.callbackNode;
+ var didFlushPassiveEffects = flushPassiveEffects();
+ if (didFlushPassiveEffects) {
+ // Something in the passive effect phase may have canceled the current task.
+ // Check if the task node for this root was changed.
+ if (root.callbackNode !== originalCallbackNode) {
+ // The current task was canceled. Exit. We don't need to call
+ // `ensureRootIsScheduled` because the check above implies either that
+ // there's a new task, or that there's no remaining work on this root.
+ return null;
+ }
+ } // Determine the next lanes to work on, using the fields stored
+ // on the root.
+
+ var lanes = getNextLanes(root, root === workInProgressRoot ? workInProgressRootRenderLanes : NoLanes);
+ if (lanes === NoLanes) {
+ // Defensive coding. This is never expected to happen.
+ return null;
+ } // We disable time-slicing in some cases: if the work has been CPU-bound
+ // for too long ("expired" work, to prevent starvation), or we're in
+ // sync-updates-by-default mode.
+ // TODO: We only check `didTimeout` defensively, to account for a Scheduler
+ // bug we're still investigating. Once the bug in Scheduler is fixed,
+ // we can remove this, since we track expiration ourselves.
+
+ var shouldTimeSlice = !includesBlockingLane(root, lanes) && !includesExpiredLane(root, lanes) && !didTimeout;
+ var exitStatus = shouldTimeSlice ? renderRootConcurrent(root, lanes) : renderRootSync(root, lanes);
+ if (exitStatus !== RootInProgress) {
+ if (exitStatus === RootErrored) {
+ // If something threw an error, try rendering one more time. We'll
+ // render synchronously to block concurrent data mutations, and we'll
+ // includes all pending updates are included. If it still fails after
+ // the second attempt, we'll give up and commit the resulting tree.
+ var errorRetryLanes = getLanesToRetrySynchronouslyOnError(root);
+ if (errorRetryLanes !== NoLanes) {
+ lanes = errorRetryLanes;
+ exitStatus = recoverFromConcurrentError(root, errorRetryLanes);
+ }
+ }
+ if (exitStatus === RootFatalErrored) {
+ var fatalError = workInProgressRootFatalError;
+ prepareFreshStack(root, NoLanes);
+ markRootSuspended$1(root, lanes);
+ ensureRootIsScheduled(root, now());
+ throw fatalError;
+ }
+ if (exitStatus === RootDidNotComplete) {
+ // The render unwound without completing the tree. This happens in special
+ // cases where need to exit the current render without producing a
+ // consistent tree or committing.
+ //
+ // This should only happen during a concurrent render, not a discrete or
+ // synchronous update. We should have already checked for this when we
+ // unwound the stack.
+ markRootSuspended$1(root, lanes);
+ } else {
+ // The render completed.
+ // Check if this render may have yielded to a concurrent event, and if so,
+ // confirm that any newly rendered stores are consistent.
+ // TODO: It's possible that even a concurrent render may never have yielded
+ // to the main thread, if it was fast enough, or if it expired. We could
+ // skip the consistency check in that case, too.
+ var renderWasConcurrent = !includesBlockingLane(root, lanes);
+ var finishedWork = root.current.alternate;
+ if (renderWasConcurrent && !isRenderConsistentWithExternalStores(finishedWork)) {
+ // A store was mutated in an interleaved event. Render again,
+ // synchronously, to block further mutations.
+ exitStatus = renderRootSync(root, lanes); // We need to check again if something threw
+
+ if (exitStatus === RootErrored) {
+ var _errorRetryLanes = getLanesToRetrySynchronouslyOnError(root);
+ if (_errorRetryLanes !== NoLanes) {
+ lanes = _errorRetryLanes;
+ exitStatus = recoverFromConcurrentError(root, _errorRetryLanes); // We assume the tree is now consistent because we didn't yield to any
+ // concurrent events.
+ }
+ }
+ if (exitStatus === RootFatalErrored) {
+ var _fatalError = workInProgressRootFatalError;
+ prepareFreshStack(root, NoLanes);
+ markRootSuspended$1(root, lanes);
+ ensureRootIsScheduled(root, now());
+ throw _fatalError;
+ }
+ } // We now have a consistent tree. The next step is either to commit it,
+ // or, if something suspended, wait to commit it after a timeout.
+
+ root.finishedWork = finishedWork;
+ root.finishedLanes = lanes;
+ finishConcurrentRender(root, exitStatus, lanes);
+ }
+ }
+ ensureRootIsScheduled(root, now());
+ if (root.callbackNode === originalCallbackNode) {
+ // The task node scheduled for this root is the same one that's
+ // currently executed. Need to return a continuation.
+ return performConcurrentWorkOnRoot.bind(null, root);
+ }
+ return null;
+ }
+ function recoverFromConcurrentError(root, errorRetryLanes) {
+ // If an error occurred during hydration, discard server response and fall
+ // back to client side render.
+ // Before rendering again, save the errors from the previous attempt.
+ var errorsFromFirstAttempt = workInProgressRootConcurrentErrors;
+ if (isRootDehydrated(root)) {
+ // The shell failed to hydrate. Set a flag to force a client rendering
+ // during the next attempt. To do this, we call prepareFreshStack now
+ // to create the root work-in-progress fiber. This is a bit weird in terms
+ // of factoring, because it relies on renderRootSync not calling
+ // prepareFreshStack again in the call below, which happens because the
+ // root and lanes haven't changed.
+ //
+ // TODO: I think what we should do is set ForceClientRender inside
+ // throwException, like we do for nested Suspense boundaries. The reason
+ // it's here instead is so we can switch to the synchronous work loop, too.
+ // Something to consider for a future refactor.
+ var rootWorkInProgress = prepareFreshStack(root, errorRetryLanes);
+ rootWorkInProgress.flags |= ForceClientRender;
+ {
+ errorHydratingContainer(root.containerInfo);
+ }
+ }
+ var exitStatus = renderRootSync(root, errorRetryLanes);
+ if (exitStatus !== RootErrored) {
+ // Successfully finished rendering on retry
+ // The errors from the failed first attempt have been recovered. Add
+ // them to the collection of recoverable errors. We'll log them in the
+ // commit phase.
+ var errorsFromSecondAttempt = workInProgressRootRecoverableErrors;
+ workInProgressRootRecoverableErrors = errorsFromFirstAttempt; // The errors from the second attempt should be queued after the errors
+ // from the first attempt, to preserve the causal sequence.
+
+ if (errorsFromSecondAttempt !== null) {
+ queueRecoverableErrors(errorsFromSecondAttempt);
+ }
+ }
+ return exitStatus;
+ }
+ function queueRecoverableErrors(errors) {
+ if (workInProgressRootRecoverableErrors === null) {
+ workInProgressRootRecoverableErrors = errors;
+ } else {
+ workInProgressRootRecoverableErrors.push.apply(workInProgressRootRecoverableErrors, errors);
+ }
+ }
+ function finishConcurrentRender(root, exitStatus, lanes) {
+ switch (exitStatus) {
+ case RootInProgress:
+ case RootFatalErrored:
+ {
+ throw new Error("Root did not complete. This is a bug in React.");
+ }
+ // Flow knows about invariant, so it complains if I add a break
+ // statement, but eslint doesn't know about invariant, so it complains
+ // if I do. eslint-disable-next-line no-fallthrough
+
+ case RootErrored:
+ {
+ // We should have already attempted to retry this tree. If we reached
+ // this point, it errored again. Commit it.
+ commitRoot(root, workInProgressRootRecoverableErrors, workInProgressTransitions);
+ break;
+ }
+ case RootSuspended:
+ {
+ markRootSuspended$1(root, lanes); // We have an acceptable loading state. We need to figure out if we
+ // should immediately commit it or wait a bit.
+
+ if (includesOnlyRetries(lanes) &&
+ // do not delay if we're inside an act() scope
+ !shouldForceFlushFallbacksInDEV()) {
+ // This render only included retries, no updates. Throttle committing
+ // retries so that we don't show too many loading states too quickly.
+ var msUntilTimeout = globalMostRecentFallbackTime + FALLBACK_THROTTLE_MS - now(); // Don't bother with a very short suspense time.
+
+ if (msUntilTimeout > 10) {
+ var nextLanes = getNextLanes(root, NoLanes);
+ if (nextLanes !== NoLanes) {
+ // There's additional work on this root.
+ break;
+ }
+ var suspendedLanes = root.suspendedLanes;
+ if (!isSubsetOfLanes(suspendedLanes, lanes)) {
+ // We should prefer to render the fallback of at the last
+ // suspended level. Ping the last suspended level to try
+ // rendering it again.
+ // FIXME: What if the suspended lanes are Idle? Should not restart.
+ var eventTime = requestEventTime();
+ markRootPinged(root, suspendedLanes);
+ break;
+ } // The render is suspended, it hasn't timed out, and there's no
+ // lower priority work to do. Instead of committing the fallback
+ // immediately, wait for more data to arrive.
+
+ root.timeoutHandle = scheduleTimeout(commitRoot.bind(null, root, workInProgressRootRecoverableErrors, workInProgressTransitions), msUntilTimeout);
+ break;
+ }
+ } // The work expired. Commit immediately.
+
+ commitRoot(root, workInProgressRootRecoverableErrors, workInProgressTransitions);
+ break;
+ }
+ case RootSuspendedWithDelay:
+ {
+ markRootSuspended$1(root, lanes);
+ if (includesOnlyTransitions(lanes)) {
+ // This is a transition, so we should exit without committing a
+ // placeholder and without scheduling a timeout. Delay indefinitely
+ // until we receive more data.
+ break;
+ }
+ if (!shouldForceFlushFallbacksInDEV()) {
+ // This is not a transition, but we did trigger an avoided state.
+ // Schedule a placeholder to display after a short delay, using the Just
+ // Noticeable Difference.
+ // TODO: Is the JND optimization worth the added complexity? If this is
+ // the only reason we track the event time, then probably not.
+ // Consider removing.
+ var mostRecentEventTime = getMostRecentEventTime(root, lanes);
+ var eventTimeMs = mostRecentEventTime;
+ var timeElapsedMs = now() - eventTimeMs;
+ var _msUntilTimeout = jnd(timeElapsedMs) - timeElapsedMs; // Don't bother with a very short suspense time.
+
+ if (_msUntilTimeout > 10) {
+ // Instead of committing the fallback immediately, wait for more data
+ // to arrive.
+ root.timeoutHandle = scheduleTimeout(commitRoot.bind(null, root, workInProgressRootRecoverableErrors, workInProgressTransitions), _msUntilTimeout);
+ break;
+ }
+ } // Commit the placeholder.
+
+ commitRoot(root, workInProgressRootRecoverableErrors, workInProgressTransitions);
+ break;
+ }
+ case RootCompleted:
+ {
+ // The work completed. Ready to commit.
+ commitRoot(root, workInProgressRootRecoverableErrors, workInProgressTransitions);
+ break;
+ }
+ default:
+ {
+ throw new Error("Unknown root exit status.");
+ }
+ }
+ }
+ function isRenderConsistentWithExternalStores(finishedWork) {
+ // Search the rendered tree for external store reads, and check whether the
+ // stores were mutated in a concurrent event. Intentionally using an iterative
+ // loop instead of recursion so we can exit early.
+ var node = finishedWork;
+ while (true) {
+ if (node.flags & StoreConsistency) {
+ var updateQueue = node.updateQueue;
+ if (updateQueue !== null) {
+ var checks = updateQueue.stores;
+ if (checks !== null) {
+ for (var i = 0; i < checks.length; i++) {
+ var check = checks[i];
+ var getSnapshot = check.getSnapshot;
+ var renderedValue = check.value;
+ try {
+ if (!objectIs(getSnapshot(), renderedValue)) {
+ // Found an inconsistent store.
+ return false;
+ }
+ } catch (error) {
+ // If `getSnapshot` throws, return `false`. This will schedule
+ // a re-render, and the error will be rethrown during render.
+ return false;
+ }
+ }
+ }
+ }
+ }
+ var child = node.child;
+ if (node.subtreeFlags & StoreConsistency && child !== null) {
+ child.return = node;
+ node = child;
+ continue;
+ }
+ if (node === finishedWork) {
+ return true;
+ }
+ while (node.sibling === null) {
+ if (node.return === null || node.return === finishedWork) {
+ return true;
+ }
+ node = node.return;
+ }
+ node.sibling.return = node.return;
+ node = node.sibling;
+ } // Flow doesn't know this is unreachable, but eslint does
+ // eslint-disable-next-line no-unreachable
+
+ return true;
+ }
+ function markRootSuspended$1(root, suspendedLanes) {
+ // When suspending, we should always exclude lanes that were pinged or (more
+ // rarely, since we try to avoid it) updated during the render phase.
+ // TODO: Lol maybe there's a better way to factor this besides this
+ // obnoxiously named function :)
+ suspendedLanes = removeLanes(suspendedLanes, workInProgressRootPingedLanes);
+ suspendedLanes = removeLanes(suspendedLanes, workInProgressRootInterleavedUpdatedLanes);
+ markRootSuspended(root, suspendedLanes);
+ } // This is the entry point for synchronous tasks that don't go
+ // through Scheduler
+
+ function performSyncWorkOnRoot(root) {
+ {
+ syncNestedUpdateFlag();
+ }
+ if ((executionContext & (RenderContext | CommitContext)) !== NoContext) {
+ throw new Error("Should not already be working.");
+ }
+ flushPassiveEffects();
+ var lanes = getNextLanes(root, NoLanes);
+ if (!includesSomeLane(lanes, SyncLane)) {
+ // There's no remaining sync work left.
+ ensureRootIsScheduled(root, now());
+ return null;
+ }
+ var exitStatus = renderRootSync(root, lanes);
+ if (root.tag !== LegacyRoot && exitStatus === RootErrored) {
+ // If something threw an error, try rendering one more time. We'll render
+ // synchronously to block concurrent data mutations, and we'll includes
+ // all pending updates are included. If it still fails after the second
+ // attempt, we'll give up and commit the resulting tree.
+ var errorRetryLanes = getLanesToRetrySynchronouslyOnError(root);
+ if (errorRetryLanes !== NoLanes) {
+ lanes = errorRetryLanes;
+ exitStatus = recoverFromConcurrentError(root, errorRetryLanes);
+ }
+ }
+ if (exitStatus === RootFatalErrored) {
+ var fatalError = workInProgressRootFatalError;
+ prepareFreshStack(root, NoLanes);
+ markRootSuspended$1(root, lanes);
+ ensureRootIsScheduled(root, now());
+ throw fatalError;
+ }
+ if (exitStatus === RootDidNotComplete) {
+ throw new Error("Root did not complete. This is a bug in React.");
+ } // We now have a consistent tree. Because this is a sync render, we
+ // will commit it even if something suspended.
+
+ var finishedWork = root.current.alternate;
+ root.finishedWork = finishedWork;
+ root.finishedLanes = lanes;
+ commitRoot(root, workInProgressRootRecoverableErrors, workInProgressTransitions); // Before exiting, make sure there's a callback scheduled for the next
+ // pending level.
+
+ ensureRootIsScheduled(root, now());
+ return null;
+ }
+ function batchedUpdates$1(fn, a) {
+ var prevExecutionContext = executionContext;
+ executionContext |= BatchedContext;
+ try {
+ return fn(a);
+ } finally {
+ executionContext = prevExecutionContext; // If there were legacy sync updates, flush them at the end of the outer
+ // most batchedUpdates-like method.
+
+ if (executionContext === NoContext &&
+ // Treat `act` as if it's inside `batchedUpdates`, even in legacy mode.
+ !ReactCurrentActQueue$1.isBatchingLegacy) {
+ resetRenderTimer();
+ flushSyncCallbacksOnlyInLegacyMode();
+ }
+ }
+ }
+ // Warning, this opts-out of checking the function body.
+
+ // eslint-disable-next-line no-redeclare
+ function flushSync(fn) {
+ // In legacy mode, we flush pending passive effects at the beginning of the
+ // next event, not at the end of the previous one.
+ if (rootWithPendingPassiveEffects !== null && rootWithPendingPassiveEffects.tag === LegacyRoot && (executionContext & (RenderContext | CommitContext)) === NoContext) {
+ flushPassiveEffects();
+ }
+ var prevExecutionContext = executionContext;
+ executionContext |= BatchedContext;
+ var prevTransition = ReactCurrentBatchConfig$2.transition;
+ var previousPriority = getCurrentUpdatePriority();
+ try {
+ ReactCurrentBatchConfig$2.transition = null;
+ setCurrentUpdatePriority(DiscreteEventPriority);
+ if (fn) {
+ return fn();
+ } else {
+ return undefined;
+ }
+ } finally {
+ setCurrentUpdatePriority(previousPriority);
+ ReactCurrentBatchConfig$2.transition = prevTransition;
+ executionContext = prevExecutionContext; // Flush the immediate callbacks that were scheduled during this batch.
+ // Note that this will happen even if batchedUpdates is higher up
+ // the stack.
+
+ if ((executionContext & (RenderContext | CommitContext)) === NoContext) {
+ flushSyncCallbacks();
+ }
+ }
+ }
+ function pushRenderLanes(fiber, lanes) {
+ push(subtreeRenderLanesCursor, subtreeRenderLanes, fiber);
+ subtreeRenderLanes = mergeLanes(subtreeRenderLanes, lanes);
+ workInProgressRootIncludedLanes = mergeLanes(workInProgressRootIncludedLanes, lanes);
+ }
+ function popRenderLanes(fiber) {
+ subtreeRenderLanes = subtreeRenderLanesCursor.current;
+ pop(subtreeRenderLanesCursor, fiber);
+ }
+ function prepareFreshStack(root, lanes) {
+ root.finishedWork = null;
+ root.finishedLanes = NoLanes;
+ var timeoutHandle = root.timeoutHandle;
+ if (timeoutHandle !== noTimeout) {
+ // The root previous suspended and scheduled a timeout to commit a fallback
+ // state. Now that we have additional work, cancel the timeout.
+ root.timeoutHandle = noTimeout; // $FlowFixMe Complains noTimeout is not a TimeoutID, despite the check above
+
+ cancelTimeout(timeoutHandle);
+ }
+ if (workInProgress !== null) {
+ var interruptedWork = workInProgress.return;
+ while (interruptedWork !== null) {
+ var current = interruptedWork.alternate;
+ unwindInterruptedWork(current, interruptedWork);
+ interruptedWork = interruptedWork.return;
+ }
+ }
+ workInProgressRoot = root;
+ var rootWorkInProgress = createWorkInProgress(root.current, null);
+ workInProgress = rootWorkInProgress;
+ workInProgressRootRenderLanes = subtreeRenderLanes = workInProgressRootIncludedLanes = lanes;
+ workInProgressRootExitStatus = RootInProgress;
+ workInProgressRootFatalError = null;
+ workInProgressRootSkippedLanes = NoLanes;
+ workInProgressRootInterleavedUpdatedLanes = NoLanes;
+ workInProgressRootPingedLanes = NoLanes;
+ workInProgressRootConcurrentErrors = null;
+ workInProgressRootRecoverableErrors = null;
+ finishQueueingConcurrentUpdates();
+ {
+ ReactStrictModeWarnings.discardPendingWarnings();
+ }
+ return rootWorkInProgress;
+ }
+ function handleError(root, thrownValue) {
+ do {
+ var erroredWork = workInProgress;
+ try {
+ // Reset module-level state that was set during the render phase.
+ resetContextDependencies();
+ resetHooksAfterThrow();
+ resetCurrentFiber(); // TODO: I found and added this missing line while investigating a
+ // separate issue. Write a regression test using string refs.
+
+ ReactCurrentOwner$2.current = null;
+ if (erroredWork === null || erroredWork.return === null) {
+ // Expected to be working on a non-root fiber. This is a fatal error
+ // because there's no ancestor that can handle it; the root is
+ // supposed to capture all errors that weren't caught by an error
+ // boundary.
+ workInProgressRootExitStatus = RootFatalErrored;
+ workInProgressRootFatalError = thrownValue; // Set `workInProgress` to null. This represents advancing to the next
+ // sibling, or the parent if there are no siblings. But since the root
+ // has no siblings nor a parent, we set it to null. Usually this is
+ // handled by `completeUnitOfWork` or `unwindWork`, but since we're
+ // intentionally not calling those, we need set it here.
+ // TODO: Consider calling `unwindWork` to pop the contexts.
+
+ workInProgress = null;
+ return;
+ }
+ if (enableProfilerTimer && erroredWork.mode & ProfileMode) {
+ // Record the time spent rendering before an error was thrown. This
+ // avoids inaccurate Profiler durations in the case of a
+ // suspended render.
+ stopProfilerTimerIfRunningAndRecordDelta(erroredWork, true);
+ }
+ if (enableSchedulingProfiler) {
+ markComponentRenderStopped();
+ if (thrownValue !== null && typeof thrownValue === "object" && typeof thrownValue.then === "function") {
+ var wakeable = thrownValue;
+ markComponentSuspended(erroredWork, wakeable, workInProgressRootRenderLanes);
+ } else {
+ markComponentErrored(erroredWork, thrownValue, workInProgressRootRenderLanes);
+ }
+ }
+ throwException(root, erroredWork.return, erroredWork, thrownValue, workInProgressRootRenderLanes);
+ completeUnitOfWork(erroredWork);
+ } catch (yetAnotherThrownValue) {
+ // Something in the return path also threw.
+ thrownValue = yetAnotherThrownValue;
+ if (workInProgress === erroredWork && erroredWork !== null) {
+ // If this boundary has already errored, then we had trouble processing
+ // the error. Bubble it to the next boundary.
+ erroredWork = erroredWork.return;
+ workInProgress = erroredWork;
+ } else {
+ erroredWork = workInProgress;
+ }
+ continue;
+ } // Return to the normal work loop.
+
+ return;
+ } while (true);
+ }
+ function pushDispatcher() {
+ var prevDispatcher = ReactCurrentDispatcher$2.current;
+ ReactCurrentDispatcher$2.current = ContextOnlyDispatcher;
+ if (prevDispatcher === null) {
+ // The React isomorphic package does not include a default dispatcher.
+ // Instead the first renderer will lazily attach one, in order to give
+ // nicer error messages.
+ return ContextOnlyDispatcher;
+ } else {
+ return prevDispatcher;
+ }
+ }
+ function popDispatcher(prevDispatcher) {
+ ReactCurrentDispatcher$2.current = prevDispatcher;
+ }
+ function markCommitTimeOfFallback() {
+ globalMostRecentFallbackTime = now();
+ }
+ function markSkippedUpdateLanes(lane) {
+ workInProgressRootSkippedLanes = mergeLanes(lane, workInProgressRootSkippedLanes);
+ }
+ function renderDidSuspend() {
+ if (workInProgressRootExitStatus === RootInProgress) {
+ workInProgressRootExitStatus = RootSuspended;
+ }
+ }
+ function renderDidSuspendDelayIfPossible() {
+ if (workInProgressRootExitStatus === RootInProgress || workInProgressRootExitStatus === RootSuspended || workInProgressRootExitStatus === RootErrored) {
+ workInProgressRootExitStatus = RootSuspendedWithDelay;
+ } // Check if there are updates that we skipped tree that might have unblocked
+ // this render.
+
+ if (workInProgressRoot !== null && (includesNonIdleWork(workInProgressRootSkippedLanes) || includesNonIdleWork(workInProgressRootInterleavedUpdatedLanes))) {
+ // Mark the current render as suspended so that we switch to working on
+ // the updates that were skipped. Usually we only suspend at the end of
+ // the render phase.
+ // TODO: We should probably always mark the root as suspended immediately
+ // (inside this function), since by suspending at the end of the render
+ // phase introduces a potential mistake where we suspend lanes that were
+ // pinged or updated while we were rendering.
+ markRootSuspended$1(workInProgressRoot, workInProgressRootRenderLanes);
+ }
+ }
+ function renderDidError(error) {
+ if (workInProgressRootExitStatus !== RootSuspendedWithDelay) {
+ workInProgressRootExitStatus = RootErrored;
+ }
+ if (workInProgressRootConcurrentErrors === null) {
+ workInProgressRootConcurrentErrors = [error];
+ } else {
+ workInProgressRootConcurrentErrors.push(error);
+ }
+ } // Called during render to determine if anything has suspended.
+ // Returns false if we're not sure.
+
+ function renderHasNotSuspendedYet() {
+ // If something errored or completed, we can't really be sure,
+ // so those are false.
+ return workInProgressRootExitStatus === RootInProgress;
+ }
+ function renderRootSync(root, lanes) {
+ var prevExecutionContext = executionContext;
+ executionContext |= RenderContext;
+ var prevDispatcher = pushDispatcher(); // If the root or lanes have changed, throw out the existing stack
+ // and prepare a fresh one. Otherwise we'll continue where we left off.
+
+ if (workInProgressRoot !== root || workInProgressRootRenderLanes !== lanes) {
+ {
+ if (isDevToolsPresent) {
+ var memoizedUpdaters = root.memoizedUpdaters;
+ if (memoizedUpdaters.size > 0) {
+ restorePendingUpdaters(root, workInProgressRootRenderLanes);
+ memoizedUpdaters.clear();
+ } // At this point, move Fibers that scheduled the upcoming work from the Map to the Set.
+ // If we bailout on this work, we'll move them back (like above).
+ // It's important to move them now in case the work spawns more work at the same priority with different updaters.
+ // That way we can keep the current update and future updates separate.
+
+ movePendingFibersToMemoized(root, lanes);
+ }
+ }
+ workInProgressTransitions = getTransitionsForLanes();
+ prepareFreshStack(root, lanes);
+ }
+ do {
+ try {
+ workLoopSync();
+ break;
+ } catch (thrownValue) {
+ handleError(root, thrownValue);
+ }
+ } while (true);
+ resetContextDependencies();
+ executionContext = prevExecutionContext;
+ popDispatcher(prevDispatcher);
+ if (workInProgress !== null) {
+ // This is a sync render, so we should have finished the whole tree.
+ throw new Error("Cannot commit an incomplete root. This error is likely caused by a " + "bug in React. Please file an issue.");
+ }
+ workInProgressRoot = null;
+ workInProgressRootRenderLanes = NoLanes;
+ return workInProgressRootExitStatus;
+ } // The work loop is an extremely hot path. Tell Closure not to inline it.
+
+ /** @noinline */
+
+ function workLoopSync() {
+ // Already timed out, so perform work without checking if we need to yield.
+ while (workInProgress !== null) {
+ performUnitOfWork(workInProgress);
+ }
+ }
+ function renderRootConcurrent(root, lanes) {
+ var prevExecutionContext = executionContext;
+ executionContext |= RenderContext;
+ var prevDispatcher = pushDispatcher(); // If the root or lanes have changed, throw out the existing stack
+ // and prepare a fresh one. Otherwise we'll continue where we left off.
+
+ if (workInProgressRoot !== root || workInProgressRootRenderLanes !== lanes) {
+ {
+ if (isDevToolsPresent) {
+ var memoizedUpdaters = root.memoizedUpdaters;
+ if (memoizedUpdaters.size > 0) {
+ restorePendingUpdaters(root, workInProgressRootRenderLanes);
+ memoizedUpdaters.clear();
+ } // At this point, move Fibers that scheduled the upcoming work from the Map to the Set.
+ // If we bailout on this work, we'll move them back (like above).
+ // It's important to move them now in case the work spawns more work at the same priority with different updaters.
+ // That way we can keep the current update and future updates separate.
+
+ movePendingFibersToMemoized(root, lanes);
+ }
+ }
+ workInProgressTransitions = getTransitionsForLanes();
+ resetRenderTimer();
+ prepareFreshStack(root, lanes);
+ }
+ do {
+ try {
+ workLoopConcurrent();
+ break;
+ } catch (thrownValue) {
+ handleError(root, thrownValue);
+ }
+ } while (true);
+ resetContextDependencies();
+ popDispatcher(prevDispatcher);
+ executionContext = prevExecutionContext;
+ if (workInProgress !== null) {
+ return RootInProgress;
+ } else {
+ workInProgressRoot = null;
+ workInProgressRootRenderLanes = NoLanes; // Return the final exit status.
+
+ return workInProgressRootExitStatus;
+ }
+ }
+ /** @noinline */
+
+ function workLoopConcurrent() {
+ // Perform work until Scheduler asks us to yield
+ while (workInProgress !== null && !shouldYield()) {
+ performUnitOfWork(workInProgress);
+ }
+ }
+ function performUnitOfWork(unitOfWork) {
+ // The current, flushed, state of this fiber is the alternate. Ideally
+ // nothing should rely on this, but relying on it here means that we don't
+ // need an additional field on the work in progress.
+ var current = unitOfWork.alternate;
+ setCurrentFiber(unitOfWork);
+ var next;
+ if ((unitOfWork.mode & ProfileMode) !== NoMode) {
+ startProfilerTimer(unitOfWork);
+ next = beginWork$1(current, unitOfWork, subtreeRenderLanes);
+ stopProfilerTimerIfRunningAndRecordDelta(unitOfWork, true);
+ } else {
+ next = beginWork$1(current, unitOfWork, subtreeRenderLanes);
+ }
+ resetCurrentFiber();
+ unitOfWork.memoizedProps = unitOfWork.pendingProps;
+ if (next === null) {
+ // If this doesn't spawn new work, complete the current work.
+ completeUnitOfWork(unitOfWork);
+ } else {
+ workInProgress = next;
+ }
+ ReactCurrentOwner$2.current = null;
+ }
+ function completeUnitOfWork(unitOfWork) {
+ // Attempt to complete the current unit of work, then move to the next
+ // sibling. If there are no more siblings, return to the parent fiber.
+ var completedWork = unitOfWork;
+ do {
+ // The current, flushed, state of this fiber is the alternate. Ideally
+ // nothing should rely on this, but relying on it here means that we don't
+ // need an additional field on the work in progress.
+ var current = completedWork.alternate;
+ var returnFiber = completedWork.return; // Check if the work completed or if something threw.
+
+ if ((completedWork.flags & Incomplete) === NoFlags) {
+ setCurrentFiber(completedWork);
+ var next = void 0;
+ if ((completedWork.mode & ProfileMode) === NoMode) {
+ next = completeWork(current, completedWork, subtreeRenderLanes);
+ } else {
+ startProfilerTimer(completedWork);
+ next = completeWork(current, completedWork, subtreeRenderLanes); // Update render duration assuming we didn't error.
+
+ stopProfilerTimerIfRunningAndRecordDelta(completedWork, false);
+ }
+ resetCurrentFiber();
+ if (next !== null) {
+ // Completing this fiber spawned new work. Work on that next.
+ workInProgress = next;
+ return;
+ }
+ } else {
+ // This fiber did not complete because something threw. Pop values off
+ // the stack without entering the complete phase. If this is a boundary,
+ // capture values if possible.
+ var _next = unwindWork(current, completedWork); // Because this fiber did not complete, don't reset its lanes.
+
+ if (_next !== null) {
+ // If completing this work spawned new work, do that next. We'll come
+ // back here again.
+ // Since we're restarting, remove anything that is not a host effect
+ // from the effect tag.
+ _next.flags &= HostEffectMask;
+ workInProgress = _next;
+ return;
+ }
+ if ((completedWork.mode & ProfileMode) !== NoMode) {
+ // Record the render duration for the fiber that errored.
+ stopProfilerTimerIfRunningAndRecordDelta(completedWork, false); // Include the time spent working on failed children before continuing.
+
+ var actualDuration = completedWork.actualDuration;
+ var child = completedWork.child;
+ while (child !== null) {
+ actualDuration += child.actualDuration;
+ child = child.sibling;
+ }
+ completedWork.actualDuration = actualDuration;
+ }
+ if (returnFiber !== null) {
+ // Mark the parent fiber as incomplete and clear its subtree flags.
+ returnFiber.flags |= Incomplete;
+ returnFiber.subtreeFlags = NoFlags;
+ returnFiber.deletions = null;
+ } else {
+ // We've unwound all the way to the root.
+ workInProgressRootExitStatus = RootDidNotComplete;
+ workInProgress = null;
+ return;
+ }
+ }
+ var siblingFiber = completedWork.sibling;
+ if (siblingFiber !== null) {
+ // If there is more work to do in this returnFiber, do that next.
+ workInProgress = siblingFiber;
+ return;
+ } // Otherwise, return to the parent
+
+ completedWork = returnFiber; // Update the next thing we're working on in case something throws.
+
+ workInProgress = completedWork;
+ } while (completedWork !== null); // We've reached the root.
+
+ if (workInProgressRootExitStatus === RootInProgress) {
+ workInProgressRootExitStatus = RootCompleted;
+ }
+ }
+ function commitRoot(root, recoverableErrors, transitions) {
+ // TODO: This no longer makes any sense. We already wrap the mutation and
+ // layout phases. Should be able to remove.
+ var previousUpdateLanePriority = getCurrentUpdatePriority();
+ var prevTransition = ReactCurrentBatchConfig$2.transition;
+ try {
+ ReactCurrentBatchConfig$2.transition = null;
+ setCurrentUpdatePriority(DiscreteEventPriority);
+ commitRootImpl(root, recoverableErrors, transitions, previousUpdateLanePriority);
+ } finally {
+ ReactCurrentBatchConfig$2.transition = prevTransition;
+ setCurrentUpdatePriority(previousUpdateLanePriority);
+ }
+ return null;
+ }
+ function commitRootImpl(root, recoverableErrors, transitions, renderPriorityLevel) {
+ do {
+ // `flushPassiveEffects` will call `flushSyncUpdateQueue` at the end, which
+ // means `flushPassiveEffects` will sometimes result in additional
+ // passive effects. So we need to keep flushing in a loop until there are
+ // no more pending effects.
+ // TODO: Might be better if `flushPassiveEffects` did not automatically
+ // flush synchronous work at the end, to avoid factoring hazards like this.
+ flushPassiveEffects();
+ } while (rootWithPendingPassiveEffects !== null);
+ flushRenderPhaseStrictModeWarningsInDEV();
+ if ((executionContext & (RenderContext | CommitContext)) !== NoContext) {
+ throw new Error("Should not already be working.");
+ }
+ var finishedWork = root.finishedWork;
+ var lanes = root.finishedLanes;
+ if (finishedWork === null) {
+ return null;
+ } else {
+ {
+ if (lanes === NoLanes) {
+ error("root.finishedLanes should not be empty during a commit. This is a " + "bug in React.");
+ }
+ }
+ }
+ root.finishedWork = null;
+ root.finishedLanes = NoLanes;
+ if (finishedWork === root.current) {
+ throw new Error("Cannot commit the same tree as before. This error is likely caused by " + "a bug in React. Please file an issue.");
+ } // commitRoot never returns a continuation; it always finishes synchronously.
+ // So we can clear these now to allow a new callback to be scheduled.
+
+ root.callbackNode = null;
+ root.callbackPriority = NoLane; // Update the first and last pending times on this root. The new first
+ // pending time is whatever is left on the root fiber.
+
+ var remainingLanes = mergeLanes(finishedWork.lanes, finishedWork.childLanes);
+ markRootFinished(root, remainingLanes);
+ if (root === workInProgressRoot) {
+ // We can reset these now that they are finished.
+ workInProgressRoot = null;
+ workInProgress = null;
+ workInProgressRootRenderLanes = NoLanes;
+ } // If there are pending passive effects, schedule a callback to process them.
+ // Do this as early as possible, so it is queued before anything else that
+ // might get scheduled in the commit phase. (See #16714.)
+ // TODO: Delete all other places that schedule the passive effect callback
+ // They're redundant.
+
+ if ((finishedWork.subtreeFlags & PassiveMask) !== NoFlags || (finishedWork.flags & PassiveMask) !== NoFlags) {
+ if (!rootDoesHavePassiveEffects) {
+ rootDoesHavePassiveEffects = true;
+ // to store it in pendingPassiveTransitions until they get processed
+ // We need to pass this through as an argument to commitRoot
+ // because workInProgressTransitions might have changed between
+ // the previous render and commit if we throttle the commit
+ // with setTimeout
+
+ pendingPassiveTransitions = transitions;
+ scheduleCallback$1(NormalPriority, function () {
+ flushPassiveEffects(); // This render triggered passive effects: release the root cache pool
+ // *after* passive effects fire to avoid freeing a cache pool that may
+ // be referenced by a node in the tree (HostRoot, Cache boundary etc)
+
+ return null;
+ });
+ }
+ } // Check if there are any effects in the whole tree.
+ // TODO: This is left over from the effect list implementation, where we had
+ // to check for the existence of `firstEffect` to satisfy Flow. I think the
+ // only other reason this optimization exists is because it affects profiling.
+ // Reconsider whether this is necessary.
+
+ var subtreeHasEffects = (finishedWork.subtreeFlags & (BeforeMutationMask | MutationMask | LayoutMask | PassiveMask)) !== NoFlags;
+ var rootHasEffect = (finishedWork.flags & (BeforeMutationMask | MutationMask | LayoutMask | PassiveMask)) !== NoFlags;
+ if (subtreeHasEffects || rootHasEffect) {
+ var prevTransition = ReactCurrentBatchConfig$2.transition;
+ ReactCurrentBatchConfig$2.transition = null;
+ var previousPriority = getCurrentUpdatePriority();
+ setCurrentUpdatePriority(DiscreteEventPriority);
+ var prevExecutionContext = executionContext;
+ executionContext |= CommitContext; // Reset this to null before calling lifecycles
+
+ ReactCurrentOwner$2.current = null; // The commit phase is broken into several sub-phases. We do a separate pass
+ // of the effect list for each phase: all mutation effects come before all
+ // layout effects, and so on.
+ // The first phase a "before mutation" phase. We use this phase to read the
+ // state of the host tree right before we mutate it. This is where
+ // getSnapshotBeforeUpdate is called.
+
+ var shouldFireAfterActiveInstanceBlur = commitBeforeMutationEffects(root, finishedWork);
+ {
+ // Mark the current commit time to be shared by all Profilers in this
+ // batch. This enables them to be grouped later.
+ recordCommitTime();
+ }
+ commitMutationEffects(root, finishedWork, lanes);
+ resetAfterCommit(root.containerInfo); // The work-in-progress tree is now the current tree. This must come after
+ // the mutation phase, so that the previous tree is still current during
+ // componentWillUnmount, but before the layout phase, so that the finished
+ // work is current during componentDidMount/Update.
+
+ root.current = finishedWork; // The next phase is the layout phase, where we call effects that read
+
+ commitLayoutEffects(finishedWork, root, lanes);
+ // opportunity to paint.
+
+ requestPaint();
+ executionContext = prevExecutionContext; // Reset the priority to the previous non-sync value.
+
+ setCurrentUpdatePriority(previousPriority);
+ ReactCurrentBatchConfig$2.transition = prevTransition;
+ } else {
+ // No effects.
+ root.current = finishedWork; // Measure these anyway so the flamegraph explicitly shows that there were
+ // no effects.
+ // TODO: Maybe there's a better way to report this.
+
+ {
+ recordCommitTime();
+ }
+ }
+ if (rootDoesHavePassiveEffects) {
+ // This commit has passive effects. Stash a reference to them. But don't
+ // schedule a callback until after flushing layout work.
+ rootDoesHavePassiveEffects = false;
+ rootWithPendingPassiveEffects = root;
+ pendingPassiveEffectsLanes = lanes;
+ } else {
+ {
+ nestedPassiveUpdateCount = 0;
+ rootWithPassiveNestedUpdates = null;
+ }
+ } // Read this again, since an effect might have updated it
+
+ remainingLanes = root.pendingLanes; // Check if there's remaining work on this root
+ // TODO: This is part of the `componentDidCatch` implementation. Its purpose
+ // is to detect whether something might have called setState inside
+ // `componentDidCatch`. The mechanism is known to be flawed because `setState`
+ // inside `componentDidCatch` is itself flawed — that's why we recommend
+ // `getDerivedStateFromError` instead. However, it could be improved by
+ // checking if remainingLanes includes Sync work, instead of whether there's
+ // any work remaining at all (which would also include stuff like Suspense
+ // retries or transitions). It's been like this for a while, though, so fixing
+ // it probably isn't that urgent.
+
+ if (remainingLanes === NoLanes) {
+ // If there's no remaining work, we can clear the set of already failed
+ // error boundaries.
+ legacyErrorBoundariesThatAlreadyFailed = null;
+ }
+ onCommitRoot(finishedWork.stateNode, renderPriorityLevel);
+ {
+ if (isDevToolsPresent) {
+ root.memoizedUpdaters.clear();
+ }
+ }
+ // additional work on this root is scheduled.
+
+ ensureRootIsScheduled(root, now());
+ if (recoverableErrors !== null) {
+ // There were errors during this render, but recovered from them without
+ // needing to surface it to the UI. We log them here.
+ var onRecoverableError = root.onRecoverableError;
+ for (var i = 0; i < recoverableErrors.length; i++) {
+ var recoverableError = recoverableErrors[i];
+ var componentStack = recoverableError.stack;
+ var digest = recoverableError.digest;
+ onRecoverableError(recoverableError.value, {
+ componentStack: componentStack,
+ digest: digest
+ });
+ }
+ }
+ if (hasUncaughtError) {
+ hasUncaughtError = false;
+ var error$1 = firstUncaughtError;
+ firstUncaughtError = null;
+ throw error$1;
+ } // If the passive effects are the result of a discrete render, flush them
+ // synchronously at the end of the current task so that the result is
+ // immediately observable. Otherwise, we assume that they are not
+ // order-dependent and do not need to be observed by external systems, so we
+ // can wait until after paint.
+ // TODO: We can optimize this by not scheduling the callback earlier. Since we
+ // currently schedule the callback in multiple places, will wait until those
+ // are consolidated.
+
+ if (includesSomeLane(pendingPassiveEffectsLanes, SyncLane) && root.tag !== LegacyRoot) {
+ flushPassiveEffects();
+ } // Read this again, since a passive effect might have updated it
+
+ remainingLanes = root.pendingLanes;
+ if (includesSomeLane(remainingLanes, SyncLane)) {
+ {
+ markNestedUpdateScheduled();
+ } // Count the number of times the root synchronously re-renders without
+ // finishing. If there are too many, it indicates an infinite update loop.
+
+ if (root === rootWithNestedUpdates) {
+ nestedUpdateCount++;
+ } else {
+ nestedUpdateCount = 0;
+ rootWithNestedUpdates = root;
+ }
+ } else {
+ nestedUpdateCount = 0;
+ } // If layout work was scheduled, flush it now.
+
+ flushSyncCallbacks();
+ return null;
+ }
+ function flushPassiveEffects() {
+ // Returns whether passive effects were flushed.
+ // TODO: Combine this check with the one in flushPassiveEFfectsImpl. We should
+ // probably just combine the two functions. I believe they were only separate
+ // in the first place because we used to wrap it with
+ // `Scheduler.runWithPriority`, which accepts a function. But now we track the
+ // priority within React itself, so we can mutate the variable directly.
+ if (rootWithPendingPassiveEffects !== null) {
+ var renderPriority = lanesToEventPriority(pendingPassiveEffectsLanes);
+ var priority = lowerEventPriority(DefaultEventPriority, renderPriority);
+ var prevTransition = ReactCurrentBatchConfig$2.transition;
+ var previousPriority = getCurrentUpdatePriority();
+ try {
+ ReactCurrentBatchConfig$2.transition = null;
+ setCurrentUpdatePriority(priority);
+ return flushPassiveEffectsImpl();
+ } finally {
+ setCurrentUpdatePriority(previousPriority);
+ ReactCurrentBatchConfig$2.transition = prevTransition; // Once passive effects have run for the tree - giving components a
+ }
+ }
+ return false;
+ }
+ function enqueuePendingPassiveProfilerEffect(fiber) {
+ {
+ pendingPassiveProfilerEffects.push(fiber);
+ if (!rootDoesHavePassiveEffects) {
+ rootDoesHavePassiveEffects = true;
+ scheduleCallback$1(NormalPriority, function () {
+ flushPassiveEffects();
+ return null;
+ });
+ }
+ }
+ }
+ function flushPassiveEffectsImpl() {
+ if (rootWithPendingPassiveEffects === null) {
+ return false;
+ } // Cache and clear the transitions flag
+
+ var transitions = pendingPassiveTransitions;
+ pendingPassiveTransitions = null;
+ var root = rootWithPendingPassiveEffects;
+ var lanes = pendingPassiveEffectsLanes;
+ rootWithPendingPassiveEffects = null; // TODO: This is sometimes out of sync with rootWithPendingPassiveEffects.
+ // Figure out why and fix it. It's not causing any known issues (probably
+ // because it's only used for profiling), but it's a refactor hazard.
+
+ pendingPassiveEffectsLanes = NoLanes;
+ if ((executionContext & (RenderContext | CommitContext)) !== NoContext) {
+ throw new Error("Cannot flush passive effects while already rendering.");
+ }
+ {
+ isFlushingPassiveEffects = true;
+ didScheduleUpdateDuringPassiveEffects = false;
+ }
+ var prevExecutionContext = executionContext;
+ executionContext |= CommitContext;
+ commitPassiveUnmountEffects(root.current);
+ commitPassiveMountEffects(root, root.current, lanes, transitions); // TODO: Move to commitPassiveMountEffects
+
+ {
+ var profilerEffects = pendingPassiveProfilerEffects;
+ pendingPassiveProfilerEffects = [];
+ for (var i = 0; i < profilerEffects.length; i++) {
+ var _fiber = profilerEffects[i];
+ commitPassiveEffectDurations(root, _fiber);
+ }
+ }
+ executionContext = prevExecutionContext;
+ flushSyncCallbacks();
+ {
+ // If additional passive effects were scheduled, increment a counter. If this
+ // exceeds the limit, we'll fire a warning.
+ if (didScheduleUpdateDuringPassiveEffects) {
+ if (root === rootWithPassiveNestedUpdates) {
+ nestedPassiveUpdateCount++;
+ } else {
+ nestedPassiveUpdateCount = 0;
+ rootWithPassiveNestedUpdates = root;
+ }
+ } else {
+ nestedPassiveUpdateCount = 0;
+ }
+ isFlushingPassiveEffects = false;
+ didScheduleUpdateDuringPassiveEffects = false;
+ } // TODO: Move to commitPassiveMountEffects
+
+ onPostCommitRoot(root);
+ {
+ var stateNode = root.current.stateNode;
+ stateNode.effectDuration = 0;
+ stateNode.passiveEffectDuration = 0;
+ }
+ return true;
+ }
+ function isAlreadyFailedLegacyErrorBoundary(instance) {
+ return legacyErrorBoundariesThatAlreadyFailed !== null && legacyErrorBoundariesThatAlreadyFailed.has(instance);
+ }
+ function markLegacyErrorBoundaryAsFailed(instance) {
+ if (legacyErrorBoundariesThatAlreadyFailed === null) {
+ legacyErrorBoundariesThatAlreadyFailed = new Set([instance]);
+ } else {
+ legacyErrorBoundariesThatAlreadyFailed.add(instance);
+ }
+ }
+ function prepareToThrowUncaughtError(error) {
+ if (!hasUncaughtError) {
+ hasUncaughtError = true;
+ firstUncaughtError = error;
+ }
+ }
+ var onUncaughtError = prepareToThrowUncaughtError;
+ function captureCommitPhaseErrorOnRoot(rootFiber, sourceFiber, error) {
+ var errorInfo = createCapturedValueAtFiber(error, sourceFiber);
+ var update = createRootErrorUpdate(rootFiber, errorInfo, SyncLane);
+ var root = enqueueUpdate(rootFiber, update, SyncLane);
+ var eventTime = requestEventTime();
+ if (root !== null) {
+ markRootUpdated(root, SyncLane, eventTime);
+ ensureRootIsScheduled(root, eventTime);
+ }
+ }
+ function captureCommitPhaseError(sourceFiber, nearestMountedAncestor, error$1) {
+ {
+ reportUncaughtErrorInDEV(error$1);
+ setIsRunningInsertionEffect(false);
+ }
+ if (sourceFiber.tag === HostRoot) {
+ // Error was thrown at the root. There is no parent, so the root
+ // itself should capture it.
+ captureCommitPhaseErrorOnRoot(sourceFiber, sourceFiber, error$1);
+ return;
+ }
+ var fiber = null;
+ {
+ fiber = sourceFiber.return;
+ }
+ while (fiber !== null) {
+ if (fiber.tag === HostRoot) {
+ captureCommitPhaseErrorOnRoot(fiber, sourceFiber, error$1);
+ return;
+ } else if (fiber.tag === ClassComponent) {
+ var ctor = fiber.type;
+ var instance = fiber.stateNode;
+ if (typeof ctor.getDerivedStateFromError === "function" || typeof instance.componentDidCatch === "function" && !isAlreadyFailedLegacyErrorBoundary(instance)) {
+ var errorInfo = createCapturedValueAtFiber(error$1, sourceFiber);
+ var update = createClassErrorUpdate(fiber, errorInfo, SyncLane);
+ var root = enqueueUpdate(fiber, update, SyncLane);
+ var eventTime = requestEventTime();
+ if (root !== null) {
+ markRootUpdated(root, SyncLane, eventTime);
+ ensureRootIsScheduled(root, eventTime);
+ }
+ return;
+ }
+ }
+ fiber = fiber.return;
+ }
+ {
+ // TODO: Until we re-land skipUnmountedBoundaries (see #20147), this warning
+ // will fire for errors that are thrown by destroy functions inside deleted
+ // trees. What it should instead do is propagate the error to the parent of
+ // the deleted tree. In the meantime, do not add this warning to the
+ // allowlist; this is only for our internal use.
+ error("Internal React error: Attempted to capture a commit phase error " + "inside a detached tree. This indicates a bug in React. Likely " + "causes include deleting the same fiber more than once, committing an " + "already-finished tree, or an inconsistent return pointer.\n\n" + "Error message:\n\n%s", error$1);
+ }
+ }
+ function pingSuspendedRoot(root, wakeable, pingedLanes) {
+ var pingCache = root.pingCache;
+ if (pingCache !== null) {
+ // The wakeable resolved, so we no longer need to memoize, because it will
+ // never be thrown again.
+ pingCache.delete(wakeable);
+ }
+ var eventTime = requestEventTime();
+ markRootPinged(root, pingedLanes);
+ warnIfSuspenseResolutionNotWrappedWithActDEV(root);
+ if (workInProgressRoot === root && isSubsetOfLanes(workInProgressRootRenderLanes, pingedLanes)) {
+ // Received a ping at the same priority level at which we're currently
+ // rendering. We might want to restart this render. This should mirror
+ // the logic of whether or not a root suspends once it completes.
+ // TODO: If we're rendering sync either due to Sync, Batched or expired,
+ // we should probably never restart.
+ // If we're suspended with delay, or if it's a retry, we'll always suspend
+ // so we can always restart.
+ if (workInProgressRootExitStatus === RootSuspendedWithDelay || workInProgressRootExitStatus === RootSuspended && includesOnlyRetries(workInProgressRootRenderLanes) && now() - globalMostRecentFallbackTime < FALLBACK_THROTTLE_MS) {
+ // Restart from the root.
+ prepareFreshStack(root, NoLanes);
+ } else {
+ // Even though we can't restart right now, we might get an
+ // opportunity later. So we mark this render as having a ping.
+ workInProgressRootPingedLanes = mergeLanes(workInProgressRootPingedLanes, pingedLanes);
+ }
+ }
+ ensureRootIsScheduled(root, eventTime);
+ }
+ function retryTimedOutBoundary(boundaryFiber, retryLane) {
+ // The boundary fiber (a Suspense component or SuspenseList component)
+ // previously was rendered in its fallback state. One of the promises that
+ // suspended it has resolved, which means at least part of the tree was
+ // likely unblocked. Try rendering again, at a new lanes.
+ if (retryLane === NoLane) {
+ // TODO: Assign this to `suspenseState.retryLane`? to avoid
+ // unnecessary entanglement?
+ retryLane = requestRetryLane(boundaryFiber);
+ } // TODO: Special case idle priority?
+
+ var eventTime = requestEventTime();
+ var root = enqueueConcurrentRenderForLane(boundaryFiber, retryLane);
+ if (root !== null) {
+ markRootUpdated(root, retryLane, eventTime);
+ ensureRootIsScheduled(root, eventTime);
+ }
+ }
+ function retryDehydratedSuspenseBoundary(boundaryFiber) {
+ var suspenseState = boundaryFiber.memoizedState;
+ var retryLane = NoLane;
+ if (suspenseState !== null) {
+ retryLane = suspenseState.retryLane;
+ }
+ retryTimedOutBoundary(boundaryFiber, retryLane);
+ }
+ function resolveRetryWakeable(boundaryFiber, wakeable) {
+ var retryLane = NoLane; // Default
+
+ var retryCache;
+ switch (boundaryFiber.tag) {
+ case SuspenseComponent:
+ retryCache = boundaryFiber.stateNode;
+ var suspenseState = boundaryFiber.memoizedState;
+ if (suspenseState !== null) {
+ retryLane = suspenseState.retryLane;
+ }
+ break;
+ case SuspenseListComponent:
+ retryCache = boundaryFiber.stateNode;
+ break;
+ default:
+ throw new Error("Pinged unknown suspense boundary type. " + "This is probably a bug in React.");
+ }
+ if (retryCache !== null) {
+ // The wakeable resolved, so we no longer need to memoize, because it will
+ // never be thrown again.
+ retryCache.delete(wakeable);
+ }
+ retryTimedOutBoundary(boundaryFiber, retryLane);
+ } // Computes the next Just Noticeable Difference (JND) boundary.
+ // The theory is that a person can't tell the difference between small differences in time.
+ // Therefore, if we wait a bit longer than necessary that won't translate to a noticeable
+ // difference in the experience. However, waiting for longer might mean that we can avoid
+ // showing an intermediate loading state. The longer we have already waited, the harder it
+ // is to tell small differences in time. Therefore, the longer we've already waited,
+ // the longer we can wait additionally. At some point we have to give up though.
+ // We pick a train model where the next boundary commits at a consistent schedule.
+ // These particular numbers are vague estimates. We expect to adjust them based on research.
+
+ function jnd(timeElapsed) {
+ return timeElapsed < 120 ? 120 : timeElapsed < 480 ? 480 : timeElapsed < 1080 ? 1080 : timeElapsed < 1920 ? 1920 : timeElapsed < 3000 ? 3000 : timeElapsed < 4320 ? 4320 : ceil(timeElapsed / 1960) * 1960;
+ }
+ function checkForNestedUpdates() {
+ if (nestedUpdateCount > NESTED_UPDATE_LIMIT) {
+ nestedUpdateCount = 0;
+ rootWithNestedUpdates = null;
+ throw new Error("Maximum update depth exceeded. This can happen when a component " + "repeatedly calls setState inside componentWillUpdate or " + "componentDidUpdate. React limits the number of nested updates to " + "prevent infinite loops.");
+ }
+ {
+ if (nestedPassiveUpdateCount > NESTED_PASSIVE_UPDATE_LIMIT) {
+ nestedPassiveUpdateCount = 0;
+ rootWithPassiveNestedUpdates = null;
+ error("Maximum update depth exceeded. This can happen when a component " + "calls setState inside useEffect, but useEffect either doesn't " + "have a dependency array, or one of the dependencies changes on " + "every render.");
+ }
+ }
+ }
+ function flushRenderPhaseStrictModeWarningsInDEV() {
+ {
+ ReactStrictModeWarnings.flushLegacyContextWarning();
+ {
+ ReactStrictModeWarnings.flushPendingUnsafeLifecycleWarnings();
+ }
+ }
+ }
+ var didWarnStateUpdateForNotYetMountedComponent = null;
+ function warnAboutUpdateOnNotYetMountedFiberInDEV(fiber) {
+ {
+ if ((executionContext & RenderContext) !== NoContext) {
+ // We let the other warning about render phase updates deal with this one.
+ return;
+ }
+ if (!(fiber.mode & ConcurrentMode)) {
+ return;
+ }
+ var tag = fiber.tag;
+ if (tag !== IndeterminateComponent && tag !== HostRoot && tag !== ClassComponent && tag !== FunctionComponent && tag !== ForwardRef && tag !== MemoComponent && tag !== SimpleMemoComponent) {
+ // Only warn for user-defined components, not internal ones like Suspense.
+ return;
+ } // We show the whole stack but dedupe on the top component's name because
+ // the problematic code almost always lies inside that component.
+
+ var componentName = getComponentNameFromFiber(fiber) || "ReactComponent";
+ if (didWarnStateUpdateForNotYetMountedComponent !== null) {
+ if (didWarnStateUpdateForNotYetMountedComponent.has(componentName)) {
+ return;
+ }
+ didWarnStateUpdateForNotYetMountedComponent.add(componentName);
+ } else {
+ didWarnStateUpdateForNotYetMountedComponent = new Set([componentName]);
+ }
+ var previousFiber = current;
+ try {
+ setCurrentFiber(fiber);
+ error("Can't perform a React state update on a component that hasn't mounted yet. " + "This indicates that you have a side-effect in your render function that " + "asynchronously later calls tries to update the component. Move this work to " + "useEffect instead.");
+ } finally {
+ if (previousFiber) {
+ setCurrentFiber(fiber);
+ } else {
+ resetCurrentFiber();
+ }
+ }
+ }
+ }
+ var beginWork$1;
+ {
+ var dummyFiber = null;
+ beginWork$1 = function beginWork$1(current, unitOfWork, lanes) {
+ // If a component throws an error, we replay it again in a synchronously
+ // dispatched event, so that the debugger will treat it as an uncaught
+ // error See ReactErrorUtils for more information.
+ // Before entering the begin phase, copy the work-in-progress onto a dummy
+ // fiber. If beginWork throws, we'll use this to reset the state.
+ var originalWorkInProgressCopy = assignFiberPropertiesInDEV(dummyFiber, unitOfWork);
+ try {
+ return beginWork(current, unitOfWork, lanes);
+ } catch (originalError) {
+ if (didSuspendOrErrorWhileHydratingDEV() || originalError !== null && typeof originalError === "object" && typeof originalError.then === "function") {
+ // Don't replay promises.
+ // Don't replay errors if we are hydrating and have already suspended or handled an error
+ throw originalError;
+ } // Keep this code in sync with handleError; any changes here must have
+ // corresponding changes there.
+
+ resetContextDependencies();
+ resetHooksAfterThrow(); // Don't reset current debug fiber, since we're about to work on the
+ // same fiber again.
+ // Unwind the failed stack frame
+
+ unwindInterruptedWork(current, unitOfWork); // Restore the original properties of the fiber.
+
+ assignFiberPropertiesInDEV(unitOfWork, originalWorkInProgressCopy);
+ if (unitOfWork.mode & ProfileMode) {
+ // Reset the profiler timer.
+ startProfilerTimer(unitOfWork);
+ } // Run beginWork again.
+
+ invokeGuardedCallback(null, beginWork, null, current, unitOfWork, lanes);
+ if (hasCaughtError()) {
+ var replayError = clearCaughtError();
+ if (typeof replayError === "object" && replayError !== null && replayError._suppressLogging && typeof originalError === "object" && originalError !== null && !originalError._suppressLogging) {
+ // If suppressed, let the flag carry over to the original error which is the one we'll rethrow.
+ originalError._suppressLogging = true;
+ }
+ } // We always throw the original error in case the second render pass is not idempotent.
+ // This can happen if a memoized function or CommonJS module doesn't throw after first invocation.
+
+ throw originalError;
+ }
+ };
+ }
+ var didWarnAboutUpdateInRender = false;
+ var didWarnAboutUpdateInRenderForAnotherComponent;
+ {
+ didWarnAboutUpdateInRenderForAnotherComponent = new Set();
+ }
+ function warnAboutRenderPhaseUpdatesInDEV(fiber) {
+ {
+ if (isRendering && !getIsUpdatingOpaqueValueInRenderPhaseInDEV()) {
+ switch (fiber.tag) {
+ case FunctionComponent:
+ case ForwardRef:
+ case SimpleMemoComponent:
+ {
+ var renderingComponentName = workInProgress && getComponentNameFromFiber(workInProgress) || "Unknown"; // Dedupe by the rendering component because it's the one that needs to be fixed.
+
+ var dedupeKey = renderingComponentName;
+ if (!didWarnAboutUpdateInRenderForAnotherComponent.has(dedupeKey)) {
+ didWarnAboutUpdateInRenderForAnotherComponent.add(dedupeKey);
+ var setStateComponentName = getComponentNameFromFiber(fiber) || "Unknown";
+ error("Cannot update a component (`%s`) while rendering a " + "different component (`%s`). To locate the bad setState() call inside `%s`, " + "follow the stack trace as described in https://react.dev/link/setstate-in-render", setStateComponentName, renderingComponentName, renderingComponentName);
+ }
+ break;
+ }
+ case ClassComponent:
+ {
+ if (!didWarnAboutUpdateInRender) {
+ error("Cannot update during an existing state transition (such as " + "within `render`). Render methods should be a pure " + "function of props and state.");
+ didWarnAboutUpdateInRender = true;
+ }
+ break;
+ }
+ }
+ }
+ }
+ }
+ function restorePendingUpdaters(root, lanes) {
+ {
+ if (isDevToolsPresent) {
+ var memoizedUpdaters = root.memoizedUpdaters;
+ memoizedUpdaters.forEach(function (schedulingFiber) {
+ addFiberToLanesMap(root, schedulingFiber, lanes);
+ }); // This function intentionally does not clear memoized updaters.
+ // Those may still be relevant to the current commit
+ // and a future one (e.g. Suspense).
+ }
+ }
+ }
+ var fakeActCallbackNode = {};
+ function scheduleCallback$1(priorityLevel, callback) {
+ {
+ // If we're currently inside an `act` scope, bypass Scheduler and push to
+ // the `act` queue instead.
+ var actQueue = ReactCurrentActQueue$1.current;
+ if (actQueue !== null) {
+ actQueue.push(callback);
+ return fakeActCallbackNode;
+ } else {
+ return scheduleCallback(priorityLevel, callback);
+ }
+ }
+ }
+ function cancelCallback$1(callbackNode) {
+ if (callbackNode === fakeActCallbackNode) {
+ return;
+ } // In production, always call Scheduler. This function will be stripped out.
+
+ return cancelCallback(callbackNode);
+ }
+ function shouldForceFlushFallbacksInDEV() {
+ // Never force flush in production. This function should get stripped out.
+ return ReactCurrentActQueue$1.current !== null;
+ }
+ function warnIfUpdatesNotWrappedWithActDEV(fiber) {
+ {
+ if (fiber.mode & ConcurrentMode) {
+ if (!isConcurrentActEnvironment()) {
+ // Not in an act environment. No need to warn.
+ return;
+ }
+ } else {
+ // Legacy mode has additional cases where we suppress a warning.
+ if (!isLegacyActEnvironment()) {
+ // Not in an act environment. No need to warn.
+ return;
+ }
+ if (executionContext !== NoContext) {
+ // Legacy mode doesn't warn if the update is batched, i.e.
+ // batchedUpdates or flushSync.
+ return;
+ }
+ if (fiber.tag !== FunctionComponent && fiber.tag !== ForwardRef && fiber.tag !== SimpleMemoComponent) {
+ // For backwards compatibility with pre-hooks code, legacy mode only
+ // warns for updates that originate from a hook.
+ return;
+ }
+ }
+ if (ReactCurrentActQueue$1.current === null) {
+ var previousFiber = current;
+ try {
+ setCurrentFiber(fiber);
+ error("An update to %s inside a test was not wrapped in act(...).\n\n" + "When testing, code that causes React state updates should be " + "wrapped into act(...):\n\n" + "act(() => {\n" + " /* fire events that update state */\n" + "});\n" + "/* assert on the output */\n\n" + "This ensures that you're testing the behavior the user would see " + "in the browser." + " Learn more at https://react.dev/link/wrap-tests-with-act", getComponentNameFromFiber(fiber));
+ } finally {
+ if (previousFiber) {
+ setCurrentFiber(fiber);
+ } else {
+ resetCurrentFiber();
+ }
+ }
+ }
+ }
+ }
+ function warnIfSuspenseResolutionNotWrappedWithActDEV(root) {
+ {
+ if (root.tag !== LegacyRoot && isConcurrentActEnvironment() && ReactCurrentActQueue$1.current === null) {
+ error("A suspended resource finished loading inside a test, but the event " + "was not wrapped in act(...).\n\n" + "When testing, code that resolves suspended data should be wrapped " + "into act(...):\n\n" + "act(() => {\n" + " /* finish loading suspended data */\n" + "});\n" + "/* assert on the output */\n\n" + "This ensures that you're testing the behavior the user would see " + "in the browser." + " Learn more at https://react.dev/link/wrap-tests-with-act");
+ }
+ }
+ }
+ function setIsRunningInsertionEffect(isRunning) {
+ {
+ isRunningInsertionEffect = isRunning;
+ }
+ }
+
+ /* eslint-disable react-internal/prod-error-codes */
+ var resolveFamily = null; // $FlowFixMe Flow gets confused by a WeakSet feature check below.
+
+ var failedBoundaries = null;
+ var setRefreshHandler = function setRefreshHandler(handler) {
+ {
+ resolveFamily = handler;
+ }
+ };
+ function resolveFunctionForHotReloading(type) {
+ {
+ if (resolveFamily === null) {
+ // Hot reloading is disabled.
+ return type;
+ }
+ var family = resolveFamily(type);
+ if (family === undefined) {
+ return type;
+ } // Use the latest known implementation.
+
+ return family.current;
+ }
+ }
+ function resolveClassForHotReloading(type) {
+ // No implementation differences.
+ return resolveFunctionForHotReloading(type);
+ }
+ function resolveForwardRefForHotReloading(type) {
+ {
+ if (resolveFamily === null) {
+ // Hot reloading is disabled.
+ return type;
+ }
+ var family = resolveFamily(type);
+ if (family === undefined) {
+ // Check if we're dealing with a real forwardRef. Don't want to crash early.
+ if (type !== null && type !== undefined && typeof type.render === "function") {
+ // ForwardRef is special because its resolved .type is an object,
+ // but it's possible that we only have its inner render function in the map.
+ // If that inner render function is different, we'll build a new forwardRef type.
+ var currentRender = resolveFunctionForHotReloading(type.render);
+ if (type.render !== currentRender) {
+ var syntheticType = {
+ $$typeof: REACT_FORWARD_REF_TYPE,
+ render: currentRender
+ };
+ if (type.displayName !== undefined) {
+ syntheticType.displayName = type.displayName;
+ }
+ return syntheticType;
+ }
+ }
+ return type;
+ } // Use the latest known implementation.
+
+ return family.current;
+ }
+ }
+ function isCompatibleFamilyForHotReloading(fiber, element) {
+ {
+ if (resolveFamily === null) {
+ // Hot reloading is disabled.
+ return false;
+ }
+ var prevType = fiber.elementType;
+ var nextType = element.type; // If we got here, we know types aren't === equal.
+
+ var needsCompareFamilies = false;
+ var $$typeofNextType = typeof nextType === "object" && nextType !== null ? nextType.$$typeof : null;
+ switch (fiber.tag) {
+ case ClassComponent:
+ {
+ if (typeof nextType === "function") {
+ needsCompareFamilies = true;
+ }
+ break;
+ }
+ case FunctionComponent:
+ {
+ if (typeof nextType === "function") {
+ needsCompareFamilies = true;
+ } else if ($$typeofNextType === REACT_LAZY_TYPE) {
+ // We don't know the inner type yet.
+ // We're going to assume that the lazy inner type is stable,
+ // and so it is sufficient to avoid reconciling it away.
+ // We're not going to unwrap or actually use the new lazy type.
+ needsCompareFamilies = true;
+ }
+ break;
+ }
+ case ForwardRef:
+ {
+ if ($$typeofNextType === REACT_FORWARD_REF_TYPE) {
+ needsCompareFamilies = true;
+ } else if ($$typeofNextType === REACT_LAZY_TYPE) {
+ needsCompareFamilies = true;
+ }
+ break;
+ }
+ case MemoComponent:
+ case SimpleMemoComponent:
+ {
+ if ($$typeofNextType === REACT_MEMO_TYPE) {
+ // TODO: if it was but can no longer be simple,
+ // we shouldn't set this.
+ needsCompareFamilies = true;
+ } else if ($$typeofNextType === REACT_LAZY_TYPE) {
+ needsCompareFamilies = true;
+ }
+ break;
+ }
+ default:
+ return false;
+ } // Check if both types have a family and it's the same one.
+
+ if (needsCompareFamilies) {
+ // Note: memo() and forwardRef() we'll compare outer rather than inner type.
+ // This means both of them need to be registered to preserve state.
+ // If we unwrapped and compared the inner types for wrappers instead,
+ // then we would risk falsely saying two separate memo(Foo)
+ // calls are equivalent because they wrap the same Foo function.
+ var prevFamily = resolveFamily(prevType);
+ if (prevFamily !== undefined && prevFamily === resolveFamily(nextType)) {
+ return true;
+ }
+ }
+ return false;
+ }
+ }
+ function markFailedErrorBoundaryForHotReloading(fiber) {
+ {
+ if (resolveFamily === null) {
+ // Hot reloading is disabled.
+ return;
+ }
+ if (typeof WeakSet !== "function") {
+ return;
+ }
+ if (failedBoundaries === null) {
+ failedBoundaries = new WeakSet();
+ }
+ failedBoundaries.add(fiber);
+ }
+ }
+ var scheduleRefresh = function scheduleRefresh(root, update) {
+ {
+ if (resolveFamily === null) {
+ // Hot reloading is disabled.
+ return;
+ }
+ var staleFamilies = update.staleFamilies,
+ updatedFamilies = update.updatedFamilies;
+ flushPassiveEffects();
+ flushSync(function () {
+ scheduleFibersWithFamiliesRecursively(root.current, updatedFamilies, staleFamilies);
+ });
+ }
+ };
+ var scheduleRoot = function scheduleRoot(root, element) {
+ {
+ if (root.context !== emptyContextObject) {
+ // Super edge case: root has a legacy _renderSubtree context
+ // but we don't know the parentComponent so we can't pass it.
+ // Just ignore. We'll delete this with _renderSubtree code path later.
+ return;
+ }
+ flushPassiveEffects();
+ flushSync(function () {
+ updateContainer(element, root, null, null);
+ });
+ }
+ };
+ function scheduleFibersWithFamiliesRecursively(fiber, updatedFamilies, staleFamilies) {
+ {
+ var alternate = fiber.alternate,
+ child = fiber.child,
+ sibling = fiber.sibling,
+ tag = fiber.tag,
+ type = fiber.type;
+ var candidateType = null;
+ switch (tag) {
+ case FunctionComponent:
+ case SimpleMemoComponent:
+ case ClassComponent:
+ candidateType = type;
+ break;
+ case ForwardRef:
+ candidateType = type.render;
+ break;
+ }
+ if (resolveFamily === null) {
+ throw new Error("Expected resolveFamily to be set during hot reload.");
+ }
+ var needsRender = false;
+ var needsRemount = false;
+ if (candidateType !== null) {
+ var family = resolveFamily(candidateType);
+ if (family !== undefined) {
+ if (staleFamilies.has(family)) {
+ needsRemount = true;
+ } else if (updatedFamilies.has(family)) {
+ if (tag === ClassComponent) {
+ needsRemount = true;
+ } else {
+ needsRender = true;
+ }
+ }
+ }
+ }
+ if (failedBoundaries !== null) {
+ if (failedBoundaries.has(fiber) || alternate !== null && failedBoundaries.has(alternate)) {
+ needsRemount = true;
+ }
+ }
+ if (needsRemount) {
+ fiber._debugNeedsRemount = true;
+ }
+ if (needsRemount || needsRender) {
+ var _root = enqueueConcurrentRenderForLane(fiber, SyncLane);
+ if (_root !== null) {
+ scheduleUpdateOnFiber(_root, fiber, SyncLane, NoTimestamp);
+ }
+ }
+ if (child !== null && !needsRemount) {
+ scheduleFibersWithFamiliesRecursively(child, updatedFamilies, staleFamilies);
+ }
+ if (sibling !== null) {
+ scheduleFibersWithFamiliesRecursively(sibling, updatedFamilies, staleFamilies);
+ }
+ }
+ }
+ var findHostInstancesForRefresh = function findHostInstancesForRefresh(root, families) {
+ {
+ var hostInstances = new Set();
+ var types = new Set(families.map(function (family) {
+ return family.current;
+ }));
+ findHostInstancesForMatchingFibersRecursively(root.current, types, hostInstances);
+ return hostInstances;
+ }
+ };
+ function findHostInstancesForMatchingFibersRecursively(fiber, types, hostInstances) {
+ {
+ var child = fiber.child,
+ sibling = fiber.sibling,
+ tag = fiber.tag,
+ type = fiber.type;
+ var candidateType = null;
+ switch (tag) {
+ case FunctionComponent:
+ case SimpleMemoComponent:
+ case ClassComponent:
+ candidateType = type;
+ break;
+ case ForwardRef:
+ candidateType = type.render;
+ break;
+ }
+ var didMatch = false;
+ if (candidateType !== null) {
+ if (types.has(candidateType)) {
+ didMatch = true;
+ }
+ }
+ if (didMatch) {
+ // We have a match. This only drills down to the closest host components.
+ // There's no need to search deeper because for the purpose of giving
+ // visual feedback, "flashing" outermost parent rectangles is sufficient.
+ findHostInstancesForFiberShallowly(fiber, hostInstances);
+ } else {
+ // If there's no match, maybe there will be one further down in the child tree.
+ if (child !== null) {
+ findHostInstancesForMatchingFibersRecursively(child, types, hostInstances);
+ }
+ }
+ if (sibling !== null) {
+ findHostInstancesForMatchingFibersRecursively(sibling, types, hostInstances);
+ }
+ }
+ }
+ function findHostInstancesForFiberShallowly(fiber, hostInstances) {
+ {
+ var foundHostInstances = findChildHostInstancesForFiberShallowly(fiber, hostInstances);
+ if (foundHostInstances) {
+ return;
+ } // If we didn't find any host children, fallback to closest host parent.
+
+ var node = fiber;
+ while (true) {
+ switch (node.tag) {
+ case HostComponent:
+ hostInstances.add(node.stateNode);
+ return;
+ case HostPortal:
+ hostInstances.add(node.stateNode.containerInfo);
+ return;
+ case HostRoot:
+ hostInstances.add(node.stateNode.containerInfo);
+ return;
+ }
+ if (node.return === null) {
+ throw new Error("Expected to reach root first.");
+ }
+ node = node.return;
+ }
+ }
+ }
+ function findChildHostInstancesForFiberShallowly(fiber, hostInstances) {
+ {
+ var node = fiber;
+ var foundHostInstances = false;
+ while (true) {
+ if (node.tag === HostComponent) {
+ // We got a match.
+ foundHostInstances = true;
+ hostInstances.add(node.stateNode); // There may still be more, so keep searching.
+ } else if (node.child !== null) {
+ node.child.return = node;
+ node = node.child;
+ continue;
+ }
+ if (node === fiber) {
+ return foundHostInstances;
+ }
+ while (node.sibling === null) {
+ if (node.return === null || node.return === fiber) {
+ return foundHostInstances;
+ }
+ node = node.return;
+ }
+ node.sibling.return = node.return;
+ node = node.sibling;
+ }
+ }
+ return false;
+ }
+ var hasBadMapPolyfill;
+ {
+ hasBadMapPolyfill = false;
+ try {
+ var nonExtensibleObject = Object.preventExtensions({});
+ /* eslint-disable no-new */
+
+ new Map([[nonExtensibleObject, null]]);
+ new Set([nonExtensibleObject]);
+ /* eslint-enable no-new */
+ } catch (e) {
+ // TODO: Consider warning about bad polyfills
+ hasBadMapPolyfill = true;
+ }
+ }
+ function FiberNode(tag, pendingProps, key, mode) {
+ // Instance
+ this.tag = tag;
+ this.key = key;
+ this.elementType = null;
+ this.type = null;
+ this.stateNode = null; // Fiber
+
+ this.return = null;
+ this.child = null;
+ this.sibling = null;
+ this.index = 0;
+ this.ref = null;
+ this.pendingProps = pendingProps;
+ this.memoizedProps = null;
+ this.updateQueue = null;
+ this.memoizedState = null;
+ this.dependencies = null;
+ this.mode = mode; // Effects
+
+ this.flags = NoFlags;
+ this.subtreeFlags = NoFlags;
+ this.deletions = null;
+ this.lanes = NoLanes;
+ this.childLanes = NoLanes;
+ this.alternate = null;
+ {
+ // Note: The following is done to avoid a v8 performance cliff.
+ //
+ // Initializing the fields below to smis and later updating them with
+ // double values will cause Fibers to end up having separate shapes.
+ // This behavior/bug has something to do with Object.preventExtension().
+ // Fortunately this only impacts DEV builds.
+ // Unfortunately it makes React unusably slow for some applications.
+ // To work around this, initialize the fields below with doubles.
+ //
+ // Learn more about this here:
+ // https://github.com/facebook/react/issues/14365
+ // https://bugs.chromium.org/p/v8/issues/detail?id=8538
+ this.actualDuration = Number.NaN;
+ this.actualStartTime = Number.NaN;
+ this.selfBaseDuration = Number.NaN;
+ this.treeBaseDuration = Number.NaN; // It's okay to replace the initial doubles with smis after initialization.
+ // This won't trigger the performance cliff mentioned above,
+ // and it simplifies other profiler code (including DevTools).
+
+ this.actualDuration = 0;
+ this.actualStartTime = -1;
+ this.selfBaseDuration = 0;
+ this.treeBaseDuration = 0;
+ }
+ {
+ // This isn't directly used but is handy for debugging internals:
+ this._debugSource = null;
+ this._debugOwner = null;
+ this._debugNeedsRemount = false;
+ this._debugHookTypes = null;
+ if (!hasBadMapPolyfill && typeof Object.preventExtensions === "function") {
+ Object.preventExtensions(this);
+ }
+ }
+ } // This is a constructor function, rather than a POJO constructor, still
+ // please ensure we do the following:
+ // 1) Nobody should add any instance methods on this. Instance methods can be
+ // more difficult to predict when they get optimized and they are almost
+ // never inlined properly in static compilers.
+ // 2) Nobody should rely on `instanceof Fiber` for type testing. We should
+ // always know when it is a fiber.
+ // 3) We might want to experiment with using numeric keys since they are easier
+ // to optimize in a non-JIT environment.
+ // 4) We can easily go from a constructor to a createFiber object literal if that
+ // is faster.
+ // 5) It should be easy to port this to a C struct and keep a C implementation
+ // compatible.
+
+ var createFiber = function createFiber(tag, pendingProps, key, mode) {
+ // $FlowFixMe: the shapes are exact here but Flow doesn't like constructors
+ return new FiberNode(tag, pendingProps, key, mode);
+ };
+ function shouldConstruct(Component) {
+ var prototype = Component.prototype;
+ return !!(prototype && prototype.isReactComponent);
+ }
+ function isSimpleFunctionComponent(type) {
+ return typeof type === "function" && !shouldConstruct(type) && type.defaultProps === undefined;
+ }
+ function resolveLazyComponentTag(Component) {
+ if (typeof Component === "function") {
+ return shouldConstruct(Component) ? ClassComponent : FunctionComponent;
+ } else if (Component !== undefined && Component !== null) {
+ var $$typeof = Component.$$typeof;
+ if ($$typeof === REACT_FORWARD_REF_TYPE) {
+ return ForwardRef;
+ }
+ if ($$typeof === REACT_MEMO_TYPE) {
+ return MemoComponent;
+ }
+ }
+ return IndeterminateComponent;
+ } // This is used to create an alternate fiber to do work on.
+
+ function createWorkInProgress(current, pendingProps) {
+ var workInProgress = current.alternate;
+ if (workInProgress === null) {
+ // We use a double buffering pooling technique because we know that we'll
+ // only ever need at most two versions of a tree. We pool the "other" unused
+ // node that we're free to reuse. This is lazily created to avoid allocating
+ // extra objects for things that are never updated. It also allow us to
+ // reclaim the extra memory if needed.
+ workInProgress = createFiber(current.tag, pendingProps, current.key, current.mode);
+ workInProgress.elementType = current.elementType;
+ workInProgress.type = current.type;
+ workInProgress.stateNode = current.stateNode;
+ {
+ // DEV-only fields
+ workInProgress._debugSource = current._debugSource;
+ workInProgress._debugOwner = current._debugOwner;
+ workInProgress._debugHookTypes = current._debugHookTypes;
+ }
+ workInProgress.alternate = current;
+ current.alternate = workInProgress;
+ } else {
+ workInProgress.pendingProps = pendingProps; // Needed because Blocks store data on type.
+
+ workInProgress.type = current.type; // We already have an alternate.
+ // Reset the effect tag.
+
+ workInProgress.flags = NoFlags; // The effects are no longer valid.
+
+ workInProgress.subtreeFlags = NoFlags;
+ workInProgress.deletions = null;
+ {
+ // We intentionally reset, rather than copy, actualDuration & actualStartTime.
+ // This prevents time from endlessly accumulating in new commits.
+ // This has the downside of resetting values for different priority renders,
+ // But works for yielding (the common case) and should support resuming.
+ workInProgress.actualDuration = 0;
+ workInProgress.actualStartTime = -1;
+ }
+ } // Reset all effects except static ones.
+ // Static effects are not specific to a render.
+
+ workInProgress.flags = current.flags & StaticMask;
+ workInProgress.childLanes = current.childLanes;
+ workInProgress.lanes = current.lanes;
+ workInProgress.child = current.child;
+ workInProgress.memoizedProps = current.memoizedProps;
+ workInProgress.memoizedState = current.memoizedState;
+ workInProgress.updateQueue = current.updateQueue; // Clone the dependencies object. This is mutated during the render phase, so
+ // it cannot be shared with the current fiber.
+
+ var currentDependencies = current.dependencies;
+ workInProgress.dependencies = currentDependencies === null ? null : {
+ lanes: currentDependencies.lanes,
+ firstContext: currentDependencies.firstContext
+ }; // These will be overridden during the parent's reconciliation
+
+ workInProgress.sibling = current.sibling;
+ workInProgress.index = current.index;
+ workInProgress.ref = current.ref;
+ {
+ workInProgress.selfBaseDuration = current.selfBaseDuration;
+ workInProgress.treeBaseDuration = current.treeBaseDuration;
+ }
+ {
+ workInProgress._debugNeedsRemount = current._debugNeedsRemount;
+ switch (workInProgress.tag) {
+ case IndeterminateComponent:
+ case FunctionComponent:
+ case SimpleMemoComponent:
+ workInProgress.type = resolveFunctionForHotReloading(current.type);
+ break;
+ case ClassComponent:
+ workInProgress.type = resolveClassForHotReloading(current.type);
+ break;
+ case ForwardRef:
+ workInProgress.type = resolveForwardRefForHotReloading(current.type);
+ break;
+ }
+ }
+ return workInProgress;
+ } // Used to reuse a Fiber for a second pass.
+
+ function resetWorkInProgress(workInProgress, renderLanes) {
+ // This resets the Fiber to what createFiber or createWorkInProgress would
+ // have set the values to before during the first pass. Ideally this wouldn't
+ // be necessary but unfortunately many code paths reads from the workInProgress
+ // when they should be reading from current and writing to workInProgress.
+ // We assume pendingProps, index, key, ref, return are still untouched to
+ // avoid doing another reconciliation.
+ // Reset the effect flags but keep any Placement tags, since that's something
+ // that child fiber is setting, not the reconciliation.
+ workInProgress.flags &= StaticMask | Placement; // The effects are no longer valid.
+
+ var current = workInProgress.alternate;
+ if (current === null) {
+ // Reset to createFiber's initial values.
+ workInProgress.childLanes = NoLanes;
+ workInProgress.lanes = renderLanes;
+ workInProgress.child = null;
+ workInProgress.subtreeFlags = NoFlags;
+ workInProgress.memoizedProps = null;
+ workInProgress.memoizedState = null;
+ workInProgress.updateQueue = null;
+ workInProgress.dependencies = null;
+ workInProgress.stateNode = null;
+ {
+ // Note: We don't reset the actualTime counts. It's useful to accumulate
+ // actual time across multiple render passes.
+ workInProgress.selfBaseDuration = 0;
+ workInProgress.treeBaseDuration = 0;
+ }
+ } else {
+ // Reset to the cloned values that createWorkInProgress would've.
+ workInProgress.childLanes = current.childLanes;
+ workInProgress.lanes = current.lanes;
+ workInProgress.child = current.child;
+ workInProgress.subtreeFlags = NoFlags;
+ workInProgress.deletions = null;
+ workInProgress.memoizedProps = current.memoizedProps;
+ workInProgress.memoizedState = current.memoizedState;
+ workInProgress.updateQueue = current.updateQueue; // Needed because Blocks store data on type.
+
+ workInProgress.type = current.type; // Clone the dependencies object. This is mutated during the render phase, so
+ // it cannot be shared with the current fiber.
+
+ var currentDependencies = current.dependencies;
+ workInProgress.dependencies = currentDependencies === null ? null : {
+ lanes: currentDependencies.lanes,
+ firstContext: currentDependencies.firstContext
+ };
+ {
+ // Note: We don't reset the actualTime counts. It's useful to accumulate
+ // actual time across multiple render passes.
+ workInProgress.selfBaseDuration = current.selfBaseDuration;
+ workInProgress.treeBaseDuration = current.treeBaseDuration;
+ }
+ }
+ return workInProgress;
+ }
+ function createHostRootFiber(tag, isStrictMode, concurrentUpdatesByDefaultOverride) {
+ var mode;
+ if (tag === ConcurrentRoot) {
+ mode = ConcurrentMode;
+ if (isStrictMode === true) {
+ mode |= StrictLegacyMode;
+ }
+ } else {
+ mode = NoMode;
+ }
+ if (isDevToolsPresent) {
+ // Always collect profile timings when DevTools are present.
+ // This enables DevTools to start capturing timing at any point–
+ // Without some nodes in the tree having empty base times.
+ mode |= ProfileMode;
+ }
+ return createFiber(HostRoot, null, null, mode);
+ }
+ function createFiberFromTypeAndProps(type,
+ // React$ElementType
+ key, pendingProps, owner, mode, lanes) {
+ var fiberTag = IndeterminateComponent; // The resolved type is set if we know what the final type will be. I.e. it's not lazy.
+
+ var resolvedType = type;
+ if (typeof type === "function") {
+ if (shouldConstruct(type)) {
+ fiberTag = ClassComponent;
+ {
+ resolvedType = resolveClassForHotReloading(resolvedType);
+ }
+ } else {
+ {
+ resolvedType = resolveFunctionForHotReloading(resolvedType);
+ }
+ }
+ } else if (typeof type === "string") {
+ fiberTag = HostComponent;
+ } else {
+ getTag: switch (type) {
+ case REACT_FRAGMENT_TYPE:
+ return createFiberFromFragment(pendingProps.children, mode, lanes, key);
+ case REACT_STRICT_MODE_TYPE:
+ fiberTag = Mode;
+ mode |= StrictLegacyMode;
+ break;
+ case REACT_PROFILER_TYPE:
+ return createFiberFromProfiler(pendingProps, mode, lanes, key);
+ case REACT_SUSPENSE_TYPE:
+ return createFiberFromSuspense(pendingProps, mode, lanes, key);
+ case REACT_SUSPENSE_LIST_TYPE:
+ return createFiberFromSuspenseList(pendingProps, mode, lanes, key);
+ case REACT_OFFSCREEN_TYPE:
+ return createFiberFromOffscreen(pendingProps, mode, lanes, key);
+ case REACT_LEGACY_HIDDEN_TYPE:
+
+ // eslint-disable-next-line no-fallthrough
+
+ case REACT_SCOPE_TYPE:
+
+ // eslint-disable-next-line no-fallthrough
+
+ case REACT_CACHE_TYPE:
+
+ // eslint-disable-next-line no-fallthrough
+
+ case REACT_TRACING_MARKER_TYPE:
+
+ // eslint-disable-next-line no-fallthrough
+
+ case REACT_DEBUG_TRACING_MODE_TYPE:
+
+ // eslint-disable-next-line no-fallthrough
+
+ default:
+ {
+ if (typeof type === "object" && type !== null) {
+ switch (type.$$typeof) {
+ case REACT_PROVIDER_TYPE:
+ fiberTag = ContextProvider;
+ break getTag;
+ case REACT_CONTEXT_TYPE:
+ // This is a consumer
+ fiberTag = ContextConsumer;
+ break getTag;
+ case REACT_FORWARD_REF_TYPE:
+ fiberTag = ForwardRef;
+ {
+ resolvedType = resolveForwardRefForHotReloading(resolvedType);
+ }
+ break getTag;
+ case REACT_MEMO_TYPE:
+ fiberTag = MemoComponent;
+ break getTag;
+ case REACT_LAZY_TYPE:
+ fiberTag = LazyComponent;
+ resolvedType = null;
+ break getTag;
+ }
+ }
+ var info = "";
+ {
+ if (type === undefined || typeof type === "object" && type !== null && Object.keys(type).length === 0) {
+ info += " You likely forgot to export your component from the file " + "it's defined in, or you might have mixed up default and " + "named imports.";
+ }
+ var ownerName = owner ? getComponentNameFromFiber(owner) : null;
+ if (ownerName) {
+ info += "\n\nCheck the render method of `" + ownerName + "`.";
+ }
+ }
+ throw new Error("Element type is invalid: expected a string (for built-in " + "components) or a class/function (for composite components) " + ("but got: " + (type == null ? type : typeof type) + "." + info));
+ }
+ }
+ }
+ var fiber = createFiber(fiberTag, pendingProps, key, mode);
+ fiber.elementType = type;
+ fiber.type = resolvedType;
+ fiber.lanes = lanes;
+ {
+ fiber._debugOwner = owner;
+ }
+ return fiber;
+ }
+ function createFiberFromElement(element, mode, lanes) {
+ var owner = null;
+ {
+ owner = element._owner;
+ }
+ var type = element.type;
+ var key = element.key;
+ var pendingProps = element.props;
+ var fiber = createFiberFromTypeAndProps(type, key, pendingProps, owner, mode, lanes);
+ {
+ fiber._debugSource = element._source;
+ fiber._debugOwner = element._owner;
+ }
+ return fiber;
+ }
+ function createFiberFromFragment(elements, mode, lanes, key) {
+ var fiber = createFiber(Fragment, elements, key, mode);
+ fiber.lanes = lanes;
+ return fiber;
+ }
+ function createFiberFromProfiler(pendingProps, mode, lanes, key) {
+ {
+ if (typeof pendingProps.id !== "string") {
+ error('Profiler must specify an "id" of type `string` as a prop. Received the type `%s` instead.', typeof pendingProps.id);
+ }
+ }
+ var fiber = createFiber(Profiler, pendingProps, key, mode | ProfileMode);
+ fiber.elementType = REACT_PROFILER_TYPE;
+ fiber.lanes = lanes;
+ {
+ fiber.stateNode = {
+ effectDuration: 0,
+ passiveEffectDuration: 0
+ };
+ }
+ return fiber;
+ }
+ function createFiberFromSuspense(pendingProps, mode, lanes, key) {
+ var fiber = createFiber(SuspenseComponent, pendingProps, key, mode);
+ fiber.elementType = REACT_SUSPENSE_TYPE;
+ fiber.lanes = lanes;
+ return fiber;
+ }
+ function createFiberFromSuspenseList(pendingProps, mode, lanes, key) {
+ var fiber = createFiber(SuspenseListComponent, pendingProps, key, mode);
+ fiber.elementType = REACT_SUSPENSE_LIST_TYPE;
+ fiber.lanes = lanes;
+ return fiber;
+ }
+ function createFiberFromOffscreen(pendingProps, mode, lanes, key) {
+ var fiber = createFiber(OffscreenComponent, pendingProps, key, mode);
+ fiber.elementType = REACT_OFFSCREEN_TYPE;
+ fiber.lanes = lanes;
+ var primaryChildInstance = {
+ isHidden: false
+ };
+ fiber.stateNode = primaryChildInstance;
+ return fiber;
+ }
+ function createFiberFromText(content, mode, lanes) {
+ var fiber = createFiber(HostText, content, null, mode);
+ fiber.lanes = lanes;
+ return fiber;
+ }
+ function createFiberFromPortal(portal, mode, lanes) {
+ var pendingProps = portal.children !== null ? portal.children : [];
+ var fiber = createFiber(HostPortal, pendingProps, portal.key, mode);
+ fiber.lanes = lanes;
+ fiber.stateNode = {
+ containerInfo: portal.containerInfo,
+ pendingChildren: null,
+ // Used by persistent updates
+ implementation: portal.implementation
+ };
+ return fiber;
+ } // Used for stashing WIP properties to replay failed work in DEV.
+
+ function assignFiberPropertiesInDEV(target, source) {
+ if (target === null) {
+ // This Fiber's initial properties will always be overwritten.
+ // We only use a Fiber to ensure the same hidden class so DEV isn't slow.
+ target = createFiber(IndeterminateComponent, null, null, NoMode);
+ } // This is intentionally written as a list of all properties.
+ // We tried to use Object.assign() instead but this is called in
+ // the hottest path, and Object.assign() was too slow:
+ // https://github.com/facebook/react/issues/12502
+ // This code is DEV-only so size is not a concern.
+
+ target.tag = source.tag;
+ target.key = source.key;
+ target.elementType = source.elementType;
+ target.type = source.type;
+ target.stateNode = source.stateNode;
+ target.return = source.return;
+ target.child = source.child;
+ target.sibling = source.sibling;
+ target.index = source.index;
+ target.ref = source.ref;
+ target.pendingProps = source.pendingProps;
+ target.memoizedProps = source.memoizedProps;
+ target.updateQueue = source.updateQueue;
+ target.memoizedState = source.memoizedState;
+ target.dependencies = source.dependencies;
+ target.mode = source.mode;
+ target.flags = source.flags;
+ target.subtreeFlags = source.subtreeFlags;
+ target.deletions = source.deletions;
+ target.lanes = source.lanes;
+ target.childLanes = source.childLanes;
+ target.alternate = source.alternate;
+ {
+ target.actualDuration = source.actualDuration;
+ target.actualStartTime = source.actualStartTime;
+ target.selfBaseDuration = source.selfBaseDuration;
+ target.treeBaseDuration = source.treeBaseDuration;
+ }
+ target._debugSource = source._debugSource;
+ target._debugOwner = source._debugOwner;
+ target._debugNeedsRemount = source._debugNeedsRemount;
+ target._debugHookTypes = source._debugHookTypes;
+ return target;
+ }
+ function FiberRootNode(containerInfo, tag, hydrate, identifierPrefix, onRecoverableError) {
+ this.tag = tag;
+ this.containerInfo = containerInfo;
+ this.pendingChildren = null;
+ this.current = null;
+ this.pingCache = null;
+ this.finishedWork = null;
+ this.timeoutHandle = noTimeout;
+ this.context = null;
+ this.pendingContext = null;
+ this.callbackNode = null;
+ this.callbackPriority = NoLane;
+ this.eventTimes = createLaneMap(NoLanes);
+ this.expirationTimes = createLaneMap(NoTimestamp);
+ this.pendingLanes = NoLanes;
+ this.suspendedLanes = NoLanes;
+ this.pingedLanes = NoLanes;
+ this.expiredLanes = NoLanes;
+ this.mutableReadLanes = NoLanes;
+ this.finishedLanes = NoLanes;
+ this.entangledLanes = NoLanes;
+ this.entanglements = createLaneMap(NoLanes);
+ this.identifierPrefix = identifierPrefix;
+ this.onRecoverableError = onRecoverableError;
+ {
+ this.effectDuration = 0;
+ this.passiveEffectDuration = 0;
+ }
+ {
+ this.memoizedUpdaters = new Set();
+ var pendingUpdatersLaneMap = this.pendingUpdatersLaneMap = [];
+ for (var _i = 0; _i < TotalLanes; _i++) {
+ pendingUpdatersLaneMap.push(new Set());
+ }
+ }
+ {
+ switch (tag) {
+ case ConcurrentRoot:
+ this._debugRootType = hydrate ? "hydrateRoot()" : "createRoot()";
+ break;
+ case LegacyRoot:
+ this._debugRootType = hydrate ? "hydrate()" : "render()";
+ break;
+ }
+ }
+ }
+ function createFiberRoot(containerInfo, tag, hydrate, initialChildren, hydrationCallbacks, isStrictMode, concurrentUpdatesByDefaultOverride,
+ // TODO: We have several of these arguments that are conceptually part of the
+ // host config, but because they are passed in at runtime, we have to thread
+ // them through the root constructor. Perhaps we should put them all into a
+ // single type, like a DynamicHostConfig that is defined by the renderer.
+ identifierPrefix, onRecoverableError, transitionCallbacks) {
+ var root = new FiberRootNode(containerInfo, tag, hydrate, identifierPrefix, onRecoverableError);
+ // stateNode is any.
+
+ var uninitializedFiber = createHostRootFiber(tag, isStrictMode);
+ root.current = uninitializedFiber;
+ uninitializedFiber.stateNode = root;
+ {
+ var _initialState = {
+ element: initialChildren,
+ isDehydrated: hydrate,
+ cache: null,
+ // not enabled yet
+ transitions: null,
+ pendingSuspenseBoundaries: null
+ };
+ uninitializedFiber.memoizedState = _initialState;
+ }
+ initializeUpdateQueue(uninitializedFiber);
+ return root;
+ }
+ var ReactVersion = "18.2.0-next-9e3b772b8-20220608";
+ function createPortal(children, containerInfo,
+ // TODO: figure out the API for cross-renderer implementation.
+ implementation) {
+ var key = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;
+ {
+ checkKeyStringCoercion(key);
+ }
+ return {
+ // This tag allow us to uniquely identify this as a React Portal
+ $$typeof: REACT_PORTAL_TYPE,
+ key: key == null ? null : "" + key,
+ children: children,
+ containerInfo: containerInfo,
+ implementation: implementation
+ };
+ }
+ var didWarnAboutNestedUpdates;
+ var didWarnAboutFindNodeInStrictMode;
+ {
+ didWarnAboutNestedUpdates = false;
+ didWarnAboutFindNodeInStrictMode = {};
+ }
+ function getContextForSubtree(parentComponent) {
+ if (!parentComponent) {
+ return emptyContextObject;
+ }
+ var fiber = get(parentComponent);
+ var parentContext = findCurrentUnmaskedContext(fiber);
+ if (fiber.tag === ClassComponent) {
+ var Component = fiber.type;
+ if (isContextProvider(Component)) {
+ return processChildContext(fiber, Component, parentContext);
+ }
+ }
+ return parentContext;
+ }
+ function findHostInstanceWithWarning(component, methodName) {
+ {
+ var fiber = get(component);
+ if (fiber === undefined) {
+ if (typeof component.render === "function") {
+ throw new Error("Unable to find node on an unmounted component.");
+ } else {
+ var keys = Object.keys(component).join(",");
+ throw new Error("Argument appears to not be a ReactComponent. Keys: " + keys);
+ }
+ }
+ var hostFiber = findCurrentHostFiber(fiber);
+ if (hostFiber === null) {
+ return null;
+ }
+ if (hostFiber.mode & StrictLegacyMode) {
+ var componentName = getComponentNameFromFiber(fiber) || "Component";
+ if (!didWarnAboutFindNodeInStrictMode[componentName]) {
+ didWarnAboutFindNodeInStrictMode[componentName] = true;
+ var previousFiber = current;
+ try {
+ setCurrentFiber(hostFiber);
+ if (fiber.mode & StrictLegacyMode) {
+ error("%s is deprecated in StrictMode. " + "%s was passed an instance of %s which is inside StrictMode. " + "Instead, add a ref directly to the element you want to reference. " + "Learn more about using refs safely here: " + "https://react.dev/link/strict-mode-find-node", methodName, methodName, componentName);
+ } else {
+ error("%s is deprecated in StrictMode. " + "%s was passed an instance of %s which renders StrictMode children. " + "Instead, add a ref directly to the element you want to reference. " + "Learn more about using refs safely here: " + "https://react.dev/link/strict-mode-find-node", methodName, methodName, componentName);
+ }
+ } finally {
+ // Ideally this should reset to previous but this shouldn't be called in
+ // render and there's another warning for that anyway.
+ if (previousFiber) {
+ setCurrentFiber(previousFiber);
+ } else {
+ resetCurrentFiber();
+ }
+ }
+ }
+ }
+ return hostFiber.stateNode;
+ }
+ }
+ function createContainer(containerInfo, tag, hydrationCallbacks, isStrictMode, concurrentUpdatesByDefaultOverride, identifierPrefix, onRecoverableError, transitionCallbacks) {
+ var hydrate = false;
+ var initialChildren = null;
+ return createFiberRoot(containerInfo, tag, hydrate, initialChildren, hydrationCallbacks, isStrictMode, concurrentUpdatesByDefaultOverride, identifierPrefix, onRecoverableError);
+ }
+ function updateContainer(element, container, parentComponent, callback) {
+ {
+ onScheduleRoot(container, element);
+ }
+ var current$1 = container.current;
+ var eventTime = requestEventTime();
+ var lane = requestUpdateLane(current$1);
+ var context = getContextForSubtree(parentComponent);
+ if (container.context === null) {
+ container.context = context;
+ } else {
+ container.pendingContext = context;
+ }
+ {
+ if (isRendering && current !== null && !didWarnAboutNestedUpdates) {
+ didWarnAboutNestedUpdates = true;
+ error("Render methods should be a pure function of props and state; " + "triggering nested component updates from render is not allowed. " + "If necessary, trigger nested updates in componentDidUpdate.\n\n" + "Check the render method of %s.", getComponentNameFromFiber(current) || "Unknown");
+ }
+ }
+ var update = createUpdate(eventTime, lane); // Caution: React DevTools currently depends on this property
+ // being called "element".
+
+ update.payload = {
+ element: element
+ };
+ callback = callback === undefined ? null : callback;
+ if (callback !== null) {
+ {
+ if (typeof callback !== "function") {
+ error("render(...): Expected the last optional `callback` argument to be a " + "function. Instead received: %s.", callback);
+ }
+ }
+ update.callback = callback;
+ }
+ var root = enqueueUpdate(current$1, update, lane);
+ if (root !== null) {
+ scheduleUpdateOnFiber(root, current$1, lane, eventTime);
+ entangleTransitions(root, current$1, lane);
+ }
+ return lane;
+ }
+ function getPublicRootInstance(container) {
+ var containerFiber = container.current;
+ if (!containerFiber.child) {
+ return null;
+ }
+ switch (containerFiber.child.tag) {
+ case HostComponent:
+ return getPublicInstance(containerFiber.child.stateNode);
+ default:
+ return containerFiber.child.stateNode;
+ }
+ }
+ var shouldErrorImpl = function shouldErrorImpl(fiber) {
+ return null;
+ };
+ function shouldError(fiber) {
+ return shouldErrorImpl(fiber);
+ }
+ var shouldSuspendImpl = function shouldSuspendImpl(fiber) {
+ return false;
+ };
+ function shouldSuspend(fiber) {
+ return shouldSuspendImpl(fiber);
+ }
+ var overrideHookState = null;
+ var overrideHookStateDeletePath = null;
+ var overrideHookStateRenamePath = null;
+ var overrideProps = null;
+ var overridePropsDeletePath = null;
+ var overridePropsRenamePath = null;
+ var scheduleUpdate = null;
+ var setErrorHandler = null;
+ var setSuspenseHandler = null;
+ {
+ var _copyWithDeleteImpl = function copyWithDeleteImpl(obj, path, index) {
+ var key = path[index];
+ var updated = isArray(obj) ? obj.slice() : assign({}, obj);
+ if (index + 1 === path.length) {
+ if (isArray(updated)) {
+ updated.splice(key, 1);
+ } else {
+ delete updated[key];
+ }
+ return updated;
+ } // $FlowFixMe number or string is fine here
+
+ updated[key] = _copyWithDeleteImpl(obj[key], path, index + 1);
+ return updated;
+ };
+ var copyWithDelete = function copyWithDelete(obj, path) {
+ return _copyWithDeleteImpl(obj, path, 0);
+ };
+ var _copyWithRenameImpl = function copyWithRenameImpl(obj, oldPath, newPath, index) {
+ var oldKey = oldPath[index];
+ var updated = isArray(obj) ? obj.slice() : assign({}, obj);
+ if (index + 1 === oldPath.length) {
+ var newKey = newPath[index]; // $FlowFixMe number or string is fine here
+
+ updated[newKey] = updated[oldKey];
+ if (isArray(updated)) {
+ updated.splice(oldKey, 1);
+ } else {
+ delete updated[oldKey];
+ }
+ } else {
+ // $FlowFixMe number or string is fine here
+ updated[oldKey] = _copyWithRenameImpl(
+ // $FlowFixMe number or string is fine here
+ obj[oldKey], oldPath, newPath, index + 1);
+ }
+ return updated;
+ };
+ var copyWithRename = function copyWithRename(obj, oldPath, newPath) {
+ if (oldPath.length !== newPath.length) {
+ warn("copyWithRename() expects paths of the same length");
+ return;
+ } else {
+ for (var i = 0; i < newPath.length - 1; i++) {
+ if (oldPath[i] !== newPath[i]) {
+ warn("copyWithRename() expects paths to be the same except for the deepest key");
+ return;
+ }
+ }
+ }
+ return _copyWithRenameImpl(obj, oldPath, newPath, 0);
+ };
+ var _copyWithSetImpl = function copyWithSetImpl(obj, path, index, value) {
+ if (index >= path.length) {
+ return value;
+ }
+ var key = path[index];
+ var updated = isArray(obj) ? obj.slice() : assign({}, obj); // $FlowFixMe number or string is fine here
+
+ updated[key] = _copyWithSetImpl(obj[key], path, index + 1, value);
+ return updated;
+ };
+ var copyWithSet = function copyWithSet(obj, path, value) {
+ return _copyWithSetImpl(obj, path, 0, value);
+ };
+ var findHook = function findHook(fiber, id) {
+ // For now, the "id" of stateful hooks is just the stateful hook index.
+ // This may change in the future with e.g. nested hooks.
+ var currentHook = fiber.memoizedState;
+ while (currentHook !== null && id > 0) {
+ currentHook = currentHook.next;
+ id--;
+ }
+ return currentHook;
+ }; // Support DevTools editable values for useState and useReducer.
+
+ overrideHookState = function overrideHookState(fiber, id, path, value) {
+ var hook = findHook(fiber, id);
+ if (hook !== null) {
+ var newState = copyWithSet(hook.memoizedState, path, value);
+ hook.memoizedState = newState;
+ hook.baseState = newState; // We aren't actually adding an update to the queue,
+ // because there is no update we can add for useReducer hooks that won't trigger an error.
+ // (There's no appropriate action type for DevTools overrides.)
+ // As a result though, React will see the scheduled update as a noop and bailout.
+ // Shallow cloning props works as a workaround for now to bypass the bailout check.
+
+ fiber.memoizedProps = assign({}, fiber.memoizedProps);
+ var root = enqueueConcurrentRenderForLane(fiber, SyncLane);
+ if (root !== null) {
+ scheduleUpdateOnFiber(root, fiber, SyncLane, NoTimestamp);
+ }
+ }
+ };
+ overrideHookStateDeletePath = function overrideHookStateDeletePath(fiber, id, path) {
+ var hook = findHook(fiber, id);
+ if (hook !== null) {
+ var newState = copyWithDelete(hook.memoizedState, path);
+ hook.memoizedState = newState;
+ hook.baseState = newState; // We aren't actually adding an update to the queue,
+ // because there is no update we can add for useReducer hooks that won't trigger an error.
+ // (There's no appropriate action type for DevTools overrides.)
+ // As a result though, React will see the scheduled update as a noop and bailout.
+ // Shallow cloning props works as a workaround for now to bypass the bailout check.
+
+ fiber.memoizedProps = assign({}, fiber.memoizedProps);
+ var root = enqueueConcurrentRenderForLane(fiber, SyncLane);
+ if (root !== null) {
+ scheduleUpdateOnFiber(root, fiber, SyncLane, NoTimestamp);
+ }
+ }
+ };
+ overrideHookStateRenamePath = function overrideHookStateRenamePath(fiber, id, oldPath, newPath) {
+ var hook = findHook(fiber, id);
+ if (hook !== null) {
+ var newState = copyWithRename(hook.memoizedState, oldPath, newPath);
+ hook.memoizedState = newState;
+ hook.baseState = newState; // We aren't actually adding an update to the queue,
+ // because there is no update we can add for useReducer hooks that won't trigger an error.
+ // (There's no appropriate action type for DevTools overrides.)
+ // As a result though, React will see the scheduled update as a noop and bailout.
+ // Shallow cloning props works as a workaround for now to bypass the bailout check.
+
+ fiber.memoizedProps = assign({}, fiber.memoizedProps);
+ var root = enqueueConcurrentRenderForLane(fiber, SyncLane);
+ if (root !== null) {
+ scheduleUpdateOnFiber(root, fiber, SyncLane, NoTimestamp);
+ }
+ }
+ }; // Support DevTools props for function components, forwardRef, memo, host components, etc.
+
+ overrideProps = function overrideProps(fiber, path, value) {
+ fiber.pendingProps = copyWithSet(fiber.memoizedProps, path, value);
+ if (fiber.alternate) {
+ fiber.alternate.pendingProps = fiber.pendingProps;
+ }
+ var root = enqueueConcurrentRenderForLane(fiber, SyncLane);
+ if (root !== null) {
+ scheduleUpdateOnFiber(root, fiber, SyncLane, NoTimestamp);
+ }
+ };
+ overridePropsDeletePath = function overridePropsDeletePath(fiber, path) {
+ fiber.pendingProps = copyWithDelete(fiber.memoizedProps, path);
+ if (fiber.alternate) {
+ fiber.alternate.pendingProps = fiber.pendingProps;
+ }
+ var root = enqueueConcurrentRenderForLane(fiber, SyncLane);
+ if (root !== null) {
+ scheduleUpdateOnFiber(root, fiber, SyncLane, NoTimestamp);
+ }
+ };
+ overridePropsRenamePath = function overridePropsRenamePath(fiber, oldPath, newPath) {
+ fiber.pendingProps = copyWithRename(fiber.memoizedProps, oldPath, newPath);
+ if (fiber.alternate) {
+ fiber.alternate.pendingProps = fiber.pendingProps;
+ }
+ var root = enqueueConcurrentRenderForLane(fiber, SyncLane);
+ if (root !== null) {
+ scheduleUpdateOnFiber(root, fiber, SyncLane, NoTimestamp);
+ }
+ };
+ scheduleUpdate = function scheduleUpdate(fiber) {
+ var root = enqueueConcurrentRenderForLane(fiber, SyncLane);
+ if (root !== null) {
+ scheduleUpdateOnFiber(root, fiber, SyncLane, NoTimestamp);
+ }
+ };
+ setErrorHandler = function setErrorHandler(newShouldErrorImpl) {
+ shouldErrorImpl = newShouldErrorImpl;
+ };
+ setSuspenseHandler = function setSuspenseHandler(newShouldSuspendImpl) {
+ shouldSuspendImpl = newShouldSuspendImpl;
+ };
+ }
+ function findHostInstanceByFiber(fiber) {
+ var hostFiber = findCurrentHostFiber(fiber);
+ if (hostFiber === null) {
+ return null;
+ }
+ return hostFiber.stateNode;
+ }
+ function emptyFindFiberByHostInstance(instance) {
+ return null;
+ }
+ function getCurrentFiberForDevTools() {
+ return current;
+ }
+ function injectIntoDevTools(devToolsConfig) {
+ var findFiberByHostInstance = devToolsConfig.findFiberByHostInstance;
+ var ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher;
+ return injectInternals({
+ bundleType: devToolsConfig.bundleType,
+ version: devToolsConfig.version,
+ rendererPackageName: devToolsConfig.rendererPackageName,
+ rendererConfig: devToolsConfig.rendererConfig,
+ overrideHookState: overrideHookState,
+ overrideHookStateDeletePath: overrideHookStateDeletePath,
+ overrideHookStateRenamePath: overrideHookStateRenamePath,
+ overrideProps: overrideProps,
+ overridePropsDeletePath: overridePropsDeletePath,
+ overridePropsRenamePath: overridePropsRenamePath,
+ setErrorHandler: setErrorHandler,
+ setSuspenseHandler: setSuspenseHandler,
+ scheduleUpdate: scheduleUpdate,
+ currentDispatcherRef: ReactCurrentDispatcher,
+ findHostInstanceByFiber: findHostInstanceByFiber,
+ findFiberByHostInstance: findFiberByHostInstance || emptyFindFiberByHostInstance,
+ // React Refresh
+ findHostInstancesForRefresh: findHostInstancesForRefresh,
+ scheduleRefresh: scheduleRefresh,
+ scheduleRoot: scheduleRoot,
+ setRefreshHandler: setRefreshHandler,
+ // Enables DevTools to append owner stacks to error messages in DEV mode.
+ getCurrentFiber: getCurrentFiberForDevTools,
+ // Enables DevTools to detect reconciler version rather than renderer version
+ // which may not match for third party renderers.
+ reconcilerVersion: ReactVersion
+ });
+ }
+ var instanceCache = new Map();
+ function getInstanceFromTag(tag) {
+ return instanceCache.get(tag) || null;
+ }
+ var emptyObject$1 = {};
+ {
+ Object.freeze(emptyObject$1);
+ }
+ var createHierarchy;
+ var getHostNode;
+ var getHostProps;
+ var lastNonHostInstance;
+ var getOwnerHierarchy;
+ var _traverseOwnerTreeUp;
+ {
+ createHierarchy = function createHierarchy(fiberHierarchy) {
+ return fiberHierarchy.map(function (fiber) {
+ return {
+ name: getComponentNameFromType(fiber.type),
+ getInspectorData: function getInspectorData(findNodeHandle) {
+ return {
+ props: getHostProps(fiber),
+ source: fiber._debugSource,
+ measure: function measure(callback) {
+ // If this is Fabric, we'll find a ShadowNode and use that to measure.
+ var hostFiber = findCurrentHostFiber(fiber);
+ var shadowNode = hostFiber != null && hostFiber.stateNode !== null && hostFiber.stateNode.node;
+ if (shadowNode) {
+ nativeFabricUIManager.measure(shadowNode, callback);
+ } else {
+ return ReactNativePrivateInterface.UIManager.measure(getHostNode(fiber, findNodeHandle), callback);
+ }
+ }
+ };
+ }
+ };
+ });
+ };
+ getHostNode = function getHostNode(fiber, findNodeHandle) {
+ var hostNode; // look for children first for the hostNode
+ // as composite fibers do not have a hostNode
+
+ while (fiber) {
+ if (fiber.stateNode !== null && fiber.tag === HostComponent) {
+ hostNode = findNodeHandle(fiber.stateNode);
+ }
+ if (hostNode) {
+ return hostNode;
+ }
+ fiber = fiber.child;
+ }
+ return null;
+ };
+ getHostProps = function getHostProps(fiber) {
+ var host = findCurrentHostFiber(fiber);
+ if (host) {
+ return host.memoizedProps || emptyObject$1;
+ }
+ return emptyObject$1;
+ };
+ exports.getInspectorDataForInstance = function (closestInstance) {
+ // Handle case where user clicks outside of ReactNative
+ if (!closestInstance) {
+ return {
+ hierarchy: [],
+ props: emptyObject$1,
+ selectedIndex: null,
+ source: null
+ };
+ }
+ var fiber = findCurrentFiberUsingSlowPath(closestInstance);
+ var fiberHierarchy = getOwnerHierarchy(fiber);
+ var instance = lastNonHostInstance(fiberHierarchy);
+ var hierarchy = createHierarchy(fiberHierarchy);
+ var props = getHostProps(instance);
+ var source = instance._debugSource;
+ var selectedIndex = fiberHierarchy.indexOf(instance);
+ return {
+ hierarchy: hierarchy,
+ props: props,
+ selectedIndex: selectedIndex,
+ source: source
+ };
+ };
+ getOwnerHierarchy = function getOwnerHierarchy(instance) {
+ var hierarchy = [];
+ _traverseOwnerTreeUp(hierarchy, instance);
+ return hierarchy;
+ };
+ lastNonHostInstance = function lastNonHostInstance(hierarchy) {
+ for (var i = hierarchy.length - 1; i > 1; i--) {
+ var instance = hierarchy[i];
+ if (instance.tag !== HostComponent) {
+ return instance;
+ }
+ }
+ return hierarchy[0];
+ };
+ _traverseOwnerTreeUp = function traverseOwnerTreeUp(hierarchy, instance) {
+ if (instance) {
+ hierarchy.unshift(instance);
+ _traverseOwnerTreeUp(hierarchy, instance._debugOwner);
+ }
+ };
+ }
+ var getInspectorDataForViewTag;
+ var getInspectorDataForViewAtPoint;
+ {
+ getInspectorDataForViewTag = function getInspectorDataForViewTag(viewTag) {
+ var closestInstance = getInstanceFromTag(viewTag); // Handle case where user clicks outside of ReactNative
+
+ if (!closestInstance) {
+ return {
+ hierarchy: [],
+ props: emptyObject$1,
+ selectedIndex: null,
+ source: null
+ };
+ }
+ var fiber = findCurrentFiberUsingSlowPath(closestInstance);
+ var fiberHierarchy = getOwnerHierarchy(fiber);
+ var instance = lastNonHostInstance(fiberHierarchy);
+ var hierarchy = createHierarchy(fiberHierarchy);
+ var props = getHostProps(instance);
+ var source = instance._debugSource;
+ var selectedIndex = fiberHierarchy.indexOf(instance);
+ return {
+ hierarchy: hierarchy,
+ props: props,
+ selectedIndex: selectedIndex,
+ source: source
+ };
+ };
+ getInspectorDataForViewAtPoint = function getInspectorDataForViewAtPoint(findNodeHandle, inspectedView, locationX, locationY, callback) {
+ var closestInstance = null;
+ if (inspectedView._internalInstanceHandle != null) {
+ // For Fabric we can look up the instance handle directly and measure it.
+ nativeFabricUIManager.findNodeAtPoint(inspectedView._internalInstanceHandle.stateNode.node, locationX, locationY, function (internalInstanceHandle) {
+ if (internalInstanceHandle == null) {
+ callback(assign({
+ pointerY: locationY,
+ frame: {
+ left: 0,
+ top: 0,
+ width: 0,
+ height: 0
+ }
+ }, exports.getInspectorDataForInstance(closestInstance)));
+ }
+ closestInstance = internalInstanceHandle.stateNode.canonical._internalInstanceHandle; // Note: this is deprecated and we want to remove it ASAP. Keeping it here for React DevTools compatibility for now.
+
+ var nativeViewTag = internalInstanceHandle.stateNode.canonical._nativeTag;
+ nativeFabricUIManager.measure(internalInstanceHandle.stateNode.node, function (x, y, width, height, pageX, pageY) {
+ var inspectorData = exports.getInspectorDataForInstance(closestInstance);
+ callback(assign({}, inspectorData, {
+ pointerY: locationY,
+ frame: {
+ left: pageX,
+ top: pageY,
+ width: width,
+ height: height
+ },
+ touchedViewTag: nativeViewTag
+ }));
+ });
+ });
+ } else if (inspectedView._internalFiberInstanceHandleDEV != null) {
+ // For Paper we fall back to the old strategy using the React tag.
+ ReactNativePrivateInterface.UIManager.findSubviewIn(findNodeHandle(inspectedView), [locationX, locationY], function (nativeViewTag, left, top, width, height) {
+ var inspectorData = exports.getInspectorDataForInstance(getInstanceFromTag(nativeViewTag));
+ callback(assign({}, inspectorData, {
+ pointerY: locationY,
+ frame: {
+ left: left,
+ top: top,
+ width: width,
+ height: height
+ },
+ touchedViewTag: nativeViewTag
+ }));
+ });
+ } else {
+ error("getInspectorDataForViewAtPoint expects to receive a host component");
+ return;
+ }
+ };
+ }
+ var ReactCurrentOwner$3 = ReactSharedInternals.ReactCurrentOwner;
+ function findHostInstance_DEPRECATED(componentOrHandle) {
+ {
+ var owner = ReactCurrentOwner$3.current;
+ if (owner !== null && owner.stateNode !== null) {
+ if (!owner.stateNode._warnedAboutRefsInRender) {
+ error("%s is accessing findNodeHandle inside its render(). " + "render() should be a pure function of props and state. It should " + "never access something that requires stale data from the previous " + "render, such as refs. Move this logic to componentDidMount and " + "componentDidUpdate instead.", getComponentNameFromType(owner.type) || "A component");
+ }
+ owner.stateNode._warnedAboutRefsInRender = true;
+ }
+ }
+ if (componentOrHandle == null) {
+ return null;
+ } // $FlowIssue Flow has hardcoded values for React DOM that don't work with RN
+
+ if (componentOrHandle._nativeTag) {
+ // $FlowIssue Flow has hardcoded values for React DOM that don't work with RN
+ return componentOrHandle;
+ } // $FlowIssue Flow has hardcoded values for React DOM that don't work with RN
+
+ if (componentOrHandle.canonical && componentOrHandle.canonical._nativeTag) {
+ // $FlowIssue Flow has hardcoded values for React DOM that don't work with RN
+ return componentOrHandle.canonical;
+ }
+ var hostInstance;
+ {
+ hostInstance = findHostInstanceWithWarning(componentOrHandle, "findHostInstance_DEPRECATED");
+ }
+ if (hostInstance == null) {
+ return hostInstance;
+ }
+ if (hostInstance.canonical) {
+ // Fabric
+ return hostInstance.canonical;
+ } // $FlowFixMe[incompatible-return]
+
+ return hostInstance;
+ }
+ function findNodeHandle(componentOrHandle) {
+ {
+ var owner = ReactCurrentOwner$3.current;
+ if (owner !== null && owner.stateNode !== null) {
+ if (!owner.stateNode._warnedAboutRefsInRender) {
+ error("%s is accessing findNodeHandle inside its render(). " + "render() should be a pure function of props and state. It should " + "never access something that requires stale data from the previous " + "render, such as refs. Move this logic to componentDidMount and " + "componentDidUpdate instead.", getComponentNameFromType(owner.type) || "A component");
+ }
+ owner.stateNode._warnedAboutRefsInRender = true;
+ }
+ }
+ if (componentOrHandle == null) {
+ return null;
+ }
+ if (typeof componentOrHandle === "number") {
+ // Already a node handle
+ return componentOrHandle;
+ }
+ if (componentOrHandle._nativeTag) {
+ return componentOrHandle._nativeTag;
+ }
+ if (componentOrHandle.canonical && componentOrHandle.canonical._nativeTag) {
+ return componentOrHandle.canonical._nativeTag;
+ }
+ var hostInstance;
+ {
+ hostInstance = findHostInstanceWithWarning(componentOrHandle, "findNodeHandle");
+ }
+ if (hostInstance == null) {
+ return hostInstance;
+ } // TODO: the code is right but the types here are wrong.
+ // https://github.com/facebook/react/pull/12863
+
+ if (hostInstance.canonical) {
+ // Fabric
+ return hostInstance.canonical._nativeTag;
+ }
+ return hostInstance._nativeTag;
+ }
+ function dispatchCommand(handle, command, args) {
+ if (handle._nativeTag == null) {
+ {
+ error("dispatchCommand was called with a ref that isn't a " + "native component. Use React.forwardRef to get access to the underlying native component");
+ }
+ return;
+ }
+ if (handle._internalInstanceHandle != null) {
+ var stateNode = handle._internalInstanceHandle.stateNode;
+ if (stateNode != null) {
+ nativeFabricUIManager.dispatchCommand(stateNode.node, command, args);
+ }
+ } else {
+ ReactNativePrivateInterface.UIManager.dispatchViewManagerCommand(handle._nativeTag, command, args);
+ }
+ }
+ function sendAccessibilityEvent(handle, eventType) {
+ if (handle._nativeTag == null) {
+ {
+ error("sendAccessibilityEvent was called with a ref that isn't a " + "native component. Use React.forwardRef to get access to the underlying native component");
+ }
+ return;
+ }
+ if (handle._internalInstanceHandle != null) {
+ var stateNode = handle._internalInstanceHandle.stateNode;
+ if (stateNode != null) {
+ nativeFabricUIManager.sendAccessibilityEvent(stateNode.node, eventType);
+ }
+ } else {
+ ReactNativePrivateInterface.legacySendAccessibilityEvent(handle._nativeTag, eventType);
+ }
+ }
+ function onRecoverableError(error$1) {
+ // TODO: Expose onRecoverableError option to userspace
+ // eslint-disable-next-line react-internal/no-production-logging, react-internal/warning-args
+ error(error$1);
+ }
+ function render(element, containerTag, callback, concurrentRoot) {
+ var root = roots.get(containerTag);
+ if (!root) {
+ // TODO (bvaughn): If we decide to keep the wrapper component,
+ // We could create a wrapper for containerTag as well to reduce special casing.
+ root = createContainer(containerTag, concurrentRoot ? ConcurrentRoot : LegacyRoot, null, false, null, "", onRecoverableError);
+ roots.set(containerTag, root);
+ }
+ updateContainer(element, root, null, callback); // $FlowIssue Flow has hardcoded values for React DOM that don't work with RN
+
+ return getPublicRootInstance(root);
+ }
+ function unmountComponentAtNode(containerTag) {
+ this.stopSurface(containerTag);
+ }
+ function stopSurface(containerTag) {
+ var root = roots.get(containerTag);
+ if (root) {
+ // TODO: Is it safe to reset this now or should I wait since this unmount could be deferred?
+ updateContainer(null, root, null, function () {
+ roots.delete(containerTag);
+ });
+ }
+ }
+ function createPortal$1(children, containerTag) {
+ var key = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
+ return createPortal(children, containerTag, null, key);
+ }
+ setBatchingImplementation(batchedUpdates$1);
+ var roots = new Map();
+ injectIntoDevTools({
+ findFiberByHostInstance: getInstanceFromInstance,
+ bundleType: 1,
+ version: ReactVersion,
+ rendererPackageName: "react-native-renderer",
+ rendererConfig: {
+ getInspectorDataForViewTag: getInspectorDataForViewTag,
+ getInspectorDataForViewAtPoint: getInspectorDataForViewAtPoint.bind(null, findNodeHandle)
+ }
+ });
+ exports.createPortal = createPortal$1;
+ exports.dispatchCommand = dispatchCommand;
+ exports.findHostInstance_DEPRECATED = findHostInstance_DEPRECATED;
+ exports.findNodeHandle = findNodeHandle;
+ exports.render = render;
+ exports.sendAccessibilityEvent = sendAccessibilityEvent;
+ exports.stopSurface = stopSurface;
+ exports.unmountComponentAtNode = unmountComponentAtNode;
+
+ /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
+ if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === 'function') {
+ __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());
+ }
+ })();
+ }
+},64,[65,68,279,439],"node_modules\\react-native\\Libraries\\Renderer\\implementations\\ReactFabric-dev.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ if (process.env.NODE_ENV === 'production') {
+ module.exports = _$$_REQUIRE(_dependencyMap[0], "./cjs/react.production.min.js");
+ } else {
+ module.exports = _$$_REQUIRE(_dependencyMap[1], "./cjs/react.development.js");
+ }
+},65,[66,67],"node_modules\\react\\index.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * @license React
+ * react.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 l = Symbol.for("react.element"),
+ n = Symbol.for("react.portal"),
+ p = Symbol.for("react.fragment"),
+ q = Symbol.for("react.strict_mode"),
+ r = Symbol.for("react.profiler"),
+ t = Symbol.for("react.provider"),
+ u = Symbol.for("react.context"),
+ v = Symbol.for("react.forward_ref"),
+ w = Symbol.for("react.suspense"),
+ x = Symbol.for("react.memo"),
+ y = Symbol.for("react.lazy"),
+ z = Symbol.iterator;
+ function A(a) {
+ if (null === a || "object" !== typeof a) return null;
+ a = z && a[z] || a["@@iterator"];
+ return "function" === typeof a ? a : null;
+ }
+ var B = {
+ isMounted: function isMounted() {
+ return !1;
+ },
+ enqueueForceUpdate: function enqueueForceUpdate() {},
+ enqueueReplaceState: function enqueueReplaceState() {},
+ enqueueSetState: function enqueueSetState() {}
+ },
+ C = Object.assign,
+ D = {};
+ function E(a, b, e) {
+ this.props = a;
+ this.context = b;
+ this.refs = D;
+ this.updater = e || B;
+ }
+ E.prototype.isReactComponent = {};
+ E.prototype.setState = function (a, b) {
+ if ("object" !== typeof a && "function" !== typeof a && null != a) throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");
+ this.updater.enqueueSetState(this, a, b, "setState");
+ };
+ E.prototype.forceUpdate = function (a) {
+ this.updater.enqueueForceUpdate(this, a, "forceUpdate");
+ };
+ function F() {}
+ F.prototype = E.prototype;
+ function G(a, b, e) {
+ this.props = a;
+ this.context = b;
+ this.refs = D;
+ this.updater = e || B;
+ }
+ var H = G.prototype = new F();
+ H.constructor = G;
+ C(H, E.prototype);
+ H.isPureReactComponent = !0;
+ var I = Array.isArray,
+ J = Object.prototype.hasOwnProperty,
+ K = {
+ current: null
+ },
+ L = {
+ key: !0,
+ ref: !0,
+ __self: !0,
+ __source: !0
+ };
+ function M(a, b, e) {
+ var d,
+ c = {},
+ k = null,
+ h = null;
+ if (null != b) for (d in void 0 !== b.ref && (h = b.ref), void 0 !== b.key && (k = "" + b.key), b) J.call(b, d) && !L.hasOwnProperty(d) && (c[d] = b[d]);
+ var g = arguments.length - 2;
+ if (1 === g) c.children = e;else if (1 < g) {
+ for (var f = Array(g), m = 0; m < g; m++) f[m] = arguments[m + 2];
+ c.children = f;
+ }
+ if (a && a.defaultProps) for (d in g = a.defaultProps, g) void 0 === c[d] && (c[d] = g[d]);
+ return {
+ $$typeof: l,
+ type: a,
+ key: k,
+ ref: h,
+ props: c,
+ _owner: K.current
+ };
+ }
+ function N(a, b) {
+ return {
+ $$typeof: l,
+ type: a.type,
+ key: b,
+ ref: a.ref,
+ props: a.props,
+ _owner: a._owner
+ };
+ }
+ function O(a) {
+ return "object" === typeof a && null !== a && a.$$typeof === l;
+ }
+ function escape(a) {
+ var b = {
+ "=": "=0",
+ ":": "=2"
+ };
+ return "$" + a.replace(/[=:]/g, function (a) {
+ return b[a];
+ });
+ }
+ var P = /\/+/g;
+ function Q(a, b) {
+ return "object" === typeof a && null !== a && null != a.key ? escape("" + a.key) : b.toString(36);
+ }
+ function R(a, b, e, d, c) {
+ var k = typeof a;
+ if ("undefined" === k || "boolean" === k) a = null;
+ var h = !1;
+ if (null === a) h = !0;else switch (k) {
+ case "string":
+ case "number":
+ h = !0;
+ break;
+ case "object":
+ switch (a.$$typeof) {
+ case l:
+ case n:
+ h = !0;
+ }
+ }
+ if (h) return h = a, c = c(h), a = "" === d ? "." + Q(h, 0) : d, I(c) ? (e = "", null != a && (e = a.replace(P, "$&/") + "/"), R(c, b, e, "", function (a) {
+ return a;
+ })) : null != c && (O(c) && (c = N(c, e + (!c.key || h && h.key === c.key ? "" : ("" + c.key).replace(P, "$&/") + "/") + a)), b.push(c)), 1;
+ h = 0;
+ d = "" === d ? "." : d + ":";
+ if (I(a)) for (var g = 0; g < a.length; g++) {
+ k = a[g];
+ var f = d + Q(k, g);
+ h += R(k, b, e, f, c);
+ } else if (f = A(a), "function" === typeof f) for (a = f.call(a), g = 0; !(k = a.next()).done;) k = k.value, f = d + Q(k, g++), h += R(k, b, e, f, c);else if ("object" === k) throw b = String(a), Error("Objects are not valid as a React child (found: " + ("[object Object]" === b ? "object with keys {" + Object.keys(a).join(", ") + "}" : b) + "). If you meant to render a collection of children, use an array instead.");
+ return h;
+ }
+ function S(a, b, e) {
+ if (null == a) return a;
+ var d = [],
+ c = 0;
+ R(a, d, "", "", function (a) {
+ return b.call(e, a, c++);
+ });
+ return d;
+ }
+ function T(a) {
+ if (-1 === a._status) {
+ var b = a._result;
+ b = b();
+ b.then(function (b) {
+ if (0 === a._status || -1 === a._status) a._status = 1, a._result = b;
+ }, function (b) {
+ if (0 === a._status || -1 === a._status) a._status = 2, a._result = b;
+ });
+ -1 === a._status && (a._status = 0, a._result = b);
+ }
+ if (1 === a._status) return a._result.default;
+ throw a._result;
+ }
+ var U = {
+ current: null
+ },
+ V = {
+ transition: null
+ },
+ W = {
+ ReactCurrentDispatcher: U,
+ ReactCurrentBatchConfig: V,
+ ReactCurrentOwner: K
+ };
+ exports.Children = {
+ map: S,
+ forEach: function forEach(a, b, e) {
+ S(a, function () {
+ b.apply(this, arguments);
+ }, e);
+ },
+ count: function count(a) {
+ var b = 0;
+ S(a, function () {
+ b++;
+ });
+ return b;
+ },
+ toArray: function toArray(a) {
+ return S(a, function (a) {
+ return a;
+ }) || [];
+ },
+ only: function only(a) {
+ if (!O(a)) throw Error("React.Children.only expected to receive a single React element child.");
+ return a;
+ }
+ };
+ exports.Component = E;
+ exports.Fragment = p;
+ exports.Profiler = r;
+ exports.PureComponent = G;
+ exports.StrictMode = q;
+ exports.Suspense = w;
+ exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = W;
+ exports.cloneElement = function (a, b, e) {
+ if (null === a || void 0 === a) throw Error("React.cloneElement(...): The argument must be a React element, but you passed " + a + ".");
+ var d = C({}, a.props),
+ c = a.key,
+ k = a.ref,
+ h = a._owner;
+ if (null != b) {
+ void 0 !== b.ref && (k = b.ref, h = K.current);
+ void 0 !== b.key && (c = "" + b.key);
+ if (a.type && a.type.defaultProps) var g = a.type.defaultProps;
+ for (f in b) J.call(b, f) && !L.hasOwnProperty(f) && (d[f] = void 0 === b[f] && void 0 !== g ? g[f] : b[f]);
+ }
+ var f = arguments.length - 2;
+ if (1 === f) d.children = e;else if (1 < f) {
+ g = Array(f);
+ for (var m = 0; m < f; m++) g[m] = arguments[m + 2];
+ d.children = g;
+ }
+ return {
+ $$typeof: l,
+ type: a.type,
+ key: c,
+ ref: k,
+ props: d,
+ _owner: h
+ };
+ };
+ exports.createContext = function (a) {
+ a = {
+ $$typeof: u,
+ _currentValue: a,
+ _currentValue2: a,
+ _threadCount: 0,
+ Provider: null,
+ Consumer: null,
+ _defaultValue: null,
+ _globalName: null
+ };
+ a.Provider = {
+ $$typeof: t,
+ _context: a
+ };
+ return a.Consumer = a;
+ };
+ exports.createElement = M;
+ exports.createFactory = function (a) {
+ var b = M.bind(null, a);
+ b.type = a;
+ return b;
+ };
+ exports.createRef = function () {
+ return {
+ current: null
+ };
+ };
+ exports.forwardRef = function (a) {
+ return {
+ $$typeof: v,
+ render: a
+ };
+ };
+ exports.isValidElement = O;
+ exports.lazy = function (a) {
+ return {
+ $$typeof: y,
+ _payload: {
+ _status: -1,
+ _result: a
+ },
+ _init: T
+ };
+ };
+ exports.memo = function (a, b) {
+ return {
+ $$typeof: x,
+ type: a,
+ compare: void 0 === b ? null : b
+ };
+ };
+ exports.startTransition = function (a) {
+ var b = V.transition;
+ V.transition = {};
+ try {
+ a();
+ } finally {
+ V.transition = b;
+ }
+ };
+ exports.unstable_act = function () {
+ throw Error("act(...) is not supported in production builds of React.");
+ };
+ exports.useCallback = function (a, b) {
+ return U.current.useCallback(a, b);
+ };
+ exports.useContext = function (a) {
+ return U.current.useContext(a);
+ };
+ exports.useDebugValue = function () {};
+ exports.useDeferredValue = function (a) {
+ return U.current.useDeferredValue(a);
+ };
+ exports.useEffect = function (a, b) {
+ return U.current.useEffect(a, b);
+ };
+ exports.useId = function () {
+ return U.current.useId();
+ };
+ exports.useImperativeHandle = function (a, b, e) {
+ return U.current.useImperativeHandle(a, b, e);
+ };
+ exports.useInsertionEffect = function (a, b) {
+ return U.current.useInsertionEffect(a, b);
+ };
+ exports.useLayoutEffect = function (a, b) {
+ return U.current.useLayoutEffect(a, b);
+ };
+ exports.useMemo = function (a, b) {
+ return U.current.useMemo(a, b);
+ };
+ exports.useReducer = function (a, b, e) {
+ return U.current.useReducer(a, b, e);
+ };
+ exports.useRef = function (a) {
+ return U.current.useRef(a);
+ };
+ exports.useState = function (a) {
+ return U.current.useState(a);
+ };
+ exports.useSyncExternalStore = function (a, b, e) {
+ return U.current.useSyncExternalStore(a, b, e);
+ };
+ exports.useTransition = function () {
+ return U.current.useTransition();
+ };
+ exports.version = "18.2.0";
+},66,[],"node_modules\\react\\cjs\\react.production.min.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * @license React
+ * react.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';
+
+ /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
+ if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === 'function') {
+ __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());
+ }
+ var ReactVersion = '18.2.0';
+
+ // ATTENTION
+ // When adding new symbols to this file,
+ // Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols'
+ // The Symbol used to tag the ReactElement-like types.
+ var REACT_ELEMENT_TYPE = Symbol.for('react.element');
+ var REACT_PORTAL_TYPE = Symbol.for('react.portal');
+ var REACT_FRAGMENT_TYPE = Symbol.for('react.fragment');
+ var REACT_STRICT_MODE_TYPE = Symbol.for('react.strict_mode');
+ var REACT_PROFILER_TYPE = Symbol.for('react.profiler');
+ var REACT_PROVIDER_TYPE = Symbol.for('react.provider');
+ var REACT_CONTEXT_TYPE = Symbol.for('react.context');
+ var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');
+ var REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');
+ var REACT_SUSPENSE_LIST_TYPE = Symbol.for('react.suspense_list');
+ var REACT_MEMO_TYPE = Symbol.for('react.memo');
+ var REACT_LAZY_TYPE = Symbol.for('react.lazy');
+ var REACT_OFFSCREEN_TYPE = Symbol.for('react.offscreen');
+ var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
+ var FAUX_ITERATOR_SYMBOL = '@@iterator';
+ function getIteratorFn(maybeIterable) {
+ if (maybeIterable === null || typeof maybeIterable !== 'object') {
+ return null;
+ }
+ var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];
+ if (typeof maybeIterator === 'function') {
+ return maybeIterator;
+ }
+ return null;
+ }
+
+ /**
+ * Keeps track of the current dispatcher.
+ */
+ var ReactCurrentDispatcher = {
+ /**
+ * @internal
+ * @type {ReactComponent}
+ */
+ current: null
+ };
+
+ /**
+ * Keeps track of the current batch's configuration such as how long an update
+ * should suspend for if it needs to.
+ */
+ var ReactCurrentBatchConfig = {
+ transition: null
+ };
+ var ReactCurrentActQueue = {
+ current: null,
+ // Used to reproduce behavior of `batchedUpdates` in legacy mode.
+ isBatchingLegacy: false,
+ didScheduleLegacyUpdate: false
+ };
+
+ /**
+ * Keeps track of the current owner.
+ *
+ * The current owner is the component who should own any components that are
+ * currently being constructed.
+ */
+ var ReactCurrentOwner = {
+ /**
+ * @internal
+ * @type {ReactComponent}
+ */
+ current: null
+ };
+ var ReactDebugCurrentFrame = {};
+ var currentExtraStackFrame = null;
+ function setExtraStackFrame(stack) {
+ {
+ currentExtraStackFrame = stack;
+ }
+ }
+ {
+ ReactDebugCurrentFrame.setExtraStackFrame = function (stack) {
+ {
+ currentExtraStackFrame = stack;
+ }
+ }; // Stack implementation injected by the current renderer.
+
+ ReactDebugCurrentFrame.getCurrentStack = null;
+ ReactDebugCurrentFrame.getStackAddendum = function () {
+ var stack = ''; // Add an extra top frame while an element is being validated
+
+ if (currentExtraStackFrame) {
+ stack += currentExtraStackFrame;
+ } // Delegate to the injected renderer-specific implementation
+
+ var impl = ReactDebugCurrentFrame.getCurrentStack;
+ if (impl) {
+ stack += impl() || '';
+ }
+ return stack;
+ };
+ }
+
+ // -----------------------------------------------------------------------------
+
+ var enableScopeAPI = false; // Experimental Create Event Handle API.
+ var enableCacheElement = false;
+ var enableTransitionTracing = false; // No known bugs, but needs performance testing
+
+ var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber
+ // stuff. Intended to enable React core members to more easily debug scheduling
+ // issues in DEV builds.
+
+ var enableDebugTracing = false; // Track which Fiber(s) schedule render work.
+
+ var ReactSharedInternals = {
+ ReactCurrentDispatcher: ReactCurrentDispatcher,
+ ReactCurrentBatchConfig: ReactCurrentBatchConfig,
+ ReactCurrentOwner: ReactCurrentOwner
+ };
+ {
+ ReactSharedInternals.ReactDebugCurrentFrame = ReactDebugCurrentFrame;
+ ReactSharedInternals.ReactCurrentActQueue = ReactCurrentActQueue;
+ }
+
+ // by calls to these methods by a Babel plugin.
+ //
+ // In PROD (or in packages without access to React internals),
+ // they are left as they are instead.
+
+ function warn(format) {
+ {
+ {
+ for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
+ args[_key - 1] = arguments[_key];
+ }
+ printWarning('warn', format, args);
+ }
+ }
+ }
+ 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('error', format, args);
+ }
+ }
+ }
+ function printWarning(level, format, args) {
+ // When changing this logic, you might want to also
+ // update consoleWithStackDev.www.js as well.
+ {
+ var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
+ var stack = ReactDebugCurrentFrame.getStackAddendum();
+ if (stack !== '') {
+ format += '%s';
+ args = args.concat([stack]);
+ } // eslint-disable-next-line react-internal/safe-string-coercion
+
+ var argsWithFormat = args.map(function (item) {
+ return String(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
+ // eslint-disable-next-line react-internal/no-production-logging
+
+ Function.prototype.apply.call(console[level], console, argsWithFormat);
+ }
+ }
+ var didWarnStateUpdateForUnmountedComponent = {};
+ function warnNoop(publicInstance, callerName) {
+ {
+ var _constructor = publicInstance.constructor;
+ var componentName = _constructor && (_constructor.displayName || _constructor.name) || 'ReactClass';
+ var warningKey = componentName + "." + callerName;
+ if (didWarnStateUpdateForUnmountedComponent[warningKey]) {
+ return;
+ }
+ error("Can't call %s on a component that is not yet mounted. " + 'This is a no-op, but it might indicate a bug in your application. ' + 'Instead, assign to `this.state` directly or define a `state = {};` ' + 'class property with the desired state in the %s component.', callerName, componentName);
+ didWarnStateUpdateForUnmountedComponent[warningKey] = true;
+ }
+ }
+ /**
+ * This is the abstract API for an update queue.
+ */
+
+ var ReactNoopUpdateQueue = {
+ /**
+ * Checks whether or not this composite component is mounted.
+ * @param {ReactClass} publicInstance The instance we want to test.
+ * @return {boolean} True if mounted, false otherwise.
+ * @protected
+ * @final
+ */
+ isMounted: function isMounted(publicInstance) {
+ return false;
+ },
+ /**
+ * Forces an update. This should only be invoked when it is known with
+ * certainty that we are **not** in a DOM transaction.
+ *
+ * You may want to call this when you know that some deeper aspect of the
+ * component's state has changed but `setState` was not called.
+ *
+ * This will not invoke `shouldComponentUpdate`, but it will invoke
+ * `componentWillUpdate` and `componentDidUpdate`.
+ *
+ * @param {ReactClass} publicInstance The instance that should rerender.
+ * @param {?function} callback Called after component is updated.
+ * @param {?string} callerName name of the calling function in the public API.
+ * @internal
+ */
+ enqueueForceUpdate: function enqueueForceUpdate(publicInstance, callback, callerName) {
+ warnNoop(publicInstance, 'forceUpdate');
+ },
+ /**
+ * Replaces all of the state. Always use this or `setState` to mutate state.
+ * You should treat `this.state` as immutable.
+ *
+ * There is no guarantee that `this.state` will be immediately updated, so
+ * accessing `this.state` after calling this method may return the old value.
+ *
+ * @param {ReactClass} publicInstance The instance that should rerender.
+ * @param {object} completeState Next state.
+ * @param {?function} callback Called after component is updated.
+ * @param {?string} callerName name of the calling function in the public API.
+ * @internal
+ */
+ enqueueReplaceState: function enqueueReplaceState(publicInstance, completeState, callback, callerName) {
+ warnNoop(publicInstance, 'replaceState');
+ },
+ /**
+ * Sets a subset of the state. This only exists because _pendingState is
+ * internal. This provides a merging strategy that is not available to deep
+ * properties which is confusing. TODO: Expose pendingState or don't use it
+ * during the merge.
+ *
+ * @param {ReactClass} publicInstance The instance that should rerender.
+ * @param {object} partialState Next partial state to be merged with state.
+ * @param {?function} callback Called after component is updated.
+ * @param {?string} Name of the calling function in the public API.
+ * @internal
+ */
+ enqueueSetState: function enqueueSetState(publicInstance, partialState, callback, callerName) {
+ warnNoop(publicInstance, 'setState');
+ }
+ };
+ var assign = Object.assign;
+ var emptyObject = {};
+ {
+ Object.freeze(emptyObject);
+ }
+ /**
+ * Base class helpers for the updating state of a component.
+ */
+
+ function Component(props, context, updater) {
+ this.props = props;
+ this.context = context; // If a component has string refs, we will assign a different object later.
+
+ this.refs = emptyObject; // We initialize the default updater but the real one gets injected by the
+ // renderer.
+
+ this.updater = updater || ReactNoopUpdateQueue;
+ }
+ Component.prototype.isReactComponent = {};
+ /**
+ * Sets a subset of the state. Always use this to mutate
+ * state. You should treat `this.state` as immutable.
+ *
+ * There is no guarantee that `this.state` will be immediately updated, so
+ * accessing `this.state` after calling this method may return the old value.
+ *
+ * There is no guarantee that calls to `setState` will run synchronously,
+ * as they may eventually be batched together. You can provide an optional
+ * callback that will be executed when the call to setState is actually
+ * completed.
+ *
+ * When a function is provided to setState, it will be called at some point in
+ * the future (not synchronously). It will be called with the up to date
+ * component arguments (state, props, context). These values can be different
+ * from this.* because your function may be called after receiveProps but before
+ * shouldComponentUpdate, and this new state, props, and context will not yet be
+ * assigned to this.
+ *
+ * @param {object|function} partialState Next partial state or function to
+ * produce next partial state to be merged with current state.
+ * @param {?function} callback Called after state is updated.
+ * @final
+ * @protected
+ */
+
+ Component.prototype.setState = function (partialState, callback) {
+ if (typeof partialState !== 'object' && typeof partialState !== 'function' && partialState != null) {
+ throw new Error('setState(...): takes an object of state variables to update or a ' + 'function which returns an object of state variables.');
+ }
+ this.updater.enqueueSetState(this, partialState, callback, 'setState');
+ };
+ /**
+ * Forces an update. This should only be invoked when it is known with
+ * certainty that we are **not** in a DOM transaction.
+ *
+ * You may want to call this when you know that some deeper aspect of the
+ * component's state has changed but `setState` was not called.
+ *
+ * This will not invoke `shouldComponentUpdate`, but it will invoke
+ * `componentWillUpdate` and `componentDidUpdate`.
+ *
+ * @param {?function} callback Called after update is complete.
+ * @final
+ * @protected
+ */
+
+ Component.prototype.forceUpdate = function (callback) {
+ this.updater.enqueueForceUpdate(this, callback, 'forceUpdate');
+ };
+ /**
+ * Deprecated APIs. These APIs used to exist on classic React classes but since
+ * we would like to deprecate them, we're not going to move them over to this
+ * modern base class. Instead, we define a getter that warns if it's accessed.
+ */
+
+ {
+ var deprecatedAPIs = {
+ isMounted: ['isMounted', 'Instead, make sure to clean up subscriptions and pending requests in ' + 'componentWillUnmount to prevent memory leaks.'],
+ replaceState: ['replaceState', 'Refactor your code to use setState instead (see ' + 'https://github.com/facebook/react/issues/3236).']
+ };
+ var defineDeprecationWarning = function defineDeprecationWarning(methodName, info) {
+ Object.defineProperty(Component.prototype, methodName, {
+ get: function get() {
+ warn('%s(...) is deprecated in plain JavaScript React classes. %s', info[0], info[1]);
+ return undefined;
+ }
+ });
+ };
+ for (var fnName in deprecatedAPIs) {
+ if (deprecatedAPIs.hasOwnProperty(fnName)) {
+ defineDeprecationWarning(fnName, deprecatedAPIs[fnName]);
+ }
+ }
+ }
+ function ComponentDummy() {}
+ ComponentDummy.prototype = Component.prototype;
+ /**
+ * Convenience component with default shallow equality check for sCU.
+ */
+
+ function PureComponent(props, context, updater) {
+ this.props = props;
+ this.context = context; // If a component has string refs, we will assign a different object later.
+
+ this.refs = emptyObject;
+ this.updater = updater || ReactNoopUpdateQueue;
+ }
+ var pureComponentPrototype = PureComponent.prototype = new ComponentDummy();
+ pureComponentPrototype.constructor = PureComponent; // Avoid an extra prototype jump for these methods.
+
+ assign(pureComponentPrototype, Component.prototype);
+ pureComponentPrototype.isPureReactComponent = true;
+
+ // an immutable object with a single mutable value
+ function createRef() {
+ var refObject = {
+ current: null
+ };
+ {
+ Object.seal(refObject);
+ }
+ return refObject;
+ }
+ var isArrayImpl = Array.isArray; // eslint-disable-next-line no-redeclare
+
+ function isArray(a) {
+ return isArrayImpl(a);
+ }
+
+ /*
+ * The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol
+ * and Temporal.* types. See https://github.com/facebook/react/pull/22064.
+ *
+ * The functions in this module will throw an easier-to-understand,
+ * easier-to-debug exception with a clear errors message message explaining the
+ * problem. (Instead of a confusing exception thrown inside the implementation
+ * of the `value` object).
+ */
+ // $FlowFixMe only called in DEV, so void return is not possible.
+ function typeName(value) {
+ {
+ // toStringTag is needed for namespaced types like Temporal.Instant
+ var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag;
+ var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object';
+ return type;
+ }
+ } // $FlowFixMe only called in DEV, so void return is not possible.
+
+ function willCoercionThrow(value) {
+ {
+ try {
+ testStringCoercion(value);
+ return false;
+ } catch (e) {
+ return true;
+ }
+ }
+ }
+ function testStringCoercion(value) {
+ // If you ended up here by following an exception call stack, here's what's
+ // happened: you supplied an object or symbol value to React (as a prop, key,
+ // DOM attribute, CSS property, string ref, etc.) and when React tried to
+ // coerce it to a string using `'' + value`, an exception was thrown.
+ //
+ // The most common types that will cause this exception are `Symbol` instances
+ // and Temporal objects like `Temporal.Instant`. But any object that has a
+ // `valueOf` or `[Symbol.toPrimitive]` method that throws will also cause this
+ // exception. (Library authors do this to prevent users from using built-in
+ // numeric operators like `+` or comparison operators like `>=` because custom
+ // methods are needed to perform accurate arithmetic or comparison.)
+ //
+ // To fix the problem, coerce this object or symbol value to a string before
+ // passing it to React. The most reliable way is usually `String(value)`.
+ //
+ // To find which value is throwing, check the browser or debugger console.
+ // Before this exception was thrown, there should be `console.error` output
+ // that shows the type (Symbol, Temporal.PlainDate, etc.) that caused the
+ // problem and how that type was used: key, atrribute, input value prop, etc.
+ // In most cases, this console output also shows the component and its
+ // ancestor components where the exception happened.
+ //
+ // eslint-disable-next-line react-internal/safe-string-coercion
+ return '' + value;
+ }
+ function checkKeyStringCoercion(value) {
+ {
+ if (willCoercionThrow(value)) {
+ error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value));
+ return testStringCoercion(value); // throw (to help callers find troubleshooting comments)
+ }
+ }
+ }
+ function getWrappedName(outerType, innerType, wrapperName) {
+ var displayName = outerType.displayName;
+ if (displayName) {
+ return displayName;
+ }
+ var functionName = innerType.displayName || innerType.name || '';
+ return functionName !== '' ? wrapperName + "(" + functionName + ")" : wrapperName;
+ } // Keep in sync with react-reconciler/getComponentNameFromFiber
+
+ function getContextName(type) {
+ return type.displayName || 'Context';
+ } // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.
+
+ function getComponentNameFromType(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 getComponentNameFromType(). ' + '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:
+ return 'Fragment';
+ case REACT_PORTAL_TYPE:
+ return 'Portal';
+ case REACT_PROFILER_TYPE:
+ return 'Profiler';
+ case REACT_STRICT_MODE_TYPE:
+ return 'StrictMode';
+ case REACT_SUSPENSE_TYPE:
+ return 'Suspense';
+ case REACT_SUSPENSE_LIST_TYPE:
+ return 'SuspenseList';
+ }
+ if (typeof type === 'object') {
+ switch (type.$$typeof) {
+ case REACT_CONTEXT_TYPE:
+ var context = type;
+ return getContextName(context) + '.Consumer';
+ case REACT_PROVIDER_TYPE:
+ var provider = type;
+ return getContextName(provider._context) + '.Provider';
+ case REACT_FORWARD_REF_TYPE:
+ return getWrappedName(type, type.render, 'ForwardRef');
+ case REACT_MEMO_TYPE:
+ var outerName = type.displayName || null;
+ if (outerName !== null) {
+ return outerName;
+ }
+ return getComponentNameFromType(type.type) || 'Memo';
+ case REACT_LAZY_TYPE:
+ {
+ var lazyComponent = type;
+ var payload = lazyComponent._payload;
+ var init = lazyComponent._init;
+ try {
+ return getComponentNameFromType(init(payload));
+ } catch (x) {
+ return null;
+ }
+ }
+
+ // eslint-disable-next-line no-fallthrough
+ }
+ }
+ return null;
+ }
+ var hasOwnProperty = Object.prototype.hasOwnProperty;
+ var RESERVED_PROPS = {
+ key: true,
+ ref: true,
+ __self: true,
+ __source: true
+ };
+ var specialPropKeyWarningShown, specialPropRefWarningShown, didWarnAboutStringRefs;
+ {
+ didWarnAboutStringRefs = {};
+ }
+ function hasValidRef(config) {
+ {
+ if (hasOwnProperty.call(config, 'ref')) {
+ var getter = Object.getOwnPropertyDescriptor(config, 'ref').get;
+ if (getter && getter.isReactWarning) {
+ return false;
+ }
+ }
+ }
+ return config.ref !== undefined;
+ }
+ function hasValidKey(config) {
+ {
+ if (hasOwnProperty.call(config, 'key')) {
+ var getter = Object.getOwnPropertyDescriptor(config, 'key').get;
+ if (getter && getter.isReactWarning) {
+ return false;
+ }
+ }
+ }
+ return config.key !== undefined;
+ }
+ function defineKeyPropWarningGetter(props, displayName) {
+ var warnAboutAccessingKey = function warnAboutAccessingKey() {
+ {
+ if (!specialPropKeyWarningShown) {
+ specialPropKeyWarningShown = true;
+ error('%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);
+ }
+ }
+ };
+ warnAboutAccessingKey.isReactWarning = true;
+ Object.defineProperty(props, 'key', {
+ get: warnAboutAccessingKey,
+ configurable: true
+ });
+ }
+ function defineRefPropWarningGetter(props, displayName) {
+ var warnAboutAccessingRef = function warnAboutAccessingRef() {
+ {
+ if (!specialPropRefWarningShown) {
+ specialPropRefWarningShown = true;
+ error('%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);
+ }
+ }
+ };
+ warnAboutAccessingRef.isReactWarning = true;
+ Object.defineProperty(props, 'ref', {
+ get: warnAboutAccessingRef,
+ configurable: true
+ });
+ }
+ function warnIfStringRefCannotBeAutoConverted(config) {
+ {
+ if (typeof config.ref === 'string' && ReactCurrentOwner.current && config.__self && ReactCurrentOwner.current.stateNode !== config.__self) {
+ var componentName = getComponentNameFromType(ReactCurrentOwner.current.type);
+ if (!didWarnAboutStringRefs[componentName]) {
+ error('Component "%s" contains the string ref "%s". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', componentName, config.ref);
+ didWarnAboutStringRefs[componentName] = true;
+ }
+ }
+ }
+ }
+ /**
+ * Factory method to create a new React element. This no longer adheres to
+ * the class pattern, so do not use new to call it. Also, instanceof check
+ * will not work. Instead test $$typeof field against Symbol.for('react.element') to check
+ * if something is a React Element.
+ *
+ * @param {*} type
+ * @param {*} props
+ * @param {*} key
+ * @param {string|object} ref
+ * @param {*} owner
+ * @param {*} self A *temporary* helper to detect places where `this` is
+ * different from the `owner` when React.createElement is called, so that we
+ * can warn. We want to get rid of owner and replace string `ref`s with arrow
+ * functions, and as long as `this` and owner are the same, there will be no
+ * change in behavior.
+ * @param {*} source An annotation object (added by a transpiler or otherwise)
+ * indicating filename, line number, and/or other information.
+ * @internal
+ */
+
+ var ReactElement = function ReactElement(type, key, ref, self, source, owner, props) {
+ var element = {
+ // This tag allows us to uniquely identify this as a React Element
+ $$typeof: REACT_ELEMENT_TYPE,
+ // Built-in properties that belong on the element
+ type: type,
+ key: key,
+ ref: ref,
+ props: props,
+ // Record the component responsible for creating this element.
+ _owner: owner
+ };
+ {
+ // The validation flag is currently mutative. We put it on
+ // an external backing store so that we can freeze the whole object.
+ // This can be replaced with a WeakMap once they are implemented in
+ // commonly used development environments.
+ element._store = {}; // To make comparing ReactElements easier for testing purposes, we make
+ // the validation flag non-enumerable (where possible, which should
+ // include every environment we run tests in), so the test framework
+ // ignores it.
+
+ Object.defineProperty(element._store, 'validated', {
+ configurable: false,
+ enumerable: false,
+ writable: true,
+ value: false
+ }); // self and source are DEV only properties.
+
+ Object.defineProperty(element, '_self', {
+ configurable: false,
+ enumerable: false,
+ writable: false,
+ value: self
+ }); // Two elements created in two different places should be considered
+ // equal for testing purposes and therefore we hide it from enumeration.
+
+ Object.defineProperty(element, '_source', {
+ configurable: false,
+ enumerable: false,
+ writable: false,
+ value: source
+ });
+ if (Object.freeze) {
+ Object.freeze(element.props);
+ Object.freeze(element);
+ }
+ }
+ return element;
+ };
+ /**
+ * Create and return a new ReactElement of the given type.
+ * See https://reactjs.org/docs/react-api.html#createelement
+ */
+
+ function createElement(type, config, children) {
+ var propName; // Reserved names are extracted
+
+ var props = {};
+ var key = null;
+ var ref = null;
+ var self = null;
+ var source = null;
+ if (config != null) {
+ if (hasValidRef(config)) {
+ ref = config.ref;
+ {
+ warnIfStringRefCannotBeAutoConverted(config);
+ }
+ }
+ if (hasValidKey(config)) {
+ {
+ checkKeyStringCoercion(config.key);
+ }
+ key = '' + config.key;
+ }
+ self = config.__self === undefined ? null : config.__self;
+ source = config.__source === undefined ? null : config.__source; // Remaining properties are added to a new props object
+
+ for (propName in config) {
+ if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
+ props[propName] = config[propName];
+ }
+ }
+ } // Children can be more than one argument, and those are transferred onto
+ // the newly allocated props object.
+
+ var childrenLength = arguments.length - 2;
+ if (childrenLength === 1) {
+ props.children = children;
+ } else if (childrenLength > 1) {
+ var childArray = Array(childrenLength);
+ for (var i = 0; i < childrenLength; i++) {
+ childArray[i] = arguments[i + 2];
+ }
+ {
+ if (Object.freeze) {
+ Object.freeze(childArray);
+ }
+ }
+ props.children = childArray;
+ } // Resolve default props
+
+ if (type && type.defaultProps) {
+ var defaultProps = type.defaultProps;
+ for (propName in defaultProps) {
+ if (props[propName] === undefined) {
+ props[propName] = defaultProps[propName];
+ }
+ }
+ }
+ {
+ if (key || ref) {
+ var displayName = typeof type === 'function' ? type.displayName || type.name || 'Unknown' : type;
+ if (key) {
+ defineKeyPropWarningGetter(props, displayName);
+ }
+ if (ref) {
+ defineRefPropWarningGetter(props, displayName);
+ }
+ }
+ }
+ return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);
+ }
+ function cloneAndReplaceKey(oldElement, newKey) {
+ var newElement = ReactElement(oldElement.type, newKey, oldElement.ref, oldElement._self, oldElement._source, oldElement._owner, oldElement.props);
+ return newElement;
+ }
+ /**
+ * Clone and return a new ReactElement using element as the starting point.
+ * See https://reactjs.org/docs/react-api.html#cloneelement
+ */
+
+ function cloneElement(element, config, children) {
+ if (element === null || element === undefined) {
+ throw new Error("React.cloneElement(...): The argument must be a React element, but you passed " + element + ".");
+ }
+ var propName; // Original props are copied
+
+ var props = assign({}, element.props); // Reserved names are extracted
+
+ var key = element.key;
+ var ref = element.ref; // Self is preserved since the owner is preserved.
+
+ var self = element._self; // Source is preserved since cloneElement is unlikely to be targeted by a
+ // transpiler, and the original source is probably a better indicator of the
+ // true owner.
+
+ var source = element._source; // Owner will be preserved, unless ref is overridden
+
+ var owner = element._owner;
+ if (config != null) {
+ if (hasValidRef(config)) {
+ // Silently steal the ref from the parent.
+ ref = config.ref;
+ owner = ReactCurrentOwner.current;
+ }
+ if (hasValidKey(config)) {
+ {
+ checkKeyStringCoercion(config.key);
+ }
+ key = '' + config.key;
+ } // Remaining properties override existing props
+
+ var defaultProps;
+ if (element.type && element.type.defaultProps) {
+ defaultProps = element.type.defaultProps;
+ }
+ for (propName in config) {
+ if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
+ if (config[propName] === undefined && defaultProps !== undefined) {
+ // Resolve default props
+ props[propName] = defaultProps[propName];
+ } else {
+ props[propName] = config[propName];
+ }
+ }
+ }
+ } // Children can be more than one argument, and those are transferred onto
+ // the newly allocated props object.
+
+ var childrenLength = arguments.length - 2;
+ if (childrenLength === 1) {
+ props.children = children;
+ } else if (childrenLength > 1) {
+ var childArray = Array(childrenLength);
+ for (var i = 0; i < childrenLength; i++) {
+ childArray[i] = arguments[i + 2];
+ }
+ props.children = childArray;
+ }
+ return ReactElement(element.type, key, ref, self, source, owner, props);
+ }
+ /**
+ * Verifies the object is a ReactElement.
+ * See https://reactjs.org/docs/react-api.html#isvalidelement
+ * @param {?object} object
+ * @return {boolean} True if `object` is a ReactElement.
+ * @final
+ */
+
+ function isValidElement(object) {
+ return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
+ }
+ var SEPARATOR = '.';
+ var SUBSEPARATOR = ':';
+ /**
+ * Escape and wrap key so it is safe to use as a reactid
+ *
+ * @param {string} key to be escaped.
+ * @return {string} the escaped key.
+ */
+
+ function escape(key) {
+ var escapeRegex = /[=:]/g;
+ var escaperLookup = {
+ '=': '=0',
+ ':': '=2'
+ };
+ var escapedString = key.replace(escapeRegex, function (match) {
+ return escaperLookup[match];
+ });
+ return '$' + escapedString;
+ }
+ /**
+ * TODO: Test that a single child and an array with one item have the same key
+ * pattern.
+ */
+
+ var didWarnAboutMaps = false;
+ var userProvidedKeyEscapeRegex = /\/+/g;
+ function escapeUserProvidedKey(text) {
+ return text.replace(userProvidedKeyEscapeRegex, '$&/');
+ }
+ /**
+ * Generate a key string that identifies a element within a set.
+ *
+ * @param {*} element A element that could contain a manual key.
+ * @param {number} index Index that is used if a manual key is not provided.
+ * @return {string}
+ */
+
+ function getElementKey(element, index) {
+ // Do some typechecking here since we call this blindly. We want to ensure
+ // that we don't block potential future ES APIs.
+ if (typeof element === 'object' && element !== null && element.key != null) {
+ // Explicit key
+ {
+ checkKeyStringCoercion(element.key);
+ }
+ return escape('' + element.key);
+ } // Implicit key determined by the index in the set
+
+ return index.toString(36);
+ }
+ function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
+ var type = typeof children;
+ if (type === 'undefined' || type === 'boolean') {
+ // All of the above are perceived as null.
+ children = null;
+ }
+ var invokeCallback = false;
+ if (children === null) {
+ invokeCallback = true;
+ } else {
+ switch (type) {
+ case 'string':
+ case 'number':
+ invokeCallback = true;
+ break;
+ case 'object':
+ switch (children.$$typeof) {
+ case REACT_ELEMENT_TYPE:
+ case REACT_PORTAL_TYPE:
+ invokeCallback = true;
+ }
+ }
+ }
+ if (invokeCallback) {
+ var _child = children;
+ var mappedChild = callback(_child); // If it's the only child, treat the name as if it was wrapped in an array
+ // so that it's consistent if the number of children grows:
+
+ var childKey = nameSoFar === '' ? SEPARATOR + getElementKey(_child, 0) : nameSoFar;
+ if (isArray(mappedChild)) {
+ var escapedChildKey = '';
+ if (childKey != null) {
+ escapedChildKey = escapeUserProvidedKey(childKey) + '/';
+ }
+ mapIntoArray(mappedChild, array, escapedChildKey, '', function (c) {
+ return c;
+ });
+ } else if (mappedChild != null) {
+ if (isValidElement(mappedChild)) {
+ {
+ // The `if` statement here prevents auto-disabling of the safe
+ // coercion ESLint rule, so we must manually disable it below.
+ // $FlowFixMe Flow incorrectly thinks React.Portal doesn't have a key
+ if (mappedChild.key && (!_child || _child.key !== mappedChild.key)) {
+ checkKeyStringCoercion(mappedChild.key);
+ }
+ }
+ mappedChild = cloneAndReplaceKey(mappedChild,
+ // Keep both the (mapped) and old keys if they differ, just as
+ // traverseAllChildren used to do for objects as children
+ escapedPrefix + (
+ // $FlowFixMe Flow incorrectly thinks React.Portal doesn't have a key
+ mappedChild.key && (!_child || _child.key !== mappedChild.key) ?
+ // $FlowFixMe Flow incorrectly thinks existing element's key can be a number
+ // eslint-disable-next-line react-internal/safe-string-coercion
+ escapeUserProvidedKey('' + mappedChild.key) + '/' : '') + childKey);
+ }
+ array.push(mappedChild);
+ }
+ return 1;
+ }
+ var child;
+ var nextName;
+ var subtreeCount = 0; // Count of children found in the current subtree.
+
+ var nextNamePrefix = nameSoFar === '' ? SEPARATOR : nameSoFar + SUBSEPARATOR;
+ if (isArray(children)) {
+ for (var i = 0; i < children.length; i++) {
+ child = children[i];
+ nextName = nextNamePrefix + getElementKey(child, i);
+ subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);
+ }
+ } else {
+ var iteratorFn = getIteratorFn(children);
+ if (typeof iteratorFn === 'function') {
+ var iterableChildren = children;
+ {
+ // Warn about using Maps as children
+ if (iteratorFn === iterableChildren.entries) {
+ if (!didWarnAboutMaps) {
+ warn('Using Maps as children is not supported. ' + 'Use an array of keyed ReactElements instead.');
+ }
+ didWarnAboutMaps = true;
+ }
+ }
+ var iterator = iteratorFn.call(iterableChildren);
+ var step;
+ var ii = 0;
+ while (!(step = iterator.next()).done) {
+ child = step.value;
+ nextName = nextNamePrefix + getElementKey(child, ii++);
+ subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);
+ }
+ } else if (type === 'object') {
+ // eslint-disable-next-line react-internal/safe-string-coercion
+ var childrenString = String(children);
+ throw new Error("Objects are not valid as a React child (found: " + (childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString) + "). " + 'If you meant to render a collection of children, use an array ' + 'instead.');
+ }
+ }
+ return subtreeCount;
+ }
+
+ /**
+ * Maps children that are typically specified as `props.children`.
+ *
+ * See https://reactjs.org/docs/react-api.html#reactchildrenmap
+ *
+ * The provided mapFunction(child, index) will be called for each
+ * leaf child.
+ *
+ * @param {?*} children Children tree container.
+ * @param {function(*, int)} func The map function.
+ * @param {*} context Context for mapFunction.
+ * @return {object} Object containing the ordered map of results.
+ */
+ function mapChildren(children, func, context) {
+ if (children == null) {
+ return children;
+ }
+ var result = [];
+ var count = 0;
+ mapIntoArray(children, result, '', '', function (child) {
+ return func.call(context, child, count++);
+ });
+ return result;
+ }
+ /**
+ * Count the number of children that are typically specified as
+ * `props.children`.
+ *
+ * See https://reactjs.org/docs/react-api.html#reactchildrencount
+ *
+ * @param {?*} children Children tree container.
+ * @return {number} The number of children.
+ */
+
+ function countChildren(children) {
+ var n = 0;
+ mapChildren(children, function () {
+ n++; // Don't return anything
+ });
+ return n;
+ }
+
+ /**
+ * Iterates through children that are typically specified as `props.children`.
+ *
+ * See https://reactjs.org/docs/react-api.html#reactchildrenforeach
+ *
+ * The provided forEachFunc(child, index) will be called for each
+ * leaf child.
+ *
+ * @param {?*} children Children tree container.
+ * @param {function(*, int)} forEachFunc
+ * @param {*} forEachContext Context for forEachContext.
+ */
+ function forEachChildren(children, forEachFunc, forEachContext) {
+ mapChildren(children, function () {
+ forEachFunc.apply(this, arguments); // Don't return anything.
+ }, forEachContext);
+ }
+ /**
+ * Flatten a children object (typically specified as `props.children`) and
+ * return an array with appropriately re-keyed children.
+ *
+ * See https://reactjs.org/docs/react-api.html#reactchildrentoarray
+ */
+
+ function toArray(children) {
+ return mapChildren(children, function (child) {
+ return child;
+ }) || [];
+ }
+ /**
+ * Returns the first child in a collection of children and verifies that there
+ * is only one child in the collection.
+ *
+ * See https://reactjs.org/docs/react-api.html#reactchildrenonly
+ *
+ * The current implementation of this function assumes that a single child gets
+ * passed without a wrapper, but the purpose of this helper function is to
+ * abstract away the particular structure of children.
+ *
+ * @param {?object} children Child collection structure.
+ * @return {ReactElement} The first and only `ReactElement` contained in the
+ * structure.
+ */
+
+ function onlyChild(children) {
+ if (!isValidElement(children)) {
+ throw new Error('React.Children.only expected to receive a single React element child.');
+ }
+ return children;
+ }
+ function createContext(defaultValue) {
+ // TODO: Second argument used to be an optional `calculateChangedBits`
+ // function. Warn to reserve for future use?
+ var context = {
+ $$typeof: REACT_CONTEXT_TYPE,
+ // As a workaround to support multiple concurrent renderers, we categorize
+ // some renderers as primary and others as secondary. We only expect
+ // there to be two concurrent renderers at most: React Native (primary) and
+ // Fabric (secondary); React DOM (primary) and React ART (secondary).
+ // Secondary renderers store their context values on separate fields.
+ _currentValue: defaultValue,
+ _currentValue2: defaultValue,
+ // Used to track how many concurrent renderers this context currently
+ // supports within in a single renderer. Such as parallel server rendering.
+ _threadCount: 0,
+ // These are circular
+ Provider: null,
+ Consumer: null,
+ // Add these to use same hidden class in VM as ServerContext
+ _defaultValue: null,
+ _globalName: null
+ };
+ context.Provider = {
+ $$typeof: REACT_PROVIDER_TYPE,
+ _context: context
+ };
+ var hasWarnedAboutUsingNestedContextConsumers = false;
+ var hasWarnedAboutUsingConsumerProvider = false;
+ var hasWarnedAboutDisplayNameOnConsumer = false;
+ {
+ // A separate object, but proxies back to the original context object for
+ // backwards compatibility. It has a different $$typeof, so we can properly
+ // warn for the incorrect usage of Context as a Consumer.
+ var Consumer = {
+ $$typeof: REACT_CONTEXT_TYPE,
+ _context: context
+ }; // $FlowFixMe: Flow complains about not setting a value, which is intentional here
+
+ Object.defineProperties(Consumer, {
+ Provider: {
+ get: function get() {
+ if (!hasWarnedAboutUsingConsumerProvider) {
+ hasWarnedAboutUsingConsumerProvider = true;
+ error('Rendering is not supported and will be removed in ' + 'a future major release. Did you mean to render instead?');
+ }
+ return context.Provider;
+ },
+ set: function set(_Provider) {
+ context.Provider = _Provider;
+ }
+ },
+ _currentValue: {
+ get: function get() {
+ return context._currentValue;
+ },
+ set: function set(_currentValue) {
+ context._currentValue = _currentValue;
+ }
+ },
+ _currentValue2: {
+ get: function get() {
+ return context._currentValue2;
+ },
+ set: function set(_currentValue2) {
+ context._currentValue2 = _currentValue2;
+ }
+ },
+ _threadCount: {
+ get: function get() {
+ return context._threadCount;
+ },
+ set: function set(_threadCount) {
+ context._threadCount = _threadCount;
+ }
+ },
+ Consumer: {
+ get: function get() {
+ if (!hasWarnedAboutUsingNestedContextConsumers) {
+ hasWarnedAboutUsingNestedContextConsumers = true;
+ error('Rendering is not supported and will be removed in ' + 'a future major release. Did you mean to render instead?');
+ }
+ return context.Consumer;
+ }
+ },
+ displayName: {
+ get: function get() {
+ return context.displayName;
+ },
+ set: function set(displayName) {
+ if (!hasWarnedAboutDisplayNameOnConsumer) {
+ warn('Setting `displayName` on Context.Consumer has no effect. ' + "You should set it directly on the context with Context.displayName = '%s'.", displayName);
+ hasWarnedAboutDisplayNameOnConsumer = true;
+ }
+ }
+ }
+ }); // $FlowFixMe: Flow complains about missing properties because it doesn't understand defineProperty
+
+ context.Consumer = Consumer;
+ }
+ {
+ context._currentRenderer = null;
+ context._currentRenderer2 = null;
+ }
+ return context;
+ }
+ var Uninitialized = -1;
+ var Pending = 0;
+ var Resolved = 1;
+ var Rejected = 2;
+ function lazyInitializer(payload) {
+ if (payload._status === Uninitialized) {
+ var ctor = payload._result;
+ var thenable = ctor(); // Transition to the next state.
+ // This might throw either because it's missing or throws. If so, we treat it
+ // as still uninitialized and try again next time. Which is the same as what
+ // happens if the ctor or any wrappers processing the ctor throws. This might
+ // end up fixing it if the resolution was a concurrency bug.
+
+ thenable.then(function (moduleObject) {
+ if (payload._status === Pending || payload._status === Uninitialized) {
+ // Transition to the next state.
+ var resolved = payload;
+ resolved._status = Resolved;
+ resolved._result = moduleObject;
+ }
+ }, function (error) {
+ if (payload._status === Pending || payload._status === Uninitialized) {
+ // Transition to the next state.
+ var rejected = payload;
+ rejected._status = Rejected;
+ rejected._result = error;
+ }
+ });
+ if (payload._status === Uninitialized) {
+ // In case, we're still uninitialized, then we're waiting for the thenable
+ // to resolve. Set it as pending in the meantime.
+ var pending = payload;
+ pending._status = Pending;
+ pending._result = thenable;
+ }
+ }
+ if (payload._status === Resolved) {
+ var moduleObject = payload._result;
+ {
+ if (moduleObject === undefined) {
+ error('lazy: Expected the result of a dynamic imp' + 'ort() call. ' + 'Instead received: %s\n\nYour code should look like: \n ' +
+ // Break up imports to avoid accidentally parsing them as dependencies.
+ 'const MyComponent = lazy(() => imp' + "ort('./MyComponent'))\n\n" + 'Did you accidentally put curly braces around the import?', moduleObject);
+ }
+ }
+ {
+ if (!('default' in moduleObject)) {
+ error('lazy: Expected the result of a dynamic imp' + 'ort() call. ' + 'Instead received: %s\n\nYour code should look like: \n ' +
+ // Break up imports to avoid accidentally parsing them as dependencies.
+ 'const MyComponent = lazy(() => imp' + "ort('./MyComponent'))", moduleObject);
+ }
+ }
+ return moduleObject.default;
+ } else {
+ throw payload._result;
+ }
+ }
+ function lazy(ctor) {
+ var payload = {
+ // We use these fields to store the result.
+ _status: Uninitialized,
+ _result: ctor
+ };
+ var lazyType = {
+ $$typeof: REACT_LAZY_TYPE,
+ _payload: payload,
+ _init: lazyInitializer
+ };
+ {
+ // In production, this would just set it on the object.
+ var defaultProps;
+ var propTypes; // $FlowFixMe
+
+ Object.defineProperties(lazyType, {
+ defaultProps: {
+ configurable: true,
+ get: function get() {
+ return defaultProps;
+ },
+ set: function set(newDefaultProps) {
+ error('React.lazy(...): It is not supported to assign `defaultProps` to ' + 'a lazy component import. Either specify them where the component ' + 'is defined, or create a wrapping component around it.');
+ defaultProps = newDefaultProps; // Match production behavior more closely:
+ // $FlowFixMe
+
+ Object.defineProperty(lazyType, 'defaultProps', {
+ enumerable: true
+ });
+ }
+ },
+ propTypes: {
+ configurable: true,
+ get: function get() {
+ return propTypes;
+ },
+ set: function set(newPropTypes) {
+ error('React.lazy(...): It is not supported to assign `propTypes` to ' + 'a lazy component import. Either specify them where the component ' + 'is defined, or create a wrapping component around it.');
+ propTypes = newPropTypes; // Match production behavior more closely:
+ // $FlowFixMe
+
+ Object.defineProperty(lazyType, 'propTypes', {
+ enumerable: true
+ });
+ }
+ }
+ });
+ }
+ return lazyType;
+ }
+ function forwardRef(render) {
+ {
+ if (render != null && render.$$typeof === REACT_MEMO_TYPE) {
+ error('forwardRef requires a render function but received a `memo` ' + 'component. Instead of forwardRef(memo(...)), use ' + 'memo(forwardRef(...)).');
+ } else if (typeof render !== 'function') {
+ error('forwardRef requires a render function but was given %s.', render === null ? 'null' : typeof render);
+ } else {
+ if (render.length !== 0 && render.length !== 2) {
+ error('forwardRef render functions accept exactly two parameters: props and ref. %s', render.length === 1 ? 'Did you forget to use the ref parameter?' : 'Any additional parameter will be undefined.');
+ }
+ }
+ if (render != null) {
+ if (render.defaultProps != null || render.propTypes != null) {
+ error('forwardRef render functions do not support propTypes or defaultProps. ' + 'Did you accidentally pass a React component?');
+ }
+ }
+ }
+ var elementType = {
+ $$typeof: REACT_FORWARD_REF_TYPE,
+ render: render
+ };
+ {
+ var ownName;
+ Object.defineProperty(elementType, 'displayName', {
+ enumerable: false,
+ configurable: true,
+ get: function get() {
+ return ownName;
+ },
+ set: function set(name) {
+ ownName = name; // The inner component shouldn't inherit this display name in most cases,
+ // because the component may be used elsewhere.
+ // But it's nice for anonymous functions to inherit the name,
+ // so that our component-stack generation logic will display their frames.
+ // An anonymous function generally suggests a pattern like:
+ // React.forwardRef((props, ref) => {...});
+ // This kind of inner function is not used elsewhere so the side effect is okay.
+
+ if (!render.name && !render.displayName) {
+ render.displayName = name;
+ }
+ }
+ });
+ }
+ return elementType;
+ }
+ var REACT_MODULE_REFERENCE;
+ {
+ REACT_MODULE_REFERENCE = Symbol.for('react.module.reference');
+ }
+ function isValidElementType(type) {
+ if (typeof type === 'string' || typeof type === 'function') {
+ return true;
+ } // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill).
+
+ if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing) {
+ return true;
+ }
+ if (typeof type === 'object' && type !== null) {
+ if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE ||
+ // This needs to include all possible module reference object
+ // types supported by any Flight configuration anywhere since
+ // we don't know which Flight build this will end up being used
+ // with.
+ type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== undefined) {
+ return true;
+ }
+ }
+ return false;
+ }
+ function memo(type, compare) {
+ {
+ if (!isValidElementType(type)) {
+ error('memo: The first argument must be a component. Instead ' + 'received: %s', type === null ? 'null' : typeof type);
+ }
+ }
+ var elementType = {
+ $$typeof: REACT_MEMO_TYPE,
+ type: type,
+ compare: compare === undefined ? null : compare
+ };
+ {
+ var ownName;
+ Object.defineProperty(elementType, 'displayName', {
+ enumerable: false,
+ configurable: true,
+ get: function get() {
+ return ownName;
+ },
+ set: function set(name) {
+ ownName = name; // The inner component shouldn't inherit this display name in most cases,
+ // because the component may be used elsewhere.
+ // But it's nice for anonymous functions to inherit the name,
+ // so that our component-stack generation logic will display their frames.
+ // An anonymous function generally suggests a pattern like:
+ // React.memo((props) => {...});
+ // This kind of inner function is not used elsewhere so the side effect is okay.
+
+ if (!type.name && !type.displayName) {
+ type.displayName = name;
+ }
+ }
+ });
+ }
+ return elementType;
+ }
+ function resolveDispatcher() {
+ var dispatcher = ReactCurrentDispatcher.current;
+ {
+ if (dispatcher === null) {
+ 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:\n' + '1. You might have mismatching versions of React and the renderer (such as React DOM)\n' + '2. You might be breaking the Rules of Hooks\n' + '3. You might have more than one copy of React in the same app\n' + 'See https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.');
+ }
+ } // Will result in a null access error if accessed outside render phase. We
+ // intentionally don't throw our own error because this is in a hot path.
+ // Also helps ensure this is inlined.
+
+ return dispatcher;
+ }
+ function useContext(Context) {
+ var dispatcher = resolveDispatcher();
+ {
+ // TODO: add a more generic warning for invalid values.
+ if (Context._context !== undefined) {
+ var realContext = Context._context; // Don't deduplicate because this legitimately causes bugs
+ // and nobody should be using this in existing code.
+
+ if (realContext.Consumer === Context) {
+ error('Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be ' + 'removed in a future major release. Did you mean to call useContext(Context) instead?');
+ } else if (realContext.Provider === Context) {
+ error('Calling useContext(Context.Provider) is not supported. ' + 'Did you mean to call useContext(Context) instead?');
+ }
+ }
+ }
+ return dispatcher.useContext(Context);
+ }
+ function useState(initialState) {
+ var dispatcher = resolveDispatcher();
+ return dispatcher.useState(initialState);
+ }
+ function useReducer(reducer, initialArg, init) {
+ var dispatcher = resolveDispatcher();
+ return dispatcher.useReducer(reducer, initialArg, init);
+ }
+ function useRef(initialValue) {
+ var dispatcher = resolveDispatcher();
+ return dispatcher.useRef(initialValue);
+ }
+ function useEffect(create, deps) {
+ var dispatcher = resolveDispatcher();
+ return dispatcher.useEffect(create, deps);
+ }
+ function useInsertionEffect(create, deps) {
+ var dispatcher = resolveDispatcher();
+ return dispatcher.useInsertionEffect(create, deps);
+ }
+ function useLayoutEffect(create, deps) {
+ var dispatcher = resolveDispatcher();
+ return dispatcher.useLayoutEffect(create, deps);
+ }
+ function useCallback(callback, deps) {
+ var dispatcher = resolveDispatcher();
+ return dispatcher.useCallback(callback, deps);
+ }
+ function useMemo(create, deps) {
+ var dispatcher = resolveDispatcher();
+ return dispatcher.useMemo(create, deps);
+ }
+ function useImperativeHandle(ref, create, deps) {
+ var dispatcher = resolveDispatcher();
+ return dispatcher.useImperativeHandle(ref, create, deps);
+ }
+ function useDebugValue(value, formatterFn) {
+ {
+ var dispatcher = resolveDispatcher();
+ return dispatcher.useDebugValue(value, formatterFn);
+ }
+ }
+ function useTransition() {
+ var dispatcher = resolveDispatcher();
+ return dispatcher.useTransition();
+ }
+ function useDeferredValue(value) {
+ var dispatcher = resolveDispatcher();
+ return dispatcher.useDeferredValue(value);
+ }
+ function useId() {
+ var dispatcher = resolveDispatcher();
+ return dispatcher.useId();
+ }
+ function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
+ var dispatcher = resolveDispatcher();
+ return dispatcher.useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot);
+ }
+
+ // Helpers to patch console.logs to avoid logging during side-effect free
+ // replaying on render function. This currently only patches the object
+ // lazily which won't cover if the log function was extracted eagerly.
+ // We could also eagerly patch the method.
+ var disabledDepth = 0;
+ var prevLog;
+ var prevInfo;
+ var prevWarn;
+ var prevError;
+ var prevGroup;
+ var prevGroupCollapsed;
+ var prevGroupEnd;
+ function disabledLog() {}
+ disabledLog.__reactDisabledLog = true;
+ function disableLogs() {
+ {
+ if (disabledDepth === 0) {
+ /* eslint-disable react-internal/no-production-logging */
+ prevLog = console.log;
+ prevInfo = console.info;
+ prevWarn = console.warn;
+ prevError = console.error;
+ prevGroup = console.group;
+ prevGroupCollapsed = console.groupCollapsed;
+ prevGroupEnd = console.groupEnd; // https://github.com/facebook/react/issues/19099
+
+ var props = {
+ configurable: true,
+ enumerable: true,
+ value: disabledLog,
+ writable: true
+ }; // $FlowFixMe Flow thinks console is immutable.
+
+ Object.defineProperties(console, {
+ info: props,
+ log: props,
+ warn: props,
+ error: props,
+ group: props,
+ groupCollapsed: props,
+ groupEnd: props
+ });
+ /* eslint-enable react-internal/no-production-logging */
+ }
+ disabledDepth++;
+ }
+ }
+ function reenableLogs() {
+ {
+ disabledDepth--;
+ if (disabledDepth === 0) {
+ /* eslint-disable react-internal/no-production-logging */
+ var props = {
+ configurable: true,
+ enumerable: true,
+ writable: true
+ }; // $FlowFixMe Flow thinks console is immutable.
+
+ Object.defineProperties(console, {
+ log: assign({}, props, {
+ value: prevLog
+ }),
+ info: assign({}, props, {
+ value: prevInfo
+ }),
+ warn: assign({}, props, {
+ value: prevWarn
+ }),
+ error: assign({}, props, {
+ value: prevError
+ }),
+ group: assign({}, props, {
+ value: prevGroup
+ }),
+ groupCollapsed: assign({}, props, {
+ value: prevGroupCollapsed
+ }),
+ groupEnd: assign({}, props, {
+ value: prevGroupEnd
+ })
+ });
+ /* eslint-enable react-internal/no-production-logging */
+ }
+ if (disabledDepth < 0) {
+ error('disabledDepth fell below zero. ' + 'This is a bug in React. Please file an issue.');
+ }
+ }
+ }
+ var ReactCurrentDispatcher$1 = ReactSharedInternals.ReactCurrentDispatcher;
+ var prefix;
+ function describeBuiltInComponentFrame(name, source, ownerFn) {
+ {
+ if (prefix === undefined) {
+ // Extract the VM specific prefix used by each line.
+ try {
+ throw Error();
+ } catch (x) {
+ var match = x.stack.trim().match(/\n( *(at )?)/);
+ prefix = match && match[1] || '';
+ }
+ } // We use the prefix to ensure our stacks line up with native stack frames.
+
+ return '\n' + prefix + name;
+ }
+ }
+ var reentry = false;
+ var componentFrameCache;
+ {
+ var PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map;
+ componentFrameCache = new PossiblyWeakMap();
+ }
+ function describeNativeComponentFrame(fn, construct) {
+ // If something asked for a stack inside a fake render, it should get ignored.
+ if (!fn || reentry) {
+ return '';
+ }
+ {
+ var frame = componentFrameCache.get(fn);
+ if (frame !== undefined) {
+ return frame;
+ }
+ }
+ var control;
+ reentry = true;
+ var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe It does accept undefined.
+
+ Error.prepareStackTrace = undefined;
+ var previousDispatcher;
+ {
+ previousDispatcher = ReactCurrentDispatcher$1.current; // Set the dispatcher in DEV because this might be call in the render function
+ // for warnings.
+
+ ReactCurrentDispatcher$1.current = null;
+ disableLogs();
+ }
+ try {
+ // This should throw.
+ if (construct) {
+ // Something should be setting the props in the constructor.
+ var Fake = function Fake() {
+ throw Error();
+ }; // $FlowFixMe
+
+ Object.defineProperty(Fake.prototype, 'props', {
+ set: function set() {
+ // We use a throwing setter instead of frozen or non-writable props
+ // because that won't throw in a non-strict mode function.
+ throw Error();
+ }
+ });
+ if (typeof Reflect === 'object' && Reflect.construct) {
+ // We construct a different control for this case to include any extra
+ // frames added by the construct call.
+ try {
+ Reflect.construct(Fake, []);
+ } catch (x) {
+ control = x;
+ }
+ Reflect.construct(fn, [], Fake);
+ } else {
+ try {
+ Fake.call();
+ } catch (x) {
+ control = x;
+ }
+ fn.call(Fake.prototype);
+ }
+ } else {
+ try {
+ throw Error();
+ } catch (x) {
+ control = x;
+ }
+ fn();
+ }
+ } catch (sample) {
+ // This is inlined manually because closure doesn't do it for us.
+ if (sample && control && typeof sample.stack === 'string') {
+ // This extracts the first frame from the sample that isn't also in the control.
+ // Skipping one frame that we assume is the frame that calls the two.
+ var sampleLines = sample.stack.split('\n');
+ var controlLines = control.stack.split('\n');
+ var s = sampleLines.length - 1;
+ var c = controlLines.length - 1;
+ while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
+ // We expect at least one stack frame to be shared.
+ // Typically this will be the root most one. However, stack frames may be
+ // cut off due to maximum stack limits. In this case, one maybe cut off
+ // earlier than the other. We assume that the sample is longer or the same
+ // and there for cut off earlier. So we should find the root most frame in
+ // the sample somewhere in the control.
+ c--;
+ }
+ for (; s >= 1 && c >= 0; s--, c--) {
+ // Next we find the first one that isn't the same which should be the
+ // frame that called our sample function and the control.
+ if (sampleLines[s] !== controlLines[c]) {
+ // In V8, the first line is describing the message but other VMs don't.
+ // If we're about to return the first line, and the control is also on the same
+ // line, that's a pretty good indicator that our sample threw at same line as
+ // the control. I.e. before we entered the sample frame. So we ignore this result.
+ // This can happen if you passed a class to function component, or non-function.
+ if (s !== 1 || c !== 1) {
+ do {
+ s--;
+ c--; // We may still have similar intermediate frames from the construct call.
+ // The next one that isn't the same should be our match though.
+
+ if (c < 0 || sampleLines[s] !== controlLines[c]) {
+ // V8 adds a "new" prefix for native classes. Let's remove it to make it prettier.
+ var _frame = '\n' + sampleLines[s].replace(' at new ', ' at '); // If our component frame is labeled ""
+ // but we have a user-provided "displayName"
+ // splice it in to make the stack more readable.
+
+ if (fn.displayName && _frame.includes('')) {
+ _frame = _frame.replace('', fn.displayName);
+ }
+ {
+ if (typeof fn === 'function') {
+ componentFrameCache.set(fn, _frame);
+ }
+ } // Return the line we found.
+
+ return _frame;
+ }
+ } while (s >= 1 && c >= 0);
+ }
+ break;
+ }
+ }
+ }
+ } finally {
+ reentry = false;
+ {
+ ReactCurrentDispatcher$1.current = previousDispatcher;
+ reenableLogs();
+ }
+ Error.prepareStackTrace = previousPrepareStackTrace;
+ } // Fallback to just using the name if we couldn't make it throw.
+
+ var name = fn ? fn.displayName || fn.name : '';
+ var syntheticFrame = name ? describeBuiltInComponentFrame(name) : '';
+ {
+ if (typeof fn === 'function') {
+ componentFrameCache.set(fn, syntheticFrame);
+ }
+ }
+ return syntheticFrame;
+ }
+ function describeFunctionComponentFrame(fn, source, ownerFn) {
+ {
+ return describeNativeComponentFrame(fn, false);
+ }
+ }
+ function shouldConstruct(Component) {
+ var prototype = Component.prototype;
+ return !!(prototype && prototype.isReactComponent);
+ }
+ function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
+ if (type == null) {
+ return '';
+ }
+ if (typeof type === 'function') {
+ {
+ return describeNativeComponentFrame(type, shouldConstruct(type));
+ }
+ }
+ if (typeof type === 'string') {
+ return describeBuiltInComponentFrame(type);
+ }
+ switch (type) {
+ case REACT_SUSPENSE_TYPE:
+ return describeBuiltInComponentFrame('Suspense');
+ case REACT_SUSPENSE_LIST_TYPE:
+ return describeBuiltInComponentFrame('SuspenseList');
+ }
+ if (typeof type === 'object') {
+ switch (type.$$typeof) {
+ case REACT_FORWARD_REF_TYPE:
+ return describeFunctionComponentFrame(type.render);
+ case REACT_MEMO_TYPE:
+ // Memo may contain any component type so we recursively resolve it.
+ return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
+ case REACT_LAZY_TYPE:
+ {
+ var lazyComponent = type;
+ var payload = lazyComponent._payload;
+ var init = lazyComponent._init;
+ try {
+ // Lazy may contain any component type so we recursively resolve it.
+ return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
+ } catch (x) {}
+ }
+ }
+ }
+ return '';
+ }
+ var loggedTypeFailures = {};
+ var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
+ function setCurrentlyValidatingElement(element) {
+ {
+ if (element) {
+ var owner = element._owner;
+ var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
+ ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
+ } else {
+ ReactDebugCurrentFrame$1.setExtraStackFrame(null);
+ }
+ }
+ }
+ function checkPropTypes(typeSpecs, values, location, componentName, element) {
+ {
+ // $FlowFixMe This is okay but Flow doesn't know it.
+ var has = Function.call.bind(hasOwnProperty);
+ for (var typeSpecName in typeSpecs) {
+ if (has(typeSpecs, typeSpecName)) {
+ var error$1 = void 0; // 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') {
+ // eslint-disable-next-line react-internal/prod-error-codes
+ 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] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');
+ err.name = 'Invariant Violation';
+ throw err;
+ }
+ error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED');
+ } catch (ex) {
+ error$1 = ex;
+ }
+ if (error$1 && !(error$1 instanceof Error)) {
+ setCurrentlyValidatingElement(element);
+ error('%s: type specification of %s' + ' `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error$1);
+ setCurrentlyValidatingElement(null);
+ }
+ if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
+ // Only monitor this failure once because there tends to be a lot of the
+ // same error.
+ loggedTypeFailures[error$1.message] = true;
+ setCurrentlyValidatingElement(element);
+ error('Failed %s type: %s', location, error$1.message);
+ setCurrentlyValidatingElement(null);
+ }
+ }
+ }
+ }
+ }
+ function setCurrentlyValidatingElement$1(element) {
+ {
+ if (element) {
+ var owner = element._owner;
+ var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
+ setExtraStackFrame(stack);
+ } else {
+ setExtraStackFrame(null);
+ }
+ }
+ }
+ var propTypesMisspellWarningShown;
+ {
+ propTypesMisspellWarningShown = false;
+ }
+ function getDeclarationErrorAddendum() {
+ if (ReactCurrentOwner.current) {
+ var name = getComponentNameFromType(ReactCurrentOwner.current.type);
+ if (name) {
+ return '\n\nCheck the render method of `' + name + '`.';
+ }
+ }
+ return '';
+ }
+ function getSourceInfoErrorAddendum(source) {
+ if (source !== undefined) {
+ var fileName = source.fileName.replace(/^.*[\\\/]/, '');
+ var lineNumber = source.lineNumber;
+ return '\n\nCheck your code at ' + fileName + ':' + lineNumber + '.';
+ }
+ return '';
+ }
+ function getSourceInfoErrorAddendumForProps(elementProps) {
+ if (elementProps !== null && elementProps !== undefined) {
+ return getSourceInfoErrorAddendum(elementProps.__source);
+ }
+ return '';
+ }
+ /**
+ * Warn if there's no key explicitly set on dynamic arrays of children or
+ * object keys are not valid. This allows us to keep track of children between
+ * updates.
+ */
+
+ var ownerHasKeyUseWarning = {};
+ function getCurrentComponentErrorInfo(parentType) {
+ var info = getDeclarationErrorAddendum();
+ if (!info) {
+ var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name;
+ if (parentName) {
+ info = "\n\nCheck the top-level render call using <" + parentName + ">.";
+ }
+ }
+ return info;
+ }
+ /**
+ * Warn if the element doesn't have an explicit key assigned to it.
+ * This element is in an array. The array could grow and shrink or be
+ * reordered. All children that haven't already been validated are required to
+ * have a "key" property assigned to it. Error statuses are cached so a warning
+ * will only be shown once.
+ *
+ * @internal
+ * @param {ReactElement} element Element that requires a key.
+ * @param {*} parentType element's parent's type.
+ */
+
+ function validateExplicitKey(element, parentType) {
+ if (!element._store || element._store.validated || element.key != null) {
+ return;
+ }
+ element._store.validated = true;
+ var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);
+ if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {
+ return;
+ }
+ ownerHasKeyUseWarning[currentComponentErrorInfo] = true; // Usually the current owner is the offender, but if it accepts children as a
+ // property, it may be the creator of the child that's responsible for
+ // assigning it a key.
+
+ var childOwner = '';
+ if (element && element._owner && element._owner !== ReactCurrentOwner.current) {
+ // Give the component that originally created this child.
+ childOwner = " It was passed a child from " + getComponentNameFromType(element._owner.type) + ".";
+ }
+ {
+ setCurrentlyValidatingElement$1(element);
+ error('Each child in a list should have a unique "key" prop.' + '%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);
+ setCurrentlyValidatingElement$1(null);
+ }
+ }
+ /**
+ * Ensure that every element either is passed in a static location, in an
+ * array with an explicit keys property defined, or in an object literal
+ * with valid key property.
+ *
+ * @internal
+ * @param {ReactNode} node Statically passed child of any type.
+ * @param {*} parentType node's parent's type.
+ */
+
+ function validateChildKeys(node, parentType) {
+ if (typeof node !== 'object') {
+ return;
+ }
+ if (isArray(node)) {
+ for (var i = 0; i < node.length; i++) {
+ var child = node[i];
+ if (isValidElement(child)) {
+ validateExplicitKey(child, parentType);
+ }
+ }
+ } else if (isValidElement(node)) {
+ // This element was passed in a valid location.
+ if (node._store) {
+ node._store.validated = true;
+ }
+ } else if (node) {
+ var iteratorFn = getIteratorFn(node);
+ if (typeof iteratorFn === 'function') {
+ // Entry iterators used to provide implicit keys,
+ // but now we print a separate warning for them later.
+ if (iteratorFn !== node.entries) {
+ var iterator = iteratorFn.call(node);
+ var step;
+ while (!(step = iterator.next()).done) {
+ if (isValidElement(step.value)) {
+ validateExplicitKey(step.value, parentType);
+ }
+ }
+ }
+ }
+ }
+ }
+ /**
+ * Given an element, validate that its props follow the propTypes definition,
+ * provided by the type.
+ *
+ * @param {ReactElement} element
+ */
+
+ function validatePropTypes(element) {
+ {
+ var type = element.type;
+ if (type === null || type === undefined || typeof type === 'string') {
+ return;
+ }
+ var propTypes;
+ if (typeof type === 'function') {
+ propTypes = type.propTypes;
+ } else if (typeof type === 'object' && (type.$$typeof === REACT_FORWARD_REF_TYPE ||
+ // Note: Memo only checks outer props here.
+ // Inner props are checked in the reconciler.
+ type.$$typeof === REACT_MEMO_TYPE)) {
+ propTypes = type.propTypes;
+ } else {
+ return;
+ }
+ if (propTypes) {
+ // Intentionally inside to avoid triggering lazy initializers:
+ var name = getComponentNameFromType(type);
+ checkPropTypes(propTypes, element.props, 'prop', name, element);
+ } else if (type.PropTypes !== undefined && !propTypesMisspellWarningShown) {
+ propTypesMisspellWarningShown = true; // Intentionally inside to avoid triggering lazy initializers:
+
+ var _name = getComponentNameFromType(type);
+ error('Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', _name || 'Unknown');
+ }
+ if (typeof type.getDefaultProps === 'function' && !type.getDefaultProps.isReactClassApproved) {
+ error('getDefaultProps is only used on classic React.createClass ' + 'definitions. Use a static property named `defaultProps` instead.');
+ }
+ }
+ }
+ /**
+ * Given a fragment, validate that it can only be provided with fragment props
+ * @param {ReactElement} fragment
+ */
+
+ function validateFragmentProps(fragment) {
+ {
+ var keys = Object.keys(fragment.props);
+ for (var i = 0; i < keys.length; i++) {
+ var key = keys[i];
+ if (key !== 'children' && key !== 'key') {
+ setCurrentlyValidatingElement$1(fragment);
+ error('Invalid prop `%s` supplied to `React.Fragment`. ' + 'React.Fragment can only have `key` and `children` props.', key);
+ setCurrentlyValidatingElement$1(null);
+ break;
+ }
+ }
+ if (fragment.ref !== null) {
+ setCurrentlyValidatingElement$1(fragment);
+ error('Invalid attribute `ref` supplied to `React.Fragment`.');
+ setCurrentlyValidatingElement$1(null);
+ }
+ }
+ }
+ function createElementWithValidation(type, props, children) {
+ var validType = isValidElementType(type); // We warn in this case but don't throw. We expect the element creation to
+ // succeed and there will likely be errors in render.
+
+ if (!validType) {
+ var info = '';
+ if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {
+ info += ' You likely forgot to export your component from the file ' + "it's defined in, or you might have mixed up default and named imports.";
+ }
+ var sourceInfo = getSourceInfoErrorAddendumForProps(props);
+ if (sourceInfo) {
+ info += sourceInfo;
+ } else {
+ info += getDeclarationErrorAddendum();
+ }
+ var typeString;
+ if (type === null) {
+ typeString = 'null';
+ } else if (isArray(type)) {
+ typeString = 'array';
+ } else if (type !== undefined && type.$$typeof === REACT_ELEMENT_TYPE) {
+ typeString = "<" + (getComponentNameFromType(type.type) || 'Unknown') + " />";
+ info = ' Did you accidentally export a JSX literal instead of a component?';
+ } else {
+ typeString = typeof type;
+ }
+ {
+ error('React.createElement: type is invalid -- expected a string (for ' + 'built-in components) or a class/function (for composite ' + 'components) but got: %s.%s', typeString, info);
+ }
+ }
+ var element = createElement.apply(this, arguments); // The result can be nullish if a mock or a custom function is used.
+ // TODO: Drop this when these are no longer allowed as the type argument.
+
+ if (element == null) {
+ return element;
+ } // Skip key warning if the type isn't valid since our key validation logic
+ // doesn't expect a non-string/function type and can throw confusing errors.
+ // We don't want exception behavior to differ between dev and prod.
+ // (Rendering will throw with a helpful message and as soon as the type is
+ // fixed, the key warnings will appear.)
+
+ if (validType) {
+ for (var i = 2; i < arguments.length; i++) {
+ validateChildKeys(arguments[i], type);
+ }
+ }
+ if (type === REACT_FRAGMENT_TYPE) {
+ validateFragmentProps(element);
+ } else {
+ validatePropTypes(element);
+ }
+ return element;
+ }
+ var didWarnAboutDeprecatedCreateFactory = false;
+ function createFactoryWithValidation(type) {
+ var validatedFactory = createElementWithValidation.bind(null, type);
+ validatedFactory.type = type;
+ {
+ if (!didWarnAboutDeprecatedCreateFactory) {
+ didWarnAboutDeprecatedCreateFactory = true;
+ warn('React.createFactory() is deprecated and will be removed in ' + 'a future major release. Consider using JSX ' + 'or use React.createElement() directly instead.');
+ } // Legacy hook: remove it
+
+ Object.defineProperty(validatedFactory, 'type', {
+ enumerable: false,
+ get: function get() {
+ warn('Factory.type is deprecated. Access the class directly ' + 'before passing it to createFactory.');
+ Object.defineProperty(this, 'type', {
+ value: type
+ });
+ return type;
+ }
+ });
+ }
+ return validatedFactory;
+ }
+ function cloneElementWithValidation(element, props, children) {
+ var newElement = cloneElement.apply(this, arguments);
+ for (var i = 2; i < arguments.length; i++) {
+ validateChildKeys(arguments[i], newElement.type);
+ }
+ validatePropTypes(newElement);
+ return newElement;
+ }
+ function startTransition(scope, options) {
+ var prevTransition = ReactCurrentBatchConfig.transition;
+ ReactCurrentBatchConfig.transition = {};
+ var currentTransition = ReactCurrentBatchConfig.transition;
+ {
+ ReactCurrentBatchConfig.transition._updatedFibers = new Set();
+ }
+ try {
+ scope();
+ } finally {
+ ReactCurrentBatchConfig.transition = prevTransition;
+ {
+ if (prevTransition === null && currentTransition._updatedFibers) {
+ var updatedFibersCount = currentTransition._updatedFibers.size;
+ if (updatedFibersCount > 10) {
+ warn('Detected a large number of updates inside startTransition. ' + 'If this is due to a subscription please re-write it to use React provided hooks. ' + 'Otherwise concurrent mode guarantees are off the table.');
+ }
+ currentTransition._updatedFibers.clear();
+ }
+ }
+ }
+ }
+ var didWarnAboutMessageChannel = false;
+ var enqueueTaskImpl = null;
+ function enqueueTask(task) {
+ if (enqueueTaskImpl === null) {
+ try {
+ // read require off the module object to get around the bundlers.
+ // we don't want them to detect a require and bundle a Node polyfill.
+ var requireString = ('require' + Math.random()).slice(0, 7);
+ var nodeRequire = module && module[requireString]; // assuming we're in node, let's try to get node's
+ // version of setImmediate, bypassing fake timers if any.
+
+ enqueueTaskImpl = nodeRequire.call(module, 'timers').setImmediate;
+ } catch (_err) {
+ // we're in a browser
+ // we can't use regular timers because they may still be faked
+ // so we try MessageChannel+postMessage instead
+ enqueueTaskImpl = function enqueueTaskImpl(callback) {
+ {
+ if (didWarnAboutMessageChannel === false) {
+ didWarnAboutMessageChannel = true;
+ if (typeof MessageChannel === 'undefined') {
+ error('This browser does not have a MessageChannel implementation, ' + 'so enqueuing tasks via await act(async () => ...) will fail. ' + 'Please file an issue at https://github.com/facebook/react/issues ' + 'if you encounter this warning.');
+ }
+ }
+ }
+ var channel = new MessageChannel();
+ channel.port1.onmessage = callback;
+ channel.port2.postMessage(undefined);
+ };
+ }
+ }
+ return enqueueTaskImpl(task);
+ }
+ var actScopeDepth = 0;
+ var didWarnNoAwaitAct = false;
+ function act(callback) {
+ {
+ // `act` calls can be nested, so we track the depth. This represents the
+ // number of `act` scopes on the stack.
+ var prevActScopeDepth = actScopeDepth;
+ actScopeDepth++;
+ if (ReactCurrentActQueue.current === null) {
+ // This is the outermost `act` scope. Initialize the queue. The reconciler
+ // will detect the queue and use it instead of Scheduler.
+ ReactCurrentActQueue.current = [];
+ }
+ var prevIsBatchingLegacy = ReactCurrentActQueue.isBatchingLegacy;
+ var result;
+ try {
+ // Used to reproduce behavior of `batchedUpdates` in legacy mode. Only
+ // set to `true` while the given callback is executed, not for updates
+ // triggered during an async event, because this is how the legacy
+ // implementation of `act` behaved.
+ ReactCurrentActQueue.isBatchingLegacy = true;
+ result = callback(); // Replicate behavior of original `act` implementation in legacy mode,
+ // which flushed updates immediately after the scope function exits, even
+ // if it's an async function.
+
+ if (!prevIsBatchingLegacy && ReactCurrentActQueue.didScheduleLegacyUpdate) {
+ var queue = ReactCurrentActQueue.current;
+ if (queue !== null) {
+ ReactCurrentActQueue.didScheduleLegacyUpdate = false;
+ flushActQueue(queue);
+ }
+ }
+ } catch (error) {
+ popActScope(prevActScopeDepth);
+ throw error;
+ } finally {
+ ReactCurrentActQueue.isBatchingLegacy = prevIsBatchingLegacy;
+ }
+ if (result !== null && typeof result === 'object' && typeof result.then === 'function') {
+ var thenableResult = result; // The callback is an async function (i.e. returned a promise). Wait
+ // for it to resolve before exiting the current scope.
+
+ var wasAwaited = false;
+ var thenable = {
+ then: function then(resolve, reject) {
+ wasAwaited = true;
+ thenableResult.then(function (returnValue) {
+ popActScope(prevActScopeDepth);
+ if (actScopeDepth === 0) {
+ // We've exited the outermost act scope. Recursively flush the
+ // queue until there's no remaining work.
+ recursivelyFlushAsyncActWork(returnValue, resolve, reject);
+ } else {
+ resolve(returnValue);
+ }
+ }, function (error) {
+ // The callback threw an error.
+ popActScope(prevActScopeDepth);
+ reject(error);
+ });
+ }
+ };
+ {
+ if (!didWarnNoAwaitAct && typeof Promise !== 'undefined') {
+ // eslint-disable-next-line no-undef
+ Promise.resolve().then(function () {}).then(function () {
+ if (!wasAwaited) {
+ didWarnNoAwaitAct = true;
+ error('You called act(async () => ...) without await. ' + 'This could lead to unexpected testing behaviour, ' + 'interleaving multiple act calls and mixing their ' + 'scopes. ' + 'You should - await act(async () => ...);');
+ }
+ });
+ }
+ }
+ return thenable;
+ } else {
+ var returnValue = result; // The callback is not an async function. Exit the current scope
+ // immediately, without awaiting.
+
+ popActScope(prevActScopeDepth);
+ if (actScopeDepth === 0) {
+ // Exiting the outermost act scope. Flush the queue.
+ var _queue = ReactCurrentActQueue.current;
+ if (_queue !== null) {
+ flushActQueue(_queue);
+ ReactCurrentActQueue.current = null;
+ } // Return a thenable. If the user awaits it, we'll flush again in
+ // case additional work was scheduled by a microtask.
+
+ var _thenable = {
+ then: function then(resolve, reject) {
+ // Confirm we haven't re-entered another `act` scope, in case
+ // the user does something weird like await the thenable
+ // multiple times.
+ if (ReactCurrentActQueue.current === null) {
+ // Recursively flush the queue until there's no remaining work.
+ ReactCurrentActQueue.current = [];
+ recursivelyFlushAsyncActWork(returnValue, resolve, reject);
+ } else {
+ resolve(returnValue);
+ }
+ }
+ };
+ return _thenable;
+ } else {
+ // Since we're inside a nested `act` scope, the returned thenable
+ // immediately resolves. The outer scope will flush the queue.
+ var _thenable2 = {
+ then: function then(resolve, reject) {
+ resolve(returnValue);
+ }
+ };
+ return _thenable2;
+ }
+ }
+ }
+ }
+ function popActScope(prevActScopeDepth) {
+ {
+ if (prevActScopeDepth !== actScopeDepth - 1) {
+ error('You seem to have overlapping act() calls, this is not supported. ' + 'Be sure to await previous act() calls before making a new one. ');
+ }
+ actScopeDepth = prevActScopeDepth;
+ }
+ }
+ function recursivelyFlushAsyncActWork(returnValue, resolve, reject) {
+ {
+ var queue = ReactCurrentActQueue.current;
+ if (queue !== null) {
+ try {
+ flushActQueue(queue);
+ enqueueTask(function () {
+ if (queue.length === 0) {
+ // No additional work was scheduled. Finish.
+ ReactCurrentActQueue.current = null;
+ resolve(returnValue);
+ } else {
+ // Keep flushing work until there's none left.
+ recursivelyFlushAsyncActWork(returnValue, resolve, reject);
+ }
+ });
+ } catch (error) {
+ reject(error);
+ }
+ } else {
+ resolve(returnValue);
+ }
+ }
+ }
+ var isFlushing = false;
+ function flushActQueue(queue) {
+ {
+ if (!isFlushing) {
+ // Prevent re-entrance.
+ isFlushing = true;
+ var i = 0;
+ try {
+ for (; i < queue.length; i++) {
+ var callback = queue[i];
+ do {
+ callback = callback(true);
+ } while (callback !== null);
+ }
+ queue.length = 0;
+ } catch (error) {
+ // If something throws, leave the remaining callbacks on the queue.
+ queue = queue.slice(i + 1);
+ throw error;
+ } finally {
+ isFlushing = false;
+ }
+ }
+ }
+ }
+ var createElement$1 = createElementWithValidation;
+ var cloneElement$1 = cloneElementWithValidation;
+ var createFactory = createFactoryWithValidation;
+ var Children = {
+ map: mapChildren,
+ forEach: forEachChildren,
+ count: countChildren,
+ toArray: toArray,
+ only: onlyChild
+ };
+ exports.Children = Children;
+ exports.Component = Component;
+ exports.Fragment = REACT_FRAGMENT_TYPE;
+ exports.Profiler = REACT_PROFILER_TYPE;
+ exports.PureComponent = PureComponent;
+ exports.StrictMode = REACT_STRICT_MODE_TYPE;
+ exports.Suspense = REACT_SUSPENSE_TYPE;
+ exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactSharedInternals;
+ exports.cloneElement = cloneElement$1;
+ exports.createContext = createContext;
+ exports.createElement = createElement$1;
+ exports.createFactory = createFactory;
+ exports.createRef = createRef;
+ exports.forwardRef = forwardRef;
+ exports.isValidElement = isValidElement;
+ exports.lazy = lazy;
+ exports.memo = memo;
+ exports.startTransition = startTransition;
+ exports.unstable_act = act;
+ exports.useCallback = useCallback;
+ exports.useContext = useContext;
+ exports.useDebugValue = useDebugValue;
+ exports.useDeferredValue = useDeferredValue;
+ exports.useEffect = useEffect;
+ exports.useId = useId;
+ exports.useImperativeHandle = useImperativeHandle;
+ exports.useInsertionEffect = useInsertionEffect;
+ exports.useLayoutEffect = useLayoutEffect;
+ exports.useMemo = useMemo;
+ exports.useReducer = useReducer;
+ exports.useRef = useRef;
+ exports.useState = useState;
+ exports.useSyncExternalStore = useSyncExternalStore;
+ exports.useTransition = useTransition;
+ exports.version = ReactVersion;
+ /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
+ if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === 'function') {
+ __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());
+ }
+ })();
+ }
+},67,[],"node_modules\\react\\cjs\\react.development.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ _$$_REQUIRE(_dependencyMap[0], "../Core/InitializeCore");
+},68,[69],"node_modules\\react-native\\Libraries\\ReactPrivate\\ReactNativePrivateInitializeCore.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ /**
+ * Sets up global variables typical in most JavaScript environments.
+ *
+ * 1. Global timers (via `setTimeout` etc).
+ * 2. Global console object.
+ * 3. Hooks for printing stack traces with source maps.
+ *
+ * Leaves enough room in the environment for implementing your own:
+ *
+ * 1. Require system.
+ * 2. Bridged modules.
+ *
+ */
+
+ 'use strict';
+
+ var start = Date.now();
+ _$$_REQUIRE(_dependencyMap[0], "./setUpGlobals");
+ _$$_REQUIRE(_dependencyMap[1], "./setUpDOM");
+ _$$_REQUIRE(_dependencyMap[2], "./setUpPerformance");
+ _$$_REQUIRE(_dependencyMap[3], "./setUpErrorHandling");
+ _$$_REQUIRE(_dependencyMap[4], "./polyfillPromise");
+ _$$_REQUIRE(_dependencyMap[5], "./setUpRegeneratorRuntime");
+ _$$_REQUIRE(_dependencyMap[6], "./setUpTimers");
+ _$$_REQUIRE(_dependencyMap[7], "./setUpXHR");
+ _$$_REQUIRE(_dependencyMap[8], "./setUpAlert");
+ _$$_REQUIRE(_dependencyMap[9], "./setUpNavigator");
+ _$$_REQUIRE(_dependencyMap[10], "./setUpBatchedBridge");
+ _$$_REQUIRE(_dependencyMap[11], "./setUpSegmentFetcher");
+ if (__DEV__) {
+ _$$_REQUIRE(_dependencyMap[12], "./checkNativeVersion");
+ _$$_REQUIRE(_dependencyMap[13], "./setUpDeveloperTools");
+ _$$_REQUIRE(_dependencyMap[14], "../LogBox/LogBox").default.install();
+ }
+ _$$_REQUIRE(_dependencyMap[15], "../ReactNative/AppRegistry");
+ // We could just call GlobalPerformanceLogger.markPoint at the top of the file,
+ // but then we'd be excluding the time it took to require the logger.
+ // Instead, we just use Date.now and backdate the timestamp.
+ _$$_REQUIRE(_dependencyMap[16], "../Utilities/GlobalPerformanceLogger").markPoint('initializeCore_start', _$$_REQUIRE(_dependencyMap[16], "../Utilities/GlobalPerformanceLogger").currentTimestamp() - (Date.now() - start));
+ _$$_REQUIRE(_dependencyMap[16], "../Utilities/GlobalPerformanceLogger").markPoint('initializeCore_end');
+},69,[70,71,74,86,113,140,143,148,175,179,180,202,204,207,95,231,155],"node_modules\\react-native\\Libraries\\Core\\InitializeCore.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ 'use strict';
+
+ /**
+ * Sets up global variables for React Native.
+ * You can use this module directly, or just require InitializeCore.
+ */
+ if (global.window === undefined) {
+ // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it.
+ global.window = global;
+ }
+ if (global.self === undefined) {
+ // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it.
+ global.self = global;
+ }
+
+ // Set up process
+ // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it.
+ global.process = global.process || {};
+ // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it.
+ global.process.env = global.process.env || {};
+ if (!global.process.env.NODE_ENV) {
+ // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it.
+ global.process.env.NODE_ENV = __DEV__ ? 'development' : 'production';
+ }
+},70,[],"node_modules\\react-native\\Libraries\\Core\\setUpGlobals.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ var _DOMRect = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../DOM/Geometry/DOMRect"));
+ var _DOMRectReadOnly = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "../DOM/Geometry/DOMRectReadOnly"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it
+ global.DOMRect = _DOMRect.default;
+
+ // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it
+ global.DOMRectReadOnly = _DOMRectReadOnly.default;
+},71,[6,72,73],"node_modules\\react-native\\Libraries\\Core\\setUpDOM.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck"));
+ var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass"));
+ var _possibleConstructorReturn2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "@babel/runtime/helpers/possibleConstructorReturn"));
+ var _getPrototypeOf2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "@babel/runtime/helpers/getPrototypeOf"));
+ var _inherits2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[5], "@babel/runtime/helpers/inherits"));
+ var _DOMRectReadOnly2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "./DOMRectReadOnly"));
+ function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
+ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */ /**
+ * The JSDoc comments in this file have been extracted from [DOMRect](https://developer.mozilla.org/en-US/docs/Web/API/DOMRect).
+ * Content by [Mozilla Contributors](https://developer.mozilla.org/en-US/docs/Web/API/DOMRect/contributors.txt),
+ * licensed under [CC-BY-SA 2.5](https://creativecommons.org/licenses/by-sa/2.5/).
+ */
+ // flowlint unsafe-getters-setters:off
+ /**
+ * A `DOMRect` describes the size and position of a rectangle.
+ * The type of box represented by the `DOMRect` is specified by the method or property that returned it.
+ *
+ * This is a (mostly) spec-compliant version of `DOMRect` (https://developer.mozilla.org/en-US/docs/Web/API/DOMRect).
+ */
+ var DOMRect = exports.default = /*#__PURE__*/function (_DOMRectReadOnly) {
+ function DOMRect() {
+ (0, _classCallCheck2.default)(this, DOMRect);
+ return _callSuper(this, DOMRect, arguments);
+ }
+ (0, _inherits2.default)(DOMRect, _DOMRectReadOnly);
+ return (0, _createClass2.default)(DOMRect, [{
+ key: "x",
+ get:
+ /**
+ * The x coordinate of the `DOMRect`'s origin.
+ */
+ function get() {
+ return this.__getInternalX();
+ },
+ set: function set(x) {
+ this.__setInternalX(x);
+ }
+
+ /**
+ * The y coordinate of the `DOMRect`'s origin.
+ */
+ }, {
+ key: "y",
+ get: function get() {
+ return this.__getInternalY();
+ },
+ set: function set(y) {
+ this.__setInternalY(y);
+ }
+
+ /**
+ * The width of the `DOMRect`.
+ */
+ }, {
+ key: "width",
+ get: function get() {
+ return this.__getInternalWidth();
+ },
+ set: function set(width) {
+ this.__setInternalWidth(width);
+ }
+
+ /**
+ * The height of the `DOMRect`.
+ */
+ }, {
+ key: "height",
+ get: function get() {
+ return this.__getInternalHeight();
+ },
+ set: function set(height) {
+ this.__setInternalHeight(height);
+ }
+
+ /**
+ * Creates a new `DOMRect` object with a given location and dimensions.
+ */
+ }], [{
+ key: "fromRect",
+ value: function fromRect(rect) {
+ if (!rect) {
+ return new DOMRect();
+ }
+ return new DOMRect(rect.x, rect.y, rect.width, rect.height);
+ }
+ }]);
+ }(_DOMRectReadOnly2.default);
+},72,[6,18,19,23,25,28,73],"node_modules\\react-native\\Libraries\\DOM\\Geometry\\DOMRect.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck"));
+ var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ /**
+ * The JSDoc comments in this file have been extracted from [DOMRectReadOnly](https://developer.mozilla.org/en-US/docs/Web/API/DOMRectReadOnly).
+ * Content by [Mozilla Contributors](https://developer.mozilla.org/en-US/docs/Web/API/DOMRectReadOnly/contributors.txt),
+ * licensed under [CC-BY-SA 2.5](https://creativecommons.org/licenses/by-sa/2.5/).
+ */
+
+ // flowlint sketchy-null:off, unsafe-getters-setters:off
+
+ function castToNumber(value) {
+ return value ? Number(value) : 0;
+ }
+
+ /**
+ * The `DOMRectReadOnly` interface specifies the standard properties used by `DOMRect` to define a rectangle whose properties are immutable.
+ *
+ * This is a (mostly) spec-compliant version of `DOMRectReadOnly` (https://developer.mozilla.org/en-US/docs/Web/API/DOMRectReadOnly).
+ */
+ var DOMRectReadOnly = exports.default = /*#__PURE__*/function () {
+ function DOMRectReadOnly(x, y, width, height) {
+ (0, _classCallCheck2.default)(this, DOMRectReadOnly);
+ this.__setInternalX(x);
+ this.__setInternalY(y);
+ this.__setInternalWidth(width);
+ this.__setInternalHeight(height);
+ }
+
+ /**
+ * The x coordinate of the `DOMRectReadOnly`'s origin.
+ */
+ return (0, _createClass2.default)(DOMRectReadOnly, [{
+ key: "x",
+ get: function get() {
+ return this._x;
+ }
+
+ /**
+ * The y coordinate of the `DOMRectReadOnly`'s origin.
+ */
+ }, {
+ key: "y",
+ get: function get() {
+ return this._y;
+ }
+
+ /**
+ * The width of the `DOMRectReadOnly`.
+ */
+ }, {
+ key: "width",
+ get: function get() {
+ return this._width;
+ }
+
+ /**
+ * The height of the `DOMRectReadOnly`.
+ */
+ }, {
+ key: "height",
+ get: function get() {
+ return this._height;
+ }
+
+ /**
+ * Returns the top coordinate value of the `DOMRect` (has the same value as `y`, or `y + height` if `height` is negative).
+ */
+ }, {
+ key: "top",
+ get: function get() {
+ var height = this._height;
+ var y = this._y;
+ if (height < 0) {
+ return y + height;
+ }
+ return y;
+ }
+
+ /**
+ * Returns the right coordinate value of the `DOMRect` (has the same value as ``x + width`, or `x` if `width` is negative).
+ */
+ }, {
+ key: "right",
+ get: function get() {
+ var width = this._width;
+ var x = this._x;
+ if (width < 0) {
+ return x;
+ }
+ return x + width;
+ }
+
+ /**
+ * Returns the bottom coordinate value of the `DOMRect` (has the same value as `y + height`, or `y` if `height` is negative).
+ */
+ }, {
+ key: "bottom",
+ get: function get() {
+ var height = this._height;
+ var y = this._y;
+ if (height < 0) {
+ return y;
+ }
+ return y + height;
+ }
+
+ /**
+ * Returns the left coordinate value of the `DOMRect` (has the same value as `x`, or `x + width` if `width` is negative).
+ */
+ }, {
+ key: "left",
+ get: function get() {
+ var width = this._width;
+ var x = this._x;
+ if (width < 0) {
+ return x + width;
+ }
+ return x;
+ }
+ }, {
+ key: "toJSON",
+ value: function toJSON() {
+ var x = this.x,
+ y = this.y,
+ width = this.width,
+ height = this.height,
+ top = this.top,
+ left = this.left,
+ bottom = this.bottom,
+ right = this.right;
+ return {
+ x: x,
+ y: y,
+ width: width,
+ height: height,
+ top: top,
+ left: left,
+ bottom: bottom,
+ right: right
+ };
+ }
+
+ /**
+ * Creates a new `DOMRectReadOnly` object with a given location and dimensions.
+ */
+ }, {
+ key: "__getInternalX",
+ value: function __getInternalX() {
+ return this._x;
+ }
+ }, {
+ key: "__getInternalY",
+ value: function __getInternalY() {
+ return this._y;
+ }
+ }, {
+ key: "__getInternalWidth",
+ value: function __getInternalWidth() {
+ return this._width;
+ }
+ }, {
+ key: "__getInternalHeight",
+ value: function __getInternalHeight() {
+ return this._height;
+ }
+ }, {
+ key: "__setInternalX",
+ value: function __setInternalX(x) {
+ this._x = castToNumber(x);
+ }
+ }, {
+ key: "__setInternalY",
+ value: function __setInternalY(y) {
+ this._y = castToNumber(y);
+ }
+ }, {
+ key: "__setInternalWidth",
+ value: function __setInternalWidth(width) {
+ this._width = castToNumber(width);
+ }
+ }, {
+ key: "__setInternalHeight",
+ value: function __setInternalHeight(height) {
+ this._height = castToNumber(height);
+ }
+ }], [{
+ key: "fromRect",
+ value: function fromRect(rect) {
+ if (!rect) {
+ return new DOMRectReadOnly();
+ }
+ return new DOMRectReadOnly(rect.x, rect.y, rect.width, rect.height);
+ }
+ }]);
+ }();
+},73,[6,18,19],"node_modules\\react-native\\Libraries\\DOM\\Geometry\\DOMRectReadOnly.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ var _NativePerformance = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../WebPerformance/NativePerformance"));
+ var _Performance = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "../WebPerformance/Performance"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ // In case if the native implementation of the Performance API is available, use it,
+ // otherwise fall back to the legacy/default one, which only defines 'Performance.now()'
+ if (_NativePerformance.default) {
+ // $FlowExpectedError[cannot-write]
+ global.performance = new _Performance.default();
+ } else {
+ if (!global.performance) {
+ // $FlowExpectedError[cannot-write]
+ global.performance = {
+ now: function now() {
+ var performanceNow = global.nativePerformanceNow || Date.now;
+ return performanceNow();
+ }
+ };
+ }
+ }
+},74,[6,75,76],"node_modules\\react-native\\Libraries\\Core\\setUpPerformance.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var TurboModuleRegistry = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../TurboModule/TurboModuleRegistry"));
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+ var _default = exports.default = TurboModuleRegistry.get('NativePerformanceCxx');
+},75,[36],"node_modules\\react-native\\Libraries\\WebPerformance\\NativePerformance.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = exports.PerformanceMeasure = exports.PerformanceMark = void 0;
+ var _readOnlyError2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/readOnlyError"));
+ var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass"));
+ var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "@babel/runtime/helpers/classCallCheck"));
+ var _possibleConstructorReturn2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "@babel/runtime/helpers/possibleConstructorReturn"));
+ var _getPrototypeOf2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[5], "@babel/runtime/helpers/getPrototypeOf"));
+ var _inherits2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "@babel/runtime/helpers/inherits"));
+ var _warnOnce = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[7], "../Utilities/warnOnce"));
+ var _EventCounts = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[8], "./EventCounts"));
+ var _MemoryInfo = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[9], "./MemoryInfo"));
+ var _NativePerformance = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[10], "./NativePerformance"));
+ var _NativePerformanceObserver = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[11], "./NativePerformanceObserver"));
+ var _ReactNativeStartupTiming = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[12], "./ReactNativeStartupTiming"));
+ function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
+ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */ // flowlint unsafe-getters-setters:off
+ var getCurrentTimeStamp = global.nativePerformanceNow ? global.nativePerformanceNow : function () {
+ return Date.now();
+ };
+
+ // We want some of the performance entry types to be always logged,
+ // even if they are not currently observed - this is either to be able to
+ // retrieve them at any time via Performance.getEntries* or to refer by other entries
+ // (such as when measures may refer to marks, even if the latter are not observed)
+ if (_NativePerformanceObserver.default != null && _NativePerformanceObserver.default.setIsBuffered) {
+ _NativePerformanceObserver.default == null ? void 0 : _NativePerformanceObserver.default.setIsBuffered(_$$_REQUIRE(_dependencyMap[13], "./PerformanceEntry").ALWAYS_LOGGED_ENTRY_TYPES.map(_$$_REQUIRE(_dependencyMap[14], "./RawPerformanceEntry").performanceEntryTypeToRaw), true);
+ }
+ var PerformanceMark = exports.PerformanceMark = /*#__PURE__*/function (_PerformanceEntry) {
+ function PerformanceMark(markName, markOptions) {
+ var _markOptions$startTim;
+ var _this;
+ (0, _classCallCheck2.default)(this, PerformanceMark);
+ _this = _callSuper(this, PerformanceMark, [{
+ name: markName,
+ entryType: 'mark',
+ startTime: (_markOptions$startTim = markOptions == null ? void 0 : markOptions.startTime) != null ? _markOptions$startTim : getCurrentTimeStamp(),
+ duration: 0
+ }]);
+ if (markOptions) {
+ _this.detail = markOptions.detail;
+ }
+ return _this;
+ }
+ (0, _inherits2.default)(PerformanceMark, _PerformanceEntry);
+ return (0, _createClass2.default)(PerformanceMark);
+ }(_$$_REQUIRE(_dependencyMap[13], "./PerformanceEntry").PerformanceEntry);
+ var PerformanceMeasure = exports.PerformanceMeasure = /*#__PURE__*/function (_PerformanceEntry2) {
+ function PerformanceMeasure(measureName, measureOptions) {
+ var _measureOptions$durat;
+ var _this2;
+ (0, _classCallCheck2.default)(this, PerformanceMeasure);
+ _this2 = _callSuper(this, PerformanceMeasure, [{
+ name: measureName,
+ entryType: 'measure',
+ startTime: 0,
+ duration: (_measureOptions$durat = measureOptions == null ? void 0 : measureOptions.duration) != null ? _measureOptions$durat : 0
+ }]);
+ if (measureOptions) {
+ _this2.detail = measureOptions.detail;
+ }
+ return _this2;
+ }
+ (0, _inherits2.default)(PerformanceMeasure, _PerformanceEntry2);
+ return (0, _createClass2.default)(PerformanceMeasure);
+ }(_$$_REQUIRE(_dependencyMap[13], "./PerformanceEntry").PerformanceEntry);
+ function warnNoNativePerformance() {
+ (0, _warnOnce.default)('missing-native-performance', 'Missing native implementation of Performance');
+ }
+
+ /**
+ * Partial implementation of the Performance interface for RN,
+ * corresponding to the standard in
+ * https://www.w3.org/TR/user-timing/#extensions-performance-interface
+ */
+ var Performance = exports.default = /*#__PURE__*/function () {
+ function Performance() {
+ (0, _classCallCheck2.default)(this, Performance);
+ this.eventCounts = new _EventCounts.default();
+ }
+ return (0, _createClass2.default)(Performance, [{
+ key: "memory",
+ get:
+ // Get the current JS memory information.
+ function get() {
+ if (_NativePerformance.default != null && _NativePerformance.default.getSimpleMemoryInfo) {
+ // JSI API implementations may have different variants of names for the JS
+ // heap information we need here. We will parse the result based on our
+ // guess of the implementation for now.
+ var memoryInfo = _NativePerformance.default.getSimpleMemoryInfo();
+ if (memoryInfo.hasOwnProperty('hermes_heapSize')) {
+ // We got memory information from Hermes
+ var totalJSHeapSize = memoryInfo.hermes_heapSize,
+ usedJSHeapSize = memoryInfo.hermes_allocatedBytes;
+ return new _MemoryInfo.default({
+ jsHeapSizeLimit: null,
+ // We don't know the heap size limit from Hermes.
+ totalJSHeapSize: totalJSHeapSize,
+ usedJSHeapSize: usedJSHeapSize
+ });
+ } else {
+ // JSC and V8 has no native implementations for memory information in JSI::Instrumentation
+ return new _MemoryInfo.default();
+ }
+ }
+ return new _MemoryInfo.default();
+ }
+
+ // Startup metrics is not used in web, but only in React Native.
+ }, {
+ key: "reactNativeStartupTiming",
+ get: function get() {
+ if (_NativePerformance.default != null && _NativePerformance.default.getReactNativeStartupTiming) {
+ var _NativePerformance$ge = _NativePerformance.default.getReactNativeStartupTiming(),
+ startTime = _NativePerformance$ge.startTime,
+ endTime = _NativePerformance$ge.endTime,
+ initializeRuntimeStart = _NativePerformance$ge.initializeRuntimeStart,
+ initializeRuntimeEnd = _NativePerformance$ge.initializeRuntimeEnd,
+ executeJavaScriptBundleEntryPointStart = _NativePerformance$ge.executeJavaScriptBundleEntryPointStart,
+ executeJavaScriptBundleEntryPointEnd = _NativePerformance$ge.executeJavaScriptBundleEntryPointEnd;
+ return new _ReactNativeStartupTiming.default({
+ startTime: startTime,
+ endTime: endTime,
+ initializeRuntimeStart: initializeRuntimeStart,
+ initializeRuntimeEnd: initializeRuntimeEnd,
+ executeJavaScriptBundleEntryPointStart: executeJavaScriptBundleEntryPointStart,
+ executeJavaScriptBundleEntryPointEnd: executeJavaScriptBundleEntryPointEnd
+ });
+ }
+ return new _ReactNativeStartupTiming.default();
+ }
+ }, {
+ key: "mark",
+ value: function mark(markName, markOptions) {
+ var mark = new PerformanceMark(markName, markOptions);
+ if (_NativePerformance.default != null && _NativePerformance.default.mark) {
+ _NativePerformance.default.mark(markName, mark.startTime);
+ } else {
+ warnNoNativePerformance();
+ }
+ return mark;
+ }
+ }, {
+ key: "clearMarks",
+ value: function clearMarks(markName) {
+ if (!(_NativePerformanceObserver.default != null && _NativePerformanceObserver.default.clearEntries)) {
+ (0, _$$_REQUIRE(_dependencyMap[15], "./PerformanceObserver").warnNoNativePerformanceObserver)();
+ return;
+ }
+ _NativePerformanceObserver.default == null ? void 0 : _NativePerformanceObserver.default.clearEntries(_$$_REQUIRE(_dependencyMap[14], "./RawPerformanceEntry").RawPerformanceEntryTypeValues.MARK, markName);
+ }
+ }, {
+ key: "measure",
+ value: function measure(measureName, startMarkOrOptions, endMark) {
+ var options;
+ var startMarkName,
+ endMarkName = endMark,
+ duration,
+ startTime = 0,
+ endTime = 0;
+ if (typeof startMarkOrOptions === 'string') {
+ startMarkName = startMarkOrOptions;
+ } else if (startMarkOrOptions !== undefined) {
+ var _options$duration;
+ options = startMarkOrOptions;
+ if (endMark !== undefined) {
+ throw new TypeError("Performance.measure: Can't have both options and endMark");
+ }
+ if (options.start === undefined && options.end === undefined) {
+ throw new TypeError('Performance.measure: Must have at least one of start/end specified in options');
+ }
+ if (options.start !== undefined && options.end !== undefined && options.duration !== undefined) {
+ throw new TypeError("Performance.measure: Can't have both start/end and duration explicitly in options");
+ }
+ if (typeof options.start === 'number') {
+ startTime = options.start;
+ } else {
+ startMarkName = options.start;
+ }
+ if (typeof options.end === 'number') {
+ endTime = options.end;
+ } else {
+ endMarkName = options.end;
+ }
+ duration = (_options$duration = options.duration) != null ? _options$duration : duration;
+ }
+ var measure = new PerformanceMeasure(measureName, options);
+ if (_NativePerformance.default != null && _NativePerformance.default.measure) {
+ _NativePerformance.default.measure(measureName, startTime, endTime, duration, startMarkName, endMarkName);
+ } else {
+ warnNoNativePerformance();
+ }
+ return measure;
+ }
+ }, {
+ key: "clearMeasures",
+ value: function clearMeasures(measureName) {
+ if (!(_NativePerformanceObserver.default != null && _NativePerformanceObserver.default.clearEntries)) {
+ (0, _$$_REQUIRE(_dependencyMap[15], "./PerformanceObserver").warnNoNativePerformanceObserver)();
+ return;
+ }
+ _NativePerformanceObserver.default == null ? void 0 : _NativePerformanceObserver.default.clearEntries(_$$_REQUIRE(_dependencyMap[14], "./RawPerformanceEntry").RawPerformanceEntryTypeValues.MEASURE, measureName);
+ }
+
+ /**
+ * Returns a double, measured in milliseconds.
+ * https://developer.mozilla.org/en-US/docs/Web/API/Performance/now
+ */
+ }, {
+ key: "now",
+ value: function now() {
+ return getCurrentTimeStamp();
+ }
+
+ /**
+ * An extension that allows to get back to JS all currently logged marks/measures
+ * (in our case, be it from JS or native), see
+ * https://www.w3.org/TR/performance-timeline/#extensions-to-the-performance-interface
+ */
+ }, {
+ key: "getEntries",
+ value: function getEntries() {
+ if (!(_NativePerformanceObserver.default != null && _NativePerformanceObserver.default.getEntries)) {
+ (0, _$$_REQUIRE(_dependencyMap[15], "./PerformanceObserver").warnNoNativePerformanceObserver)();
+ return [];
+ }
+ return _NativePerformanceObserver.default.getEntries().map(_$$_REQUIRE(_dependencyMap[14], "./RawPerformanceEntry").rawToPerformanceEntry);
+ }
+ }, {
+ key: "getEntriesByType",
+ value: function getEntriesByType(entryType) {
+ if (!_$$_REQUIRE(_dependencyMap[13], "./PerformanceEntry").ALWAYS_LOGGED_ENTRY_TYPES.includes(entryType)) {
+ console.warn(`Performance.getEntriesByType: Only valid for ${JSON.stringify(_$$_REQUIRE(_dependencyMap[13], "./PerformanceEntry").ALWAYS_LOGGED_ENTRY_TYPES)} entry types, got ${entryType}`);
+ return [];
+ }
+ if (!(_NativePerformanceObserver.default != null && _NativePerformanceObserver.default.getEntries)) {
+ (0, _$$_REQUIRE(_dependencyMap[15], "./PerformanceObserver").warnNoNativePerformanceObserver)();
+ return [];
+ }
+ return _NativePerformanceObserver.default.getEntries((0, _$$_REQUIRE(_dependencyMap[14], "./RawPerformanceEntry").performanceEntryTypeToRaw)(entryType)).map(_$$_REQUIRE(_dependencyMap[14], "./RawPerformanceEntry").rawToPerformanceEntry);
+ }
+ }, {
+ key: "getEntriesByName",
+ value: function getEntriesByName(entryName, entryType) {
+ if (entryType !== undefined && !_$$_REQUIRE(_dependencyMap[13], "./PerformanceEntry").ALWAYS_LOGGED_ENTRY_TYPES.includes(entryType)) {
+ console.warn(`Performance.getEntriesByName: Only valid for ${JSON.stringify(_$$_REQUIRE(_dependencyMap[13], "./PerformanceEntry").ALWAYS_LOGGED_ENTRY_TYPES)} entry types, got ${entryType}`);
+ return [];
+ }
+ if (!(_NativePerformanceObserver.default != null && _NativePerformanceObserver.default.getEntries)) {
+ (0, _$$_REQUIRE(_dependencyMap[15], "./PerformanceObserver").warnNoNativePerformanceObserver)();
+ return [];
+ }
+ return _NativePerformanceObserver.default.getEntries(entryType != null ? (0, _$$_REQUIRE(_dependencyMap[14], "./RawPerformanceEntry").performanceEntryTypeToRaw)(entryType) : undefined, entryName).map(_$$_REQUIRE(_dependencyMap[14], "./RawPerformanceEntry").rawToPerformanceEntry);
+ }
+ }]);
+ }();
+},76,[6,77,19,18,23,25,28,45,78,84,75,79,85,83,81,80],"node_modules\\react-native\\Libraries\\WebPerformance\\Performance.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _readOnlyError(r) {
+ throw new TypeError('"' + r + '" is read-only');
+ }
+ module.exports = _readOnlyError, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},77,[],"node_modules\\@babel\\runtime\\helpers\\readOnlyError.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck"));
+ var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass"));
+ var _NativePerformanceObserver = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "./NativePerformanceObserver"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ var cachedEventCounts;
+ function getCachedEventCounts() {
+ var _cachedEventCounts;
+ if (cachedEventCounts) {
+ return cachedEventCounts;
+ }
+ if (!_NativePerformanceObserver.default) {
+ (0, _$$_REQUIRE(_dependencyMap[4], "./PerformanceObserver").warnNoNativePerformanceObserver)();
+ return new Map();
+ }
+ cachedEventCounts = new Map(_NativePerformanceObserver.default.getEventCounts());
+ // $FlowFixMe[incompatible-call]
+ global.queueMicrotask(function () {
+ // To be consistent with the calls to the API from the same task,
+ // but also not to refetch the data from native too often,
+ // schedule to invalidate the cache later,
+ // after the current task is guaranteed to have finished.
+ cachedEventCounts = null;
+ });
+ return (_cachedEventCounts = cachedEventCounts) != null ? _cachedEventCounts : new Map();
+ }
+ /**
+ * Implementation of the EventCounts Web Performance API
+ * corresponding to the standard in
+ * https://www.w3.org/TR/event-timing/#eventcounts
+ */
+ var EventCounts = exports.default = /*#__PURE__*/function () {
+ function EventCounts() {
+ (0, _classCallCheck2.default)(this, EventCounts);
+ }
+ return (0, _createClass2.default)(EventCounts, [{
+ key: "size",
+ get:
+ // flowlint unsafe-getters-setters:off
+ function get() {
+ return getCachedEventCounts().size;
+ }
+ }, {
+ key: "entries",
+ value: function entries() {
+ return getCachedEventCounts().entries();
+ }
+ }, {
+ key: "forEach",
+ value: function forEach(callback) {
+ return getCachedEventCounts().forEach(callback);
+ }
+ }, {
+ key: "get",
+ value: function get(key) {
+ return getCachedEventCounts().get(key);
+ }
+ }, {
+ key: "has",
+ value: function has(key) {
+ return getCachedEventCounts().has(key);
+ }
+ }, {
+ key: "keys",
+ value: function keys() {
+ return getCachedEventCounts().keys();
+ }
+ }, {
+ key: "values",
+ value: function values() {
+ return getCachedEventCounts().values();
+ }
+ }]);
+ }();
+},78,[6,18,19,79,80],"node_modules\\react-native\\Libraries\\WebPerformance\\EventCounts.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var TurboModuleRegistry = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../TurboModule/TurboModuleRegistry"));
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+ var _default = exports.default = TurboModuleRegistry.get('NativePerformanceObserverCxx');
+},79,[36],"node_modules\\react-native\\Libraries\\WebPerformance\\NativePerformanceObserver.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = exports.PerformanceObserverEntryList = void 0;
+ exports.warnNoNativePerformanceObserver = warnNoNativePerformanceObserver;
+ var _toConsumableArray2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/toConsumableArray"));
+ var _slicedToArray2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/slicedToArray"));
+ var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "@babel/runtime/helpers/classCallCheck"));
+ var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "@babel/runtime/helpers/createClass"));
+ var _warnOnce = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[5], "../Utilities/warnOnce"));
+ var _NativePerformanceObserver = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "./NativePerformanceObserver"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+ var PerformanceObserverEntryList = exports.PerformanceObserverEntryList = /*#__PURE__*/function () {
+ function PerformanceObserverEntryList(entries) {
+ (0, _classCallCheck2.default)(this, PerformanceObserverEntryList);
+ this._entries = entries;
+ }
+ return (0, _createClass2.default)(PerformanceObserverEntryList, [{
+ key: "getEntries",
+ value: function getEntries() {
+ return this._entries;
+ }
+ }, {
+ key: "getEntriesByType",
+ value: function getEntriesByType(type) {
+ return this._entries.filter(function (entry) {
+ return entry.entryType === type;
+ });
+ }
+ }, {
+ key: "getEntriesByName",
+ value: function getEntriesByName(name, type) {
+ if (type === undefined) {
+ return this._entries.filter(function (entry) {
+ return entry.name === name;
+ });
+ } else {
+ return this._entries.filter(function (entry) {
+ return entry.name === name && entry.entryType === type;
+ });
+ }
+ }
+ }]);
+ }();
+ var observerCountPerEntryType = new Map();
+ var registeredObservers = new Map();
+ var isOnPerformanceEntryCallbackSet = false;
+
+ // This is a callback that gets scheduled and periodically called from the native side
+ var onPerformanceEntry = function onPerformanceEntry() {
+ var _entryResult$entries;
+ if (!_NativePerformanceObserver.default) {
+ return;
+ }
+ var entryResult = _NativePerformanceObserver.default.popPendingEntries();
+ var rawEntries = (_entryResult$entries = entryResult == null ? void 0 : entryResult.entries) != null ? _entryResult$entries : [];
+ var droppedEntriesCount = entryResult == null ? void 0 : entryResult.droppedEntriesCount;
+ if (rawEntries.length === 0) {
+ return;
+ }
+ var entries = rawEntries.map(_$$_REQUIRE(_dependencyMap[7], "./RawPerformanceEntry").rawToPerformanceEntry);
+ var _loop = function _loop(observerConfig) {
+ var entriesForObserver = entries.filter(function (entry) {
+ if (!observerConfig.entryTypes.has(entry.entryType)) {
+ return false;
+ }
+ var durationThreshold = observerConfig.entryTypes.get(entry.entryType);
+ return entry.duration >= (durationThreshold != null ? durationThreshold : 0);
+ });
+ observerConfig.callback(new PerformanceObserverEntryList(entriesForObserver), _observer, droppedEntriesCount);
+ };
+ for (var _ref of registeredObservers.entries()) {
+ var _ref2 = (0, _slicedToArray2.default)(_ref, 2);
+ var _observer = _ref2[0];
+ var observerConfig = _ref2[1];
+ _loop(observerConfig);
+ }
+ };
+ function warnNoNativePerformanceObserver() {
+ (0, _warnOnce.default)('missing-native-performance-observer', 'Missing native implementation of PerformanceObserver');
+ }
+ function applyDurationThresholds() {
+ var durationThresholds = Array.from(registeredObservers.values()).map(function (config) {
+ return config.entryTypes;
+ }).reduce(function (accumulator, currentValue) {
+ return union(accumulator, currentValue);
+ }, new Map());
+ for (var _ref3 of durationThresholds) {
+ var _ref4 = (0, _slicedToArray2.default)(_ref3, 2);
+ var entryType = _ref4[0];
+ var durationThreshold = _ref4[1];
+ _NativePerformanceObserver.default == null ? void 0 : _NativePerformanceObserver.default.setDurationThreshold((0, _$$_REQUIRE(_dependencyMap[7], "./RawPerformanceEntry").performanceEntryTypeToRaw)(entryType), durationThreshold != null ? durationThreshold : 0);
+ }
+ }
+
+ /**
+ * Implementation of the PerformanceObserver interface for RN,
+ * corresponding to the standard in https://www.w3.org/TR/performance-timeline/
+ *
+ * @example
+ * const observer = new PerformanceObserver((list, _observer) => {
+ * const entries = list.getEntries();
+ * entries.forEach(entry => {
+ * reportEvent({
+ * eventName: entry.name,
+ * startTime: entry.startTime,
+ * endTime: entry.startTime + entry.duration,
+ * processingStart: entry.processingStart,
+ * processingEnd: entry.processingEnd,
+ * interactionId: entry.interactionId,
+ * });
+ * });
+ * });
+ * observer.observe({ type: "event" });
+ */
+ var PerformanceObserver = exports.default = /*#__PURE__*/function () {
+ function PerformanceObserver(callback) {
+ (0, _classCallCheck2.default)(this, PerformanceObserver);
+ this._callback = callback;
+ }
+ return (0, _createClass2.default)(PerformanceObserver, [{
+ key: "observe",
+ value: function observe(options) {
+ var _registeredObservers$;
+ if (!_NativePerformanceObserver.default) {
+ warnNoNativePerformanceObserver();
+ return;
+ }
+ this._validateObserveOptions(options);
+ var requestedEntryTypes;
+ if (options.entryTypes) {
+ this._type = 'multiple';
+ requestedEntryTypes = new Map(options.entryTypes.map(function (t) {
+ return [t, undefined];
+ }));
+ } else {
+ this._type = 'single';
+ requestedEntryTypes = new Map([[options.type, options.durationThreshold]]);
+ }
+
+ // The same observer may receive multiple calls to "observe", so we need
+ // to check what is new on this call vs. previous ones.
+ var currentEntryTypes = (_registeredObservers$ = registeredObservers.get(this)) == null ? void 0 : _registeredObservers$.entryTypes;
+ var nextEntryTypes = currentEntryTypes ? union(requestedEntryTypes, currentEntryTypes) : requestedEntryTypes;
+
+ // This `observe` call is a no-op because there are no new things to observe.
+ if (currentEntryTypes && currentEntryTypes.size === nextEntryTypes.size) {
+ return;
+ }
+ registeredObservers.set(this, {
+ callback: this._callback,
+ entryTypes: nextEntryTypes
+ });
+ if (!isOnPerformanceEntryCallbackSet) {
+ _NativePerformanceObserver.default.setOnPerformanceEntryCallback(onPerformanceEntry);
+ isOnPerformanceEntryCallbackSet = true;
+ }
+
+ // We only need to start listenening to new entry types being observed in
+ // this observer.
+ var newEntryTypes = currentEntryTypes ? difference(new Set(requestedEntryTypes.keys()), new Set(currentEntryTypes.keys())) : new Set(requestedEntryTypes.keys());
+ for (var type of newEntryTypes) {
+ var _observerCountPerEntr;
+ if (!observerCountPerEntryType.has(type)) {
+ var rawType = (0, _$$_REQUIRE(_dependencyMap[7], "./RawPerformanceEntry").performanceEntryTypeToRaw)(type);
+ _NativePerformanceObserver.default.startReporting(rawType);
+ }
+ observerCountPerEntryType.set(type, ((_observerCountPerEntr = observerCountPerEntryType.get(type)) != null ? _observerCountPerEntr : 0) + 1);
+ }
+ applyDurationThresholds();
+ }
+ }, {
+ key: "disconnect",
+ value: function disconnect() {
+ if (!_NativePerformanceObserver.default) {
+ warnNoNativePerformanceObserver();
+ return;
+ }
+ var observerConfig = registeredObservers.get(this);
+ if (!observerConfig) {
+ return;
+ }
+
+ // Disconnect this observer
+ for (var type of observerConfig.entryTypes.keys()) {
+ var _observerCountPerEntr2;
+ var numberOfObserversForThisType = (_observerCountPerEntr2 = observerCountPerEntryType.get(type)) != null ? _observerCountPerEntr2 : 0;
+ if (numberOfObserversForThisType === 1) {
+ observerCountPerEntryType.delete(type);
+ _NativePerformanceObserver.default.stopReporting((0, _$$_REQUIRE(_dependencyMap[7], "./RawPerformanceEntry").performanceEntryTypeToRaw)(type));
+ } else if (numberOfObserversForThisType !== 0) {
+ observerCountPerEntryType.set(type, numberOfObserversForThisType - 1);
+ }
+ }
+
+ // Disconnect all observers if this was the last one
+ registeredObservers.delete(this);
+ if (registeredObservers.size === 0) {
+ _NativePerformanceObserver.default.setOnPerformanceEntryCallback(undefined);
+ isOnPerformanceEntryCallbackSet = false;
+ }
+ applyDurationThresholds();
+ }
+ }, {
+ key: "_validateObserveOptions",
+ value: function _validateObserveOptions(options) {
+ var type = options.type,
+ entryTypes = options.entryTypes,
+ durationThreshold = options.durationThreshold;
+ if (!type && !entryTypes) {
+ throw new TypeError("Failed to execute 'observe' on 'PerformanceObserver': An observe() call must not include both entryTypes and type arguments.");
+ }
+ if (entryTypes && type) {
+ throw new TypeError("Failed to execute 'observe' on 'PerformanceObserver': An observe() call must include either entryTypes or type arguments.");
+ }
+ if (this._type === 'multiple' && type) {
+ throw new Error("Failed to execute 'observe' on 'PerformanceObserver': This observer has performed observe({entryTypes:...}, therefore it cannot perform observe({type:...})");
+ }
+ if (this._type === 'single' && entryTypes) {
+ throw new Error("Failed to execute 'observe' on 'PerformanceObserver': This PerformanceObserver has performed observe({type:...}, therefore it cannot perform observe({entryTypes:...})");
+ }
+ if (entryTypes && durationThreshold !== undefined) {
+ throw new TypeError("Failed to execute 'observe' on 'PerformanceObserver': An observe() call must not include both entryTypes and durationThreshold arguments.");
+ }
+ }
+ }]);
+ }(); // As a Set union, except if value exists in both, we take minimum
+ PerformanceObserver.supportedEntryTypes = Object.freeze(['mark', 'measure', 'event']);
+ function union(a, b) {
+ var res = new Map();
+ for (var _ref5 of a) {
+ var _ref6 = (0, _slicedToArray2.default)(_ref5, 2);
+ var k = _ref6[0];
+ var v = _ref6[1];
+ if (!b.has(k)) {
+ res.set(k, v);
+ } else {
+ var _b$get;
+ res.set(k, Math.min(v != null ? v : 0, (_b$get = b.get(k)) != null ? _b$get : 0));
+ }
+ }
+ return res;
+ }
+ function difference(a, b) {
+ return new Set((0, _toConsumableArray2.default)(a).filter(function (x) {
+ return !b.has(x);
+ }));
+ }
+},80,[6,41,7,18,19,45,79,81],"node_modules\\react-native\\Libraries\\WebPerformance\\PerformanceObserver.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.RawPerformanceEntryTypeValues = void 0;
+ exports.performanceEntryTypeToRaw = performanceEntryTypeToRaw;
+ exports.rawToPerformanceEntry = rawToPerformanceEntry;
+ exports.rawToPerformanceEntryType = rawToPerformanceEntryType;
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ var RawPerformanceEntryTypeValues = exports.RawPerformanceEntryTypeValues = {
+ UNDEFINED: 0,
+ MARK: 1,
+ MEASURE: 2,
+ EVENT: 3
+ };
+ function rawToPerformanceEntry(entry) {
+ if (entry.entryType === RawPerformanceEntryTypeValues.EVENT) {
+ return new (_$$_REQUIRE(_dependencyMap[0], "./PerformanceEventTiming").PerformanceEventTiming)({
+ name: entry.name,
+ startTime: entry.startTime,
+ duration: entry.duration,
+ processingStart: entry.processingStart,
+ processingEnd: entry.processingEnd,
+ interactionId: entry.interactionId
+ });
+ } else {
+ return new (_$$_REQUIRE(_dependencyMap[1], "./PerformanceEntry").PerformanceEntry)({
+ name: entry.name,
+ entryType: rawToPerformanceEntryType(entry.entryType),
+ startTime: entry.startTime,
+ duration: entry.duration
+ });
+ }
+ }
+ function rawToPerformanceEntryType(type) {
+ switch (type) {
+ case RawPerformanceEntryTypeValues.MARK:
+ return 'mark';
+ case RawPerformanceEntryTypeValues.MEASURE:
+ return 'measure';
+ case RawPerformanceEntryTypeValues.EVENT:
+ return 'event';
+ case RawPerformanceEntryTypeValues.UNDEFINED:
+ throw new TypeError("rawToPerformanceEntryType: UNDEFINED can't be cast to PerformanceEntryType");
+ default:
+ throw new TypeError(`rawToPerformanceEntryType: unexpected performance entry type received: ${type}`);
+ }
+ }
+ function performanceEntryTypeToRaw(type) {
+ switch (type) {
+ case 'mark':
+ return RawPerformanceEntryTypeValues.MARK;
+ case 'measure':
+ return RawPerformanceEntryTypeValues.MEASURE;
+ case 'event':
+ return RawPerformanceEntryTypeValues.EVENT;
+ default:
+ // Verify exhaustive check with Flow
+ type;
+ throw new TypeError(`performanceEntryTypeToRaw: unexpected performance entry type received: ${type}`);
+ }
+ }
+},81,[82,83],"node_modules\\react-native\\Libraries\\WebPerformance\\RawPerformanceEntry.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.PerformanceEventTiming = void 0;
+ var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck"));
+ var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass"));
+ var _possibleConstructorReturn2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "@babel/runtime/helpers/possibleConstructorReturn"));
+ var _getPrototypeOf2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "@babel/runtime/helpers/getPrototypeOf"));
+ var _get2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[5], "@babel/runtime/helpers/get"));
+ var _inherits2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "@babel/runtime/helpers/inherits"));
+ function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
+ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
+ function _superPropGet(t, o, e, r) { var p = (0, _get2.default)((0, _getPrototypeOf2.default)(1 & r ? t.prototype : t), o, e); return 2 & r && "function" == typeof p ? function (t) { return p.apply(e, t); } : p; } /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+ var PerformanceEventTiming = exports.PerformanceEventTiming = /*#__PURE__*/function (_PerformanceEntry) {
+ function PerformanceEventTiming(init) {
+ var _init$startTime, _init$duration, _init$processingStart, _init$processingEnd, _init$interactionId;
+ var _this;
+ (0, _classCallCheck2.default)(this, PerformanceEventTiming);
+ _this = _callSuper(this, PerformanceEventTiming, [{
+ name: init.name,
+ entryType: 'event',
+ startTime: (_init$startTime = init.startTime) != null ? _init$startTime : 0,
+ duration: (_init$duration = init.duration) != null ? _init$duration : 0
+ }]);
+ _this.processingStart = (_init$processingStart = init.processingStart) != null ? _init$processingStart : 0;
+ _this.processingEnd = (_init$processingEnd = init.processingEnd) != null ? _init$processingEnd : 0;
+ _this.interactionId = (_init$interactionId = init.interactionId) != null ? _init$interactionId : 0;
+ return _this;
+ }
+ (0, _inherits2.default)(PerformanceEventTiming, _PerformanceEntry);
+ return (0, _createClass2.default)(PerformanceEventTiming, [{
+ key: "toJSON",
+ value: function toJSON() {
+ return Object.assign({}, _superPropGet(PerformanceEventTiming, "toJSON", this, 3)([]), {
+ processingStart: this.processingStart,
+ processingEnd: this.processingEnd,
+ interactionId: this.interactionId
+ });
+ }
+ }]);
+ }(_$$_REQUIRE(_dependencyMap[7], "./PerformanceEntry").PerformanceEntry);
+},82,[6,18,19,23,25,26,28,83],"node_modules\\react-native\\Libraries\\WebPerformance\\PerformanceEventTiming.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.PerformanceEntry = exports.ALWAYS_LOGGED_ENTRY_TYPES = void 0;
+ var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck"));
+ var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ var ALWAYS_LOGGED_ENTRY_TYPES = exports.ALWAYS_LOGGED_ENTRY_TYPES = ['mark', 'measure'];
+ var PerformanceEntry = exports.PerformanceEntry = /*#__PURE__*/function () {
+ function PerformanceEntry(init) {
+ (0, _classCallCheck2.default)(this, PerformanceEntry);
+ this.name = init.name;
+ this.entryType = init.entryType;
+ this.startTime = init.startTime;
+ this.duration = init.duration;
+ }
+ return (0, _createClass2.default)(PerformanceEntry, [{
+ key: "toJSON",
+ value: function toJSON() {
+ return {
+ name: this.name,
+ entryType: this.entryType,
+ startTime: this.startTime,
+ duration: this.duration
+ };
+ }
+ }]);
+ }();
+},83,[6,18,19],"node_modules\\react-native\\Libraries\\WebPerformance\\PerformanceEntry.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck"));
+ var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ * @oncall react_native
+ */
+ // flowlint unsafe-getters-setters:off
+ // Read-only object with JS memory information. This is returned by the performance.memory API.
+ var MemoryInfo = exports.default = /*#__PURE__*/function () {
+ function MemoryInfo(memoryInfo) {
+ (0, _classCallCheck2.default)(this, MemoryInfo);
+ if (memoryInfo != null) {
+ this._jsHeapSizeLimit = memoryInfo.jsHeapSizeLimit;
+ this._totalJSHeapSize = memoryInfo.totalJSHeapSize;
+ this._usedJSHeapSize = memoryInfo.usedJSHeapSize;
+ }
+ }
+
+ /**
+ * The maximum size of the heap, in bytes, that is available to the context
+ */
+ return (0, _createClass2.default)(MemoryInfo, [{
+ key: "jsHeapSizeLimit",
+ get: function get() {
+ return this._jsHeapSizeLimit;
+ }
+
+ /**
+ * The total allocated heap size, in bytes
+ */
+ }, {
+ key: "totalJSHeapSize",
+ get: function get() {
+ return this._totalJSHeapSize;
+ }
+
+ /**
+ * The currently active segment of JS heap, in bytes.
+ */
+ }, {
+ key: "usedJSHeapSize",
+ get: function get() {
+ return this._usedJSHeapSize;
+ }
+ }]);
+ }();
+},84,[6,18,19],"node_modules\\react-native\\Libraries\\WebPerformance\\MemoryInfo.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck"));
+ var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ * @oncall react_native
+ */
+ // flowlint unsafe-getters-setters:off
+ // Read-only object with RN startup timing information.
+ // This is returned by the performance.reactNativeStartup API.
+ var ReactNativeStartupTiming = exports.default = /*#__PURE__*/function () {
+ // All time information here are in ms. The values may be null if not provided.
+ // We do NOT match web spect here for two reasons:
+ // 1. The `ReactNativeStartupTiming` is non-standard API
+ // 2. The timing information is relative to the time origin, which means `0` has valid meaning
+
+ function ReactNativeStartupTiming(startUpTiming) {
+ (0, _classCallCheck2.default)(this, ReactNativeStartupTiming);
+ if (startUpTiming != null) {
+ this._startTime = startUpTiming.startTime;
+ this._endTime = startUpTiming.endTime;
+ this._initializeRuntimeStart = startUpTiming.initializeRuntimeStart;
+ this._initializeRuntimeEnd = startUpTiming.initializeRuntimeEnd;
+ this._executeJavaScriptBundleEntryPointStart = startUpTiming.executeJavaScriptBundleEntryPointStart;
+ this._executeJavaScriptBundleEntryPointEnd = startUpTiming.executeJavaScriptBundleEntryPointEnd;
+ }
+ }
+
+ /**
+ * Start time of the RN app startup process. This is provided by the platform by implementing the `ReactMarker.setAppStartTime` API in the native platform code.
+ */
+ return (0, _createClass2.default)(ReactNativeStartupTiming, [{
+ key: "startTime",
+ get: function get() {
+ return this._startTime;
+ }
+
+ /**
+ * End time of the RN app startup process. This is equal to `executeJavaScriptBundleEntryPointEnd`.
+ */
+ }, {
+ key: "endTime",
+ get: function get() {
+ return this._endTime;
+ }
+
+ /**
+ * Start time when RN runtime get initialized. This is when RN infra first kicks in app startup process.
+ */
+ }, {
+ key: "initializeRuntimeStart",
+ get: function get() {
+ return this._initializeRuntimeStart;
+ }
+
+ /**
+ * End time when RN runtime get initialized. This is the last marker before ends of the app startup process.
+ */
+ }, {
+ key: "initializeRuntimeEnd",
+ get: function get() {
+ return this._initializeRuntimeEnd;
+ }
+
+ /**
+ * Start time of JS bundle being executed. This indicates the RN JS bundle is loaded and start to be evaluated.
+ */
+ }, {
+ key: "executeJavaScriptBundleEntryPointStart",
+ get: function get() {
+ return this._executeJavaScriptBundleEntryPointStart;
+ }
+
+ /**
+ * End time of JS bundle being executed. This indicates all the synchronous entry point jobs are finished.
+ */
+ }, {
+ key: "executeJavaScriptBundleEntryPointEnd",
+ get: function get() {
+ return this._executeJavaScriptBundleEntryPointEnd;
+ }
+ }]);
+ }();
+},85,[6,18,19],"node_modules\\react-native\\Libraries\\WebPerformance\\ReactNativeStartupTiming.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ 'use strict';
+
+ /**
+ * Sets up the console and exception handling (redbox) for React Native.
+ * You can use this module directly, or just require InitializeCore.
+ */
+ _$$_REQUIRE(_dependencyMap[0], "./ExceptionsManager").installConsoleErrorReporter();
+
+ // Set up error handler
+ if (!global.__fbDisableExceptionsManager) {
+ var handleError = function handleError(e, isFatal) {
+ try {
+ _$$_REQUIRE(_dependencyMap[0], "./ExceptionsManager").handleException(e, isFatal);
+ } catch (ee) {
+ console.log('Failed to print error: ', ee.message);
+ throw e;
+ }
+ };
+ var ErrorUtils = _$$_REQUIRE(_dependencyMap[1], "../vendor/core/ErrorUtils");
+ ErrorUtils.setGlobalHandler(handleError);
+ }
+},86,[87,48],"node_modules\\react-native\\Libraries\\Core\\setUpErrorHandling.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ 'use strict';
+
+ var _createClass = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/createClass");
+ var _classCallCheck = _$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck");
+ var _possibleConstructorReturn = _$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/possibleConstructorReturn");
+ var _getPrototypeOf = _$$_REQUIRE(_dependencyMap[3], "@babel/runtime/helpers/getPrototypeOf");
+ var _inherits = _$$_REQUIRE(_dependencyMap[4], "@babel/runtime/helpers/inherits");
+ var _wrapNativeSuper = _$$_REQUIRE(_dependencyMap[5], "@babel/runtime/helpers/wrapNativeSuper");
+ function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
+ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
+ var SyntheticError = /*#__PURE__*/function (_Error) {
+ function SyntheticError() {
+ var _this;
+ _classCallCheck(this, SyntheticError);
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
+ args[_key] = arguments[_key];
+ }
+ _this = _callSuper(this, SyntheticError, [].concat(args));
+ _this.name = '';
+ return _this;
+ }
+ _inherits(SyntheticError, _Error);
+ return _createClass(SyntheticError);
+ }(/*#__PURE__*/_wrapNativeSuper(Error));
+ var userExceptionDecorator;
+ var inUserExceptionDecorator = false;
+
+ // This Symbol is used to decorate an ExtendedError with extra data in select usecases.
+ // Note that data passed using this method should be strictly contained,
+ // as data that's not serializable/too large may cause issues with passing the error to the native code.
+ var decoratedExtraDataKey = Symbol('decoratedExtraDataKey');
+
+ /**
+ * Allows the app to add information to the exception report before it is sent
+ * to native. This API is not final.
+ */
+
+ function unstable_setExceptionDecorator(exceptionDecorator) {
+ userExceptionDecorator = exceptionDecorator;
+ }
+ function preprocessException(data) {
+ if (userExceptionDecorator && !inUserExceptionDecorator) {
+ inUserExceptionDecorator = true;
+ try {
+ return userExceptionDecorator(data);
+ } catch (_unused) {
+ // Fall through
+ } finally {
+ inUserExceptionDecorator = false;
+ }
+ }
+ return data;
+ }
+
+ /**
+ * Handles the developer-visible aspect of errors and exceptions
+ */
+ var exceptionID = 0;
+ function reportException(e, isFatal, reportToConsole // only true when coming from handleException; the error has not yet been logged
+ ) {
+ var parseErrorStack = _$$_REQUIRE(_dependencyMap[6], "./Devtools/parseErrorStack");
+ var stack = parseErrorStack(e == null ? void 0 : e.stack);
+ var currentExceptionID = ++exceptionID;
+ var originalMessage = e.message || '';
+ var message = originalMessage;
+ if (e.componentStack != null) {
+ message += `\n\nThis error is located at:${e.componentStack}`;
+ }
+ var namePrefix = e.name == null || e.name === '' ? '' : `${e.name}: `;
+ if (!message.startsWith(namePrefix)) {
+ message = namePrefix + message;
+ }
+ message = e.jsEngine == null ? message : `${message}, js engine: ${e.jsEngine}`;
+
+ // $FlowFixMe[unclear-type]
+ var extraData = Object.assign({}, e[decoratedExtraDataKey], {
+ jsEngine: e.jsEngine,
+ rawStack: e.stack
+ });
+ if (e.cause != null && typeof e.cause === 'object') {
+ extraData.stackSymbols = e.cause.stackSymbols;
+ extraData.stackReturnAddresses = e.cause.stackReturnAddresses;
+ extraData.stackElements = e.cause.stackElements;
+ }
+ var data = preprocessException({
+ message: message,
+ originalMessage: message === originalMessage ? null : originalMessage,
+ name: e.name == null || e.name === '' ? null : e.name,
+ componentStack: typeof e.componentStack === 'string' ? e.componentStack : null,
+ stack: stack,
+ id: currentExceptionID,
+ isFatal: isFatal,
+ extraData: extraData
+ });
+ if (reportToConsole) {
+ // we feed back into console.error, to make sure any methods that are
+ // monkey patched on top of console.error are called when coming from
+ // handleException
+ console.error(data.message);
+ }
+ if (__DEV__) {
+ var LogBox = _$$_REQUIRE(_dependencyMap[7], "../LogBox/LogBox").default;
+ LogBox.addException(Object.assign({}, data, {
+ isComponentError: !!e.isComponentError
+ }));
+ } else if (isFatal || e.type !== 'warn') {
+ var NativeExceptionsManager = _$$_REQUIRE(_dependencyMap[8], "./NativeExceptionsManager").default;
+ if (NativeExceptionsManager) {
+ NativeExceptionsManager.reportException(data);
+ }
+ }
+ }
+ // If we trigger console.error _from_ handleException,
+ // we do want to make sure that console.error doesn't trigger error reporting again
+ var inExceptionHandler = false;
+
+ /**
+ * Logs exceptions to the (native) console and displays them
+ */
+ function handleException(e, isFatal) {
+ var error;
+ if (e instanceof Error) {
+ error = e;
+ } else {
+ // Workaround for reporting errors caused by `throw 'some string'`
+ // Unfortunately there is no way to figure out the stacktrace in this
+ // case, so if you ended up here trying to trace an error, look for
+ // `throw ''` somewhere in your codebase.
+ error = new SyntheticError(e);
+ }
+ try {
+ inExceptionHandler = true;
+ /* $FlowFixMe[class-object-subtyping] added when improving typing for this
+ * parameters */
+ reportException(error, isFatal, /*reportToConsole*/true);
+ } finally {
+ inExceptionHandler = false;
+ }
+ }
+
+ /* $FlowFixMe[missing-local-annot] The type annotation(s) required by Flow's
+ * LTI update could not be added via codemod */
+ function reactConsoleErrorHandler() {
+ var _console;
+ for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
+ args[_key2] = arguments[_key2];
+ }
+ // bubble up to any original handlers
+ (_console = console)._errorOriginal.apply(_console, args);
+ if (!console.reportErrorsAsExceptions) {
+ return;
+ }
+ if (inExceptionHandler) {
+ // The fundamental trick here is that are multiple entry point to logging errors:
+ // (see D19743075 for more background)
+ //
+ // 1. An uncaught exception being caught by the global handler
+ // 2. An error being logged throw console.error
+ //
+ // However, console.error is monkey patched multiple times: by this module, and by the
+ // DevTools setup that sends messages to Metro.
+ // The patching order cannot be relied upon.
+ //
+ // So, some scenarios that are handled by this flag:
+ //
+ // Logging an error:
+ // 1. console.error called from user code
+ // 2. (possibly) arrives _first_ at DevTool handler, send to Metro
+ // 3. Bubbles to here
+ // 4. goes into report Exception.
+ // 5. should not trigger console.error again, to avoid looping / logging twice
+ // 6. should still bubble up to original console
+ // (which might either be console.log, or the DevTools handler in case it patched _earlier_ and (2) didn't happen)
+ //
+ // Throwing an uncaught exception:
+ // 1. exception thrown
+ // 2. picked up by handleException
+ // 3. should be sent to console.error (not console._errorOriginal, as DevTools might have patched _later_ and it needs to send it to Metro)
+ // 4. that _might_ bubble again to the `reactConsoleErrorHandle` defined here
+ // -> should not handle exception _again_, to avoid looping / showing twice (this code branch)
+ // 5. should still bubble up to original console (which might either be console.log, or the DevTools handler in case that one patched _earlier_)
+ return;
+ }
+ var error;
+ var firstArg = args[0];
+ if (firstArg != null && firstArg.stack) {
+ // reportException will console.error this with high enough fidelity.
+ error = firstArg;
+ } else {
+ var stringifySafe = _$$_REQUIRE(_dependencyMap[9], "../Utilities/stringifySafe").default;
+ if (typeof firstArg === 'string' && firstArg.startsWith('Warning: ')) {
+ // React warnings use console.error so that a stack trace is shown, but
+ // we don't (currently) want these to show a redbox
+ // (Note: Logic duplicated in polyfills/console.js.)
+ return;
+ }
+ var message = args.map(function (arg) {
+ return typeof arg === 'string' ? arg : stringifySafe(arg);
+ }).join(' ');
+ error = new SyntheticError(message);
+ error.name = 'console.error';
+ }
+ reportException(
+ /* $FlowFixMe[class-object-subtyping] added when improving typing for this
+ * parameters */
+ error, false,
+ // isFatal
+ false // reportToConsole
+ );
+ }
+
+ /**
+ * Shows a redbox with stacktrace for all console.error messages. Disable by
+ * setting `console.reportErrorsAsExceptions = false;` in your app.
+ */
+ function installConsoleErrorReporter() {
+ // Enable reportErrorsAsExceptions
+ if (console._errorOriginal) {
+ return; // already installed
+ }
+ // Flow doesn't like it when you set arbitrary values on a global object
+ console._errorOriginal = console.error.bind(console);
+ console.error = reactConsoleErrorHandler;
+ if (console.reportErrorsAsExceptions === undefined) {
+ // Individual apps can disable this
+ // Flow doesn't like it when you set arbitrary values on a global object
+ console.reportErrorsAsExceptions = true;
+ }
+ }
+ module.exports = {
+ decoratedExtraDataKey: decoratedExtraDataKey,
+ handleException: handleException,
+ installConsoleErrorReporter: installConsoleErrorReporter,
+ SyntheticError: SyntheticError,
+ unstable_setExceptionDecorator: unstable_setExceptionDecorator
+ };
+},87,[19,18,23,25,28,88,92,95,112,46],"node_modules\\react-native\\Libraries\\Core\\ExceptionsManager.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _wrapNativeSuper(t) {
+ var r = "function" == typeof Map ? new Map() : void 0;
+ return module.exports = _wrapNativeSuper = function _wrapNativeSuper(t) {
+ if (null === t || !_$$_REQUIRE(_dependencyMap[0], "./isNativeFunction.js")(t)) return t;
+ if ("function" != typeof t) throw new TypeError("Super expression must either be null or a function");
+ if (void 0 !== r) {
+ if (r.has(t)) return r.get(t);
+ r.set(t, Wrapper);
+ }
+ function Wrapper() {
+ return _$$_REQUIRE(_dependencyMap[1], "./construct.js")(t, arguments, _$$_REQUIRE(_dependencyMap[2], "./getPrototypeOf.js")(this).constructor);
+ }
+ return Wrapper.prototype = Object.create(t.prototype, {
+ constructor: {
+ value: Wrapper,
+ enumerable: !1,
+ writable: !0,
+ configurable: !0
+ }
+ }), _$$_REQUIRE(_dependencyMap[3], "./setPrototypeOf.js")(Wrapper, t);
+ }, module.exports.__esModule = true, module.exports["default"] = module.exports, _wrapNativeSuper(t);
+ }
+ module.exports = _wrapNativeSuper, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},88,[89,90,25,29],"node_modules\\@babel\\runtime\\helpers\\wrapNativeSuper.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _isNativeFunction(t) {
+ try {
+ return -1 !== Function.toString.call(t).indexOf("[native code]");
+ } catch (n) {
+ return "function" == typeof t;
+ }
+ }
+ module.exports = _isNativeFunction, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},89,[],"node_modules\\@babel\\runtime\\helpers\\isNativeFunction.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _construct(t, e, r) {
+ if (_$$_REQUIRE(_dependencyMap[0], "./isNativeReflectConstruct.js")()) return Reflect.construct.apply(null, arguments);
+ var o = [null];
+ o.push.apply(o, e);
+ var p = new (t.bind.apply(t, o))();
+ return r && _$$_REQUIRE(_dependencyMap[1], "./setPrototypeOf.js")(p, r.prototype), p;
+ }
+ module.exports = _construct, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},90,[91,29],"node_modules\\@babel\\runtime\\helpers\\construct.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ function _isNativeReflectConstruct() {
+ try {
+ var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
+ } catch (t) {}
+ return (module.exports = _isNativeReflectConstruct = function _isNativeReflectConstruct() {
+ return !!t;
+ }, module.exports.__esModule = true, module.exports["default"] = module.exports)();
+ }
+ module.exports = _isNativeReflectConstruct, module.exports.__esModule = true, module.exports["default"] = module.exports;
+},91,[],"node_modules\\@babel\\runtime\\helpers\\isNativeReflectConstruct.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ 'use strict';
+
+ function convertHermesStack(stack) {
+ var frames = [];
+ for (var entry of stack.entries) {
+ if (entry.type !== 'FRAME') {
+ continue;
+ }
+ var location = entry.location,
+ functionName = entry.functionName;
+ if (location.type === 'NATIVE' || location.type === 'INTERNAL_BYTECODE') {
+ continue;
+ }
+ frames.push({
+ methodName: functionName,
+ file: location.sourceUrl,
+ lineNumber: location.line1Based,
+ column: location.type === 'SOURCE' ? location.column1Based - 1 : location.virtualOffset0Based
+ });
+ }
+ return frames;
+ }
+ function parseErrorStack(errorStack) {
+ if (errorStack == null) {
+ return [];
+ }
+ var stacktraceParser = _$$_REQUIRE(_dependencyMap[0], "stacktrace-parser");
+ var parsedStack = Array.isArray(errorStack) ? errorStack : global.HermesInternal ? convertHermesStack(_$$_REQUIRE(_dependencyMap[1], "./parseHermesStack")(errorStack)) : stacktraceParser.parse(errorStack).map(function (frame) {
+ return Object.assign({}, frame, {
+ column: frame.column != null ? frame.column - 1 : null
+ });
+ });
+ return parsedStack;
+ }
+ module.exports = parseErrorStack;
+},92,[93,94],"node_modules\\react-native\\Libraries\\Core\\Devtools\\parseErrorStack.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ Object.defineProperty(exports, '__esModule', {
+ value: true
+ });
+ var UNKNOWN_FUNCTION = '';
+ /**
+ * This parses the different stack traces and puts them into one format
+ * This borrows heavily from TraceKit (https://github.com/csnover/TraceKit)
+ */
+
+ function parse(stackString) {
+ var lines = stackString.split('\n');
+ return lines.reduce(function (stack, line) {
+ var parseResult = parseChrome(line) || parseWinjs(line) || parseGecko(line) || parseNode(line) || parseJSC(line);
+ if (parseResult) {
+ stack.push(parseResult);
+ }
+ return stack;
+ }, []);
+ }
+ var chromeRe = /^\s*at (.*?) ?\(((?:file|https?|blob|chrome-extension|native|eval|webpack||\/|[a-z]:\\|\\\\).*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i;
+ var chromeEvalRe = /\((\S*)(?::(\d+))(?::(\d+))\)/;
+ function parseChrome(line) {
+ var parts = chromeRe.exec(line);
+ if (!parts) {
+ return null;
+ }
+ var isNative = parts[2] && parts[2].indexOf('native') === 0; // start of line
+
+ var isEval = parts[2] && parts[2].indexOf('eval') === 0; // start of line
+
+ var submatch = chromeEvalRe.exec(parts[2]);
+ if (isEval && submatch != null) {
+ // throw out eval line/column and use top-most line/column number
+ parts[2] = submatch[1]; // url
+
+ parts[3] = submatch[2]; // line
+
+ parts[4] = submatch[3]; // column
+ }
+ return {
+ file: !isNative ? parts[2] : null,
+ methodName: parts[1] || UNKNOWN_FUNCTION,
+ arguments: isNative ? [parts[2]] : [],
+ lineNumber: parts[3] ? +parts[3] : null,
+ column: parts[4] ? +parts[4] : null
+ };
+ }
+ var winjsRe = /^\s*at (?:((?:\[object object\])?.+) )?\(?((?:file|ms-appx|https?|webpack|blob):.*?):(\d+)(?::(\d+))?\)?\s*$/i;
+ function parseWinjs(line) {
+ var parts = winjsRe.exec(line);
+ if (!parts) {
+ return null;
+ }
+ return {
+ file: parts[2],
+ methodName: parts[1] || UNKNOWN_FUNCTION,
+ arguments: [],
+ lineNumber: +parts[3],
+ column: parts[4] ? +parts[4] : null
+ };
+ }
+ var geckoRe = /^\s*(.*?)(?:\((.*?)\))?(?:^|@)((?:file|https?|blob|chrome|webpack|resource|\[native).*?|[^@]*bundle)(?::(\d+))?(?::(\d+))?\s*$/i;
+ var geckoEvalRe = /(\S+) line (\d+)(?: > eval line \d+)* > eval/i;
+ function parseGecko(line) {
+ var parts = geckoRe.exec(line);
+ if (!parts) {
+ return null;
+ }
+ var isEval = parts[3] && parts[3].indexOf(' > eval') > -1;
+ var submatch = geckoEvalRe.exec(parts[3]);
+ if (isEval && submatch != null) {
+ // throw out eval line/column and use top-most line number
+ parts[3] = submatch[1];
+ parts[4] = submatch[2];
+ parts[5] = null; // no column when eval
+ }
+ return {
+ file: parts[3],
+ methodName: parts[1] || UNKNOWN_FUNCTION,
+ arguments: parts[2] ? parts[2].split(',') : [],
+ lineNumber: parts[4] ? +parts[4] : null,
+ column: parts[5] ? +parts[5] : null
+ };
+ }
+ var javaScriptCoreRe = /^\s*(?:([^@]*)(?:\((.*?)\))?@)?(\S.*?):(\d+)(?::(\d+))?\s*$/i;
+ function parseJSC(line) {
+ var parts = javaScriptCoreRe.exec(line);
+ if (!parts) {
+ return null;
+ }
+ return {
+ file: parts[3],
+ methodName: parts[1] || UNKNOWN_FUNCTION,
+ arguments: [],
+ lineNumber: +parts[4],
+ column: parts[5] ? +parts[5] : null
+ };
+ }
+ var nodeRe = /^\s*at (?:((?:\[object object\])?[^\\/]+(?: \[as \S+\])?) )?\(?(.*?):(\d+)(?::(\d+))?\)?\s*$/i;
+ function parseNode(line) {
+ var parts = nodeRe.exec(line);
+ if (!parts) {
+ return null;
+ }
+ return {
+ file: parts[2],
+ methodName: parts[1] || UNKNOWN_FUNCTION,
+ arguments: [],
+ lineNumber: +parts[3],
+ column: parts[4] ? +parts[4] : null
+ };
+ }
+ exports.parse = parse;
+},93,[],"node_modules\\stacktrace-parser\\dist\\stack-trace-parser.cjs.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ 'use strict';
+
+ // Capturing groups:
+ // 1. function name
+ // 2. is this a native stack frame?
+ // 3. is this a bytecode address or a source location?
+ // 4. source URL (filename)
+ // 5. line number (1 based)
+ // 6. column number (1 based) or virtual offset (0 based)
+ var RE_FRAME = /^ {4}at (.+?)(?: \((native)\)?| \((address at )?(.*?):(\d+):(\d+)\))$/;
+
+ // Capturing groups:
+ // 1. count of skipped frames
+ var RE_SKIPPED = /^ {4}... skipping (\d+) frames$/;
+ function isInternalBytecodeSourceUrl(sourceUrl) {
+ // See https://github.com/facebook/hermes/blob/3332fa020cae0bab751f648db7c94e1d687eeec7/lib/VM/Runtime.cpp#L1100
+ return sourceUrl === 'InternalBytecode.js';
+ }
+ function parseLine(line) {
+ var asFrame = line.match(RE_FRAME);
+ if (asFrame) {
+ return {
+ type: 'FRAME',
+ functionName: asFrame[1],
+ location: asFrame[2] === 'native' ? {
+ type: 'NATIVE'
+ } : asFrame[3] === 'address at ' ? isInternalBytecodeSourceUrl(asFrame[4]) ? {
+ type: 'INTERNAL_BYTECODE',
+ sourceUrl: asFrame[4],
+ line1Based: Number.parseInt(asFrame[5], 10),
+ virtualOffset0Based: Number.parseInt(asFrame[6], 10)
+ } : {
+ type: 'BYTECODE',
+ sourceUrl: asFrame[4],
+ line1Based: Number.parseInt(asFrame[5], 10),
+ virtualOffset0Based: Number.parseInt(asFrame[6], 10)
+ } : {
+ type: 'SOURCE',
+ sourceUrl: asFrame[4],
+ line1Based: Number.parseInt(asFrame[5], 10),
+ column1Based: Number.parseInt(asFrame[6], 10)
+ }
+ };
+ }
+ var asSkipped = line.match(RE_SKIPPED);
+ if (asSkipped) {
+ return {
+ type: 'SKIPPED',
+ count: Number.parseInt(asSkipped[1], 10)
+ };
+ }
+ }
+ module.exports = function parseHermesStack(stack) {
+ var lines = stack.split(/\n/);
+ var entries = [];
+ var lastMessageLine = -1;
+ for (var i = 0; i < lines.length; ++i) {
+ var line = lines[i];
+ if (!line) {
+ continue;
+ }
+ var entry = parseLine(line);
+ if (entry) {
+ entries.push(entry);
+ continue;
+ }
+ // No match - we're still in the message
+ lastMessageLine = i;
+ entries = [];
+ }
+ var message = lines.slice(0, lastMessageLine + 1).join('\n');
+ return {
+ message: message,
+ entries: entries
+ };
+ };
+},94,[],"node_modules\\react-native\\Libraries\\Core\\Devtools\\parseHermesStack.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var _Platform = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../Utilities/Platform"));
+ var _RCTLog = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "../Utilities/RCTLog"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ var LogBox;
+ /**
+ * LogBox displays logs in the app.
+ */
+ if (__DEV__) {
+ var LogBoxData = _$$_REQUIRE(_dependencyMap[3], "./Data/LogBoxData");
+ var _require = _$$_REQUIRE(_dependencyMap[4], "./Data/parseLogBoxLog"),
+ parseLogBoxLog = _require.parseLogBoxLog,
+ parseInterpolation = _require.parseInterpolation;
+ var originalConsoleError;
+ var originalConsoleWarn;
+ var consoleErrorImpl;
+ var consoleWarnImpl;
+ var isLogBoxInstalled = false;
+ LogBox = {
+ install: function install() {
+ if (isLogBoxInstalled) {
+ return;
+ }
+ isLogBoxInstalled = true;
+
+ // Trigger lazy initialization of module.
+ _$$_REQUIRE(_dependencyMap[5], "../NativeModules/specs/NativeLogBox");
+
+ // IMPORTANT: we only overwrite `console.error` and `console.warn` once.
+ // When we uninstall we keep the same reference and only change its
+ // internal implementation
+ var isFirstInstall = originalConsoleError == null;
+ if (isFirstInstall) {
+ originalConsoleError = console.error.bind(console);
+ originalConsoleWarn = console.warn.bind(console);
+
+ // $FlowExpectedError[cannot-write]
+ console.error = function () {
+ consoleErrorImpl.apply(void 0, arguments);
+ };
+ // $FlowExpectedError[cannot-write]
+ console.warn = function () {
+ consoleWarnImpl.apply(void 0, arguments);
+ };
+ }
+ consoleErrorImpl = registerError;
+ consoleWarnImpl = registerWarning;
+ if (_Platform.default.isTesting) {
+ LogBoxData.setDisabled(true);
+ }
+ _RCTLog.default.setWarningHandler(function () {
+ registerWarning.apply(void 0, arguments);
+ });
+ },
+ uninstall: function uninstall() {
+ if (!isLogBoxInstalled) {
+ return;
+ }
+ isLogBoxInstalled = false;
+
+ // IMPORTANT: we don't re-assign to `console` in case the method has been
+ // decorated again after installing LogBox. E.g.:
+ // Before uninstalling: original > LogBox > OtherErrorHandler
+ // After uninstalling: original > LogBox (noop) > OtherErrorHandler
+ consoleErrorImpl = originalConsoleError;
+ consoleWarnImpl = originalConsoleWarn;
+ },
+ isInstalled: function isInstalled() {
+ return isLogBoxInstalled;
+ },
+ ignoreLogs: function ignoreLogs(patterns) {
+ LogBoxData.addIgnorePatterns(patterns);
+ },
+ ignoreAllLogs: function ignoreAllLogs(value) {
+ LogBoxData.setDisabled(value == null ? true : value);
+ },
+ clearAllLogs: function clearAllLogs() {
+ LogBoxData.clear();
+ },
+ addLog: function addLog(log) {
+ if (isLogBoxInstalled) {
+ LogBoxData.addLog(log);
+ }
+ },
+ addException: function addException(error) {
+ if (isLogBoxInstalled) {
+ LogBoxData.addException(error);
+ }
+ }
+ };
+ var isRCTLogAdviceWarning = function isRCTLogAdviceWarning() {
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
+ args[_key] = arguments[_key];
+ }
+ // RCTLogAdvice is a native logging function designed to show users
+ // a message in the console, but not show it to them in Logbox.
+ return typeof args[0] === 'string' && args[0].startsWith('(ADVICE)');
+ };
+ var isWarningModuleWarning = function isWarningModuleWarning() {
+ for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
+ args[_key2] = arguments[_key2];
+ }
+ return typeof args[0] === 'string' && args[0].startsWith('Warning: ');
+ };
+ var registerWarning = function registerWarning() {
+ for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
+ args[_key3] = arguments[_key3];
+ }
+ // Let warnings within LogBox itself fall through.
+ if (LogBoxData.isLogBoxErrorMessage(String(args[0]))) {
+ originalConsoleError.apply(void 0, args);
+ return;
+ } else {
+ // Be sure to pass LogBox warnings through.
+ originalConsoleWarn.apply(void 0, args);
+ }
+ try {
+ if (!isRCTLogAdviceWarning.apply(void 0, args)) {
+ var _parseLogBoxLog = parseLogBoxLog(args),
+ category = _parseLogBoxLog.category,
+ message = _parseLogBoxLog.message,
+ componentStack = _parseLogBoxLog.componentStack;
+ if (!LogBoxData.isMessageIgnored(message.content)) {
+ LogBoxData.addLog({
+ level: 'warn',
+ category: category,
+ message: message,
+ componentStack: componentStack
+ });
+ }
+ }
+ } catch (err) {
+ LogBoxData.reportLogBoxError(err);
+ }
+ };
+
+ /* $FlowFixMe[missing-local-annot] The type annotation(s) required by Flow's
+ * LTI update could not be added via codemod */
+ var registerError = function registerError() {
+ for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {
+ args[_key4] = arguments[_key4];
+ }
+ // Let errors within LogBox itself fall through.
+ if (LogBoxData.isLogBoxErrorMessage(args[0])) {
+ originalConsoleError.apply(void 0, args);
+ return;
+ }
+ try {
+ if (!isWarningModuleWarning.apply(void 0, args)) {
+ // Only show LogBox for the 'warning' module, otherwise pass through.
+ // By passing through, this will get picked up by the React console override,
+ // potentially adding the component stack. React then passes it back to the
+ // React Native ExceptionsManager, which reports it to LogBox as an error.
+ //
+ // The 'warning' module needs to be handled here because React internally calls
+ // `console.error('Warning: ')` with the component stack already included.
+ originalConsoleError.apply(void 0, args);
+ return;
+ }
+ var format = args[0].replace('Warning: ', '');
+ var filterResult = LogBoxData.checkWarningFilter(format);
+ if (filterResult.suppressCompletely) {
+ return;
+ }
+ var level = 'error';
+ if (filterResult.suppressDialog_LEGACY === true) {
+ level = 'warn';
+ } else if (filterResult.forceDialogImmediately === true) {
+ level = 'fatal'; // Do not downgrade. These are real bugs with same severity as throws.
+ }
+
+ // Unfortunately, we need to add the Warning: prefix back for downstream dependencies.
+ args[0] = `Warning: ${filterResult.finalFormat}`;
+ var _parseLogBoxLog2 = parseLogBoxLog(args),
+ category = _parseLogBoxLog2.category,
+ message = _parseLogBoxLog2.message,
+ componentStack = _parseLogBoxLog2.componentStack;
+
+ // Interpolate the message so they are formatted for adb and other CLIs.
+ // This is different than the message.content above because it includes component stacks.
+ var interpolated = parseInterpolation(args);
+ originalConsoleError(interpolated.message.content);
+ if (!LogBoxData.isMessageIgnored(message.content)) {
+ LogBoxData.addLog({
+ level: level,
+ category: category,
+ message: message,
+ componentStack: componentStack
+ });
+ }
+ } catch (err) {
+ LogBoxData.reportLogBoxError(err);
+ }
+ };
+ } else {
+ LogBox = {
+ install: function install() {
+ // Do nothing.
+ },
+ uninstall: function uninstall() {
+ // Do nothing.
+ },
+ isInstalled: function isInstalled() {
+ return false;
+ },
+ ignoreLogs: function ignoreLogs(patterns) {
+ // Do nothing.
+ },
+ ignoreAllLogs: function ignoreAllLogs(value) {
+ // Do nothing.
+ },
+ clearAllLogs: function clearAllLogs() {
+ // Do nothing.
+ },
+ addLog: function addLog(log) {
+ // Do nothing.
+ },
+ addException: function addException(error) {
+ // Do nothing.
+ }
+ };
+ }
+ var _default = exports.default = LogBox;
+},95,[6,34,96,97,109,98],"node_modules\\react-native\\Libraries\\LogBox\\LogBox.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ 'use strict';
+
+ var levelsMap = {
+ log: 'log',
+ info: 'info',
+ warn: 'warn',
+ error: 'error',
+ fatal: 'error'
+ };
+ var warningHandler = null;
+ var RCTLog = {
+ // level one of log, info, warn, error, mustfix
+ logIfNoNativeHook: function logIfNoNativeHook(level) {
+ for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
+ args[_key - 1] = arguments[_key];
+ }
+ // We already printed in the native console, so only log here if using a js debugger
+ if (typeof global.nativeLoggingHook === 'undefined') {
+ RCTLog.logToConsole.apply(RCTLog, [level].concat(args));
+ } else {
+ // Report native warnings to LogBox
+ if (warningHandler && level === 'warn') {
+ warningHandler.apply(void 0, args);
+ }
+ }
+ },
+ // Log to console regardless of nativeLoggingHook
+ logToConsole: function logToConsole(level) {
+ var _console;
+ var logFn = levelsMap[level];
+ _$$_REQUIRE(_dependencyMap[0], "invariant")(logFn, 'Level "' + level + '" not one of ' + Object.keys(levelsMap).toString());
+ for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
+ args[_key2 - 1] = arguments[_key2];
+ }
+ (_console = console)[logFn].apply(_console, args);
+ },
+ setWarningHandler: function setWarningHandler(handler) {
+ warningHandler = handler;
+ }
+ };
+ module.exports = RCTLog;
+},96,[37],"node_modules\\react-native\\Libraries\\Utilities\\RCTLog.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.addException = addException;
+ exports.addIgnorePatterns = addIgnorePatterns;
+ exports.addLog = addLog;
+ exports.checkWarningFilter = checkWarningFilter;
+ exports.clear = clear;
+ exports.clearErrors = clearErrors;
+ exports.clearWarnings = clearWarnings;
+ exports.dismiss = dismiss;
+ exports.getAppInfo = getAppInfo;
+ exports.getIgnorePatterns = getIgnorePatterns;
+ exports.isDisabled = isDisabled;
+ exports.isLogBoxErrorMessage = isLogBoxErrorMessage;
+ exports.isMessageIgnored = isMessageIgnored;
+ exports.observe = observe;
+ exports.reportLogBoxError = reportLogBoxError;
+ exports.retrySymbolicateLogNow = retrySymbolicateLogNow;
+ exports.setAppInfo = setAppInfo;
+ exports.setDisabled = setDisabled;
+ exports.setSelectedLog = setSelectedLog;
+ exports.setWarningFilter = setWarningFilter;
+ exports.symbolicateLogLazy = symbolicateLogLazy;
+ exports.symbolicateLogNow = symbolicateLogNow;
+ exports.withSubscription = withSubscription;
+ var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck"));
+ var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass"));
+ var _possibleConstructorReturn2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "@babel/runtime/helpers/possibleConstructorReturn"));
+ var _getPrototypeOf2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "@babel/runtime/helpers/getPrototypeOf"));
+ var _inherits2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[5], "@babel/runtime/helpers/inherits"));
+ var _parseErrorStack = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "../../Core/Devtools/parseErrorStack"));
+ var _NativeLogBox = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[7], "../../NativeModules/specs/NativeLogBox"));
+ var _LogBoxLog = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[8], "./LogBoxLog"));
+ var React = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[9], "react"));
+ var _jsxRuntime = _$$_REQUIRE(_dependencyMap[10], "react/jsx-runtime");
+ var _jsxFileName = "E:\\source\\ikun-music-mobile\\node_modules\\react-native\\Libraries\\LogBox\\Data\\LogBoxData.js";
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
+ function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
+ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ 'use strict';
+ var observers = new Set();
+ var ignorePatterns = new Set();
+ var appInfo = null;
+ var logs = new Set();
+ var updateTimeout = null;
+ var _isDisabled = false;
+ var _selectedIndex = -1;
+ var warningFilter = function warningFilter(format) {
+ return {
+ finalFormat: format,
+ forceDialogImmediately: false,
+ suppressDialog_LEGACY: true,
+ suppressCompletely: false,
+ monitorEvent: 'unknown',
+ monitorListVersion: 0,
+ monitorSampleRate: 1
+ };
+ };
+ var LOGBOX_ERROR_MESSAGE = 'An error was thrown when attempting to render log messages via LogBox.';
+ function getNextState() {
+ return {
+ logs: logs,
+ isDisabled: _isDisabled,
+ selectedLogIndex: _selectedIndex
+ };
+ }
+ function reportLogBoxError(error, componentStack) {
+ var ExceptionsManager = _$$_REQUIRE(_dependencyMap[11], "../../Core/ExceptionsManager");
+ error.message = `${LOGBOX_ERROR_MESSAGE}\n\n${error.message}`;
+ if (componentStack != null) {
+ error.componentStack = componentStack;
+ }
+ ExceptionsManager.handleException(error, /* isFatal */true);
+ }
+ function isLogBoxErrorMessage(message) {
+ return typeof message === 'string' && message.includes(LOGBOX_ERROR_MESSAGE);
+ }
+ function isMessageIgnored(message) {
+ for (var pattern of ignorePatterns) {
+ if (pattern instanceof RegExp && pattern.test(message) || typeof pattern === 'string' && message.includes(pattern)) {
+ return true;
+ }
+ }
+ return false;
+ }
+ function handleUpdate() {
+ if (updateTimeout == null) {
+ updateTimeout = setImmediate(function () {
+ updateTimeout = null;
+ var nextState = getNextState();
+ observers.forEach(function (_ref) {
+ var observer = _ref.observer;
+ return observer(nextState);
+ });
+ });
+ }
+ }
+ function appendNewLog(newLog) {
+ // Don't want store these logs because they trigger a
+ // state update when we add them to the store.
+ if (isMessageIgnored(newLog.message.content)) {
+ return;
+ }
+
+ // If the next log has the same category as the previous one
+ // then roll it up into the last log in the list by incrementing
+ // the count (similar to how Chrome does it).
+ var lastLog = Array.from(logs).pop();
+ if (lastLog && lastLog.category === newLog.category) {
+ lastLog.incrementCount();
+ handleUpdate();
+ return;
+ }
+ if (newLog.level === 'fatal') {
+ // If possible, to avoid jank, we don't want to open the error before
+ // it's symbolicated. To do that, we optimistically wait for
+ // symbolication for up to a second before adding the log.
+ var OPTIMISTIC_WAIT_TIME = 1000;
+ var _addPendingLog = function addPendingLog() {
+ logs.add(newLog);
+ if (_selectedIndex < 0) {
+ setSelectedLog(logs.size - 1);
+ } else {
+ handleUpdate();
+ }
+ _addPendingLog = null;
+ };
+ var optimisticTimeout = setTimeout(function () {
+ if (_addPendingLog) {
+ _addPendingLog();
+ }
+ }, OPTIMISTIC_WAIT_TIME);
+ newLog.symbolicate(function (status) {
+ if (_addPendingLog && status !== 'PENDING') {
+ _addPendingLog();
+ clearTimeout(optimisticTimeout);
+ } else if (status !== 'PENDING') {
+ // The log has already been added but we need to trigger a render.
+ handleUpdate();
+ }
+ });
+ } else if (newLog.level === 'syntax') {
+ logs.add(newLog);
+ setSelectedLog(logs.size - 1);
+ } else {
+ logs.add(newLog);
+ handleUpdate();
+ }
+ }
+ function addLog(log) {
+ var errorForStackTrace = new Error();
+
+ // Parsing logs are expensive so we schedule this
+ // otherwise spammy logs would pause rendering.
+ setImmediate(function () {
+ try {
+ var _log$stack;
+ var stack = (0, _parseErrorStack.default)((_log$stack = log.stack) != null ? _log$stack : errorForStackTrace == null ? void 0 : errorForStackTrace.stack);
+ appendNewLog(new _LogBoxLog.default({
+ level: log.level,
+ message: log.message,
+ isComponentError: false,
+ stack: stack,
+ category: log.category,
+ componentStack: log.componentStack
+ }));
+ } catch (error) {
+ reportLogBoxError(error);
+ }
+ });
+ }
+ function addException(error) {
+ // Parsing logs are expensive so we schedule this
+ // otherwise spammy logs would pause rendering.
+ setImmediate(function () {
+ try {
+ appendNewLog(new _LogBoxLog.default((0, _$$_REQUIRE(_dependencyMap[12], "./parseLogBoxLog").parseLogBoxException)(error)));
+ } catch (loggingError) {
+ reportLogBoxError(loggingError);
+ }
+ });
+ }
+ function symbolicateLogNow(log) {
+ log.symbolicate(function () {
+ handleUpdate();
+ });
+ }
+ function retrySymbolicateLogNow(log) {
+ log.retrySymbolicate(function () {
+ handleUpdate();
+ });
+ }
+ function symbolicateLogLazy(log) {
+ log.symbolicate();
+ }
+ function clear() {
+ if (logs.size > 0) {
+ logs = new Set();
+ setSelectedLog(-1);
+ }
+ }
+ function setSelectedLog(proposedNewIndex) {
+ var oldIndex = _selectedIndex;
+ var newIndex = proposedNewIndex;
+ var logArray = Array.from(logs);
+ var index = logArray.length - 1;
+ while (index >= 0) {
+ // The latest syntax error is selected and displayed before all other logs.
+ if (logArray[index].level === 'syntax') {
+ newIndex = index;
+ break;
+ }
+ index -= 1;
+ }
+ _selectedIndex = newIndex;
+ handleUpdate();
+ if (_NativeLogBox.default) {
+ setTimeout(function () {
+ if (oldIndex < 0 && newIndex >= 0) {
+ _NativeLogBox.default.show();
+ } else if (oldIndex >= 0 && newIndex < 0) {
+ _NativeLogBox.default.hide();
+ }
+ }, 0);
+ }
+ }
+ function clearWarnings() {
+ var newLogs = Array.from(logs).filter(function (log) {
+ return log.level !== 'warn';
+ });
+ if (newLogs.length !== logs.size) {
+ logs = new Set(newLogs);
+ setSelectedLog(-1);
+ handleUpdate();
+ }
+ }
+ function clearErrors() {
+ var newLogs = Array.from(logs).filter(function (log) {
+ return log.level !== 'error' && log.level !== 'fatal';
+ });
+ if (newLogs.length !== logs.size) {
+ logs = new Set(newLogs);
+ setSelectedLog(-1);
+ }
+ }
+ function dismiss(log) {
+ if (logs.has(log)) {
+ logs.delete(log);
+ handleUpdate();
+ }
+ }
+ function setWarningFilter(filter) {
+ warningFilter = filter;
+ }
+ function setAppInfo(info) {
+ appInfo = info;
+ }
+ function getAppInfo() {
+ return appInfo != null ? appInfo() : null;
+ }
+ function checkWarningFilter(format) {
+ return warningFilter(format);
+ }
+ function getIgnorePatterns() {
+ return Array.from(ignorePatterns);
+ }
+ function addIgnorePatterns(patterns) {
+ var existingSize = ignorePatterns.size;
+ // The same pattern may be added multiple times, but adding a new pattern
+ // can be expensive so let's find only the ones that are new.
+ patterns.forEach(function (pattern) {
+ if (pattern instanceof RegExp) {
+ for (var existingPattern of ignorePatterns) {
+ if (existingPattern instanceof RegExp && existingPattern.toString() === pattern.toString()) {
+ return;
+ }
+ }
+ ignorePatterns.add(pattern);
+ }
+ ignorePatterns.add(pattern);
+ });
+ if (ignorePatterns.size === existingSize) {
+ return;
+ }
+ // We need to recheck all of the existing logs.
+ // This allows adding an ignore pattern anywhere in the codebase.
+ // Without this, if you ignore a pattern after the a log is created,
+ // then we would keep showing the log.
+ logs = new Set(Array.from(logs).filter(function (log) {
+ return !isMessageIgnored(log.message.content);
+ }));
+ handleUpdate();
+ }
+ function setDisabled(value) {
+ if (value === _isDisabled) {
+ return;
+ }
+ _isDisabled = value;
+ handleUpdate();
+ }
+ function isDisabled() {
+ return _isDisabled;
+ }
+ function observe(observer) {
+ var subscription = {
+ observer: observer
+ };
+ observers.add(subscription);
+ observer(getNextState());
+ return {
+ unsubscribe: function unsubscribe() {
+ observers.delete(subscription);
+ }
+ };
+ }
+ function withSubscription(WrappedComponent) {
+ var LogBoxStateSubscription = /*#__PURE__*/function (_React$Component) {
+ function LogBoxStateSubscription() {
+ var _this;
+ (0, _classCallCheck2.default)(this, LogBoxStateSubscription);
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
+ args[_key] = arguments[_key];
+ }
+ _this = _callSuper(this, LogBoxStateSubscription, [].concat(args));
+ _this.state = {
+ logs: new Set(),
+ isDisabled: false,
+ hasError: false,
+ selectedLogIndex: -1
+ };
+ _this._handleDismiss = function () {
+ // Here we handle the cases when the log is dismissed and it
+ // was either the last log, or when the current index
+ // is now outside the bounds of the log array.
+ var _this$state = _this.state,
+ selectedLogIndex = _this$state.selectedLogIndex,
+ stateLogs = _this$state.logs;
+ var logsArray = Array.from(stateLogs);
+ if (selectedLogIndex != null) {
+ if (logsArray.length - 1 <= 0) {
+ setSelectedLog(-1);
+ } else if (selectedLogIndex >= logsArray.length - 1) {
+ setSelectedLog(selectedLogIndex - 1);
+ }
+ dismiss(logsArray[selectedLogIndex]);
+ }
+ };
+ _this._handleMinimize = function () {
+ setSelectedLog(-1);
+ };
+ _this._handleSetSelectedLog = function (index) {
+ setSelectedLog(index);
+ };
+ return _this;
+ }
+ (0, _inherits2.default)(LogBoxStateSubscription, _React$Component);
+ return (0, _createClass2.default)(LogBoxStateSubscription, [{
+ key: "componentDidCatch",
+ value: function componentDidCatch(err, errorInfo) {
+ /* $FlowFixMe[class-object-subtyping] added when improving typing for
+ * this parameters */
+ reportLogBoxError(err, errorInfo.componentStack);
+ }
+ }, {
+ key: "render",
+ value: function render() {
+ if (this.state.hasError) {
+ // This happens when the component failed to render, in which case we delegate to the native redbox.
+ // We can't show anyback fallback UI here, because the error may be with or .
+ return null;
+ }
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(WrappedComponent, {
+ logs: Array.from(this.state.logs),
+ isDisabled: this.state.isDisabled,
+ selectedLogIndex: this.state.selectedLogIndex
+ });
+ }
+ }, {
+ key: "componentDidMount",
+ value: function componentDidMount() {
+ var _this2 = this;
+ this._subscription = observe(function (data) {
+ _this2.setState(data);
+ });
+ }
+ }, {
+ key: "componentWillUnmount",
+ value: function componentWillUnmount() {
+ if (this._subscription != null) {
+ this._subscription.unsubscribe();
+ }
+ }
+ }], [{
+ key: "getDerivedStateFromError",
+ value: function getDerivedStateFromError() {
+ return {
+ hasError: true
+ };
+ }
+ }]);
+ }(React.Component);
+ return LogBoxStateSubscription;
+ }
+},97,[6,18,19,23,25,28,92,98,99,65,106,87,109],"node_modules\\react-native\\Libraries\\LogBox\\Data\\LogBoxData.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var TurboModuleRegistry = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../TurboModule/TurboModuleRegistry"));
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+ var _default = exports.default = TurboModuleRegistry.get('LogBox');
+},98,[36],"node_modules\\react-native\\Libraries\\NativeModules\\specs\\NativeLogBox.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck"));
+ var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass"));
+ var LogBoxSymbolication = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[3], "./LogBoxSymbolication"));
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+ var LogBoxLog = /*#__PURE__*/function () {
+ function LogBoxLog(data) {
+ (0, _classCallCheck2.default)(this, LogBoxLog);
+ this.symbolicated = {
+ error: null,
+ stack: null,
+ status: 'NONE'
+ };
+ this.level = data.level;
+ this.type = data.type;
+ this.message = data.message;
+ this.stack = data.stack;
+ this.category = data.category;
+ this.componentStack = data.componentStack;
+ this.codeFrame = data.codeFrame;
+ this.isComponentError = data.isComponentError;
+ this.extraData = data.extraData;
+ this.count = 1;
+ }
+ return (0, _createClass2.default)(LogBoxLog, [{
+ key: "incrementCount",
+ value: function incrementCount() {
+ this.count += 1;
+ }
+ }, {
+ key: "getAvailableStack",
+ value: function getAvailableStack() {
+ return this.symbolicated.status === 'COMPLETE' ? this.symbolicated.stack : this.stack;
+ }
+ }, {
+ key: "retrySymbolicate",
+ value: function retrySymbolicate(callback) {
+ if (this.symbolicated.status !== 'COMPLETE') {
+ LogBoxSymbolication.deleteStack(this.stack);
+ this.handleSymbolicate(callback);
+ }
+ }
+ }, {
+ key: "symbolicate",
+ value: function symbolicate(callback) {
+ if (this.symbolicated.status === 'NONE') {
+ this.handleSymbolicate(callback);
+ }
+ }
+ }, {
+ key: "handleSymbolicate",
+ value: function handleSymbolicate(callback) {
+ var _this = this;
+ if (this.symbolicated.status !== 'PENDING') {
+ this.updateStatus(null, null, null, callback);
+ LogBoxSymbolication.symbolicate(this.stack, this.extraData).then(function (data) {
+ _this.updateStatus(null, data == null ? void 0 : data.stack, data == null ? void 0 : data.codeFrame, callback);
+ }, function (error) {
+ _this.updateStatus(error, null, null, callback);
+ });
+ }
+ }
+ }, {
+ key: "updateStatus",
+ value: function updateStatus(error, stack, codeFrame, callback) {
+ var lastStatus = this.symbolicated.status;
+ if (error != null) {
+ this.symbolicated = {
+ error: error,
+ stack: null,
+ status: 'FAILED'
+ };
+ } else if (stack != null) {
+ if (codeFrame) {
+ this.codeFrame = codeFrame;
+ }
+ this.symbolicated = {
+ error: null,
+ stack: stack,
+ status: 'COMPLETE'
+ };
+ } else {
+ this.symbolicated = {
+ error: null,
+ stack: null,
+ status: 'PENDING'
+ };
+ }
+ if (callback && lastStatus !== this.symbolicated.status) {
+ callback(this.symbolicated.status);
+ }
+ }
+ }]);
+ }();
+ var _default = exports.default = LogBoxLog;
+},99,[6,18,19,100],"node_modules\\react-native\\Libraries\\LogBox\\Data\\LogBoxLog.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.deleteStack = deleteStack;
+ exports.symbolicate = symbolicate;
+ var _symbolicateStackTrace = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../../Core/Devtools/symbolicateStackTrace"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ var cache = new Map();
+
+ /**
+ * Sanitize because sometimes, `symbolicateStackTrace` gives us invalid values.
+ */
+ var sanitize = function sanitize(_ref) {
+ var maybeStack = _ref.stack,
+ codeFrame = _ref.codeFrame;
+ if (!Array.isArray(maybeStack)) {
+ throw new Error('Expected stack to be an array.');
+ }
+ var stack = [];
+ for (var maybeFrame of maybeStack) {
+ var collapse = false;
+ if ('collapse' in maybeFrame) {
+ if (typeof maybeFrame.collapse !== 'boolean') {
+ throw new Error('Expected stack frame `collapse` to be a boolean.');
+ }
+ collapse = maybeFrame.collapse;
+ }
+ stack.push({
+ column: maybeFrame.column,
+ file: maybeFrame.file,
+ lineNumber: maybeFrame.lineNumber,
+ methodName: maybeFrame.methodName,
+ collapse: collapse
+ });
+ }
+ return {
+ stack: stack,
+ codeFrame: codeFrame
+ };
+ };
+ function deleteStack(stack) {
+ cache.delete(stack);
+ }
+ function symbolicate(stack, extraData) {
+ var promise = cache.get(stack);
+ if (promise == null) {
+ promise = (0, _symbolicateStackTrace.default)(stack, extraData).then(sanitize);
+ cache.set(stack, promise);
+ }
+ return promise;
+ }
+},100,[6,101],"node_modules\\react-native\\Libraries\\LogBox\\Data\\LogBoxSymbolication.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ 'use strict';
+
+ var _asyncToGenerator = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/asyncToGenerator");
+ function symbolicateStackTrace(_x, _x2) {
+ return _symbolicateStackTrace.apply(this, arguments);
+ }
+ function _symbolicateStackTrace() {
+ _symbolicateStackTrace = _asyncToGenerator(function* (stack, extraData) {
+ var _global$fetch;
+ var devServer = _$$_REQUIRE(_dependencyMap[1], "./getDevServer")();
+ if (!devServer.bundleLoadedFromServer) {
+ throw new Error('Bundle was not loaded from Metro.');
+ }
+
+ // Lazy-load `fetch` until the first symbolication call to avoid circular requires.
+ var fetch = (_global$fetch = global.fetch) != null ? _global$fetch : _$$_REQUIRE(_dependencyMap[2], "../../Network/fetch");
+ var response = yield fetch(devServer.url + 'symbolicate', {
+ method: 'POST',
+ body: JSON.stringify({
+ stack: stack,
+ extraData: extraData
+ })
+ });
+ return yield response.json();
+ });
+ return _symbolicateStackTrace.apply(this, arguments);
+ }
+ module.exports = symbolicateStackTrace;
+},101,[13,102,104],"node_modules\\react-native\\Libraries\\Core\\Devtools\\symbolicateStackTrace.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ var _NativeSourceCode = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../../NativeModules/specs/NativeSourceCode"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ var _cachedDevServerURL;
+ var _cachedFullBundleURL;
+ var FALLBACK = 'http://localhost:8081/';
+ /**
+ * Many RN development tools rely on the development server (packager) running
+ * @return URL to packager with trailing slash
+ */
+ function getDevServer() {
+ var _cachedDevServerURL2;
+ if (_cachedDevServerURL === undefined) {
+ var scriptUrl = _NativeSourceCode.default.getConstants().scriptURL;
+ var match = scriptUrl.match(/^https?:\/\/.*?\//);
+ _cachedDevServerURL = match ? match[0] : null;
+ _cachedFullBundleURL = match ? scriptUrl : null;
+ }
+ return {
+ url: (_cachedDevServerURL2 = _cachedDevServerURL) != null ? _cachedDevServerURL2 : FALLBACK,
+ fullBundleUrl: _cachedFullBundleURL,
+ bundleLoadedFromServer: _cachedDevServerURL !== null
+ };
+ }
+ module.exports = getDevServer;
+},102,[6,103],"node_modules\\react-native\\Libraries\\Core\\Devtools\\getDevServer.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var TurboModuleRegistry = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../TurboModule/TurboModuleRegistry"));
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ var NativeModule = TurboModuleRegistry.getEnforcing('SourceCode');
+ var constants = null;
+ var NativeSourceCode = {
+ getConstants: function getConstants() {
+ if (constants == null) {
+ constants = NativeModule.getConstants();
+ }
+ return constants;
+ }
+ };
+ var _default = exports.default = NativeSourceCode;
+},103,[36],"node_modules\\react-native\\Libraries\\NativeModules\\specs\\NativeSourceCode.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ /* globals Headers, Request, Response */
+
+ 'use strict';
+
+ // side-effectful require() to put fetch,
+ // Headers, Request, Response in global scope
+ _$$_REQUIRE(_dependencyMap[0], "whatwg-fetch");
+ module.exports = {
+ fetch: fetch,
+ Headers: Headers,
+ Request: Request,
+ Response: Response
+ };
+},104,[105],"node_modules\\react-native\\Libraries\\Network\\fetch.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ (function (global, factory) {
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : typeof define === 'function' && define.amd ? define(['exports'], factory) : factory(global.WHATWGFetch = {});
+ })(this, function (exports) {
+ 'use strict';
+
+ /* eslint-disable no-prototype-builtins */
+ var g = typeof globalThis !== 'undefined' && globalThis || typeof self !== 'undefined' && self ||
+ // eslint-disable-next-line no-undef
+ typeof global !== 'undefined' && global || {};
+ var support = {
+ searchParams: 'URLSearchParams' in g,
+ iterable: 'Symbol' in g && 'iterator' in Symbol,
+ blob: 'FileReader' in g && 'Blob' in g && function () {
+ try {
+ new Blob();
+ return true;
+ } catch (e) {
+ return false;
+ }
+ }(),
+ formData: 'FormData' in g,
+ arrayBuffer: 'ArrayBuffer' in g
+ };
+ function isDataView(obj) {
+ return obj && DataView.prototype.isPrototypeOf(obj);
+ }
+ if (support.arrayBuffer) {
+ var viewClasses = ['[object Int8Array]', '[object Uint8Array]', '[object Uint8ClampedArray]', '[object Int16Array]', '[object Uint16Array]', '[object Int32Array]', '[object Uint32Array]', '[object Float32Array]', '[object Float64Array]'];
+ var isArrayBufferView = ArrayBuffer.isView || function (obj) {
+ return obj && viewClasses.indexOf(Object.prototype.toString.call(obj)) > -1;
+ };
+ }
+ function normalizeName(name) {
+ if (typeof name !== 'string') {
+ name = String(name);
+ }
+ if (/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(name) || name === '') {
+ throw new TypeError('Invalid character in header field name: "' + name + '"');
+ }
+ return name.toLowerCase();
+ }
+ function normalizeValue(value) {
+ if (typeof value !== 'string') {
+ value = String(value);
+ }
+ return value;
+ }
+
+ // Build a destructive iterator for the value list
+ function iteratorFor(items) {
+ var iterator = {
+ next: function next() {
+ var value = items.shift();
+ return {
+ done: value === undefined,
+ value: value
+ };
+ }
+ };
+ if (support.iterable) {
+ iterator[Symbol.iterator] = function () {
+ return iterator;
+ };
+ }
+ return iterator;
+ }
+ function Headers(headers) {
+ this.map = {};
+ if (headers instanceof Headers) {
+ headers.forEach(function (value, name) {
+ this.append(name, value);
+ }, this);
+ } else if (Array.isArray(headers)) {
+ headers.forEach(function (header) {
+ if (header.length != 2) {
+ throw new TypeError('Headers constructor: expected name/value pair to be length 2, found' + header.length);
+ }
+ this.append(header[0], header[1]);
+ }, this);
+ } else if (headers) {
+ Object.getOwnPropertyNames(headers).forEach(function (name) {
+ this.append(name, headers[name]);
+ }, this);
+ }
+ }
+ Headers.prototype.append = function (name, value) {
+ name = normalizeName(name);
+ value = normalizeValue(value);
+ var oldValue = this.map[name];
+ this.map[name] = oldValue ? oldValue + ', ' + value : value;
+ };
+ Headers.prototype['delete'] = function (name) {
+ delete this.map[normalizeName(name)];
+ };
+ Headers.prototype.get = function (name) {
+ name = normalizeName(name);
+ return this.has(name) ? this.map[name] : null;
+ };
+ Headers.prototype.has = function (name) {
+ return this.map.hasOwnProperty(normalizeName(name));
+ };
+ Headers.prototype.set = function (name, value) {
+ this.map[normalizeName(name)] = normalizeValue(value);
+ };
+ Headers.prototype.forEach = function (callback, thisArg) {
+ for (var name in this.map) {
+ if (this.map.hasOwnProperty(name)) {
+ callback.call(thisArg, this.map[name], name, this);
+ }
+ }
+ };
+ Headers.prototype.keys = function () {
+ var items = [];
+ this.forEach(function (value, name) {
+ items.push(name);
+ });
+ return iteratorFor(items);
+ };
+ Headers.prototype.values = function () {
+ var items = [];
+ this.forEach(function (value) {
+ items.push(value);
+ });
+ return iteratorFor(items);
+ };
+ Headers.prototype.entries = function () {
+ var items = [];
+ this.forEach(function (value, name) {
+ items.push([name, value]);
+ });
+ return iteratorFor(items);
+ };
+ if (support.iterable) {
+ Headers.prototype[Symbol.iterator] = Headers.prototype.entries;
+ }
+ function consumed(body) {
+ if (body._noBody) return;
+ if (body.bodyUsed) {
+ return Promise.reject(new TypeError('Already read'));
+ }
+ body.bodyUsed = true;
+ }
+ function fileReaderReady(reader) {
+ return new Promise(function (resolve, reject) {
+ reader.onload = function () {
+ resolve(reader.result);
+ };
+ reader.onerror = function () {
+ reject(reader.error);
+ };
+ });
+ }
+ function readBlobAsArrayBuffer(blob) {
+ var reader = new FileReader();
+ var promise = fileReaderReady(reader);
+ reader.readAsArrayBuffer(blob);
+ return promise;
+ }
+ function readBlobAsText(blob) {
+ var reader = new FileReader();
+ var promise = fileReaderReady(reader);
+ var match = /charset=([A-Za-z0-9_-]+)/.exec(blob.type);
+ var encoding = match ? match[1] : 'utf-8';
+ reader.readAsText(blob, encoding);
+ return promise;
+ }
+ function readArrayBufferAsText(buf) {
+ var view = new Uint8Array(buf);
+ var chars = new Array(view.length);
+ for (var i = 0; i < view.length; i++) {
+ chars[i] = String.fromCharCode(view[i]);
+ }
+ return chars.join('');
+ }
+ function bufferClone(buf) {
+ if (buf.slice) {
+ return buf.slice(0);
+ } else {
+ var view = new Uint8Array(buf.byteLength);
+ view.set(new Uint8Array(buf));
+ return view.buffer;
+ }
+ }
+ function Body() {
+ this.bodyUsed = false;
+ this._initBody = function (body) {
+ /*
+ fetch-mock wraps the Response object in an ES6 Proxy to
+ provide useful test harness features such as flush. However, on
+ ES5 browsers without fetch or Proxy support pollyfills must be used;
+ the proxy-pollyfill is unable to proxy an attribute unless it exists
+ on the object before the Proxy is created. This change ensures
+ Response.bodyUsed exists on the instance, while maintaining the
+ semantic of setting Request.bodyUsed in the constructor before
+ _initBody is called.
+ */
+ // eslint-disable-next-line no-self-assign
+ this.bodyUsed = this.bodyUsed;
+ this._bodyInit = body;
+ if (!body) {
+ this._noBody = true;
+ this._bodyText = '';
+ } else if (typeof body === 'string') {
+ this._bodyText = body;
+ } else if (support.blob && Blob.prototype.isPrototypeOf(body)) {
+ this._bodyBlob = body;
+ } else if (support.formData && FormData.prototype.isPrototypeOf(body)) {
+ this._bodyFormData = body;
+ } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {
+ this._bodyText = body.toString();
+ } else if (support.arrayBuffer && support.blob && isDataView(body)) {
+ this._bodyArrayBuffer = bufferClone(body.buffer);
+ // IE 10-11 can't handle a DataView body.
+ this._bodyInit = new Blob([this._bodyArrayBuffer]);
+ } else if (support.arrayBuffer && (ArrayBuffer.prototype.isPrototypeOf(body) || isArrayBufferView(body))) {
+ this._bodyArrayBuffer = bufferClone(body);
+ } else {
+ this._bodyText = body = Object.prototype.toString.call(body);
+ }
+ if (!this.headers.get('content-type')) {
+ if (typeof body === 'string') {
+ this.headers.set('content-type', 'text/plain;charset=UTF-8');
+ } else if (this._bodyBlob && this._bodyBlob.type) {
+ this.headers.set('content-type', this._bodyBlob.type);
+ } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {
+ this.headers.set('content-type', 'application/x-www-form-urlencoded;charset=UTF-8');
+ }
+ }
+ };
+ if (support.blob) {
+ this.blob = function () {
+ var rejected = consumed(this);
+ if (rejected) {
+ return rejected;
+ }
+ if (this._bodyBlob) {
+ return Promise.resolve(this._bodyBlob);
+ } else if (this._bodyArrayBuffer) {
+ return Promise.resolve(new Blob([this._bodyArrayBuffer]));
+ } else if (this._bodyFormData) {
+ throw new Error('could not read FormData body as blob');
+ } else {
+ return Promise.resolve(new Blob([this._bodyText]));
+ }
+ };
+ }
+ this.arrayBuffer = function () {
+ if (this._bodyArrayBuffer) {
+ var isConsumed = consumed(this);
+ if (isConsumed) {
+ return isConsumed;
+ } else if (ArrayBuffer.isView(this._bodyArrayBuffer)) {
+ return Promise.resolve(this._bodyArrayBuffer.buffer.slice(this._bodyArrayBuffer.byteOffset, this._bodyArrayBuffer.byteOffset + this._bodyArrayBuffer.byteLength));
+ } else {
+ return Promise.resolve(this._bodyArrayBuffer);
+ }
+ } else if (support.blob) {
+ return this.blob().then(readBlobAsArrayBuffer);
+ } else {
+ throw new Error('could not read as ArrayBuffer');
+ }
+ };
+ this.text = function () {
+ var rejected = consumed(this);
+ if (rejected) {
+ return rejected;
+ }
+ if (this._bodyBlob) {
+ return readBlobAsText(this._bodyBlob);
+ } else if (this._bodyArrayBuffer) {
+ return Promise.resolve(readArrayBufferAsText(this._bodyArrayBuffer));
+ } else if (this._bodyFormData) {
+ throw new Error('could not read FormData body as text');
+ } else {
+ return Promise.resolve(this._bodyText);
+ }
+ };
+ if (support.formData) {
+ this.formData = function () {
+ return this.text().then(decode);
+ };
+ }
+ this.json = function () {
+ return this.text().then(JSON.parse);
+ };
+ return this;
+ }
+
+ // HTTP methods whose capitalization should be normalized
+ var methods = ['CONNECT', 'DELETE', 'GET', 'HEAD', 'OPTIONS', 'PATCH', 'POST', 'PUT', 'TRACE'];
+ function normalizeMethod(method) {
+ var upcased = method.toUpperCase();
+ return methods.indexOf(upcased) > -1 ? upcased : method;
+ }
+ function Request(input, options) {
+ if (!(this instanceof Request)) {
+ throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');
+ }
+ options = options || {};
+ var body = options.body;
+ if (input instanceof Request) {
+ if (input.bodyUsed) {
+ throw new TypeError('Already read');
+ }
+ this.url = input.url;
+ this.credentials = input.credentials;
+ if (!options.headers) {
+ this.headers = new Headers(input.headers);
+ }
+ this.method = input.method;
+ this.mode = input.mode;
+ this.signal = input.signal;
+ if (!body && input._bodyInit != null) {
+ body = input._bodyInit;
+ input.bodyUsed = true;
+ }
+ } else {
+ this.url = String(input);
+ }
+ this.credentials = options.credentials || this.credentials || 'same-origin';
+ if (options.headers || !this.headers) {
+ this.headers = new Headers(options.headers);
+ }
+ this.method = normalizeMethod(options.method || this.method || 'GET');
+ this.mode = options.mode || this.mode || null;
+ this.signal = options.signal || this.signal || function () {
+ if ('AbortController' in g) {
+ var ctrl = new AbortController();
+ return ctrl.signal;
+ }
+ }();
+ this.referrer = null;
+ if ((this.method === 'GET' || this.method === 'HEAD') && body) {
+ throw new TypeError('Body not allowed for GET or HEAD requests');
+ }
+ this._initBody(body);
+ if (this.method === 'GET' || this.method === 'HEAD') {
+ if (options.cache === 'no-store' || options.cache === 'no-cache') {
+ // Search for a '_' parameter in the query string
+ var reParamSearch = /([?&])_=[^&]*/;
+ if (reParamSearch.test(this.url)) {
+ // If it already exists then set the value with the current time
+ this.url = this.url.replace(reParamSearch, '$1_=' + new Date().getTime());
+ } else {
+ // Otherwise add a new '_' parameter to the end with the current time
+ var reQueryString = /\?/;
+ this.url += (reQueryString.test(this.url) ? '&' : '?') + '_=' + new Date().getTime();
+ }
+ }
+ }
+ }
+ Request.prototype.clone = function () {
+ return new Request(this, {
+ body: this._bodyInit
+ });
+ };
+ function decode(body) {
+ var form = new FormData();
+ body.trim().split('&').forEach(function (bytes) {
+ if (bytes) {
+ var split = bytes.split('=');
+ var name = split.shift().replace(/\+/g, ' ');
+ var value = split.join('=').replace(/\+/g, ' ');
+ form.append(decodeURIComponent(name), decodeURIComponent(value));
+ }
+ });
+ return form;
+ }
+ function parseHeaders(rawHeaders) {
+ var headers = new Headers();
+ // Replace instances of \r\n and \n followed by at least one space or horizontal tab with a space
+ // https://tools.ietf.org/html/rfc7230#section-3.2
+ var preProcessedHeaders = rawHeaders.replace(/\r?\n[\t ]+/g, ' ');
+ // Avoiding split via regex to work around a common IE11 bug with the core-js 3.6.0 regex polyfill
+ // https://github.com/github/fetch/issues/748
+ // https://github.com/zloirock/core-js/issues/751
+ preProcessedHeaders.split('\r').map(function (header) {
+ return header.indexOf('\n') === 0 ? header.substr(1, header.length) : header;
+ }).forEach(function (line) {
+ var parts = line.split(':');
+ var key = parts.shift().trim();
+ if (key) {
+ var value = parts.join(':').trim();
+ try {
+ headers.append(key, value);
+ } catch (error) {
+ console.warn('Response ' + error.message);
+ }
+ }
+ });
+ return headers;
+ }
+ Body.call(Request.prototype);
+ function Response(bodyInit, options) {
+ if (!(this instanceof Response)) {
+ throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');
+ }
+ if (!options) {
+ options = {};
+ }
+ this.type = 'default';
+ this.status = options.status === undefined ? 200 : options.status;
+ if (this.status < 200 || this.status > 599) {
+ throw new RangeError("Failed to construct 'Response': The status provided (0) is outside the range [200, 599].");
+ }
+ this.ok = this.status >= 200 && this.status < 300;
+ this.statusText = options.statusText === undefined ? '' : '' + options.statusText;
+ this.headers = new Headers(options.headers);
+ this.url = options.url || '';
+ this._initBody(bodyInit);
+ }
+ Body.call(Response.prototype);
+ Response.prototype.clone = function () {
+ return new Response(this._bodyInit, {
+ status: this.status,
+ statusText: this.statusText,
+ headers: new Headers(this.headers),
+ url: this.url
+ });
+ };
+ Response.error = function () {
+ var response = new Response(null, {
+ status: 200,
+ statusText: ''
+ });
+ response.ok = false;
+ response.status = 0;
+ response.type = 'error';
+ return response;
+ };
+ var redirectStatuses = [301, 302, 303, 307, 308];
+ Response.redirect = function (url, status) {
+ if (redirectStatuses.indexOf(status) === -1) {
+ throw new RangeError('Invalid status code');
+ }
+ return new Response(null, {
+ status: status,
+ headers: {
+ location: url
+ }
+ });
+ };
+ exports.DOMException = g.DOMException;
+ try {
+ new exports.DOMException();
+ } catch (err) {
+ exports.DOMException = function (message, name) {
+ this.message = message;
+ this.name = name;
+ var error = Error(message);
+ this.stack = error.stack;
+ };
+ exports.DOMException.prototype = Object.create(Error.prototype);
+ exports.DOMException.prototype.constructor = exports.DOMException;
+ }
+ function fetch(input, init) {
+ return new Promise(function (resolve, reject) {
+ var request = new Request(input, init);
+ if (request.signal && request.signal.aborted) {
+ return reject(new exports.DOMException('Aborted', 'AbortError'));
+ }
+ var xhr = new XMLHttpRequest();
+ function abortXhr() {
+ xhr.abort();
+ }
+ xhr.onload = function () {
+ var options = {
+ statusText: xhr.statusText,
+ headers: parseHeaders(xhr.getAllResponseHeaders() || '')
+ };
+ // This check if specifically for when a user fetches a file locally from the file system
+ // Only if the status is out of a normal range
+ if (request.url.indexOf('file://') === 0 && (xhr.status < 200 || xhr.status > 599)) {
+ options.status = 200;
+ } else {
+ options.status = xhr.status;
+ }
+ options.url = 'responseURL' in xhr ? xhr.responseURL : options.headers.get('X-Request-URL');
+ var body = 'response' in xhr ? xhr.response : xhr.responseText;
+ setTimeout(function () {
+ resolve(new Response(body, options));
+ }, 0);
+ };
+ xhr.onerror = function () {
+ setTimeout(function () {
+ reject(new TypeError('Network request failed'));
+ }, 0);
+ };
+ xhr.ontimeout = function () {
+ setTimeout(function () {
+ reject(new TypeError('Network request timed out'));
+ }, 0);
+ };
+ xhr.onabort = function () {
+ setTimeout(function () {
+ reject(new exports.DOMException('Aborted', 'AbortError'));
+ }, 0);
+ };
+ function fixUrl(url) {
+ try {
+ return url === '' && g.location.href ? g.location.href : url;
+ } catch (e) {
+ return url;
+ }
+ }
+ xhr.open(request.method, fixUrl(request.url), true);
+ if (request.credentials === 'include') {
+ xhr.withCredentials = true;
+ } else if (request.credentials === 'omit') {
+ xhr.withCredentials = false;
+ }
+ if ('responseType' in xhr) {
+ if (support.blob) {
+ xhr.responseType = 'blob';
+ } else if (support.arrayBuffer) {
+ xhr.responseType = 'arraybuffer';
+ }
+ }
+ if (init && typeof init.headers === 'object' && !(init.headers instanceof Headers || g.Headers && init.headers instanceof g.Headers)) {
+ var names = [];
+ Object.getOwnPropertyNames(init.headers).forEach(function (name) {
+ names.push(normalizeName(name));
+ xhr.setRequestHeader(name, normalizeValue(init.headers[name]));
+ });
+ request.headers.forEach(function (value, name) {
+ if (names.indexOf(name) === -1) {
+ xhr.setRequestHeader(name, value);
+ }
+ });
+ } else {
+ request.headers.forEach(function (value, name) {
+ xhr.setRequestHeader(name, value);
+ });
+ }
+ if (request.signal) {
+ request.signal.addEventListener('abort', abortXhr);
+ xhr.onreadystatechange = function () {
+ // DONE (success or failure)
+ if (xhr.readyState === 4) {
+ request.signal.removeEventListener('abort', abortXhr);
+ }
+ };
+ }
+ xhr.send(typeof request._bodyInit === 'undefined' ? null : request._bodyInit);
+ });
+ }
+ fetch.polyfill = true;
+ if (!g.fetch) {
+ g.fetch = fetch;
+ g.Headers = Headers;
+ g.Request = Request;
+ g.Response = Response;
+ }
+ exports.Headers = Headers;
+ exports.Request = Request;
+ exports.Response = Response;
+ exports.fetch = fetch;
+ Object.defineProperty(exports, '__esModule', {
+ value: true
+ });
+ });
+},105,[],"node_modules\\whatwg-fetch\\dist\\fetch.umd.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ if (process.env.NODE_ENV === 'production') {
+ module.exports = _$$_REQUIRE(_dependencyMap[0], "./cjs/react-jsx-runtime.production.min.js");
+ } else {
+ module.exports = _$$_REQUIRE(_dependencyMap[1], "./cjs/react-jsx-runtime.development.js");
+ }
+},106,[107,108],"node_modules\\react\\jsx-runtime.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * @license React
+ * react-jsx-runtime.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 f = _$$_REQUIRE(_dependencyMap[0], "react"),
+ k = Symbol.for("react.element"),
+ l = Symbol.for("react.fragment"),
+ m = Object.prototype.hasOwnProperty,
+ n = f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,
+ p = {
+ key: !0,
+ ref: !0,
+ __self: !0,
+ __source: !0
+ };
+ function q(c, a, g) {
+ var b,
+ d = {},
+ e = null,
+ h = null;
+ void 0 !== g && (e = "" + g);
+ void 0 !== a.key && (e = "" + a.key);
+ void 0 !== a.ref && (h = a.ref);
+ for (b in a) m.call(a, b) && !p.hasOwnProperty(b) && (d[b] = a[b]);
+ if (c && c.defaultProps) for (b in a = c.defaultProps, a) void 0 === d[b] && (d[b] = a[b]);
+ return {
+ $$typeof: k,
+ type: c,
+ key: e,
+ ref: h,
+ props: d,
+ _owner: n.current
+ };
+ }
+ exports.Fragment = l;
+ exports.jsx = q;
+ exports.jsxs = q;
+},107,[65],"node_modules\\react\\cjs\\react-jsx-runtime.production.min.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * @license React
+ * react-jsx-runtime.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 React = _$$_REQUIRE(_dependencyMap[0], "react");
+
+ // ATTENTION
+ // When adding new symbols to this file,
+ // Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols'
+ // The Symbol used to tag the ReactElement-like types.
+ var REACT_ELEMENT_TYPE = Symbol.for('react.element');
+ var REACT_PORTAL_TYPE = Symbol.for('react.portal');
+ var REACT_FRAGMENT_TYPE = Symbol.for('react.fragment');
+ var REACT_STRICT_MODE_TYPE = Symbol.for('react.strict_mode');
+ var REACT_PROFILER_TYPE = Symbol.for('react.profiler');
+ var REACT_PROVIDER_TYPE = Symbol.for('react.provider');
+ var REACT_CONTEXT_TYPE = Symbol.for('react.context');
+ var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');
+ var REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');
+ var REACT_SUSPENSE_LIST_TYPE = Symbol.for('react.suspense_list');
+ var REACT_MEMO_TYPE = Symbol.for('react.memo');
+ var REACT_LAZY_TYPE = Symbol.for('react.lazy');
+ var REACT_OFFSCREEN_TYPE = Symbol.for('react.offscreen');
+ var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
+ var FAUX_ITERATOR_SYMBOL = '@@iterator';
+ function getIteratorFn(maybeIterable) {
+ if (maybeIterable === null || typeof maybeIterable !== 'object') {
+ return null;
+ }
+ var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];
+ if (typeof maybeIterator === 'function') {
+ return maybeIterator;
+ }
+ return null;
+ }
+ var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
+ 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('error', format, args);
+ }
+ }
+ }
+ function printWarning(level, format, args) {
+ // When changing this logic, you might want to also
+ // update consoleWithStackDev.www.js as well.
+ {
+ var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
+ var stack = ReactDebugCurrentFrame.getStackAddendum();
+ if (stack !== '') {
+ format += '%s';
+ args = args.concat([stack]);
+ } // eslint-disable-next-line react-internal/safe-string-coercion
+
+ var argsWithFormat = args.map(function (item) {
+ return String(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
+ // eslint-disable-next-line react-internal/no-production-logging
+
+ Function.prototype.apply.call(console[level], console, argsWithFormat);
+ }
+ }
+
+ // -----------------------------------------------------------------------------
+
+ var enableScopeAPI = false; // Experimental Create Event Handle API.
+ var enableCacheElement = false;
+ var enableTransitionTracing = false; // No known bugs, but needs performance testing
+
+ var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber
+ // stuff. Intended to enable React core members to more easily debug scheduling
+ // issues in DEV builds.
+
+ var enableDebugTracing = false; // Track which Fiber(s) schedule render work.
+
+ var REACT_MODULE_REFERENCE;
+ {
+ REACT_MODULE_REFERENCE = Symbol.for('react.module.reference');
+ }
+ function isValidElementType(type) {
+ if (typeof type === 'string' || typeof type === 'function') {
+ return true;
+ } // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill).
+
+ if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing) {
+ return true;
+ }
+ if (typeof type === 'object' && type !== null) {
+ if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE ||
+ // This needs to include all possible module reference object
+ // types supported by any Flight configuration anywhere since
+ // we don't know which Flight build this will end up being used
+ // with.
+ type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== undefined) {
+ return true;
+ }
+ }
+ return false;
+ }
+ function getWrappedName(outerType, innerType, wrapperName) {
+ var displayName = outerType.displayName;
+ if (displayName) {
+ return displayName;
+ }
+ var functionName = innerType.displayName || innerType.name || '';
+ return functionName !== '' ? wrapperName + "(" + functionName + ")" : wrapperName;
+ } // Keep in sync with react-reconciler/getComponentNameFromFiber
+
+ function getContextName(type) {
+ return type.displayName || 'Context';
+ } // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.
+
+ function getComponentNameFromType(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 getComponentNameFromType(). ' + '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:
+ return 'Fragment';
+ case REACT_PORTAL_TYPE:
+ return 'Portal';
+ case REACT_PROFILER_TYPE:
+ return 'Profiler';
+ case REACT_STRICT_MODE_TYPE:
+ return 'StrictMode';
+ case REACT_SUSPENSE_TYPE:
+ return 'Suspense';
+ case REACT_SUSPENSE_LIST_TYPE:
+ return 'SuspenseList';
+ }
+ if (typeof type === 'object') {
+ switch (type.$$typeof) {
+ case REACT_CONTEXT_TYPE:
+ var context = type;
+ return getContextName(context) + '.Consumer';
+ case REACT_PROVIDER_TYPE:
+ var provider = type;
+ return getContextName(provider._context) + '.Provider';
+ case REACT_FORWARD_REF_TYPE:
+ return getWrappedName(type, type.render, 'ForwardRef');
+ case REACT_MEMO_TYPE:
+ var outerName = type.displayName || null;
+ if (outerName !== null) {
+ return outerName;
+ }
+ return getComponentNameFromType(type.type) || 'Memo';
+ case REACT_LAZY_TYPE:
+ {
+ var lazyComponent = type;
+ var payload = lazyComponent._payload;
+ var init = lazyComponent._init;
+ try {
+ return getComponentNameFromType(init(payload));
+ } catch (x) {
+ return null;
+ }
+ }
+
+ // eslint-disable-next-line no-fallthrough
+ }
+ }
+ return null;
+ }
+ var assign = Object.assign;
+
+ // Helpers to patch console.logs to avoid logging during side-effect free
+ // replaying on render function. This currently only patches the object
+ // lazily which won't cover if the log function was extracted eagerly.
+ // We could also eagerly patch the method.
+ var disabledDepth = 0;
+ var prevLog;
+ var prevInfo;
+ var prevWarn;
+ var prevError;
+ var prevGroup;
+ var prevGroupCollapsed;
+ var prevGroupEnd;
+ function disabledLog() {}
+ disabledLog.__reactDisabledLog = true;
+ function disableLogs() {
+ {
+ if (disabledDepth === 0) {
+ /* eslint-disable react-internal/no-production-logging */
+ prevLog = console.log;
+ prevInfo = console.info;
+ prevWarn = console.warn;
+ prevError = console.error;
+ prevGroup = console.group;
+ prevGroupCollapsed = console.groupCollapsed;
+ prevGroupEnd = console.groupEnd; // https://github.com/facebook/react/issues/19099
+
+ var props = {
+ configurable: true,
+ enumerable: true,
+ value: disabledLog,
+ writable: true
+ }; // $FlowFixMe Flow thinks console is immutable.
+
+ Object.defineProperties(console, {
+ info: props,
+ log: props,
+ warn: props,
+ error: props,
+ group: props,
+ groupCollapsed: props,
+ groupEnd: props
+ });
+ /* eslint-enable react-internal/no-production-logging */
+ }
+ disabledDepth++;
+ }
+ }
+ function reenableLogs() {
+ {
+ disabledDepth--;
+ if (disabledDepth === 0) {
+ /* eslint-disable react-internal/no-production-logging */
+ var props = {
+ configurable: true,
+ enumerable: true,
+ writable: true
+ }; // $FlowFixMe Flow thinks console is immutable.
+
+ Object.defineProperties(console, {
+ log: assign({}, props, {
+ value: prevLog
+ }),
+ info: assign({}, props, {
+ value: prevInfo
+ }),
+ warn: assign({}, props, {
+ value: prevWarn
+ }),
+ error: assign({}, props, {
+ value: prevError
+ }),
+ group: assign({}, props, {
+ value: prevGroup
+ }),
+ groupCollapsed: assign({}, props, {
+ value: prevGroupCollapsed
+ }),
+ groupEnd: assign({}, props, {
+ value: prevGroupEnd
+ })
+ });
+ /* eslint-enable react-internal/no-production-logging */
+ }
+ if (disabledDepth < 0) {
+ error('disabledDepth fell below zero. ' + 'This is a bug in React. Please file an issue.');
+ }
+ }
+ }
+ var ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher;
+ var prefix;
+ function describeBuiltInComponentFrame(name, source, ownerFn) {
+ {
+ if (prefix === undefined) {
+ // Extract the VM specific prefix used by each line.
+ try {
+ throw Error();
+ } catch (x) {
+ var match = x.stack.trim().match(/\n( *(at )?)/);
+ prefix = match && match[1] || '';
+ }
+ } // We use the prefix to ensure our stacks line up with native stack frames.
+
+ return '\n' + prefix + name;
+ }
+ }
+ var reentry = false;
+ var componentFrameCache;
+ {
+ var PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map;
+ componentFrameCache = new PossiblyWeakMap();
+ }
+ function describeNativeComponentFrame(fn, construct) {
+ // If something asked for a stack inside a fake render, it should get ignored.
+ if (!fn || reentry) {
+ return '';
+ }
+ {
+ var frame = componentFrameCache.get(fn);
+ if (frame !== undefined) {
+ return frame;
+ }
+ }
+ var control;
+ reentry = true;
+ var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe It does accept undefined.
+
+ Error.prepareStackTrace = undefined;
+ var previousDispatcher;
+ {
+ previousDispatcher = ReactCurrentDispatcher.current; // Set the dispatcher in DEV because this might be call in the render function
+ // for warnings.
+
+ ReactCurrentDispatcher.current = null;
+ disableLogs();
+ }
+ try {
+ // This should throw.
+ if (construct) {
+ // Something should be setting the props in the constructor.
+ var Fake = function Fake() {
+ throw Error();
+ }; // $FlowFixMe
+
+ Object.defineProperty(Fake.prototype, 'props', {
+ set: function set() {
+ // We use a throwing setter instead of frozen or non-writable props
+ // because that won't throw in a non-strict mode function.
+ throw Error();
+ }
+ });
+ if (typeof Reflect === 'object' && Reflect.construct) {
+ // We construct a different control for this case to include any extra
+ // frames added by the construct call.
+ try {
+ Reflect.construct(Fake, []);
+ } catch (x) {
+ control = x;
+ }
+ Reflect.construct(fn, [], Fake);
+ } else {
+ try {
+ Fake.call();
+ } catch (x) {
+ control = x;
+ }
+ fn.call(Fake.prototype);
+ }
+ } else {
+ try {
+ throw Error();
+ } catch (x) {
+ control = x;
+ }
+ fn();
+ }
+ } catch (sample) {
+ // This is inlined manually because closure doesn't do it for us.
+ if (sample && control && typeof sample.stack === 'string') {
+ // This extracts the first frame from the sample that isn't also in the control.
+ // Skipping one frame that we assume is the frame that calls the two.
+ var sampleLines = sample.stack.split('\n');
+ var controlLines = control.stack.split('\n');
+ var s = sampleLines.length - 1;
+ var c = controlLines.length - 1;
+ while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
+ // We expect at least one stack frame to be shared.
+ // Typically this will be the root most one. However, stack frames may be
+ // cut off due to maximum stack limits. In this case, one maybe cut off
+ // earlier than the other. We assume that the sample is longer or the same
+ // and there for cut off earlier. So we should find the root most frame in
+ // the sample somewhere in the control.
+ c--;
+ }
+ for (; s >= 1 && c >= 0; s--, c--) {
+ // Next we find the first one that isn't the same which should be the
+ // frame that called our sample function and the control.
+ if (sampleLines[s] !== controlLines[c]) {
+ // In V8, the first line is describing the message but other VMs don't.
+ // If we're about to return the first line, and the control is also on the same
+ // line, that's a pretty good indicator that our sample threw at same line as
+ // the control. I.e. before we entered the sample frame. So we ignore this result.
+ // This can happen if you passed a class to function component, or non-function.
+ if (s !== 1 || c !== 1) {
+ do {
+ s--;
+ c--; // We may still have similar intermediate frames from the construct call.
+ // The next one that isn't the same should be our match though.
+
+ if (c < 0 || sampleLines[s] !== controlLines[c]) {
+ // V8 adds a "new" prefix for native classes. Let's remove it to make it prettier.
+ var _frame = '\n' + sampleLines[s].replace(' at new ', ' at '); // If our component frame is labeled ""
+ // but we have a user-provided "displayName"
+ // splice it in to make the stack more readable.
+
+ if (fn.displayName && _frame.includes('')) {
+ _frame = _frame.replace('', fn.displayName);
+ }
+ {
+ if (typeof fn === 'function') {
+ componentFrameCache.set(fn, _frame);
+ }
+ } // Return the line we found.
+
+ return _frame;
+ }
+ } while (s >= 1 && c >= 0);
+ }
+ break;
+ }
+ }
+ }
+ } finally {
+ reentry = false;
+ {
+ ReactCurrentDispatcher.current = previousDispatcher;
+ reenableLogs();
+ }
+ Error.prepareStackTrace = previousPrepareStackTrace;
+ } // Fallback to just using the name if we couldn't make it throw.
+
+ var name = fn ? fn.displayName || fn.name : '';
+ var syntheticFrame = name ? describeBuiltInComponentFrame(name) : '';
+ {
+ if (typeof fn === 'function') {
+ componentFrameCache.set(fn, syntheticFrame);
+ }
+ }
+ return syntheticFrame;
+ }
+ function describeFunctionComponentFrame(fn, source, ownerFn) {
+ {
+ return describeNativeComponentFrame(fn, false);
+ }
+ }
+ function shouldConstruct(Component) {
+ var prototype = Component.prototype;
+ return !!(prototype && prototype.isReactComponent);
+ }
+ function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
+ if (type == null) {
+ return '';
+ }
+ if (typeof type === 'function') {
+ {
+ return describeNativeComponentFrame(type, shouldConstruct(type));
+ }
+ }
+ if (typeof type === 'string') {
+ return describeBuiltInComponentFrame(type);
+ }
+ switch (type) {
+ case REACT_SUSPENSE_TYPE:
+ return describeBuiltInComponentFrame('Suspense');
+ case REACT_SUSPENSE_LIST_TYPE:
+ return describeBuiltInComponentFrame('SuspenseList');
+ }
+ if (typeof type === 'object') {
+ switch (type.$$typeof) {
+ case REACT_FORWARD_REF_TYPE:
+ return describeFunctionComponentFrame(type.render);
+ case REACT_MEMO_TYPE:
+ // Memo may contain any component type so we recursively resolve it.
+ return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
+ case REACT_LAZY_TYPE:
+ {
+ var lazyComponent = type;
+ var payload = lazyComponent._payload;
+ var init = lazyComponent._init;
+ try {
+ // Lazy may contain any component type so we recursively resolve it.
+ return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
+ } catch (x) {}
+ }
+ }
+ }
+ return '';
+ }
+ var hasOwnProperty = Object.prototype.hasOwnProperty;
+ var loggedTypeFailures = {};
+ var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
+ function setCurrentlyValidatingElement(element) {
+ {
+ if (element) {
+ var owner = element._owner;
+ var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
+ ReactDebugCurrentFrame.setExtraStackFrame(stack);
+ } else {
+ ReactDebugCurrentFrame.setExtraStackFrame(null);
+ }
+ }
+ }
+ function checkPropTypes(typeSpecs, values, location, componentName, element) {
+ {
+ // $FlowFixMe This is okay but Flow doesn't know it.
+ var has = Function.call.bind(hasOwnProperty);
+ for (var typeSpecName in typeSpecs) {
+ if (has(typeSpecs, typeSpecName)) {
+ var error$1 = void 0; // 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') {
+ // eslint-disable-next-line react-internal/prod-error-codes
+ 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] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');
+ err.name = 'Invariant Violation';
+ throw err;
+ }
+ error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED');
+ } catch (ex) {
+ error$1 = ex;
+ }
+ if (error$1 && !(error$1 instanceof Error)) {
+ setCurrentlyValidatingElement(element);
+ error('%s: type specification of %s' + ' `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error$1);
+ setCurrentlyValidatingElement(null);
+ }
+ if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
+ // Only monitor this failure once because there tends to be a lot of the
+ // same error.
+ loggedTypeFailures[error$1.message] = true;
+ setCurrentlyValidatingElement(element);
+ error('Failed %s type: %s', location, error$1.message);
+ setCurrentlyValidatingElement(null);
+ }
+ }
+ }
+ }
+ }
+ var isArrayImpl = Array.isArray; // eslint-disable-next-line no-redeclare
+
+ function isArray(a) {
+ return isArrayImpl(a);
+ }
+
+ /*
+ * The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol
+ * and Temporal.* types. See https://github.com/facebook/react/pull/22064.
+ *
+ * The functions in this module will throw an easier-to-understand,
+ * easier-to-debug exception with a clear errors message message explaining the
+ * problem. (Instead of a confusing exception thrown inside the implementation
+ * of the `value` object).
+ */
+ // $FlowFixMe only called in DEV, so void return is not possible.
+ function typeName(value) {
+ {
+ // toStringTag is needed for namespaced types like Temporal.Instant
+ var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag;
+ var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object';
+ return type;
+ }
+ } // $FlowFixMe only called in DEV, so void return is not possible.
+
+ function willCoercionThrow(value) {
+ {
+ try {
+ testStringCoercion(value);
+ return false;
+ } catch (e) {
+ return true;
+ }
+ }
+ }
+ function testStringCoercion(value) {
+ // If you ended up here by following an exception call stack, here's what's
+ // happened: you supplied an object or symbol value to React (as a prop, key,
+ // DOM attribute, CSS property, string ref, etc.) and when React tried to
+ // coerce it to a string using `'' + value`, an exception was thrown.
+ //
+ // The most common types that will cause this exception are `Symbol` instances
+ // and Temporal objects like `Temporal.Instant`. But any object that has a
+ // `valueOf` or `[Symbol.toPrimitive]` method that throws will also cause this
+ // exception. (Library authors do this to prevent users from using built-in
+ // numeric operators like `+` or comparison operators like `>=` because custom
+ // methods are needed to perform accurate arithmetic or comparison.)
+ //
+ // To fix the problem, coerce this object or symbol value to a string before
+ // passing it to React. The most reliable way is usually `String(value)`.
+ //
+ // To find which value is throwing, check the browser or debugger console.
+ // Before this exception was thrown, there should be `console.error` output
+ // that shows the type (Symbol, Temporal.PlainDate, etc.) that caused the
+ // problem and how that type was used: key, atrribute, input value prop, etc.
+ // In most cases, this console output also shows the component and its
+ // ancestor components where the exception happened.
+ //
+ // eslint-disable-next-line react-internal/safe-string-coercion
+ return '' + value;
+ }
+ function checkKeyStringCoercion(value) {
+ {
+ if (willCoercionThrow(value)) {
+ error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value));
+ return testStringCoercion(value); // throw (to help callers find troubleshooting comments)
+ }
+ }
+ }
+ var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;
+ var RESERVED_PROPS = {
+ key: true,
+ ref: true,
+ __self: true,
+ __source: true
+ };
+ var specialPropKeyWarningShown;
+ var specialPropRefWarningShown;
+ var didWarnAboutStringRefs;
+ {
+ didWarnAboutStringRefs = {};
+ }
+ function hasValidRef(config) {
+ {
+ if (hasOwnProperty.call(config, 'ref')) {
+ var getter = Object.getOwnPropertyDescriptor(config, 'ref').get;
+ if (getter && getter.isReactWarning) {
+ return false;
+ }
+ }
+ }
+ return config.ref !== undefined;
+ }
+ function hasValidKey(config) {
+ {
+ if (hasOwnProperty.call(config, 'key')) {
+ var getter = Object.getOwnPropertyDescriptor(config, 'key').get;
+ if (getter && getter.isReactWarning) {
+ return false;
+ }
+ }
+ }
+ return config.key !== undefined;
+ }
+ function warnIfStringRefCannotBeAutoConverted(config, self) {
+ {
+ if (typeof config.ref === 'string' && ReactCurrentOwner.current && self && ReactCurrentOwner.current.stateNode !== self) {
+ var componentName = getComponentNameFromType(ReactCurrentOwner.current.type);
+ if (!didWarnAboutStringRefs[componentName]) {
+ error('Component "%s" contains the string ref "%s". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', getComponentNameFromType(ReactCurrentOwner.current.type), config.ref);
+ didWarnAboutStringRefs[componentName] = true;
+ }
+ }
+ }
+ }
+ function defineKeyPropWarningGetter(props, displayName) {
+ {
+ var warnAboutAccessingKey = function warnAboutAccessingKey() {
+ if (!specialPropKeyWarningShown) {
+ specialPropKeyWarningShown = true;
+ error('%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);
+ }
+ };
+ warnAboutAccessingKey.isReactWarning = true;
+ Object.defineProperty(props, 'key', {
+ get: warnAboutAccessingKey,
+ configurable: true
+ });
+ }
+ }
+ function defineRefPropWarningGetter(props, displayName) {
+ {
+ var warnAboutAccessingRef = function warnAboutAccessingRef() {
+ if (!specialPropRefWarningShown) {
+ specialPropRefWarningShown = true;
+ error('%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);
+ }
+ };
+ warnAboutAccessingRef.isReactWarning = true;
+ Object.defineProperty(props, 'ref', {
+ get: warnAboutAccessingRef,
+ configurable: true
+ });
+ }
+ }
+ /**
+ * Factory method to create a new React element. This no longer adheres to
+ * the class pattern, so do not use new to call it. Also, instanceof check
+ * will not work. Instead test $$typeof field against Symbol.for('react.element') to check
+ * if something is a React Element.
+ *
+ * @param {*} type
+ * @param {*} props
+ * @param {*} key
+ * @param {string|object} ref
+ * @param {*} owner
+ * @param {*} self A *temporary* helper to detect places where `this` is
+ * different from the `owner` when React.createElement is called, so that we
+ * can warn. We want to get rid of owner and replace string `ref`s with arrow
+ * functions, and as long as `this` and owner are the same, there will be no
+ * change in behavior.
+ * @param {*} source An annotation object (added by a transpiler or otherwise)
+ * indicating filename, line number, and/or other information.
+ * @internal
+ */
+
+ var ReactElement = function ReactElement(type, key, ref, self, source, owner, props) {
+ var element = {
+ // This tag allows us to uniquely identify this as a React Element
+ $$typeof: REACT_ELEMENT_TYPE,
+ // Built-in properties that belong on the element
+ type: type,
+ key: key,
+ ref: ref,
+ props: props,
+ // Record the component responsible for creating this element.
+ _owner: owner
+ };
+ {
+ // The validation flag is currently mutative. We put it on
+ // an external backing store so that we can freeze the whole object.
+ // This can be replaced with a WeakMap once they are implemented in
+ // commonly used development environments.
+ element._store = {}; // To make comparing ReactElements easier for testing purposes, we make
+ // the validation flag non-enumerable (where possible, which should
+ // include every environment we run tests in), so the test framework
+ // ignores it.
+
+ Object.defineProperty(element._store, 'validated', {
+ configurable: false,
+ enumerable: false,
+ writable: true,
+ value: false
+ }); // self and source are DEV only properties.
+
+ Object.defineProperty(element, '_self', {
+ configurable: false,
+ enumerable: false,
+ writable: false,
+ value: self
+ }); // Two elements created in two different places should be considered
+ // equal for testing purposes and therefore we hide it from enumeration.
+
+ Object.defineProperty(element, '_source', {
+ configurable: false,
+ enumerable: false,
+ writable: false,
+ value: source
+ });
+ if (Object.freeze) {
+ Object.freeze(element.props);
+ Object.freeze(element);
+ }
+ }
+ return element;
+ };
+ /**
+ * https://github.com/reactjs/rfcs/pull/107
+ * @param {*} type
+ * @param {object} props
+ * @param {string} key
+ */
+
+ function jsxDEV(type, config, maybeKey, source, self) {
+ {
+ var propName; // Reserved names are extracted
+
+ var props = {};
+ var key = null;
+ var ref = null; // Currently, key can be spread in as a prop. This causes a potential
+ // issue if key is also explicitly declared (ie.
+ // or ). We want to deprecate key spread,
+ // but as an intermediary step, we will use jsxDEV for everything except
+ // , because we aren't currently able to tell if
+ // key is explicitly declared to be undefined or not.
+
+ if (maybeKey !== undefined) {
+ {
+ checkKeyStringCoercion(maybeKey);
+ }
+ key = '' + maybeKey;
+ }
+ if (hasValidKey(config)) {
+ {
+ checkKeyStringCoercion(config.key);
+ }
+ key = '' + config.key;
+ }
+ if (hasValidRef(config)) {
+ ref = config.ref;
+ warnIfStringRefCannotBeAutoConverted(config, self);
+ } // Remaining properties are added to a new props object
+
+ for (propName in config) {
+ if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
+ props[propName] = config[propName];
+ }
+ } // Resolve default props
+
+ if (type && type.defaultProps) {
+ var defaultProps = type.defaultProps;
+ for (propName in defaultProps) {
+ if (props[propName] === undefined) {
+ props[propName] = defaultProps[propName];
+ }
+ }
+ }
+ if (key || ref) {
+ var displayName = typeof type === 'function' ? type.displayName || type.name || 'Unknown' : type;
+ if (key) {
+ defineKeyPropWarningGetter(props, displayName);
+ }
+ if (ref) {
+ defineRefPropWarningGetter(props, displayName);
+ }
+ }
+ return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);
+ }
+ }
+ var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
+ var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
+ function setCurrentlyValidatingElement$1(element) {
+ {
+ if (element) {
+ var owner = element._owner;
+ var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
+ ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
+ } else {
+ ReactDebugCurrentFrame$1.setExtraStackFrame(null);
+ }
+ }
+ }
+ var propTypesMisspellWarningShown;
+ {
+ propTypesMisspellWarningShown = false;
+ }
+ /**
+ * Verifies the object is a ReactElement.
+ * See https://reactjs.org/docs/react-api.html#isvalidelement
+ * @param {?object} object
+ * @return {boolean} True if `object` is a ReactElement.
+ * @final
+ */
+
+ function isValidElement(object) {
+ {
+ return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
+ }
+ }
+ function getDeclarationErrorAddendum() {
+ {
+ if (ReactCurrentOwner$1.current) {
+ var name = getComponentNameFromType(ReactCurrentOwner$1.current.type);
+ if (name) {
+ return '\n\nCheck the render method of `' + name + '`.';
+ }
+ }
+ return '';
+ }
+ }
+ function getSourceInfoErrorAddendum(source) {
+ {
+ if (source !== undefined) {
+ var fileName = source.fileName.replace(/^.*[\\\/]/, '');
+ var lineNumber = source.lineNumber;
+ return '\n\nCheck your code at ' + fileName + ':' + lineNumber + '.';
+ }
+ return '';
+ }
+ }
+ /**
+ * Warn if there's no key explicitly set on dynamic arrays of children or
+ * object keys are not valid. This allows us to keep track of children between
+ * updates.
+ */
+
+ var ownerHasKeyUseWarning = {};
+ function getCurrentComponentErrorInfo(parentType) {
+ {
+ var info = getDeclarationErrorAddendum();
+ if (!info) {
+ var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name;
+ if (parentName) {
+ info = "\n\nCheck the top-level render call using <" + parentName + ">.";
+ }
+ }
+ return info;
+ }
+ }
+ /**
+ * Warn if the element doesn't have an explicit key assigned to it.
+ * This element is in an array. The array could grow and shrink or be
+ * reordered. All children that haven't already been validated are required to
+ * have a "key" property assigned to it. Error statuses are cached so a warning
+ * will only be shown once.
+ *
+ * @internal
+ * @param {ReactElement} element Element that requires a key.
+ * @param {*} parentType element's parent's type.
+ */
+
+ function validateExplicitKey(element, parentType) {
+ {
+ if (!element._store || element._store.validated || element.key != null) {
+ return;
+ }
+ element._store.validated = true;
+ var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);
+ if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {
+ return;
+ }
+ ownerHasKeyUseWarning[currentComponentErrorInfo] = true; // Usually the current owner is the offender, but if it accepts children as a
+ // property, it may be the creator of the child that's responsible for
+ // assigning it a key.
+
+ var childOwner = '';
+ if (element && element._owner && element._owner !== ReactCurrentOwner$1.current) {
+ // Give the component that originally created this child.
+ childOwner = " It was passed a child from " + getComponentNameFromType(element._owner.type) + ".";
+ }
+ setCurrentlyValidatingElement$1(element);
+ error('Each child in a list should have a unique "key" prop.' + '%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);
+ setCurrentlyValidatingElement$1(null);
+ }
+ }
+ /**
+ * Ensure that every element either is passed in a static location, in an
+ * array with an explicit keys property defined, or in an object literal
+ * with valid key property.
+ *
+ * @internal
+ * @param {ReactNode} node Statically passed child of any type.
+ * @param {*} parentType node's parent's type.
+ */
+
+ function validateChildKeys(node, parentType) {
+ {
+ if (typeof node !== 'object') {
+ return;
+ }
+ if (isArray(node)) {
+ for (var i = 0; i < node.length; i++) {
+ var child = node[i];
+ if (isValidElement(child)) {
+ validateExplicitKey(child, parentType);
+ }
+ }
+ } else if (isValidElement(node)) {
+ // This element was passed in a valid location.
+ if (node._store) {
+ node._store.validated = true;
+ }
+ } else if (node) {
+ var iteratorFn = getIteratorFn(node);
+ if (typeof iteratorFn === 'function') {
+ // Entry iterators used to provide implicit keys,
+ // but now we print a separate warning for them later.
+ if (iteratorFn !== node.entries) {
+ var iterator = iteratorFn.call(node);
+ var step;
+ while (!(step = iterator.next()).done) {
+ if (isValidElement(step.value)) {
+ validateExplicitKey(step.value, parentType);
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ /**
+ * Given an element, validate that its props follow the propTypes definition,
+ * provided by the type.
+ *
+ * @param {ReactElement} element
+ */
+
+ function validatePropTypes(element) {
+ {
+ var type = element.type;
+ if (type === null || type === undefined || typeof type === 'string') {
+ return;
+ }
+ var propTypes;
+ if (typeof type === 'function') {
+ propTypes = type.propTypes;
+ } else if (typeof type === 'object' && (type.$$typeof === REACT_FORWARD_REF_TYPE ||
+ // Note: Memo only checks outer props here.
+ // Inner props are checked in the reconciler.
+ type.$$typeof === REACT_MEMO_TYPE)) {
+ propTypes = type.propTypes;
+ } else {
+ return;
+ }
+ if (propTypes) {
+ // Intentionally inside to avoid triggering lazy initializers:
+ var name = getComponentNameFromType(type);
+ checkPropTypes(propTypes, element.props, 'prop', name, element);
+ } else if (type.PropTypes !== undefined && !propTypesMisspellWarningShown) {
+ propTypesMisspellWarningShown = true; // Intentionally inside to avoid triggering lazy initializers:
+
+ var _name = getComponentNameFromType(type);
+ error('Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', _name || 'Unknown');
+ }
+ if (typeof type.getDefaultProps === 'function' && !type.getDefaultProps.isReactClassApproved) {
+ error('getDefaultProps is only used on classic React.createClass ' + 'definitions. Use a static property named `defaultProps` instead.');
+ }
+ }
+ }
+ /**
+ * Given a fragment, validate that it can only be provided with fragment props
+ * @param {ReactElement} fragment
+ */
+
+ function validateFragmentProps(fragment) {
+ {
+ var keys = Object.keys(fragment.props);
+ for (var i = 0; i < keys.length; i++) {
+ var key = keys[i];
+ if (key !== 'children' && key !== 'key') {
+ setCurrentlyValidatingElement$1(fragment);
+ error('Invalid prop `%s` supplied to `React.Fragment`. ' + 'React.Fragment can only have `key` and `children` props.', key);
+ setCurrentlyValidatingElement$1(null);
+ break;
+ }
+ }
+ if (fragment.ref !== null) {
+ setCurrentlyValidatingElement$1(fragment);
+ error('Invalid attribute `ref` supplied to `React.Fragment`.');
+ setCurrentlyValidatingElement$1(null);
+ }
+ }
+ }
+ function jsxWithValidation(type, props, key, isStaticChildren, source, self) {
+ {
+ var validType = isValidElementType(type); // We warn in this case but don't throw. We expect the element creation to
+ // succeed and there will likely be errors in render.
+
+ if (!validType) {
+ var info = '';
+ if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {
+ info += ' You likely forgot to export your component from the file ' + "it's defined in, or you might have mixed up default and named imports.";
+ }
+ var sourceInfo = getSourceInfoErrorAddendum(source);
+ if (sourceInfo) {
+ info += sourceInfo;
+ } else {
+ info += getDeclarationErrorAddendum();
+ }
+ var typeString;
+ if (type === null) {
+ typeString = 'null';
+ } else if (isArray(type)) {
+ typeString = 'array';
+ } else if (type !== undefined && type.$$typeof === REACT_ELEMENT_TYPE) {
+ typeString = "<" + (getComponentNameFromType(type.type) || 'Unknown') + " />";
+ info = ' Did you accidentally export a JSX literal instead of a component?';
+ } else {
+ typeString = typeof type;
+ }
+ error('React.jsx: type is invalid -- expected a string (for ' + 'built-in components) or a class/function (for composite ' + 'components) but got: %s.%s', typeString, info);
+ }
+ var element = jsxDEV(type, props, key, source, self); // The result can be nullish if a mock or a custom function is used.
+ // TODO: Drop this when these are no longer allowed as the type argument.
+
+ if (element == null) {
+ return element;
+ } // Skip key warning if the type isn't valid since our key validation logic
+ // doesn't expect a non-string/function type and can throw confusing errors.
+ // We don't want exception behavior to differ between dev and prod.
+ // (Rendering will throw with a helpful message and as soon as the type is
+ // fixed, the key warnings will appear.)
+
+ if (validType) {
+ var children = props.children;
+ if (children !== undefined) {
+ if (isStaticChildren) {
+ if (isArray(children)) {
+ for (var i = 0; i < children.length; i++) {
+ validateChildKeys(children[i], type);
+ }
+ if (Object.freeze) {
+ Object.freeze(children);
+ }
+ } else {
+ error('React.jsx: Static children should always be an array. ' + 'You are likely explicitly calling React.jsxs or React.jsxDEV. ' + 'Use the Babel transform instead.');
+ }
+ } else {
+ validateChildKeys(children, type);
+ }
+ }
+ }
+ if (type === REACT_FRAGMENT_TYPE) {
+ validateFragmentProps(element);
+ } else {
+ validatePropTypes(element);
+ }
+ return element;
+ }
+ } // These two functions exist to still get child warnings in dev
+ // even with the prod transform. This means that jsxDEV is purely
+ // opt-in behavior for better messages but that we won't stop
+ // giving you warnings if you use production apis.
+
+ function jsxWithValidationStatic(type, props, key) {
+ {
+ return jsxWithValidation(type, props, key, true);
+ }
+ }
+ function jsxWithValidationDynamic(type, props, key) {
+ {
+ return jsxWithValidation(type, props, key, false);
+ }
+ }
+ var jsx = jsxWithValidationDynamic; // we may want to special case jsxs internally to take advantage of static children.
+ // for now we can ship identical prod functions
+
+ var jsxs = jsxWithValidationStatic;
+ exports.Fragment = REACT_FRAGMENT_TYPE;
+ exports.jsx = jsx;
+ exports.jsxs = jsxs;
+ })();
+ }
+},108,[65],"node_modules\\react\\cjs\\react-jsx-runtime.development.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.parseComponentStack = parseComponentStack;
+ exports.parseInterpolation = parseInterpolation;
+ exports.parseLogBoxException = parseLogBoxException;
+ exports.parseLogBoxLog = parseLogBoxLog;
+ var _slicedToArray2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/slicedToArray"));
+ var _toConsumableArray2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/toConsumableArray"));
+ var _parseErrorStack = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "../../Core/Devtools/parseErrorStack"));
+ var _UTFSequence = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "../../UTFSequence"));
+ var _stringifySafe = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[5], "../../Utilities/stringifySafe"));
+ var _ansiRegex = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "ansi-regex"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ var ANSI_REGEX = (0, _ansiRegex.default)().source;
+ var BABEL_TRANSFORM_ERROR_FORMAT = /^(?:TransformError )?(?:SyntaxError: |ReferenceError: )(.*): (.*) \((\d+):(\d+)\)\n\n([\s\S]+)/;
+
+ // https://github.com/babel/babel/blob/33dbb85e9e9fe36915273080ecc42aee62ed0ade/packages/babel-code-frame/src/index.ts#L183-L184
+ var BABEL_CODE_FRAME_MARKER_PATTERN = new RegExp([
+ // Beginning of a line (per 'm' flag)
+ '^',
+ // Optional ANSI escapes for colors
+ `(?:${ANSI_REGEX})*`,
+ // Marker
+ '>',
+ // Optional ANSI escapes for colors
+ `(?:${ANSI_REGEX})*`,
+ // Left padding for line number
+ ' +',
+ // Line number
+ '[0-9]+',
+ // Gutter
+ ' \\|'].join(''), 'm');
+ var BABEL_CODE_FRAME_ERROR_FORMAT =
+ // eslint-disable-next-line no-control-regex
+ /^(?:TransformError )?(?:(?:[\0-\t\x0B\f\x0E-\u2027\u202A-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*):? (?:(?:[\0-\t\x0B\f\x0E-\u2027\u202A-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*?)(\/(?:[\0-\t\x0B\f\x0E-\u2027\u202A-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*): ((?:[\0-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF])+?)\n([ >]{2}[\t-\r 0-9\xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF]+ \|(?:[\0-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF])+|\x1B(?:[\0-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF])+)/;
+ var METRO_ERROR_FORMAT = /^(?:InternalError Metro has encountered an error:) ((?:[\0-\t\x0B\f\x0E-\u2027\u202A-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*): ((?:[\0-\t\x0B\f\x0E-\u2027\u202A-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*) \(([0-9]+):([0-9]+)\)\n\n((?:[\0-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF])+)/;
+ var SUBSTITUTION = _UTFSequence.default.BOM + '%s';
+ function parseInterpolation(args) {
+ var categoryParts = [];
+ var contentParts = [];
+ var substitutionOffsets = [];
+ var remaining = (0, _toConsumableArray2.default)(args);
+ if (typeof remaining[0] === 'string') {
+ var formatString = String(remaining.shift());
+ var formatStringParts = formatString.split('%s');
+ var substitutionCount = formatStringParts.length - 1;
+ var substitutions = remaining.splice(0, substitutionCount);
+ var categoryString = '';
+ var contentString = '';
+ var substitutionIndex = 0;
+ for (var formatStringPart of formatStringParts) {
+ categoryString += formatStringPart;
+ contentString += formatStringPart;
+ if (substitutionIndex < substitutionCount) {
+ if (substitutionIndex < substitutions.length) {
+ // Don't stringify a string type.
+ // It adds quotation mark wrappers around the string,
+ // which causes the LogBox to look odd.
+ var substitution = typeof substitutions[substitutionIndex] === 'string' ? substitutions[substitutionIndex] : (0, _stringifySafe.default)(substitutions[substitutionIndex]);
+ substitutionOffsets.push({
+ length: substitution.length,
+ offset: contentString.length
+ });
+ categoryString += SUBSTITUTION;
+ contentString += substitution;
+ } else {
+ substitutionOffsets.push({
+ length: 2,
+ offset: contentString.length
+ });
+ categoryString += '%s';
+ contentString += '%s';
+ }
+ substitutionIndex++;
+ }
+ }
+ categoryParts.push(categoryString);
+ contentParts.push(contentString);
+ }
+ var remainingArgs = remaining.map(function (arg) {
+ // Don't stringify a string type.
+ // It adds quotation mark wrappers around the string,
+ // which causes the LogBox to look odd.
+ return typeof arg === 'string' ? arg : (0, _stringifySafe.default)(arg);
+ });
+ categoryParts.push.apply(categoryParts, (0, _toConsumableArray2.default)(remainingArgs));
+ contentParts.push.apply(contentParts, (0, _toConsumableArray2.default)(remainingArgs));
+ return {
+ category: categoryParts.join(' '),
+ message: {
+ content: contentParts.join(' '),
+ substitutions: substitutionOffsets
+ }
+ };
+ }
+ function isComponentStack(consoleArgument) {
+ var isOldComponentStackFormat = / {4}in/.test(consoleArgument);
+ var isNewComponentStackFormat = / {4}at/.test(consoleArgument);
+ var isNewJSCComponentStackFormat = /@.*\n/.test(consoleArgument);
+ return isOldComponentStackFormat || isNewComponentStackFormat || isNewJSCComponentStackFormat;
+ }
+ function parseComponentStack(message) {
+ // In newer versions of React, the component stack is formatted as a call stack frame.
+ // First try to parse the component stack as a call stack frame, and if that doesn't
+ // work then we'll fallback to the old custom component stack format parsing.
+ var stack = (0, _parseErrorStack.default)(message);
+ if (stack && stack.length > 0) {
+ return stack.map(function (frame) {
+ return {
+ content: frame.methodName,
+ collapse: frame.collapse || false,
+ fileName: frame.file == null ? 'unknown' : frame.file,
+ location: {
+ column: frame.column == null ? -1 : frame.column,
+ row: frame.lineNumber == null ? -1 : frame.lineNumber
+ }
+ };
+ });
+ }
+ return message.split(/\n {4}in /g).map(function (s) {
+ if (!s) {
+ return null;
+ }
+ var match = s.match(/(.*) \(at (.*\.(?:js|jsx|ts|tsx)):([\d]+)\)/);
+ if (!match) {
+ return null;
+ }
+ var _match$slice = match.slice(1),
+ _match$slice2 = (0, _slicedToArray2.default)(_match$slice, 3),
+ content = _match$slice2[0],
+ fileName = _match$slice2[1],
+ row = _match$slice2[2];
+ return {
+ content: content,
+ fileName: fileName,
+ location: {
+ column: -1,
+ row: parseInt(row, 10)
+ }
+ };
+ }).filter(Boolean);
+ }
+ function parseLogBoxException(error) {
+ var message = error.originalMessage != null ? error.originalMessage : 'Unknown';
+ var metroInternalError = message.match(METRO_ERROR_FORMAT);
+ if (metroInternalError) {
+ var _metroInternalError$s = metroInternalError.slice(1),
+ _metroInternalError$s2 = (0, _slicedToArray2.default)(_metroInternalError$s, 5),
+ content = _metroInternalError$s2[0],
+ fileName = _metroInternalError$s2[1],
+ row = _metroInternalError$s2[2],
+ column = _metroInternalError$s2[3],
+ codeFrame = _metroInternalError$s2[4];
+ return {
+ level: 'fatal',
+ type: 'Metro Error',
+ stack: [],
+ isComponentError: false,
+ componentStack: [],
+ codeFrame: {
+ fileName: fileName,
+ location: {
+ row: parseInt(row, 10),
+ column: parseInt(column, 10)
+ },
+ content: codeFrame
+ },
+ message: {
+ content: content,
+ substitutions: []
+ },
+ category: `${fileName}-${row}-${column}`,
+ extraData: error.extraData
+ };
+ }
+ var babelTransformError = message.match(BABEL_TRANSFORM_ERROR_FORMAT);
+ if (babelTransformError) {
+ // Transform errors are thrown from inside the Babel transformer.
+ var _babelTransformError$ = babelTransformError.slice(1),
+ _babelTransformError$2 = (0, _slicedToArray2.default)(_babelTransformError$, 5),
+ _fileName = _babelTransformError$2[0],
+ _content = _babelTransformError$2[1],
+ _row = _babelTransformError$2[2],
+ _column = _babelTransformError$2[3],
+ _codeFrame = _babelTransformError$2[4];
+ return {
+ level: 'syntax',
+ stack: [],
+ isComponentError: false,
+ componentStack: [],
+ codeFrame: {
+ fileName: _fileName,
+ location: {
+ row: parseInt(_row, 10),
+ column: parseInt(_column, 10)
+ },
+ content: _codeFrame
+ },
+ message: {
+ content: _content,
+ substitutions: []
+ },
+ category: `${_fileName}-${_row}-${_column}`,
+ extraData: error.extraData
+ };
+ }
+
+ // Perform a cheap match first before trying to parse the full message, which
+ // can get expensive for arbitrary input.
+ if (BABEL_CODE_FRAME_MARKER_PATTERN.test(message)) {
+ var babelCodeFrameError = message.match(BABEL_CODE_FRAME_ERROR_FORMAT);
+ if (babelCodeFrameError) {
+ // Codeframe errors are thrown from any use of buildCodeFrameError.
+ var _babelCodeFrameError$ = babelCodeFrameError.slice(1),
+ _babelCodeFrameError$2 = (0, _slicedToArray2.default)(_babelCodeFrameError$, 3),
+ _fileName2 = _babelCodeFrameError$2[0],
+ _content2 = _babelCodeFrameError$2[1],
+ _codeFrame2 = _babelCodeFrameError$2[2];
+ return {
+ level: 'syntax',
+ stack: [],
+ isComponentError: false,
+ componentStack: [],
+ codeFrame: {
+ fileName: _fileName2,
+ location: null,
+ // We are not given the location.
+ content: _codeFrame2
+ },
+ message: {
+ content: _content2,
+ substitutions: []
+ },
+ category: `${_fileName2}-${1}-${1}`,
+ extraData: error.extraData
+ };
+ }
+ }
+ if (message.match(/^TransformError /)) {
+ return {
+ level: 'syntax',
+ stack: error.stack,
+ isComponentError: error.isComponentError,
+ componentStack: [],
+ message: {
+ content: message,
+ substitutions: []
+ },
+ category: message,
+ extraData: error.extraData
+ };
+ }
+ var componentStack = error.componentStack;
+ if (error.isFatal || error.isComponentError) {
+ return Object.assign({
+ level: 'fatal',
+ stack: error.stack,
+ isComponentError: error.isComponentError,
+ componentStack: componentStack != null ? parseComponentStack(componentStack) : [],
+ extraData: error.extraData
+ }, parseInterpolation([message]));
+ }
+ if (componentStack != null) {
+ // It is possible that console errors have a componentStack.
+ return Object.assign({
+ level: 'error',
+ stack: error.stack,
+ isComponentError: error.isComponentError,
+ componentStack: parseComponentStack(componentStack),
+ extraData: error.extraData
+ }, parseInterpolation([message]));
+ }
+
+ // Most `console.error` calls won't have a componentStack. We parse them like
+ // regular logs which have the component stack buried in the message.
+ return Object.assign({
+ level: 'error',
+ stack: error.stack,
+ isComponentError: error.isComponentError,
+ extraData: error.extraData
+ }, parseLogBoxLog([message]));
+ }
+ function parseLogBoxLog(args) {
+ var message = args[0];
+ var argsWithoutComponentStack = [];
+ var componentStack = [];
+
+ // Extract component stack from warnings like "Some warning%s".
+ if (typeof message === 'string' && message.slice(-2) === '%s' && args.length > 0) {
+ var lastArg = args[args.length - 1];
+ if (typeof lastArg === 'string' && isComponentStack(lastArg)) {
+ argsWithoutComponentStack = args.slice(0, -1);
+ argsWithoutComponentStack[0] = message.slice(0, -2);
+ componentStack = parseComponentStack(lastArg);
+ }
+ }
+ if (componentStack.length === 0) {
+ // Try finding the component stack elsewhere.
+ for (var arg of args) {
+ if (typeof arg === 'string' && isComponentStack(arg)) {
+ // Strip out any messages before the component stack.
+ var messageEndIndex = arg.search(/\n {4}(in|at) /);
+ if (messageEndIndex < 0) {
+ // Handle JSC component stacks.
+ messageEndIndex = arg.search(/\n/);
+ }
+ if (messageEndIndex > 0) {
+ argsWithoutComponentStack.push(arg.slice(0, messageEndIndex));
+ }
+ componentStack = parseComponentStack(arg);
+ } else {
+ argsWithoutComponentStack.push(arg);
+ }
+ }
+ }
+ return Object.assign({}, parseInterpolation(argsWithoutComponentStack), {
+ componentStack: componentStack
+ });
+ }
+},109,[6,7,41,92,110,46,111],"node_modules\\react-native\\Libraries\\LogBox\\Data\\parseLogBoxLog.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ 'use strict';
+
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ /**
+ * A collection of Unicode sequences for various characters and emoji.
+ *
+ * - More explicit than using the sequences directly in code.
+ * - Source code should be limited to ASCII.
+ * - Less chance of typos.
+ */
+ var UTFSequence = _$$_REQUIRE(_dependencyMap[0], "./Utilities/deepFreezeAndThrowOnMutationInDev")({
+ BOM: "\uFEFF",
+ // byte order mark
+ BULLET: "\u2022",
+ // bullet: •
+ BULLET_SP: "\xA0\u2022\xA0",
+ // •
+ MIDDOT: "\xB7",
+ // normal middle dot: ·
+ MIDDOT_SP: "\xA0\xB7\xA0",
+ // ·
+ MIDDOT_KATAKANA: "\u30FB",
+ // katakana middle dot
+ MDASH: "\u2014",
+ // em dash: —
+ MDASH_SP: "\xA0\u2014\xA0",
+ // —
+ NDASH: "\u2013",
+ // en dash: –
+ NDASH_SP: "\xA0\u2013\xA0",
+ // –
+ NEWLINE: "\n",
+ NBSP: "\xA0",
+ // non-breaking space:
+ PIZZA: "\uD83C\uDF55",
+ TRIANGLE_LEFT: "\u25C0",
+ // black left-pointing triangle
+ TRIANGLE_RIGHT: "\u25B6" // black right-pointing triangle
+ });
+ var _default = exports.default = UTFSequence;
+},110,[47],"node_modules\\react-native\\Libraries\\UTFSequence.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ module.exports = function () {
+ var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
+ _ref$onlyFirst = _ref.onlyFirst,
+ onlyFirst = _ref$onlyFirst === void 0 ? false : _ref$onlyFirst;
+ var pattern = ["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)", '(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))'].join('|');
+ return new RegExp(pattern, onlyFirst ? undefined : 'g');
+ };
+},111,[],"node_modules\\ansi-regex\\index.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var TurboModuleRegistry = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../TurboModule/TurboModuleRegistry"));
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+ var NativeModule = TurboModuleRegistry.getEnforcing('ExceptionsManager');
+ var ExceptionsManager = {
+ reportFatalException: function reportFatalException(message, stack, exceptionId) {
+ NativeModule.reportFatalException(message, stack, exceptionId);
+ },
+ reportSoftException: function reportSoftException(message, stack, exceptionId) {
+ NativeModule.reportSoftException(message, stack, exceptionId);
+ },
+ updateExceptionMessage: function updateExceptionMessage(message, stack, exceptionId) {
+ NativeModule.updateExceptionMessage(message, stack, exceptionId);
+ },
+ dismissRedbox: function dismissRedbox() {
+ if ("android" !== 'ios' && NativeModule.dismissRedbox) {
+ // TODO(T53311281): This is a noop on iOS now. Implement it.
+ NativeModule.dismissRedbox();
+ }
+ },
+ reportException: function reportException(data) {
+ if (NativeModule.reportException) {
+ NativeModule.reportException(data);
+ return;
+ }
+ if (data.isFatal) {
+ ExceptionsManager.reportFatalException(data.message, data.stack, data.id);
+ } else {
+ ExceptionsManager.reportSoftException(data.message, data.stack, data.id);
+ }
+ }
+ };
+ var _default = exports.default = ExceptionsManager;
+},112,[36],"node_modules\\react-native\\Libraries\\Core\\NativeExceptionsManager.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ 'use strict';
+
+ var _global, _global$HermesInterna;
+ /**
+ * Set up Promise. The native Promise implementation throws the following error:
+ * ERROR: Event loop not supported.
+ *
+ * If you don't need these polyfills, don't use InitializeCore; just directly
+ * require the modules you need from InitializeCore for setup.
+ */
+
+ // If global.Promise is provided by Hermes, we are confident that it can provide
+ // all the methods needed by React Native, so we can directly use it.
+ if ((_global = global) != null && (_global$HermesInterna = _global.HermesInternal) != null && _global$HermesInterna.hasPromise != null && _global$HermesInterna.hasPromise()) {
+ var HermesPromise = global.Promise;
+ if (__DEV__) {
+ var _global$HermesInterna2;
+ if (typeof HermesPromise !== 'function') {
+ console.error('HermesPromise does not exist');
+ }
+ (_global$HermesInterna2 = global.HermesInternal) == null ? void 0 : _global$HermesInterna2.enablePromiseRejectionTracker == null ? void 0 : _global$HermesInterna2.enablePromiseRejectionTracker(_$$_REQUIRE(_dependencyMap[0], "../promiseRejectionTrackingOptions").default);
+ }
+ } else {
+ _$$_REQUIRE(_dependencyMap[1], "../Utilities/PolyfillFunctions").polyfillGlobal('Promise', function () {
+ return _$$_REQUIRE(_dependencyMap[2], "../Promise");
+ });
+ }
+},113,[114,134,135],"node_modules\\react-native\\Libraries\\Core\\polyfillPromise.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var _LogBox = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./LogBox/LogBox"));
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ var rejectionTrackingOptions = {
+ allRejections: true,
+ onUnhandled: function onUnhandled(id) {
+ var _message;
+ var rejection = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
+ var message;
+ var stack;
+
+ // $FlowFixMe[method-unbinding] added when improving typing for this parameters
+ var stringValue = Object.prototype.toString.call(rejection);
+ if (stringValue === '[object Error]') {
+ // $FlowFixMe[method-unbinding] added when improving typing for this parameters
+ message = Error.prototype.toString.call(rejection);
+ var error = rejection;
+ stack = error.stack;
+ } else {
+ try {
+ message = _$$_REQUIRE(_dependencyMap[2], "pretty-format")(rejection);
+ } catch (_unused) {
+ message = typeof rejection === 'string' ? rejection : JSON.stringify(rejection);
+ }
+ // It could although this object is not a standard error, it still has stack information to unwind
+ // $FlowFixMe ignore types just check if stack is there
+ if (rejection.stack && typeof rejection.stack === 'string') {
+ stack = rejection.stack;
+ }
+ }
+ var warning = `Possible unhandled promise rejection (id: ${id}):\n${(_message = message) != null ? _message : ''}`;
+ if (__DEV__) {
+ _LogBox.default.addLog({
+ level: 'warn',
+ message: {
+ content: warning,
+ substitutions: []
+ },
+ componentStack: [],
+ stack: stack,
+ category: 'possible_unhandled_promise_rejection'
+ });
+ } else {
+ console.warn(warning);
+ }
+ },
+ onHandled: function onHandled(id) {
+ var warning = `Promise rejection handled (id: ${id})\n` + 'This means you can ignore any previous messages of the form ' + `"Possible unhandled promise rejection (id: ${id}):"`;
+ console.warn(warning);
+ }
+ };
+ var _default = exports.default = rejectionTrackingOptions;
+},114,[6,95,115],"node_modules\\react-native\\Libraries\\promiseRejectionTrackingOptions.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var _createClass = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/createClass");
+ var _classCallCheck = _$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck");
+ var _possibleConstructorReturn = _$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/possibleConstructorReturn");
+ var _getPrototypeOf = _$$_REQUIRE(_dependencyMap[3], "@babel/runtime/helpers/getPrototypeOf");
+ var _inherits = _$$_REQUIRE(_dependencyMap[4], "@babel/runtime/helpers/inherits");
+ var _wrapNativeSuper = _$$_REQUIRE(_dependencyMap[5], "@babel/runtime/helpers/wrapNativeSuper");
+ function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
+ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
+ var _ansiStyles = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "ansi-styles"));
+ var _AsymmetricMatcher = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[7], "./plugins/AsymmetricMatcher"));
+ var _ConvertAnsi = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[8], "./plugins/ConvertAnsi"));
+ var _DOMCollection = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[9], "./plugins/DOMCollection"));
+ var _DOMElement = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[10], "./plugins/DOMElement"));
+ var _Immutable = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[11], "./plugins/Immutable"));
+ var _ReactElement = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[12], "./plugins/ReactElement"));
+ var _ReactTestComponent = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[13], "./plugins/ReactTestComponent"));
+ function _interopRequireDefault(obj) {
+ return obj && obj.__esModule ? obj : {
+ default: obj
+ };
+ }
+
+ /**
+ * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+ /* eslint-disable local/ban-types-eventually */
+ var toString = Object.prototype.toString;
+ var toISOString = Date.prototype.toISOString;
+ var errorToString = Error.prototype.toString;
+ var regExpToString = RegExp.prototype.toString;
+ /**
+ * Explicitly comparing typeof constructor to function avoids undefined as name
+ * when mock identity-obj-proxy returns the key as the value for any key.
+ */
+
+ var getConstructorName = function getConstructorName(val) {
+ return typeof val.constructor === 'function' && val.constructor.name || 'Object';
+ };
+ /* global window */
+
+ /** Is val is equal to global window object? Works even if it does not exist :) */
+
+ var isWindow = function isWindow(val) {
+ return typeof window !== 'undefined' && val === window;
+ };
+ var SYMBOL_REGEXP = /^Symbol\((.*)\)(.*)$/;
+ var NEWLINE_REGEXP = /\n/gi;
+ var PrettyFormatPluginError = /*#__PURE__*/function (_Error) {
+ function PrettyFormatPluginError(message, stack) {
+ var _this;
+ _classCallCheck(this, PrettyFormatPluginError);
+ _this = _callSuper(this, PrettyFormatPluginError, [message]);
+ _this.stack = stack;
+ _this.name = _this.constructor.name;
+ return _this;
+ }
+ _inherits(PrettyFormatPluginError, _Error);
+ return _createClass(PrettyFormatPluginError);
+ }(/*#__PURE__*/_wrapNativeSuper(Error));
+ function isToStringedArrayType(toStringed) {
+ return toStringed === '[object Array]' || toStringed === '[object ArrayBuffer]' || toStringed === '[object DataView]' || toStringed === '[object Float32Array]' || toStringed === '[object Float64Array]' || toStringed === '[object Int8Array]' || toStringed === '[object Int16Array]' || toStringed === '[object Int32Array]' || toStringed === '[object Uint8Array]' || toStringed === '[object Uint8ClampedArray]' || toStringed === '[object Uint16Array]' || toStringed === '[object Uint32Array]';
+ }
+ function printNumber(val) {
+ return Object.is(val, -0) ? '-0' : String(val);
+ }
+ function printBigInt(val) {
+ return String(`${val}n`);
+ }
+ function printFunction(val, printFunctionName) {
+ if (!printFunctionName) {
+ return '[Function]';
+ }
+ return '[Function ' + (val.name || 'anonymous') + ']';
+ }
+ function printSymbol(val) {
+ return String(val).replace(SYMBOL_REGEXP, 'Symbol($1)');
+ }
+ function printError(val) {
+ return '[' + errorToString.call(val) + ']';
+ }
+ /**
+ * The first port of call for printing an object, handles most of the
+ * data-types in JS.
+ */
+
+ function printBasicValue(val, printFunctionName, escapeRegex, escapeString) {
+ if (val === true || val === false) {
+ return '' + val;
+ }
+ if (val === undefined) {
+ return 'undefined';
+ }
+ if (val === null) {
+ return 'null';
+ }
+ var typeOf = typeof val;
+ if (typeOf === 'number') {
+ return printNumber(val);
+ }
+ if (typeOf === 'bigint') {
+ return printBigInt(val);
+ }
+ if (typeOf === 'string') {
+ if (escapeString) {
+ return '"' + val.replace(/"|\\/g, '\\$&') + '"';
+ }
+ return '"' + val + '"';
+ }
+ if (typeOf === 'function') {
+ return printFunction(val, printFunctionName);
+ }
+ if (typeOf === 'symbol') {
+ return printSymbol(val);
+ }
+ var toStringed = toString.call(val);
+ if (toStringed === '[object WeakMap]') {
+ return 'WeakMap {}';
+ }
+ if (toStringed === '[object WeakSet]') {
+ return 'WeakSet {}';
+ }
+ if (toStringed === '[object Function]' || toStringed === '[object GeneratorFunction]') {
+ return printFunction(val, printFunctionName);
+ }
+ if (toStringed === '[object Symbol]') {
+ return printSymbol(val);
+ }
+ if (toStringed === '[object Date]') {
+ return isNaN(+val) ? 'Date { NaN }' : toISOString.call(val);
+ }
+ if (toStringed === '[object Error]') {
+ return printError(val);
+ }
+ if (toStringed === '[object RegExp]') {
+ if (escapeRegex) {
+ // https://github.com/benjamingr/RegExp.escape/blob/master/polyfill.js
+ return regExpToString.call(val).replace(/[\\^$*+?.()|[\]{}]/g, '\\$&');
+ }
+ return regExpToString.call(val);
+ }
+ if (val instanceof Error) {
+ return printError(val);
+ }
+ return null;
+ }
+ /**
+ * Handles more complex objects ( such as objects with circular references.
+ * maps and sets etc )
+ */
+
+ function printComplexValue(val, config, indentation, depth, refs, hasCalledToJSON) {
+ if (refs.indexOf(val) !== -1) {
+ return '[Circular]';
+ }
+ refs = refs.slice();
+ refs.push(val);
+ var hitMaxDepth = ++depth > config.maxDepth;
+ var min = config.min;
+ if (config.callToJSON && !hitMaxDepth && val.toJSON && typeof val.toJSON === 'function' && !hasCalledToJSON) {
+ return printer(val.toJSON(), config, indentation, depth, refs, true);
+ }
+ var toStringed = toString.call(val);
+ if (toStringed === '[object Arguments]') {
+ return hitMaxDepth ? '[Arguments]' : (min ? '' : 'Arguments ') + '[' + (0, _$$_REQUIRE(_dependencyMap[14], "./collections").printListItems)(val, config, indentation, depth, refs, printer) + ']';
+ }
+ if (isToStringedArrayType(toStringed)) {
+ return hitMaxDepth ? '[' + val.constructor.name + ']' : (min ? '' : val.constructor.name + ' ') + '[' + (0, _$$_REQUIRE(_dependencyMap[14], "./collections").printListItems)(val, config, indentation, depth, refs, printer) + ']';
+ }
+ if (toStringed === '[object Map]') {
+ return hitMaxDepth ? '[Map]' : 'Map {' + (0, _$$_REQUIRE(_dependencyMap[14], "./collections").printIteratorEntries)(val.entries(), config, indentation, depth, refs, printer, ' => ') + '}';
+ }
+ if (toStringed === '[object Set]') {
+ return hitMaxDepth ? '[Set]' : 'Set {' + (0, _$$_REQUIRE(_dependencyMap[14], "./collections").printIteratorValues)(val.values(), config, indentation, depth, refs, printer) + '}';
+ } // Avoid failure to serialize global window object in jsdom test environment.
+ // For example, not even relevant if window is prop of React element.
+
+ return hitMaxDepth || isWindow(val) ? '[' + getConstructorName(val) + ']' : (min ? '' : getConstructorName(val) + ' ') + '{' + (0, _$$_REQUIRE(_dependencyMap[14], "./collections").printObjectProperties)(val, config, indentation, depth, refs, printer) + '}';
+ }
+ function isNewPlugin(plugin) {
+ return plugin.serialize != null;
+ }
+ function printPlugin(plugin, val, config, indentation, depth, refs) {
+ var printed;
+ try {
+ printed = isNewPlugin(plugin) ? plugin.serialize(val, config, indentation, depth, refs, printer) : plugin.print(val, function (valChild) {
+ return printer(valChild, config, indentation, depth, refs);
+ }, function (str) {
+ var indentationNext = indentation + config.indent;
+ return indentationNext + str.replace(NEWLINE_REGEXP, '\n' + indentationNext);
+ }, {
+ edgeSpacing: config.spacingOuter,
+ min: config.min,
+ spacing: config.spacingInner
+ }, config.colors);
+ } catch (error) {
+ throw new PrettyFormatPluginError(error.message, error.stack);
+ }
+ if (typeof printed !== 'string') {
+ throw new Error(`pretty-format: Plugin must return type "string" but instead returned "${typeof printed}".`);
+ }
+ return printed;
+ }
+ function findPlugin(plugins, val) {
+ for (var p = 0; p < plugins.length; p++) {
+ try {
+ if (plugins[p].test(val)) {
+ return plugins[p];
+ }
+ } catch (error) {
+ throw new PrettyFormatPluginError(error.message, error.stack);
+ }
+ }
+ return null;
+ }
+ function printer(val, config, indentation, depth, refs, hasCalledToJSON) {
+ var plugin = findPlugin(config.plugins, val);
+ if (plugin !== null) {
+ return printPlugin(plugin, val, config, indentation, depth, refs);
+ }
+ var basicResult = printBasicValue(val, config.printFunctionName, config.escapeRegex, config.escapeString);
+ if (basicResult !== null) {
+ return basicResult;
+ }
+ return printComplexValue(val, config, indentation, depth, refs, hasCalledToJSON);
+ }
+ var DEFAULT_THEME = {
+ comment: 'gray',
+ content: 'reset',
+ prop: 'yellow',
+ tag: 'cyan',
+ value: 'green'
+ };
+ var DEFAULT_THEME_KEYS = Object.keys(DEFAULT_THEME);
+ var DEFAULT_OPTIONS = {
+ callToJSON: true,
+ escapeRegex: false,
+ escapeString: true,
+ highlight: false,
+ indent: 2,
+ maxDepth: Infinity,
+ min: false,
+ plugins: [],
+ printFunctionName: true,
+ theme: DEFAULT_THEME
+ };
+ function validateOptions(options) {
+ Object.keys(options).forEach(function (key) {
+ if (!DEFAULT_OPTIONS.hasOwnProperty(key)) {
+ throw new Error(`pretty-format: Unknown option "${key}".`);
+ }
+ });
+ if (options.min && options.indent !== undefined && options.indent !== 0) {
+ throw new Error('pretty-format: Options "min" and "indent" cannot be used together.');
+ }
+ if (options.theme !== undefined) {
+ if (options.theme === null) {
+ throw new Error(`pretty-format: Option "theme" must not be null.`);
+ }
+ if (typeof options.theme !== 'object') {
+ throw new Error(`pretty-format: Option "theme" must be of type "object" but instead received "${typeof options.theme}".`);
+ }
+ }
+ }
+ var getColorsHighlight = function getColorsHighlight(options) {
+ return DEFAULT_THEME_KEYS.reduce(function (colors, key) {
+ var value = options.theme && options.theme[key] !== undefined ? options.theme[key] : DEFAULT_THEME[key];
+ var color = value && _ansiStyles.default[value];
+ if (color && typeof color.close === 'string' && typeof color.open === 'string') {
+ colors[key] = color;
+ } else {
+ throw new Error(`pretty-format: Option "theme" has a key "${key}" whose value "${value}" is undefined in ansi-styles.`);
+ }
+ return colors;
+ }, Object.create(null));
+ };
+ var getColorsEmpty = function getColorsEmpty() {
+ return DEFAULT_THEME_KEYS.reduce(function (colors, key) {
+ colors[key] = {
+ close: '',
+ open: ''
+ };
+ return colors;
+ }, Object.create(null));
+ };
+ var getPrintFunctionName = function getPrintFunctionName(options) {
+ return options && options.printFunctionName !== undefined ? options.printFunctionName : DEFAULT_OPTIONS.printFunctionName;
+ };
+ var getEscapeRegex = function getEscapeRegex(options) {
+ return options && options.escapeRegex !== undefined ? options.escapeRegex : DEFAULT_OPTIONS.escapeRegex;
+ };
+ var getEscapeString = function getEscapeString(options) {
+ return options && options.escapeString !== undefined ? options.escapeString : DEFAULT_OPTIONS.escapeString;
+ };
+ var getConfig = function getConfig(options) {
+ return {
+ callToJSON: options && options.callToJSON !== undefined ? options.callToJSON : DEFAULT_OPTIONS.callToJSON,
+ colors: options && options.highlight ? getColorsHighlight(options) : getColorsEmpty(),
+ escapeRegex: getEscapeRegex(options),
+ escapeString: getEscapeString(options),
+ indent: options && options.min ? '' : createIndent(options && options.indent !== undefined ? options.indent : DEFAULT_OPTIONS.indent),
+ maxDepth: options && options.maxDepth !== undefined ? options.maxDepth : DEFAULT_OPTIONS.maxDepth,
+ min: options && options.min !== undefined ? options.min : DEFAULT_OPTIONS.min,
+ plugins: options && options.plugins !== undefined ? options.plugins : DEFAULT_OPTIONS.plugins,
+ printFunctionName: getPrintFunctionName(options),
+ spacingInner: options && options.min ? ' ' : '\n',
+ spacingOuter: options && options.min ? '' : '\n'
+ };
+ };
+ function createIndent(indent) {
+ return new Array(indent + 1).join(' ');
+ }
+ /**
+ * Returns a presentation string of your `val` object
+ * @param val any potential JavaScript object
+ * @param options Custom settings
+ */
+
+ function prettyFormat(val, options) {
+ if (options) {
+ validateOptions(options);
+ if (options.plugins) {
+ var plugin = findPlugin(options.plugins, val);
+ if (plugin !== null) {
+ return printPlugin(plugin, val, getConfig(options), '', 0, []);
+ }
+ }
+ }
+ var basicResult = printBasicValue(val, getPrintFunctionName(options), getEscapeRegex(options), getEscapeString(options));
+ if (basicResult !== null) {
+ return basicResult;
+ }
+ return printComplexValue(val, getConfig(options), '', 0, []);
+ }
+ prettyFormat.plugins = {
+ AsymmetricMatcher: _AsymmetricMatcher.default,
+ ConvertAnsi: _ConvertAnsi.default,
+ DOMCollection: _DOMCollection.default,
+ DOMElement: _DOMElement.default,
+ Immutable: _Immutable.default,
+ ReactElement: _ReactElement.default,
+ ReactTestComponent: _ReactTestComponent.default
+ };
+ module.exports = prettyFormat;
+},115,[19,18,23,25,28,88,116,121,123,124,125,128,129,133,122],"node_modules\\react-native\\node_modules\\pretty-format\\build\\index.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var _slicedToArray = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/slicedToArray");
+ var wrapAnsi16 = function wrapAnsi16(fn, offset) {
+ return function () {
+ var code = fn.apply(void 0, arguments);
+ return `\u001B[${code + offset}m`;
+ };
+ };
+ var wrapAnsi256 = function wrapAnsi256(fn, offset) {
+ return function () {
+ var code = fn.apply(void 0, arguments);
+ return `\u001B[${38 + offset};5;${code}m`;
+ };
+ };
+ var wrapAnsi16m = function wrapAnsi16m(fn, offset) {
+ return function () {
+ var rgb = fn.apply(void 0, arguments);
+ return `\u001B[${38 + offset};2;${rgb[0]};${rgb[1]};${rgb[2]}m`;
+ };
+ };
+ var ansi2ansi = function ansi2ansi(n) {
+ return n;
+ };
+ var rgb2rgb = function rgb2rgb(r, g, b) {
+ return [r, g, b];
+ };
+ var setLazyProperty = function setLazyProperty(object, property, _get) {
+ Object.defineProperty(object, property, {
+ get: function get() {
+ var value = _get();
+ Object.defineProperty(object, property, {
+ value: value,
+ enumerable: true,
+ configurable: true
+ });
+ return value;
+ },
+ enumerable: true,
+ configurable: true
+ });
+ };
+
+ /** @type {typeof import('color-convert')} */
+ var colorConvert;
+ var makeDynamicStyles = function makeDynamicStyles(wrap, targetSpace, identity, isBackground) {
+ if (colorConvert === undefined) {
+ colorConvert = _$$_REQUIRE(_dependencyMap[1], "color-convert");
+ }
+ var offset = isBackground ? 10 : 0;
+ var styles = {};
+ for (var _ref of Object.entries(colorConvert)) {
+ var _ref2 = _slicedToArray(_ref, 2);
+ var sourceSpace = _ref2[0];
+ var suite = _ref2[1];
+ var name = sourceSpace === 'ansi16' ? 'ansi' : sourceSpace;
+ if (sourceSpace === targetSpace) {
+ styles[name] = wrap(identity, offset);
+ } else if (typeof suite === 'object') {
+ styles[name] = wrap(suite[targetSpace], offset);
+ }
+ }
+ return styles;
+ };
+ function assembleStyles() {
+ var codes = new Map();
+ var styles = {
+ modifier: {
+ reset: [0, 0],
+ // 21 isn't widely supported and 22 does the same thing
+ bold: [1, 22],
+ dim: [2, 22],
+ italic: [3, 23],
+ underline: [4, 24],
+ inverse: [7, 27],
+ hidden: [8, 28],
+ strikethrough: [9, 29]
+ },
+ color: {
+ black: [30, 39],
+ red: [31, 39],
+ green: [32, 39],
+ yellow: [33, 39],
+ blue: [34, 39],
+ magenta: [35, 39],
+ cyan: [36, 39],
+ white: [37, 39],
+ // Bright color
+ blackBright: [90, 39],
+ redBright: [91, 39],
+ greenBright: [92, 39],
+ yellowBright: [93, 39],
+ blueBright: [94, 39],
+ magentaBright: [95, 39],
+ cyanBright: [96, 39],
+ whiteBright: [97, 39]
+ },
+ bgColor: {
+ bgBlack: [40, 49],
+ bgRed: [41, 49],
+ bgGreen: [42, 49],
+ bgYellow: [43, 49],
+ bgBlue: [44, 49],
+ bgMagenta: [45, 49],
+ bgCyan: [46, 49],
+ bgWhite: [47, 49],
+ // Bright color
+ bgBlackBright: [100, 49],
+ bgRedBright: [101, 49],
+ bgGreenBright: [102, 49],
+ bgYellowBright: [103, 49],
+ bgBlueBright: [104, 49],
+ bgMagentaBright: [105, 49],
+ bgCyanBright: [106, 49],
+ bgWhiteBright: [107, 49]
+ }
+ };
+
+ // Alias bright black as gray (and grey)
+ styles.color.gray = styles.color.blackBright;
+ styles.bgColor.bgGray = styles.bgColor.bgBlackBright;
+ styles.color.grey = styles.color.blackBright;
+ styles.bgColor.bgGrey = styles.bgColor.bgBlackBright;
+ for (var _ref3 of Object.entries(styles)) {
+ var _ref4 = _slicedToArray(_ref3, 2);
+ var groupName = _ref4[0];
+ var group = _ref4[1];
+ for (var _ref5 of Object.entries(group)) {
+ var _ref6 = _slicedToArray(_ref5, 2);
+ var styleName = _ref6[0];
+ var style = _ref6[1];
+ styles[styleName] = {
+ open: `\u001B[${style[0]}m`,
+ close: `\u001B[${style[1]}m`
+ };
+ group[styleName] = styles[styleName];
+ codes.set(style[0], style[1]);
+ }
+ Object.defineProperty(styles, groupName, {
+ value: group,
+ enumerable: false
+ });
+ }
+ Object.defineProperty(styles, 'codes', {
+ value: codes,
+ enumerable: false
+ });
+ styles.color.close = "\x1B[39m";
+ styles.bgColor.close = "\x1B[49m";
+ setLazyProperty(styles.color, 'ansi', function () {
+ return makeDynamicStyles(wrapAnsi16, 'ansi16', ansi2ansi, false);
+ });
+ setLazyProperty(styles.color, 'ansi256', function () {
+ return makeDynamicStyles(wrapAnsi256, 'ansi256', ansi2ansi, false);
+ });
+ setLazyProperty(styles.color, 'ansi16m', function () {
+ return makeDynamicStyles(wrapAnsi16m, 'rgb', rgb2rgb, false);
+ });
+ setLazyProperty(styles.bgColor, 'ansi', function () {
+ return makeDynamicStyles(wrapAnsi16, 'ansi16', ansi2ansi, true);
+ });
+ setLazyProperty(styles.bgColor, 'ansi256', function () {
+ return makeDynamicStyles(wrapAnsi256, 'ansi256', ansi2ansi, true);
+ });
+ setLazyProperty(styles.bgColor, 'ansi16m', function () {
+ return makeDynamicStyles(wrapAnsi16m, 'rgb', rgb2rgb, true);
+ });
+ return styles;
+ }
+
+ // Make the export immutable
+ Object.defineProperty(module, 'exports', {
+ enumerable: true,
+ get: assembleStyles
+ });
+},116,[7,117],"node_modules\\ansi-styles\\index.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var convert = {};
+ var models = Object.keys(_$$_REQUIRE(_dependencyMap[0], "./conversions"));
+ function wrapRaw(fn) {
+ var wrappedFn = function wrappedFn() {
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
+ args[_key] = arguments[_key];
+ }
+ var arg0 = args[0];
+ if (arg0 === undefined || arg0 === null) {
+ return arg0;
+ }
+ if (arg0.length > 1) {
+ args = arg0;
+ }
+ return fn(args);
+ };
+
+ // Preserve .conversion property if there is one
+ if ('conversion' in fn) {
+ wrappedFn.conversion = fn.conversion;
+ }
+ return wrappedFn;
+ }
+ function wrapRounded(fn) {
+ var wrappedFn = function wrappedFn() {
+ for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
+ args[_key2] = arguments[_key2];
+ }
+ var arg0 = args[0];
+ if (arg0 === undefined || arg0 === null) {
+ return arg0;
+ }
+ if (arg0.length > 1) {
+ args = arg0;
+ }
+ var result = fn(args);
+
+ // We're assuming the result is an array here.
+ // see notice in conversions.js; don't use box types
+ // in conversion functions.
+ if (typeof result === 'object') {
+ for (var len = result.length, i = 0; i < len; i++) {
+ result[i] = Math.round(result[i]);
+ }
+ }
+ return result;
+ };
+
+ // Preserve .conversion property if there is one
+ if ('conversion' in fn) {
+ wrappedFn.conversion = fn.conversion;
+ }
+ return wrappedFn;
+ }
+ models.forEach(function (fromModel) {
+ convert[fromModel] = {};
+ Object.defineProperty(convert[fromModel], 'channels', {
+ value: _$$_REQUIRE(_dependencyMap[0], "./conversions")[fromModel].channels
+ });
+ Object.defineProperty(convert[fromModel], 'labels', {
+ value: _$$_REQUIRE(_dependencyMap[0], "./conversions")[fromModel].labels
+ });
+ var routes = _$$_REQUIRE(_dependencyMap[1], "./route")(fromModel);
+ var routeModels = Object.keys(routes);
+ routeModels.forEach(function (toModel) {
+ var fn = routes[toModel];
+ convert[fromModel][toModel] = wrapRounded(fn);
+ convert[fromModel][toModel].raw = wrapRaw(fn);
+ });
+ });
+ module.exports = convert;
+},117,[118,120],"node_modules\\color-convert\\index.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _slicedToArray = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/slicedToArray");
+ /* MIT license */
+ /* eslint-disable no-mixed-operators */
+ // NOTE: conversions should only return primitive values (i.e. arrays, or
+ // values that give correct `typeof` results).
+ // do not use box values types (i.e. Number(), String(), etc.)
+
+ var reverseKeywords = {};
+ for (var key of Object.keys(_$$_REQUIRE(_dependencyMap[1], "color-name"))) {
+ reverseKeywords[_$$_REQUIRE(_dependencyMap[1], "color-name")[key]] = key;
+ }
+ var convert = {
+ rgb: {
+ channels: 3,
+ labels: 'rgb'
+ },
+ hsl: {
+ channels: 3,
+ labels: 'hsl'
+ },
+ hsv: {
+ channels: 3,
+ labels: 'hsv'
+ },
+ hwb: {
+ channels: 3,
+ labels: 'hwb'
+ },
+ cmyk: {
+ channels: 4,
+ labels: 'cmyk'
+ },
+ xyz: {
+ channels: 3,
+ labels: 'xyz'
+ },
+ lab: {
+ channels: 3,
+ labels: 'lab'
+ },
+ lch: {
+ channels: 3,
+ labels: 'lch'
+ },
+ hex: {
+ channels: 1,
+ labels: ['hex']
+ },
+ keyword: {
+ channels: 1,
+ labels: ['keyword']
+ },
+ ansi16: {
+ channels: 1,
+ labels: ['ansi16']
+ },
+ ansi256: {
+ channels: 1,
+ labels: ['ansi256']
+ },
+ hcg: {
+ channels: 3,
+ labels: ['h', 'c', 'g']
+ },
+ apple: {
+ channels: 3,
+ labels: ['r16', 'g16', 'b16']
+ },
+ gray: {
+ channels: 1,
+ labels: ['gray']
+ }
+ };
+ module.exports = convert;
+
+ // Hide .channels and .labels properties
+ for (var model of Object.keys(convert)) {
+ if (!('channels' in convert[model])) {
+ throw new Error('missing channels property: ' + model);
+ }
+ if (!('labels' in convert[model])) {
+ throw new Error('missing channel labels property: ' + model);
+ }
+ if (convert[model].labels.length !== convert[model].channels) {
+ throw new Error('channel and label counts mismatch: ' + model);
+ }
+ var _convert$model = convert[model],
+ channels = _convert$model.channels,
+ labels = _convert$model.labels;
+ delete convert[model].channels;
+ delete convert[model].labels;
+ Object.defineProperty(convert[model], 'channels', {
+ value: channels
+ });
+ Object.defineProperty(convert[model], 'labels', {
+ value: labels
+ });
+ }
+ convert.rgb.hsl = function (rgb) {
+ var r = rgb[0] / 255;
+ var g = rgb[1] / 255;
+ var b = rgb[2] / 255;
+ var min = Math.min(r, g, b);
+ var max = Math.max(r, g, b);
+ var delta = max - min;
+ var h;
+ var s;
+ if (max === min) {
+ h = 0;
+ } else if (r === max) {
+ h = (g - b) / delta;
+ } else if (g === max) {
+ h = 2 + (b - r) / delta;
+ } else if (b === max) {
+ h = 4 + (r - g) / delta;
+ }
+ h = Math.min(h * 60, 360);
+ if (h < 0) {
+ h += 360;
+ }
+ var l = (min + max) / 2;
+ if (max === min) {
+ s = 0;
+ } else if (l <= 0.5) {
+ s = delta / (max + min);
+ } else {
+ s = delta / (2 - max - min);
+ }
+ return [h, s * 100, l * 100];
+ };
+ convert.rgb.hsv = function (rgb) {
+ var rdif;
+ var gdif;
+ var bdif;
+ var h;
+ var s;
+ var r = rgb[0] / 255;
+ var g = rgb[1] / 255;
+ var b = rgb[2] / 255;
+ var v = Math.max(r, g, b);
+ var diff = v - Math.min(r, g, b);
+ var diffc = function diffc(c) {
+ return (v - c) / 6 / diff + 1 / 2;
+ };
+ if (diff === 0) {
+ h = 0;
+ s = 0;
+ } else {
+ s = diff / v;
+ rdif = diffc(r);
+ gdif = diffc(g);
+ bdif = diffc(b);
+ if (r === v) {
+ h = bdif - gdif;
+ } else if (g === v) {
+ h = 1 / 3 + rdif - bdif;
+ } else if (b === v) {
+ h = 2 / 3 + gdif - rdif;
+ }
+ if (h < 0) {
+ h += 1;
+ } else if (h > 1) {
+ h -= 1;
+ }
+ }
+ return [h * 360, s * 100, v * 100];
+ };
+ convert.rgb.hwb = function (rgb) {
+ var r = rgb[0];
+ var g = rgb[1];
+ var b = rgb[2];
+ var h = convert.rgb.hsl(rgb)[0];
+ var w = 1 / 255 * Math.min(r, Math.min(g, b));
+ b = 1 - 1 / 255 * Math.max(r, Math.max(g, b));
+ return [h, w * 100, b * 100];
+ };
+ convert.rgb.cmyk = function (rgb) {
+ var r = rgb[0] / 255;
+ var g = rgb[1] / 255;
+ var b = rgb[2] / 255;
+ var k = Math.min(1 - r, 1 - g, 1 - b);
+ var c = (1 - r - k) / (1 - k) || 0;
+ var m = (1 - g - k) / (1 - k) || 0;
+ var y = (1 - b - k) / (1 - k) || 0;
+ return [c * 100, m * 100, y * 100, k * 100];
+ };
+ function comparativeDistance(x, y) {
+ /*
+ See https://en.m.wikipedia.org/wiki/Euclidean_distance#Squared_Euclidean_distance
+ */
+ return (x[0] - y[0]) ** 2 + (x[1] - y[1]) ** 2 + (x[2] - y[2]) ** 2;
+ }
+ convert.rgb.keyword = function (rgb) {
+ var reversed = reverseKeywords[rgb];
+ if (reversed) {
+ return reversed;
+ }
+ var currentClosestDistance = Infinity;
+ var currentClosestKeyword;
+ for (var keyword of Object.keys(_$$_REQUIRE(_dependencyMap[1], "color-name"))) {
+ var value = _$$_REQUIRE(_dependencyMap[1], "color-name")[keyword];
+
+ // Compute comparative distance
+ var distance = comparativeDistance(rgb, value);
+
+ // Check if its less, if so set as closest
+ if (distance < currentClosestDistance) {
+ currentClosestDistance = distance;
+ currentClosestKeyword = keyword;
+ }
+ }
+ return currentClosestKeyword;
+ };
+ convert.keyword.rgb = function (keyword) {
+ return _$$_REQUIRE(_dependencyMap[1], "color-name")[keyword];
+ };
+ convert.rgb.xyz = function (rgb) {
+ var r = rgb[0] / 255;
+ var g = rgb[1] / 255;
+ var b = rgb[2] / 255;
+
+ // Assume sRGB
+ r = r > 0.04045 ? ((r + 0.055) / 1.055) ** 2.4 : r / 12.92;
+ g = g > 0.04045 ? ((g + 0.055) / 1.055) ** 2.4 : g / 12.92;
+ b = b > 0.04045 ? ((b + 0.055) / 1.055) ** 2.4 : b / 12.92;
+ var x = r * 0.4124 + g * 0.3576 + b * 0.1805;
+ var y = r * 0.2126 + g * 0.7152 + b * 0.0722;
+ var z = r * 0.0193 + g * 0.1192 + b * 0.9505;
+ return [x * 100, y * 100, z * 100];
+ };
+ convert.rgb.lab = function (rgb) {
+ var xyz = convert.rgb.xyz(rgb);
+ var x = xyz[0];
+ var y = xyz[1];
+ var z = xyz[2];
+ x /= 95.047;
+ y /= 100;
+ z /= 108.883;
+ x = x > 0.008856 ? x ** (1 / 3) : 7.787 * x + 16 / 116;
+ y = y > 0.008856 ? y ** (1 / 3) : 7.787 * y + 16 / 116;
+ z = z > 0.008856 ? z ** (1 / 3) : 7.787 * z + 16 / 116;
+ var l = 116 * y - 16;
+ var a = 500 * (x - y);
+ var b = 200 * (y - z);
+ return [l, a, b];
+ };
+ convert.hsl.rgb = function (hsl) {
+ var h = hsl[0] / 360;
+ var s = hsl[1] / 100;
+ var l = hsl[2] / 100;
+ var t2;
+ var t3;
+ var val;
+ if (s === 0) {
+ val = l * 255;
+ return [val, val, val];
+ }
+ if (l < 0.5) {
+ t2 = l * (1 + s);
+ } else {
+ t2 = l + s - l * s;
+ }
+ var t1 = 2 * l - t2;
+ var rgb = [0, 0, 0];
+ for (var i = 0; i < 3; i++) {
+ t3 = h + 1 / 3 * -(i - 1);
+ if (t3 < 0) {
+ t3++;
+ }
+ if (t3 > 1) {
+ t3--;
+ }
+ if (6 * t3 < 1) {
+ val = t1 + (t2 - t1) * 6 * t3;
+ } else if (2 * t3 < 1) {
+ val = t2;
+ } else if (3 * t3 < 2) {
+ val = t1 + (t2 - t1) * (2 / 3 - t3) * 6;
+ } else {
+ val = t1;
+ }
+ rgb[i] = val * 255;
+ }
+ return rgb;
+ };
+ convert.hsl.hsv = function (hsl) {
+ var h = hsl[0];
+ var s = hsl[1] / 100;
+ var l = hsl[2] / 100;
+ var smin = s;
+ var lmin = Math.max(l, 0.01);
+ l *= 2;
+ s *= l <= 1 ? l : 2 - l;
+ smin *= lmin <= 1 ? lmin : 2 - lmin;
+ var v = (l + s) / 2;
+ var sv = l === 0 ? 2 * smin / (lmin + smin) : 2 * s / (l + s);
+ return [h, sv * 100, v * 100];
+ };
+ convert.hsv.rgb = function (hsv) {
+ var h = hsv[0] / 60;
+ var s = hsv[1] / 100;
+ var v = hsv[2] / 100;
+ var hi = Math.floor(h) % 6;
+ var f = h - Math.floor(h);
+ var p = 255 * v * (1 - s);
+ var q = 255 * v * (1 - s * f);
+ var t = 255 * v * (1 - s * (1 - f));
+ v *= 255;
+ switch (hi) {
+ case 0:
+ return [v, t, p];
+ case 1:
+ return [q, v, p];
+ case 2:
+ return [p, v, t];
+ case 3:
+ return [p, q, v];
+ case 4:
+ return [t, p, v];
+ case 5:
+ return [v, p, q];
+ }
+ };
+ convert.hsv.hsl = function (hsv) {
+ var h = hsv[0];
+ var s = hsv[1] / 100;
+ var v = hsv[2] / 100;
+ var vmin = Math.max(v, 0.01);
+ var sl;
+ var l;
+ l = (2 - s) * v;
+ var lmin = (2 - s) * vmin;
+ sl = s * vmin;
+ sl /= lmin <= 1 ? lmin : 2 - lmin;
+ sl = sl || 0;
+ l /= 2;
+ return [h, sl * 100, l * 100];
+ };
+
+ // http://dev.w3.org/csswg/css-color/#hwb-to-rgb
+ convert.hwb.rgb = function (hwb) {
+ var h = hwb[0] / 360;
+ var wh = hwb[1] / 100;
+ var bl = hwb[2] / 100;
+ var ratio = wh + bl;
+ var f;
+
+ // Wh + bl cant be > 1
+ if (ratio > 1) {
+ wh /= ratio;
+ bl /= ratio;
+ }
+ var i = Math.floor(6 * h);
+ var v = 1 - bl;
+ f = 6 * h - i;
+ if ((i & 0x01) !== 0) {
+ f = 1 - f;
+ }
+ var n = wh + f * (v - wh); // Linear interpolation
+
+ var r;
+ var g;
+ var b;
+ /* eslint-disable max-statements-per-line,no-multi-spaces */
+ switch (i) {
+ default:
+ case 6:
+ case 0:
+ r = v;
+ g = n;
+ b = wh;
+ break;
+ case 1:
+ r = n;
+ g = v;
+ b = wh;
+ break;
+ case 2:
+ r = wh;
+ g = v;
+ b = n;
+ break;
+ case 3:
+ r = wh;
+ g = n;
+ b = v;
+ break;
+ case 4:
+ r = n;
+ g = wh;
+ b = v;
+ break;
+ case 5:
+ r = v;
+ g = wh;
+ b = n;
+ break;
+ }
+ /* eslint-enable max-statements-per-line,no-multi-spaces */
+
+ return [r * 255, g * 255, b * 255];
+ };
+ convert.cmyk.rgb = function (cmyk) {
+ var c = cmyk[0] / 100;
+ var m = cmyk[1] / 100;
+ var y = cmyk[2] / 100;
+ var k = cmyk[3] / 100;
+ var r = 1 - Math.min(1, c * (1 - k) + k);
+ var g = 1 - Math.min(1, m * (1 - k) + k);
+ var b = 1 - Math.min(1, y * (1 - k) + k);
+ return [r * 255, g * 255, b * 255];
+ };
+ convert.xyz.rgb = function (xyz) {
+ var x = xyz[0] / 100;
+ var y = xyz[1] / 100;
+ var z = xyz[2] / 100;
+ var r;
+ var g;
+ var b;
+ r = x * 3.2406 + y * -1.5372 + z * -0.4986;
+ g = x * -0.9689 + y * 1.8758 + z * 0.0415;
+ b = x * 0.0557 + y * -0.2040 + z * 1.0570;
+
+ // Assume sRGB
+ r = r > 0.0031308 ? 1.055 * r ** (1.0 / 2.4) - 0.055 : r * 12.92;
+ g = g > 0.0031308 ? 1.055 * g ** (1.0 / 2.4) - 0.055 : g * 12.92;
+ b = b > 0.0031308 ? 1.055 * b ** (1.0 / 2.4) - 0.055 : b * 12.92;
+ r = Math.min(Math.max(0, r), 1);
+ g = Math.min(Math.max(0, g), 1);
+ b = Math.min(Math.max(0, b), 1);
+ return [r * 255, g * 255, b * 255];
+ };
+ convert.xyz.lab = function (xyz) {
+ var x = xyz[0];
+ var y = xyz[1];
+ var z = xyz[2];
+ x /= 95.047;
+ y /= 100;
+ z /= 108.883;
+ x = x > 0.008856 ? x ** (1 / 3) : 7.787 * x + 16 / 116;
+ y = y > 0.008856 ? y ** (1 / 3) : 7.787 * y + 16 / 116;
+ z = z > 0.008856 ? z ** (1 / 3) : 7.787 * z + 16 / 116;
+ var l = 116 * y - 16;
+ var a = 500 * (x - y);
+ var b = 200 * (y - z);
+ return [l, a, b];
+ };
+ convert.lab.xyz = function (lab) {
+ var l = lab[0];
+ var a = lab[1];
+ var b = lab[2];
+ var x;
+ var y;
+ var z;
+ y = (l + 16) / 116;
+ x = a / 500 + y;
+ z = y - b / 200;
+ var y2 = y ** 3;
+ var x2 = x ** 3;
+ var z2 = z ** 3;
+ y = y2 > 0.008856 ? y2 : (y - 16 / 116) / 7.787;
+ x = x2 > 0.008856 ? x2 : (x - 16 / 116) / 7.787;
+ z = z2 > 0.008856 ? z2 : (z - 16 / 116) / 7.787;
+ x *= 95.047;
+ y *= 100;
+ z *= 108.883;
+ return [x, y, z];
+ };
+ convert.lab.lch = function (lab) {
+ var l = lab[0];
+ var a = lab[1];
+ var b = lab[2];
+ var h;
+ var hr = Math.atan2(b, a);
+ h = hr * 360 / 2 / Math.PI;
+ if (h < 0) {
+ h += 360;
+ }
+ var c = Math.sqrt(a * a + b * b);
+ return [l, c, h];
+ };
+ convert.lch.lab = function (lch) {
+ var l = lch[0];
+ var c = lch[1];
+ var h = lch[2];
+ var hr = h / 360 * 2 * Math.PI;
+ var a = c * Math.cos(hr);
+ var b = c * Math.sin(hr);
+ return [l, a, b];
+ };
+ convert.rgb.ansi16 = function (args) {
+ var saturation = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
+ var _args = _slicedToArray(args, 3),
+ r = _args[0],
+ g = _args[1],
+ b = _args[2];
+ var value = saturation === null ? convert.rgb.hsv(args)[2] : saturation; // Hsv -> ansi16 optimization
+
+ value = Math.round(value / 50);
+ if (value === 0) {
+ return 30;
+ }
+ var ansi = 30 + (Math.round(b / 255) << 2 | Math.round(g / 255) << 1 | Math.round(r / 255));
+ if (value === 2) {
+ ansi += 60;
+ }
+ return ansi;
+ };
+ convert.hsv.ansi16 = function (args) {
+ // Optimization here; we already know the value and don't need to get
+ // it converted for us.
+ return convert.rgb.ansi16(convert.hsv.rgb(args), args[2]);
+ };
+ convert.rgb.ansi256 = function (args) {
+ var r = args[0];
+ var g = args[1];
+ var b = args[2];
+
+ // We use the extended greyscale palette here, with the exception of
+ // black and white. normal palette only has 4 greyscale shades.
+ if (r === g && g === b) {
+ if (r < 8) {
+ return 16;
+ }
+ if (r > 248) {
+ return 231;
+ }
+ return Math.round((r - 8) / 247 * 24) + 232;
+ }
+ var ansi = 16 + 36 * Math.round(r / 255 * 5) + 6 * Math.round(g / 255 * 5) + Math.round(b / 255 * 5);
+ return ansi;
+ };
+ convert.ansi16.rgb = function (args) {
+ var color = args % 10;
+
+ // Handle greyscale
+ if (color === 0 || color === 7) {
+ if (args > 50) {
+ color += 3.5;
+ }
+ color = color / 10.5 * 255;
+ return [color, color, color];
+ }
+ var mult = (~~(args > 50) + 1) * 0.5;
+ var r = (color & 1) * mult * 255;
+ var g = (color >> 1 & 1) * mult * 255;
+ var b = (color >> 2 & 1) * mult * 255;
+ return [r, g, b];
+ };
+ convert.ansi256.rgb = function (args) {
+ // Handle greyscale
+ if (args >= 232) {
+ var c = (args - 232) * 10 + 8;
+ return [c, c, c];
+ }
+ args -= 16;
+ var rem;
+ var r = Math.floor(args / 36) / 5 * 255;
+ var g = Math.floor((rem = args % 36) / 6) / 5 * 255;
+ var b = rem % 6 / 5 * 255;
+ return [r, g, b];
+ };
+ convert.rgb.hex = function (args) {
+ var integer = ((Math.round(args[0]) & 0xFF) << 16) + ((Math.round(args[1]) & 0xFF) << 8) + (Math.round(args[2]) & 0xFF);
+ var string = integer.toString(16).toUpperCase();
+ return '000000'.substring(string.length) + string;
+ };
+ convert.hex.rgb = function (args) {
+ var match = args.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);
+ if (!match) {
+ return [0, 0, 0];
+ }
+ var colorString = match[0];
+ if (match[0].length === 3) {
+ colorString = colorString.split('').map(function (char) {
+ return char + char;
+ }).join('');
+ }
+ var integer = parseInt(colorString, 16);
+ var r = integer >> 16 & 0xFF;
+ var g = integer >> 8 & 0xFF;
+ var b = integer & 0xFF;
+ return [r, g, b];
+ };
+ convert.rgb.hcg = function (rgb) {
+ var r = rgb[0] / 255;
+ var g = rgb[1] / 255;
+ var b = rgb[2] / 255;
+ var max = Math.max(Math.max(r, g), b);
+ var min = Math.min(Math.min(r, g), b);
+ var chroma = max - min;
+ var grayscale;
+ var hue;
+ if (chroma < 1) {
+ grayscale = min / (1 - chroma);
+ } else {
+ grayscale = 0;
+ }
+ if (chroma <= 0) {
+ hue = 0;
+ } else if (max === r) {
+ hue = (g - b) / chroma % 6;
+ } else if (max === g) {
+ hue = 2 + (b - r) / chroma;
+ } else {
+ hue = 4 + (r - g) / chroma;
+ }
+ hue /= 6;
+ hue %= 1;
+ return [hue * 360, chroma * 100, grayscale * 100];
+ };
+ convert.hsl.hcg = function (hsl) {
+ var s = hsl[1] / 100;
+ var l = hsl[2] / 100;
+ var c = l < 0.5 ? 2.0 * s * l : 2.0 * s * (1.0 - l);
+ var f = 0;
+ if (c < 1.0) {
+ f = (l - 0.5 * c) / (1.0 - c);
+ }
+ return [hsl[0], c * 100, f * 100];
+ };
+ convert.hsv.hcg = function (hsv) {
+ var s = hsv[1] / 100;
+ var v = hsv[2] / 100;
+ var c = s * v;
+ var f = 0;
+ if (c < 1.0) {
+ f = (v - c) / (1 - c);
+ }
+ return [hsv[0], c * 100, f * 100];
+ };
+ convert.hcg.rgb = function (hcg) {
+ var h = hcg[0] / 360;
+ var c = hcg[1] / 100;
+ var g = hcg[2] / 100;
+ if (c === 0.0) {
+ return [g * 255, g * 255, g * 255];
+ }
+ var pure = [0, 0, 0];
+ var hi = h % 1 * 6;
+ var v = hi % 1;
+ var w = 1 - v;
+ var mg = 0;
+
+ /* eslint-disable max-statements-per-line */
+ switch (Math.floor(hi)) {
+ case 0:
+ pure[0] = 1;
+ pure[1] = v;
+ pure[2] = 0;
+ break;
+ case 1:
+ pure[0] = w;
+ pure[1] = 1;
+ pure[2] = 0;
+ break;
+ case 2:
+ pure[0] = 0;
+ pure[1] = 1;
+ pure[2] = v;
+ break;
+ case 3:
+ pure[0] = 0;
+ pure[1] = w;
+ pure[2] = 1;
+ break;
+ case 4:
+ pure[0] = v;
+ pure[1] = 0;
+ pure[2] = 1;
+ break;
+ default:
+ pure[0] = 1;
+ pure[1] = 0;
+ pure[2] = w;
+ }
+ /* eslint-enable max-statements-per-line */
+
+ mg = (1.0 - c) * g;
+ return [(c * pure[0] + mg) * 255, (c * pure[1] + mg) * 255, (c * pure[2] + mg) * 255];
+ };
+ convert.hcg.hsv = function (hcg) {
+ var c = hcg[1] / 100;
+ var g = hcg[2] / 100;
+ var v = c + g * (1.0 - c);
+ var f = 0;
+ if (v > 0.0) {
+ f = c / v;
+ }
+ return [hcg[0], f * 100, v * 100];
+ };
+ convert.hcg.hsl = function (hcg) {
+ var c = hcg[1] / 100;
+ var g = hcg[2] / 100;
+ var l = g * (1.0 - c) + 0.5 * c;
+ var s = 0;
+ if (l > 0.0 && l < 0.5) {
+ s = c / (2 * l);
+ } else if (l >= 0.5 && l < 1.0) {
+ s = c / (2 * (1 - l));
+ }
+ return [hcg[0], s * 100, l * 100];
+ };
+ convert.hcg.hwb = function (hcg) {
+ var c = hcg[1] / 100;
+ var g = hcg[2] / 100;
+ var v = c + g * (1.0 - c);
+ return [hcg[0], (v - c) * 100, (1 - v) * 100];
+ };
+ convert.hwb.hcg = function (hwb) {
+ var w = hwb[1] / 100;
+ var b = hwb[2] / 100;
+ var v = 1 - b;
+ var c = v - w;
+ var g = 0;
+ if (c < 1) {
+ g = (v - c) / (1 - c);
+ }
+ return [hwb[0], c * 100, g * 100];
+ };
+ convert.apple.rgb = function (apple) {
+ return [apple[0] / 65535 * 255, apple[1] / 65535 * 255, apple[2] / 65535 * 255];
+ };
+ convert.rgb.apple = function (rgb) {
+ return [rgb[0] / 255 * 65535, rgb[1] / 255 * 65535, rgb[2] / 255 * 65535];
+ };
+ convert.gray.rgb = function (args) {
+ return [args[0] / 100 * 255, args[0] / 100 * 255, args[0] / 100 * 255];
+ };
+ convert.gray.hsl = function (args) {
+ return [0, 0, args[0]];
+ };
+ convert.gray.hsv = convert.gray.hsl;
+ convert.gray.hwb = function (gray) {
+ return [0, 100, gray[0]];
+ };
+ convert.gray.cmyk = function (gray) {
+ return [0, 0, 0, gray[0]];
+ };
+ convert.gray.lab = function (gray) {
+ return [gray[0], 0, 0];
+ };
+ convert.gray.hex = function (gray) {
+ var val = Math.round(gray[0] / 100 * 255) & 0xFF;
+ var integer = (val << 16) + (val << 8) + val;
+ var string = integer.toString(16).toUpperCase();
+ return '000000'.substring(string.length) + string;
+ };
+ convert.rgb.gray = function (rgb) {
+ var val = (rgb[0] + rgb[1] + rgb[2]) / 3;
+ return [val / 255 * 100];
+ };
+},118,[7,119],"node_modules\\color-convert\\conversions.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ module.exports = {
+ "aliceblue": [240, 248, 255],
+ "antiquewhite": [250, 235, 215],
+ "aqua": [0, 255, 255],
+ "aquamarine": [127, 255, 212],
+ "azure": [240, 255, 255],
+ "beige": [245, 245, 220],
+ "bisque": [255, 228, 196],
+ "black": [0, 0, 0],
+ "blanchedalmond": [255, 235, 205],
+ "blue": [0, 0, 255],
+ "blueviolet": [138, 43, 226],
+ "brown": [165, 42, 42],
+ "burlywood": [222, 184, 135],
+ "cadetblue": [95, 158, 160],
+ "chartreuse": [127, 255, 0],
+ "chocolate": [210, 105, 30],
+ "coral": [255, 127, 80],
+ "cornflowerblue": [100, 149, 237],
+ "cornsilk": [255, 248, 220],
+ "crimson": [220, 20, 60],
+ "cyan": [0, 255, 255],
+ "darkblue": [0, 0, 139],
+ "darkcyan": [0, 139, 139],
+ "darkgoldenrod": [184, 134, 11],
+ "darkgray": [169, 169, 169],
+ "darkgreen": [0, 100, 0],
+ "darkgrey": [169, 169, 169],
+ "darkkhaki": [189, 183, 107],
+ "darkmagenta": [139, 0, 139],
+ "darkolivegreen": [85, 107, 47],
+ "darkorange": [255, 140, 0],
+ "darkorchid": [153, 50, 204],
+ "darkred": [139, 0, 0],
+ "darksalmon": [233, 150, 122],
+ "darkseagreen": [143, 188, 143],
+ "darkslateblue": [72, 61, 139],
+ "darkslategray": [47, 79, 79],
+ "darkslategrey": [47, 79, 79],
+ "darkturquoise": [0, 206, 209],
+ "darkviolet": [148, 0, 211],
+ "deeppink": [255, 20, 147],
+ "deepskyblue": [0, 191, 255],
+ "dimgray": [105, 105, 105],
+ "dimgrey": [105, 105, 105],
+ "dodgerblue": [30, 144, 255],
+ "firebrick": [178, 34, 34],
+ "floralwhite": [255, 250, 240],
+ "forestgreen": [34, 139, 34],
+ "fuchsia": [255, 0, 255],
+ "gainsboro": [220, 220, 220],
+ "ghostwhite": [248, 248, 255],
+ "gold": [255, 215, 0],
+ "goldenrod": [218, 165, 32],
+ "gray": [128, 128, 128],
+ "green": [0, 128, 0],
+ "greenyellow": [173, 255, 47],
+ "grey": [128, 128, 128],
+ "honeydew": [240, 255, 240],
+ "hotpink": [255, 105, 180],
+ "indianred": [205, 92, 92],
+ "indigo": [75, 0, 130],
+ "ivory": [255, 255, 240],
+ "khaki": [240, 230, 140],
+ "lavender": [230, 230, 250],
+ "lavenderblush": [255, 240, 245],
+ "lawngreen": [124, 252, 0],
+ "lemonchiffon": [255, 250, 205],
+ "lightblue": [173, 216, 230],
+ "lightcoral": [240, 128, 128],
+ "lightcyan": [224, 255, 255],
+ "lightgoldenrodyellow": [250, 250, 210],
+ "lightgray": [211, 211, 211],
+ "lightgreen": [144, 238, 144],
+ "lightgrey": [211, 211, 211],
+ "lightpink": [255, 182, 193],
+ "lightsalmon": [255, 160, 122],
+ "lightseagreen": [32, 178, 170],
+ "lightskyblue": [135, 206, 250],
+ "lightslategray": [119, 136, 153],
+ "lightslategrey": [119, 136, 153],
+ "lightsteelblue": [176, 196, 222],
+ "lightyellow": [255, 255, 224],
+ "lime": [0, 255, 0],
+ "limegreen": [50, 205, 50],
+ "linen": [250, 240, 230],
+ "magenta": [255, 0, 255],
+ "maroon": [128, 0, 0],
+ "mediumaquamarine": [102, 205, 170],
+ "mediumblue": [0, 0, 205],
+ "mediumorchid": [186, 85, 211],
+ "mediumpurple": [147, 112, 219],
+ "mediumseagreen": [60, 179, 113],
+ "mediumslateblue": [123, 104, 238],
+ "mediumspringgreen": [0, 250, 154],
+ "mediumturquoise": [72, 209, 204],
+ "mediumvioletred": [199, 21, 133],
+ "midnightblue": [25, 25, 112],
+ "mintcream": [245, 255, 250],
+ "mistyrose": [255, 228, 225],
+ "moccasin": [255, 228, 181],
+ "navajowhite": [255, 222, 173],
+ "navy": [0, 0, 128],
+ "oldlace": [253, 245, 230],
+ "olive": [128, 128, 0],
+ "olivedrab": [107, 142, 35],
+ "orange": [255, 165, 0],
+ "orangered": [255, 69, 0],
+ "orchid": [218, 112, 214],
+ "palegoldenrod": [238, 232, 170],
+ "palegreen": [152, 251, 152],
+ "paleturquoise": [175, 238, 238],
+ "palevioletred": [219, 112, 147],
+ "papayawhip": [255, 239, 213],
+ "peachpuff": [255, 218, 185],
+ "peru": [205, 133, 63],
+ "pink": [255, 192, 203],
+ "plum": [221, 160, 221],
+ "powderblue": [176, 224, 230],
+ "purple": [128, 0, 128],
+ "rebeccapurple": [102, 51, 153],
+ "red": [255, 0, 0],
+ "rosybrown": [188, 143, 143],
+ "royalblue": [65, 105, 225],
+ "saddlebrown": [139, 69, 19],
+ "salmon": [250, 128, 114],
+ "sandybrown": [244, 164, 96],
+ "seagreen": [46, 139, 87],
+ "seashell": [255, 245, 238],
+ "sienna": [160, 82, 45],
+ "silver": [192, 192, 192],
+ "skyblue": [135, 206, 235],
+ "slateblue": [106, 90, 205],
+ "slategray": [112, 128, 144],
+ "slategrey": [112, 128, 144],
+ "snow": [255, 250, 250],
+ "springgreen": [0, 255, 127],
+ "steelblue": [70, 130, 180],
+ "tan": [210, 180, 140],
+ "teal": [0, 128, 128],
+ "thistle": [216, 191, 216],
+ "tomato": [255, 99, 71],
+ "turquoise": [64, 224, 208],
+ "violet": [238, 130, 238],
+ "wheat": [245, 222, 179],
+ "white": [255, 255, 255],
+ "whitesmoke": [245, 245, 245],
+ "yellow": [255, 255, 0],
+ "yellowgreen": [154, 205, 50]
+ };
+},119,[],"node_modules\\color-name\\index.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /*
+ This function routes a model to all other models.
+
+ all functions that are routed have a property `.conversion` attached
+ to the returned synthetic function. This property is an array
+ of strings, each with the steps in between the 'from' and 'to'
+ color models (inclusive).
+
+ conversions that are not possible simply are not included.
+ */
+
+ function buildGraph() {
+ var graph = {};
+ // https://jsperf.com/object-keys-vs-for-in-with-closure/3
+ var models = Object.keys(_$$_REQUIRE(_dependencyMap[0], "./conversions"));
+ for (var len = models.length, i = 0; i < len; i++) {
+ graph[models[i]] = {
+ // http://jsperf.com/1-vs-infinity
+ // micro-opt, but this is simple.
+ distance: -1,
+ parent: null
+ };
+ }
+ return graph;
+ }
+
+ // https://en.wikipedia.org/wiki/Breadth-first_search
+ function deriveBFS(fromModel) {
+ var graph = buildGraph();
+ var queue = [fromModel]; // Unshift -> queue -> pop
+
+ graph[fromModel].distance = 0;
+ while (queue.length) {
+ var current = queue.pop();
+ var adjacents = Object.keys(_$$_REQUIRE(_dependencyMap[0], "./conversions")[current]);
+ for (var len = adjacents.length, i = 0; i < len; i++) {
+ var adjacent = adjacents[i];
+ var node = graph[adjacent];
+ if (node.distance === -1) {
+ node.distance = graph[current].distance + 1;
+ node.parent = current;
+ queue.unshift(adjacent);
+ }
+ }
+ }
+ return graph;
+ }
+ function link(from, to) {
+ return function (args) {
+ return to(from(args));
+ };
+ }
+ function wrapConversion(toModel, graph) {
+ var path = [graph[toModel].parent, toModel];
+ var fn = _$$_REQUIRE(_dependencyMap[0], "./conversions")[graph[toModel].parent][toModel];
+ var cur = graph[toModel].parent;
+ while (graph[cur].parent) {
+ path.unshift(graph[cur].parent);
+ fn = link(_$$_REQUIRE(_dependencyMap[0], "./conversions")[graph[cur].parent][cur], fn);
+ cur = graph[cur].parent;
+ }
+ fn.conversion = path;
+ return fn;
+ }
+ module.exports = function (fromModel) {
+ var graph = deriveBFS(fromModel);
+ var conversion = {};
+ var models = Object.keys(graph);
+ for (var len = models.length, i = 0; i < len; i++) {
+ var toModel = models[i];
+ var node = graph[toModel];
+ if (node.parent === null) {
+ // No possible conversion, or this node is the source model.
+ continue;
+ }
+ conversion[toModel] = wrapConversion(toModel, graph);
+ }
+ return conversion;
+ };
+},120,[118],"node_modules\\color-convert\\route.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ Object.defineProperty(exports, '__esModule', {
+ value: true
+ });
+ exports.default = exports.test = exports.serialize = void 0;
+ var Symbol = global['jest-symbol-do-not-touch'] || global.Symbol;
+ var asymmetricMatcher = typeof Symbol === 'function' && Symbol.for ? Symbol.for('jest.asymmetricMatcher') : 0x1357a5;
+ var SPACE = ' ';
+ var serialize = function serialize(val, config, indentation, depth, refs, printer) {
+ var stringedValue = val.toString();
+ if (stringedValue === 'ArrayContaining' || stringedValue === 'ArrayNotContaining') {
+ if (++depth > config.maxDepth) {
+ return '[' + stringedValue + ']';
+ }
+ return stringedValue + SPACE + '[' + (0, _$$_REQUIRE(_dependencyMap[0], "../collections").printListItems)(val.sample, config, indentation, depth, refs, printer) + ']';
+ }
+ if (stringedValue === 'ObjectContaining' || stringedValue === 'ObjectNotContaining') {
+ if (++depth > config.maxDepth) {
+ return '[' + stringedValue + ']';
+ }
+ return stringedValue + SPACE + '{' + (0, _$$_REQUIRE(_dependencyMap[0], "../collections").printObjectProperties)(val.sample, config, indentation, depth, refs, printer) + '}';
+ }
+ if (stringedValue === 'StringMatching' || stringedValue === 'StringNotMatching') {
+ return stringedValue + SPACE + printer(val.sample, config, indentation, depth, refs);
+ }
+ if (stringedValue === 'StringContaining' || stringedValue === 'StringNotContaining') {
+ return stringedValue + SPACE + printer(val.sample, config, indentation, depth, refs);
+ }
+ return val.toAsymmetricMatcher();
+ };
+ exports.serialize = serialize;
+ var test = function test(val) {
+ return val && val.$$typeof === asymmetricMatcher;
+ };
+ exports.test = test;
+ var plugin = {
+ serialize: serialize,
+ test: test
+ };
+ var _default = plugin;
+ exports.default = _default;
+},121,[122],"node_modules\\react-native\\node_modules\\pretty-format\\build\\plugins\\AsymmetricMatcher.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ Object.defineProperty(exports, '__esModule', {
+ value: true
+ });
+ exports.printIteratorEntries = printIteratorEntries;
+ exports.printIteratorValues = printIteratorValues;
+ exports.printListItems = printListItems;
+ exports.printObjectProperties = printObjectProperties;
+
+ /**
+ * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ */
+ var getKeysOfEnumerableProperties = function getKeysOfEnumerableProperties(object) {
+ var keys = Object.keys(object).sort();
+ if (Object.getOwnPropertySymbols) {
+ Object.getOwnPropertySymbols(object).forEach(function (symbol) {
+ if (Object.getOwnPropertyDescriptor(object, symbol).enumerable) {
+ keys.push(symbol);
+ }
+ });
+ }
+ return keys;
+ };
+ /**
+ * Return entries (for example, of a map)
+ * with spacing, indentation, and comma
+ * without surrounding punctuation (for example, braces)
+ */
+
+ function printIteratorEntries(iterator, config, indentation, depth, refs, printer) {
+ var separator = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : ': ';
+ var result = '';
+ var current = iterator.next();
+ if (!current.done) {
+ result += config.spacingOuter;
+ var indentationNext = indentation + config.indent;
+ while (!current.done) {
+ var name = printer(current.value[0], config, indentationNext, depth, refs);
+ var value = printer(current.value[1], config, indentationNext, depth, refs);
+ result += indentationNext + name + separator + value;
+ current = iterator.next();
+ if (!current.done) {
+ result += ',' + config.spacingInner;
+ } else if (!config.min) {
+ result += ',';
+ }
+ }
+ result += config.spacingOuter + indentation;
+ }
+ return result;
+ }
+ /**
+ * Return values (for example, of a set)
+ * with spacing, indentation, and comma
+ * without surrounding punctuation (braces or brackets)
+ */
+
+ function printIteratorValues(iterator, config, indentation, depth, refs, printer) {
+ var result = '';
+ var current = iterator.next();
+ if (!current.done) {
+ result += config.spacingOuter;
+ var indentationNext = indentation + config.indent;
+ while (!current.done) {
+ result += indentationNext + printer(current.value, config, indentationNext, depth, refs);
+ current = iterator.next();
+ if (!current.done) {
+ result += ',' + config.spacingInner;
+ } else if (!config.min) {
+ result += ',';
+ }
+ }
+ result += config.spacingOuter + indentation;
+ }
+ return result;
+ }
+ /**
+ * Return items (for example, of an array)
+ * with spacing, indentation, and comma
+ * without surrounding punctuation (for example, brackets)
+ **/
+
+ function printListItems(list, config, indentation, depth, refs, printer) {
+ var result = '';
+ if (list.length) {
+ result += config.spacingOuter;
+ var indentationNext = indentation + config.indent;
+ for (var i = 0; i < list.length; i++) {
+ result += indentationNext + printer(list[i], config, indentationNext, depth, refs);
+ if (i < list.length - 1) {
+ result += ',' + config.spacingInner;
+ } else if (!config.min) {
+ result += ',';
+ }
+ }
+ result += config.spacingOuter + indentation;
+ }
+ return result;
+ }
+ /**
+ * Return properties of an object
+ * with spacing, indentation, and comma
+ * without surrounding punctuation (for example, braces)
+ */
+
+ function printObjectProperties(val, config, indentation, depth, refs, printer) {
+ var result = '';
+ var keys = getKeysOfEnumerableProperties(val);
+ if (keys.length) {
+ result += config.spacingOuter;
+ var indentationNext = indentation + config.indent;
+ for (var i = 0; i < keys.length; i++) {
+ var key = keys[i];
+ var name = printer(key, config, indentationNext, depth, refs);
+ var value = printer(val[key], config, indentationNext, depth, refs);
+ result += indentationNext + name + ': ' + value;
+ if (i < keys.length - 1) {
+ result += ',' + config.spacingInner;
+ } else if (!config.min) {
+ result += ',';
+ }
+ }
+ result += config.spacingOuter + indentation;
+ }
+ return result;
+ }
+},122,[],"node_modules\\react-native\\node_modules\\pretty-format\\build\\collections.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ Object.defineProperty(exports, '__esModule', {
+ value: true
+ });
+ exports.default = exports.serialize = exports.test = void 0;
+ var _ansiRegex = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[0], "ansi-regex"));
+ var _ansiStyles = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "ansi-styles"));
+ function _interopRequireDefault(obj) {
+ return obj && obj.__esModule ? obj : {
+ default: obj
+ };
+ }
+
+ /**
+ * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+ var toHumanReadableAnsi = function toHumanReadableAnsi(text) {
+ return text.replace((0, _ansiRegex.default)(), function (match) {
+ switch (match) {
+ case _ansiStyles.default.red.close:
+ case _ansiStyles.default.green.close:
+ case _ansiStyles.default.cyan.close:
+ case _ansiStyles.default.gray.close:
+ case _ansiStyles.default.white.close:
+ case _ansiStyles.default.yellow.close:
+ case _ansiStyles.default.bgRed.close:
+ case _ansiStyles.default.bgGreen.close:
+ case _ansiStyles.default.bgYellow.close:
+ case _ansiStyles.default.inverse.close:
+ case _ansiStyles.default.dim.close:
+ case _ansiStyles.default.bold.close:
+ case _ansiStyles.default.reset.open:
+ case _ansiStyles.default.reset.close:
+ return '>';
+ case _ansiStyles.default.red.open:
+ return '';
+ case _ansiStyles.default.green.open:
+ return '';
+ case _ansiStyles.default.cyan.open:
+ return '';
+ case _ansiStyles.default.gray.open:
+ return '';
+ case _ansiStyles.default.white.open:
+ return '';
+ case _ansiStyles.default.yellow.open:
+ return '';
+ case _ansiStyles.default.bgRed.open:
+ return '';
+ case _ansiStyles.default.bgGreen.open:
+ return '';
+ case _ansiStyles.default.bgYellow.open:
+ return '';
+ case _ansiStyles.default.inverse.open:
+ return '';
+ case _ansiStyles.default.dim.open:
+ return '';
+ case _ansiStyles.default.bold.open:
+ return '';
+ default:
+ return '';
+ }
+ });
+ };
+ var test = function test(val) {
+ return typeof val === 'string' && !!val.match((0, _ansiRegex.default)());
+ };
+ exports.test = test;
+ var serialize = function serialize(val, config, indentation, depth, refs, printer) {
+ return printer(toHumanReadableAnsi(val), config, indentation, depth, refs);
+ };
+ exports.serialize = serialize;
+ var plugin = {
+ serialize: serialize,
+ test: test
+ };
+ var _default = plugin;
+ exports.default = _default;
+},123,[111,116],"node_modules\\react-native\\node_modules\\pretty-format\\build\\plugins\\ConvertAnsi.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ Object.defineProperty(exports, '__esModule', {
+ value: true
+ });
+ exports.default = exports.serialize = exports.test = void 0;
+ /**
+ * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+ /* eslint-disable local/ban-types-eventually */
+ var SPACE = ' ';
+ var OBJECT_NAMES = ['DOMStringMap', 'NamedNodeMap'];
+ var ARRAY_REGEXP = /^(HTML\w*Collection|NodeList)$/;
+ var testName = function testName(name) {
+ return OBJECT_NAMES.indexOf(name) !== -1 || ARRAY_REGEXP.test(name);
+ };
+ var test = function test(val) {
+ return val && val.constructor && !!val.constructor.name && testName(val.constructor.name);
+ };
+ exports.test = test;
+ var isNamedNodeMap = function isNamedNodeMap(collection) {
+ return collection.constructor.name === 'NamedNodeMap';
+ };
+ var serialize = function serialize(collection, config, indentation, depth, refs, printer) {
+ var name = collection.constructor.name;
+ if (++depth > config.maxDepth) {
+ return '[' + name + ']';
+ }
+ return (config.min ? '' : name + SPACE) + (OBJECT_NAMES.indexOf(name) !== -1 ? '{' + (0, _$$_REQUIRE(_dependencyMap[0], "../collections").printObjectProperties)(isNamedNodeMap(collection) ? Array.from(collection).reduce(function (props, attribute) {
+ props[attribute.name] = attribute.value;
+ return props;
+ }, {}) : Object.assign({}, collection), config, indentation, depth, refs, printer) + '}' : '[' + (0, _$$_REQUIRE(_dependencyMap[0], "../collections").printListItems)(Array.from(collection), config, indentation, depth, refs, printer) + ']');
+ };
+ exports.serialize = serialize;
+ var plugin = {
+ serialize: serialize,
+ test: test
+ };
+ var _default = plugin;
+ exports.default = _default;
+},124,[122],"node_modules\\react-native\\node_modules\\pretty-format\\build\\plugins\\DOMCollection.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ Object.defineProperty(exports, '__esModule', {
+ value: true
+ });
+ exports.default = exports.serialize = exports.test = void 0;
+ /**
+ * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+ var ELEMENT_NODE = 1;
+ var TEXT_NODE = 3;
+ var COMMENT_NODE = 8;
+ var FRAGMENT_NODE = 11;
+ var ELEMENT_REGEXP = /^((HTML|SVG)\w*)?Element$/;
+ var testNode = function testNode(val) {
+ var _val$hasAttribute;
+ var constructorName = val.constructor.name;
+ var nodeType = val.nodeType,
+ tagName = val.tagName;
+ var isCustomElement = typeof tagName === 'string' && tagName.includes('-') || ((_val$hasAttribute = val.hasAttribute) === null || _val$hasAttribute === void 0 ? void 0 : _val$hasAttribute.call(val, 'is'));
+ return nodeType === ELEMENT_NODE && (ELEMENT_REGEXP.test(constructorName) || isCustomElement) || nodeType === TEXT_NODE && constructorName === 'Text' || nodeType === COMMENT_NODE && constructorName === 'Comment' || nodeType === FRAGMENT_NODE && constructorName === 'DocumentFragment';
+ };
+ var test = function test(val) {
+ var _val$constructor;
+ return (val === null || val === void 0 ? void 0 : (_val$constructor = val.constructor) === null || _val$constructor === void 0 ? void 0 : _val$constructor.name) && testNode(val);
+ };
+ exports.test = test;
+ function nodeIsText(node) {
+ return node.nodeType === TEXT_NODE;
+ }
+ function nodeIsComment(node) {
+ return node.nodeType === COMMENT_NODE;
+ }
+ function nodeIsFragment(node) {
+ return node.nodeType === FRAGMENT_NODE;
+ }
+ var serialize = function serialize(node, config, indentation, depth, refs, printer) {
+ if (nodeIsText(node)) {
+ return (0, _$$_REQUIRE(_dependencyMap[0], "./lib/markup").printText)(node.data, config);
+ }
+ if (nodeIsComment(node)) {
+ return (0, _$$_REQUIRE(_dependencyMap[0], "./lib/markup").printComment)(node.data, config);
+ }
+ var type = nodeIsFragment(node) ? `DocumentFragment` : node.tagName.toLowerCase();
+ if (++depth > config.maxDepth) {
+ return (0, _$$_REQUIRE(_dependencyMap[0], "./lib/markup").printElementAsLeaf)(type, config);
+ }
+ return (0, _$$_REQUIRE(_dependencyMap[0], "./lib/markup").printElement)(type, (0, _$$_REQUIRE(_dependencyMap[0], "./lib/markup").printProps)(nodeIsFragment(node) ? [] : Array.from(node.attributes).map(function (attr) {
+ return attr.name;
+ }).sort(), nodeIsFragment(node) ? {} : Array.from(node.attributes).reduce(function (props, attribute) {
+ props[attribute.name] = attribute.value;
+ return props;
+ }, {}), config, indentation + config.indent, depth, refs, printer), (0, _$$_REQUIRE(_dependencyMap[0], "./lib/markup").printChildren)(Array.prototype.slice.call(node.childNodes || node.children), config, indentation + config.indent, depth, refs, printer), config, indentation);
+ };
+ exports.serialize = serialize;
+ var plugin = {
+ serialize: serialize,
+ test: test
+ };
+ var _default = plugin;
+ exports.default = _default;
+},125,[126],"node_modules\\react-native\\node_modules\\pretty-format\\build\\plugins\\DOMElement.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ Object.defineProperty(exports, '__esModule', {
+ value: true
+ });
+ exports.printElementAsLeaf = exports.printElement = exports.printComment = exports.printText = exports.printChildren = exports.printProps = void 0;
+ var _escapeHTML = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[0], "./escapeHTML"));
+ function _interopRequireDefault(obj) {
+ return obj && obj.__esModule ? obj : {
+ default: obj
+ };
+ }
+
+ /**
+ * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+ // Return empty string if keys is empty.
+ var printProps = function printProps(keys, props, config, indentation, depth, refs, printer) {
+ var indentationNext = indentation + config.indent;
+ var colors = config.colors;
+ return keys.map(function (key) {
+ var value = props[key];
+ var printed = printer(value, config, indentationNext, depth, refs);
+ if (typeof value !== 'string') {
+ if (printed.indexOf('\n') !== -1) {
+ printed = config.spacingOuter + indentationNext + printed + config.spacingOuter + indentation;
+ }
+ printed = '{' + printed + '}';
+ }
+ return config.spacingInner + indentation + colors.prop.open + key + colors.prop.close + '=' + colors.value.open + printed + colors.value.close;
+ }).join('');
+ }; // Return empty string if children is empty.
+
+ exports.printProps = printProps;
+ var printChildren = function printChildren(children, config, indentation, depth, refs, printer) {
+ return children.map(function (child) {
+ return config.spacingOuter + indentation + (typeof child === 'string' ? printText(child, config) : printer(child, config, indentation, depth, refs));
+ }).join('');
+ };
+ exports.printChildren = printChildren;
+ var printText = function printText(text, config) {
+ var contentColor = config.colors.content;
+ return contentColor.open + (0, _escapeHTML.default)(text) + contentColor.close;
+ };
+ exports.printText = printText;
+ var printComment = function printComment(comment, config) {
+ var commentColor = config.colors.comment;
+ return commentColor.open + '' + commentColor.close;
+ }; // Separate the functions to format props, children, and element,
+ // so a plugin could override a particular function, if needed.
+ // Too bad, so sad: the traditional (but unnecessary) space
+ // in a self-closing tagColor requires a second test of printedProps.
+
+ exports.printComment = printComment;
+ var printElement = function printElement(type, printedProps, printedChildren, config, indentation) {
+ var tagColor = config.colors.tag;
+ return tagColor.open + '<' + type + (printedProps && tagColor.close + printedProps + config.spacingOuter + indentation + tagColor.open) + (printedChildren ? '>' + tagColor.close + printedChildren + config.spacingOuter + indentation + tagColor.open + '' + type : (printedProps && !config.min ? '' : ' ') + '/') + '>' + tagColor.close;
+ };
+ exports.printElement = printElement;
+ var printElementAsLeaf = function printElementAsLeaf(type, config) {
+ var tagColor = config.colors.tag;
+ return tagColor.open + '<' + type + tagColor.close + ' …' + tagColor.open + ' />' + tagColor.close;
+ };
+ exports.printElementAsLeaf = printElementAsLeaf;
+},126,[127],"node_modules\\react-native\\node_modules\\pretty-format\\build\\plugins\\lib\\markup.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ Object.defineProperty(exports, '__esModule', {
+ value: true
+ });
+ exports.default = escapeHTML;
+
+ /**
+ * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+ function escapeHTML(str) {
+ return str.replace(//g, '>');
+ }
+},127,[],"node_modules\\react-native\\node_modules\\pretty-format\\build\\plugins\\lib\\escapeHTML.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ Object.defineProperty(exports, '__esModule', {
+ value: true
+ });
+ exports.default = exports.test = exports.serialize = void 0;
+ /**
+ * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+ // SENTINEL constants are from https://github.com/facebook/immutable-js
+ var IS_ITERABLE_SENTINEL = '@@__IMMUTABLE_ITERABLE__@@';
+ var IS_LIST_SENTINEL = '@@__IMMUTABLE_LIST__@@';
+ var IS_KEYED_SENTINEL = '@@__IMMUTABLE_KEYED__@@';
+ var IS_MAP_SENTINEL = '@@__IMMUTABLE_MAP__@@';
+ var IS_ORDERED_SENTINEL = '@@__IMMUTABLE_ORDERED__@@';
+ var IS_RECORD_SENTINEL = '@@__IMMUTABLE_RECORD__@@'; // immutable v4
+
+ var IS_SEQ_SENTINEL = '@@__IMMUTABLE_SEQ__@@';
+ var IS_SET_SENTINEL = '@@__IMMUTABLE_SET__@@';
+ var IS_STACK_SENTINEL = '@@__IMMUTABLE_STACK__@@';
+ var getImmutableName = function getImmutableName(name) {
+ return 'Immutable.' + name;
+ };
+ var printAsLeaf = function printAsLeaf(name) {
+ return '[' + name + ']';
+ };
+ var SPACE = ' ';
+ var LAZY = '…'; // Seq is lazy if it calls a method like filter
+
+ var printImmutableEntries = function printImmutableEntries(val, config, indentation, depth, refs, printer, type) {
+ return ++depth > config.maxDepth ? printAsLeaf(getImmutableName(type)) : getImmutableName(type) + SPACE + '{' + (0, _$$_REQUIRE(_dependencyMap[0], "../collections").printIteratorEntries)(val.entries(), config, indentation, depth, refs, printer) + '}';
+ }; // Record has an entries method because it is a collection in immutable v3.
+ // Return an iterator for Immutable Record from version v3 or v4.
+
+ function getRecordEntries(val) {
+ var i = 0;
+ return {
+ next: function next() {
+ if (i < val._keys.length) {
+ var key = val._keys[i++];
+ return {
+ done: false,
+ value: [key, val.get(key)]
+ };
+ }
+ return {
+ done: true,
+ value: undefined
+ };
+ }
+ };
+ }
+ var printImmutableRecord = function printImmutableRecord(val, config, indentation, depth, refs, printer) {
+ // _name property is defined only for an Immutable Record instance
+ // which was constructed with a second optional descriptive name arg
+ var name = getImmutableName(val._name || 'Record');
+ return ++depth > config.maxDepth ? printAsLeaf(name) : name + SPACE + '{' + (0, _$$_REQUIRE(_dependencyMap[0], "../collections").printIteratorEntries)(getRecordEntries(val), config, indentation, depth, refs, printer) + '}';
+ };
+ var printImmutableSeq = function printImmutableSeq(val, config, indentation, depth, refs, printer) {
+ var name = getImmutableName('Seq');
+ if (++depth > config.maxDepth) {
+ return printAsLeaf(name);
+ }
+ if (val[IS_KEYED_SENTINEL]) {
+ return name + SPACE + '{' + (
+ // from Immutable collection of entries or from ECMAScript object
+ val._iter || val._object ? (0, _$$_REQUIRE(_dependencyMap[0], "../collections").printIteratorEntries)(val.entries(), config, indentation, depth, refs, printer) : LAZY) + '}';
+ }
+ return name + SPACE + '[' + (val._iter ||
+ // from Immutable collection of values
+ val._array ||
+ // from ECMAScript array
+ val._collection ||
+ // from ECMAScript collection in immutable v4
+ val._iterable // from ECMAScript collection in immutable v3
+ ? (0, _$$_REQUIRE(_dependencyMap[0], "../collections").printIteratorValues)(val.values(), config, indentation, depth, refs, printer) : LAZY) + ']';
+ };
+ var printImmutableValues = function printImmutableValues(val, config, indentation, depth, refs, printer, type) {
+ return ++depth > config.maxDepth ? printAsLeaf(getImmutableName(type)) : getImmutableName(type) + SPACE + '[' + (0, _$$_REQUIRE(_dependencyMap[0], "../collections").printIteratorValues)(val.values(), config, indentation, depth, refs, printer) + ']';
+ };
+ var serialize = function serialize(val, config, indentation, depth, refs, printer) {
+ if (val[IS_MAP_SENTINEL]) {
+ return printImmutableEntries(val, config, indentation, depth, refs, printer, val[IS_ORDERED_SENTINEL] ? 'OrderedMap' : 'Map');
+ }
+ if (val[IS_LIST_SENTINEL]) {
+ return printImmutableValues(val, config, indentation, depth, refs, printer, 'List');
+ }
+ if (val[IS_SET_SENTINEL]) {
+ return printImmutableValues(val, config, indentation, depth, refs, printer, val[IS_ORDERED_SENTINEL] ? 'OrderedSet' : 'Set');
+ }
+ if (val[IS_STACK_SENTINEL]) {
+ return printImmutableValues(val, config, indentation, depth, refs, printer, 'Stack');
+ }
+ if (val[IS_SEQ_SENTINEL]) {
+ return printImmutableSeq(val, config, indentation, depth, refs, printer);
+ } // For compatibility with immutable v3 and v4, let record be the default.
+
+ return printImmutableRecord(val, config, indentation, depth, refs, printer);
+ }; // Explicitly comparing sentinel properties to true avoids false positive
+ // when mock identity-obj-proxy returns the key as the value for any key.
+
+ exports.serialize = serialize;
+ var test = function test(val) {
+ return val && (val[IS_ITERABLE_SENTINEL] === true || val[IS_RECORD_SENTINEL] === true);
+ };
+ exports.test = test;
+ var plugin = {
+ serialize: serialize,
+ test: test
+ };
+ var _default = plugin;
+ exports.default = _default;
+},128,[122],"node_modules\\react-native\\node_modules\\pretty-format\\build\\plugins\\Immutable.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ Object.defineProperty(exports, '__esModule', {
+ value: true
+ });
+ exports.default = exports.test = exports.serialize = void 0;
+ var ReactIs = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "react-is"));
+ function _getRequireWildcardCache() {
+ if (typeof WeakMap !== 'function') return null;
+ var cache = new WeakMap();
+ _getRequireWildcardCache = function _getRequireWildcardCache() {
+ return cache;
+ };
+ return cache;
+ }
+ function _interopRequireWildcard(obj) {
+ if (obj && obj.__esModule) {
+ return obj;
+ }
+ if (obj === null || typeof obj !== 'object' && typeof obj !== 'function') {
+ return {
+ default: obj
+ };
+ }
+ var cache = _getRequireWildcardCache();
+ if (cache && cache.has(obj)) {
+ return cache.get(obj);
+ }
+ var newObj = {};
+ var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
+ for (var key in obj) {
+ if (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;
+ }
+
+ /**
+ * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+ // Given element.props.children, or subtree during recursive traversal,
+ // return flattened array of children.
+ var _getChildren = function getChildren(arg) {
+ var children = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
+ if (Array.isArray(arg)) {
+ arg.forEach(function (item) {
+ _getChildren(item, children);
+ });
+ } else if (arg != null && arg !== false) {
+ children.push(arg);
+ }
+ return children;
+ };
+ var getType = function getType(element) {
+ var type = element.type;
+ if (typeof type === 'string') {
+ return type;
+ }
+ if (typeof type === 'function') {
+ return type.displayName || type.name || 'Unknown';
+ }
+ if (ReactIs.isFragment(element)) {
+ return 'React.Fragment';
+ }
+ if (ReactIs.isSuspense(element)) {
+ return 'React.Suspense';
+ }
+ if (typeof type === 'object' && type !== null) {
+ if (ReactIs.isContextProvider(element)) {
+ return 'Context.Provider';
+ }
+ if (ReactIs.isContextConsumer(element)) {
+ return 'Context.Consumer';
+ }
+ if (ReactIs.isForwardRef(element)) {
+ if (type.displayName) {
+ return type.displayName;
+ }
+ var functionName = type.render.displayName || type.render.name || '';
+ return functionName !== '' ? 'ForwardRef(' + functionName + ')' : 'ForwardRef';
+ }
+ if (ReactIs.isMemo(element)) {
+ var _functionName = type.displayName || type.type.displayName || type.type.name || '';
+ return _functionName !== '' ? 'Memo(' + _functionName + ')' : 'Memo';
+ }
+ }
+ return 'UNDEFINED';
+ };
+ var getPropKeys = function getPropKeys(element) {
+ var props = element.props;
+ return Object.keys(props).filter(function (key) {
+ return key !== 'children' && props[key] !== undefined;
+ }).sort();
+ };
+ var serialize = function serialize(element, config, indentation, depth, refs, printer) {
+ return ++depth > config.maxDepth ? (0, _$$_REQUIRE(_dependencyMap[1], "./lib/markup").printElementAsLeaf)(getType(element), config) : (0, _$$_REQUIRE(_dependencyMap[1], "./lib/markup").printElement)(getType(element), (0, _$$_REQUIRE(_dependencyMap[1], "./lib/markup").printProps)(getPropKeys(element), element.props, config, indentation + config.indent, depth, refs, printer), (0, _$$_REQUIRE(_dependencyMap[1], "./lib/markup").printChildren)(_getChildren(element.props.children), config, indentation + config.indent, depth, refs, printer), config, indentation);
+ };
+ exports.serialize = serialize;
+ var test = function test(val) {
+ return val && ReactIs.isElement(val);
+ };
+ exports.test = test;
+ var plugin = {
+ serialize: serialize,
+ test: test
+ };
+ var _default = plugin;
+ exports.default = _default;
+},129,[130,126],"node_modules\\react-native\\node_modules\\pretty-format\\build\\plugins\\ReactElement.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ if (process.env.NODE_ENV === 'production') {
+ module.exports = _$$_REQUIRE(_dependencyMap[0], "./cjs/react-is.production.min.js");
+ } else {
+ module.exports = _$$_REQUIRE(_dependencyMap[1], "./cjs/react-is.development.js");
+ }
+},130,[131,132],"node_modules\\react-native\\node_modules\\react-is\\index.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /** @license React v17.0.2
+ * react-is.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 b = 60103,
+ c = 60106,
+ d = 60107,
+ e = 60108,
+ f = 60114,
+ g = 60109,
+ h = 60110,
+ k = 60112,
+ l = 60113,
+ m = 60120,
+ n = 60115,
+ p = 60116,
+ q = 60121,
+ r = 60122,
+ u = 60117,
+ v = 60129,
+ w = 60131;
+ if ("function" === typeof Symbol && Symbol.for) {
+ var x = Symbol.for;
+ b = x("react.element");
+ c = x("react.portal");
+ d = x("react.fragment");
+ e = x("react.strict_mode");
+ f = x("react.profiler");
+ g = x("react.provider");
+ h = x("react.context");
+ k = x("react.forward_ref");
+ l = x("react.suspense");
+ m = x("react.suspense_list");
+ n = x("react.memo");
+ p = x("react.lazy");
+ q = x("react.block");
+ r = x("react.server.block");
+ u = x("react.fundamental");
+ v = x("react.debug_trace_mode");
+ w = x("react.legacy_hidden");
+ }
+ function y(a) {
+ if ("object" === typeof a && null !== a) {
+ var t = a.$$typeof;
+ switch (t) {
+ case b:
+ switch (a = a.type, a) {
+ case d:
+ case f:
+ case e:
+ case l:
+ case m:
+ return a;
+ default:
+ switch (a = a && a.$$typeof, a) {
+ case h:
+ case k:
+ case p:
+ case n:
+ case g:
+ return a;
+ default:
+ return t;
+ }
+ }
+ case c:
+ return t;
+ }
+ }
+ }
+ var z = g,
+ A = b,
+ B = k,
+ C = d,
+ D = p,
+ E = n,
+ F = c,
+ G = f,
+ H = e,
+ I = l;
+ exports.ContextConsumer = h;
+ exports.ContextProvider = z;
+ exports.Element = A;
+ exports.ForwardRef = B;
+ exports.Fragment = C;
+ exports.Lazy = D;
+ exports.Memo = E;
+ exports.Portal = F;
+ exports.Profiler = G;
+ exports.StrictMode = H;
+ exports.Suspense = I;
+ exports.isAsyncMode = function () {
+ return !1;
+ };
+ exports.isConcurrentMode = function () {
+ return !1;
+ };
+ exports.isContextConsumer = function (a) {
+ return y(a) === h;
+ };
+ exports.isContextProvider = function (a) {
+ return y(a) === g;
+ };
+ exports.isElement = function (a) {
+ return "object" === typeof a && null !== a && a.$$typeof === b;
+ };
+ exports.isForwardRef = function (a) {
+ return y(a) === k;
+ };
+ exports.isFragment = function (a) {
+ return y(a) === d;
+ };
+ exports.isLazy = function (a) {
+ return y(a) === p;
+ };
+ exports.isMemo = function (a) {
+ return y(a) === n;
+ };
+ exports.isPortal = function (a) {
+ return y(a) === c;
+ };
+ exports.isProfiler = function (a) {
+ return y(a) === f;
+ };
+ exports.isStrictMode = function (a) {
+ return y(a) === e;
+ };
+ exports.isSuspense = function (a) {
+ return y(a) === l;
+ };
+ exports.isValidElementType = function (a) {
+ return "string" === typeof a || "function" === typeof a || a === d || a === f || a === v || a === e || a === l || a === m || a === w || "object" === typeof a && null !== a && (a.$$typeof === p || a.$$typeof === n || a.$$typeof === g || a.$$typeof === h || a.$$typeof === k || a.$$typeof === u || a.$$typeof === q || a[0] === r) ? !0 : !1;
+ };
+ exports.typeOf = y;
+},131,[],"node_modules\\react-native\\node_modules\\react-is\\cjs\\react-is.production.min.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /** @license React v17.0.2
+ * react-is.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';
+
+ // ATTENTION
+ // When adding new symbols to this file,
+ // Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols'
+ // 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 REACT_ELEMENT_TYPE = 0xeac7;
+ var REACT_PORTAL_TYPE = 0xeaca;
+ var REACT_FRAGMENT_TYPE = 0xeacb;
+ var REACT_STRICT_MODE_TYPE = 0xeacc;
+ var REACT_PROFILER_TYPE = 0xead2;
+ var REACT_PROVIDER_TYPE = 0xeacd;
+ var REACT_CONTEXT_TYPE = 0xeace;
+ var REACT_FORWARD_REF_TYPE = 0xead0;
+ var REACT_SUSPENSE_TYPE = 0xead1;
+ var REACT_SUSPENSE_LIST_TYPE = 0xead8;
+ var REACT_MEMO_TYPE = 0xead3;
+ var REACT_LAZY_TYPE = 0xead4;
+ var REACT_BLOCK_TYPE = 0xead9;
+ var REACT_SERVER_BLOCK_TYPE = 0xeada;
+ var REACT_FUNDAMENTAL_TYPE = 0xead5;
+ var REACT_SCOPE_TYPE = 0xead7;
+ var REACT_OPAQUE_ID_TYPE = 0xeae0;
+ var REACT_DEBUG_TRACING_MODE_TYPE = 0xeae1;
+ var REACT_OFFSCREEN_TYPE = 0xeae2;
+ var REACT_LEGACY_HIDDEN_TYPE = 0xeae3;
+ if (typeof Symbol === 'function' && Symbol.for) {
+ var symbolFor = Symbol.for;
+ REACT_ELEMENT_TYPE = symbolFor('react.element');
+ REACT_PORTAL_TYPE = symbolFor('react.portal');
+ REACT_FRAGMENT_TYPE = symbolFor('react.fragment');
+ REACT_STRICT_MODE_TYPE = symbolFor('react.strict_mode');
+ REACT_PROFILER_TYPE = symbolFor('react.profiler');
+ REACT_PROVIDER_TYPE = symbolFor('react.provider');
+ REACT_CONTEXT_TYPE = symbolFor('react.context');
+ REACT_FORWARD_REF_TYPE = symbolFor('react.forward_ref');
+ REACT_SUSPENSE_TYPE = symbolFor('react.suspense');
+ REACT_SUSPENSE_LIST_TYPE = symbolFor('react.suspense_list');
+ REACT_MEMO_TYPE = symbolFor('react.memo');
+ REACT_LAZY_TYPE = symbolFor('react.lazy');
+ REACT_BLOCK_TYPE = symbolFor('react.block');
+ REACT_SERVER_BLOCK_TYPE = symbolFor('react.server.block');
+ REACT_FUNDAMENTAL_TYPE = symbolFor('react.fundamental');
+ REACT_SCOPE_TYPE = symbolFor('react.scope');
+ REACT_OPAQUE_ID_TYPE = symbolFor('react.opaque.id');
+ REACT_DEBUG_TRACING_MODE_TYPE = symbolFor('react.debug_trace_mode');
+ REACT_OFFSCREEN_TYPE = symbolFor('react.offscreen');
+ REACT_LEGACY_HIDDEN_TYPE = symbolFor('react.legacy_hidden');
+ }
+
+ // Filter certain DOM attributes (e.g. src, href) if their values are empty strings.
+
+ var enableScopeAPI = false; // Experimental Create Event Handle API.
+
+ function isValidElementType(type) {
+ if (typeof type === 'string' || typeof type === 'function') {
+ return true;
+ } // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill).
+
+ if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || type === REACT_DEBUG_TRACING_MODE_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || enableScopeAPI) {
+ return true;
+ }
+ if (typeof type === 'object' && type !== null) {
+ if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_BLOCK_TYPE || type[0] === REACT_SERVER_BLOCK_TYPE) {
+ return true;
+ }
+ }
+ return false;
+ }
+ 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_FRAGMENT_TYPE:
+ case REACT_PROFILER_TYPE:
+ case REACT_STRICT_MODE_TYPE:
+ case REACT_SUSPENSE_TYPE:
+ case REACT_SUSPENSE_LIST_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;
+ }
+ var ContextConsumer = REACT_CONTEXT_TYPE;
+ var ContextProvider = REACT_PROVIDER_TYPE;
+ var Element = REACT_ELEMENT_TYPE;
+ var ForwardRef = REACT_FORWARD_REF_TYPE;
+ var Fragment = REACT_FRAGMENT_TYPE;
+ var Lazy = REACT_LAZY_TYPE;
+ var Memo = REACT_MEMO_TYPE;
+ var Portal = REACT_PORTAL_TYPE;
+ var Profiler = REACT_PROFILER_TYPE;
+ var StrictMode = REACT_STRICT_MODE_TYPE;
+ var Suspense = REACT_SUSPENSE_TYPE;
+ var hasWarnedAboutDeprecatedIsAsyncMode = false;
+ var hasWarnedAboutDeprecatedIsConcurrentMode = false; // AsyncMode should be deprecated
+
+ function isAsyncMode(object) {
+ {
+ if (!hasWarnedAboutDeprecatedIsAsyncMode) {
+ hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint
+
+ console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 18+.');
+ }
+ }
+ return false;
+ }
+ function isConcurrentMode(object) {
+ {
+ if (!hasWarnedAboutDeprecatedIsConcurrentMode) {
+ hasWarnedAboutDeprecatedIsConcurrentMode = true; // Using console['warn'] to evade Babel and ESLint
+
+ console['warn']('The ReactIs.isConcurrentMode() alias has been deprecated, ' + 'and will be removed in React 18+.');
+ }
+ }
+ return false;
+ }
+ function isContextConsumer(object) {
+ return typeOf(object) === REACT_CONTEXT_TYPE;
+ }
+ function isContextProvider(object) {
+ return typeOf(object) === REACT_PROVIDER_TYPE;
+ }
+ function isElement(object) {
+ return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
+ }
+ function isForwardRef(object) {
+ return typeOf(object) === REACT_FORWARD_REF_TYPE;
+ }
+ function isFragment(object) {
+ return typeOf(object) === REACT_FRAGMENT_TYPE;
+ }
+ function isLazy(object) {
+ return typeOf(object) === REACT_LAZY_TYPE;
+ }
+ function isMemo(object) {
+ return typeOf(object) === REACT_MEMO_TYPE;
+ }
+ function isPortal(object) {
+ return typeOf(object) === REACT_PORTAL_TYPE;
+ }
+ function isProfiler(object) {
+ return typeOf(object) === REACT_PROFILER_TYPE;
+ }
+ function isStrictMode(object) {
+ return typeOf(object) === REACT_STRICT_MODE_TYPE;
+ }
+ function isSuspense(object) {
+ return typeOf(object) === REACT_SUSPENSE_TYPE;
+ }
+ exports.ContextConsumer = ContextConsumer;
+ exports.ContextProvider = ContextProvider;
+ exports.Element = Element;
+ exports.ForwardRef = ForwardRef;
+ exports.Fragment = Fragment;
+ exports.Lazy = Lazy;
+ exports.Memo = Memo;
+ exports.Portal = Portal;
+ exports.Profiler = Profiler;
+ exports.StrictMode = StrictMode;
+ exports.Suspense = Suspense;
+ exports.isAsyncMode = isAsyncMode;
+ exports.isConcurrentMode = isConcurrentMode;
+ exports.isContextConsumer = isContextConsumer;
+ exports.isContextProvider = isContextProvider;
+ exports.isElement = isElement;
+ exports.isForwardRef = isForwardRef;
+ exports.isFragment = isFragment;
+ exports.isLazy = isLazy;
+ exports.isMemo = isMemo;
+ exports.isPortal = isPortal;
+ exports.isProfiler = isProfiler;
+ exports.isStrictMode = isStrictMode;
+ exports.isSuspense = isSuspense;
+ exports.isValidElementType = isValidElementType;
+ exports.typeOf = typeOf;
+ })();
+ }
+},132,[],"node_modules\\react-native\\node_modules\\react-is\\cjs\\react-is.development.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ Object.defineProperty(exports, '__esModule', {
+ value: true
+ });
+ exports.default = exports.test = exports.serialize = void 0;
+ var Symbol = global['jest-symbol-do-not-touch'] || global.Symbol;
+ var testSymbol = typeof Symbol === 'function' && Symbol.for ? Symbol.for('react.test.json') : 0xea71357;
+ var getPropKeys = function getPropKeys(object) {
+ var props = object.props;
+ return props ? Object.keys(props).filter(function (key) {
+ return props[key] !== undefined;
+ }).sort() : [];
+ };
+ var serialize = function serialize(object, config, indentation, depth, refs, printer) {
+ return ++depth > config.maxDepth ? (0, _$$_REQUIRE(_dependencyMap[0], "./lib/markup").printElementAsLeaf)(object.type, config) : (0, _$$_REQUIRE(_dependencyMap[0], "./lib/markup").printElement)(object.type, object.props ? (0, _$$_REQUIRE(_dependencyMap[0], "./lib/markup").printProps)(getPropKeys(object), object.props, config, indentation + config.indent, depth, refs, printer) : '', object.children ? (0, _$$_REQUIRE(_dependencyMap[0], "./lib/markup").printChildren)(object.children, config, indentation + config.indent, depth, refs, printer) : '', config, indentation);
+ };
+ exports.serialize = serialize;
+ var test = function test(val) {
+ return val && val.$$typeof === testSymbol;
+ };
+ exports.test = test;
+ var plugin = {
+ serialize: serialize,
+ test: test
+ };
+ var _default = plugin;
+ exports.default = _default;
+},133,[126],"node_modules\\react-native\\node_modules\\pretty-format\\build\\plugins\\ReactTestComponent.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ 'use strict';
+
+ /**
+ * Sets an object's property. If a property with the same name exists, this will
+ * replace it but maintain its descriptor configuration. The property will be
+ * replaced with a lazy getter.
+ *
+ * In DEV mode the original property value will be preserved as `original[PropertyName]`
+ * so that, if necessary, it can be restored. For example, if you want to route
+ * network requests through DevTools (to trace them):
+ *
+ * global.XMLHttpRequest = global.originalXMLHttpRequest;
+ *
+ * @see https://github.com/facebook/react-native/issues/934
+ */
+ function polyfillObjectProperty(object, name, getValue) {
+ var descriptor = Object.getOwnPropertyDescriptor(object, name);
+ if (__DEV__ && descriptor) {
+ var backupName = `original${name[0].toUpperCase()}${name.slice(1)}`;
+ Object.defineProperty(object, backupName, descriptor);
+ }
+ var _ref = descriptor || {},
+ enumerable = _ref.enumerable,
+ writable = _ref.writable,
+ _ref$configurable = _ref.configurable,
+ configurable = _ref$configurable === void 0 ? false : _ref$configurable;
+ if (descriptor && !configurable) {
+ console.error('Failed to set polyfill. ' + name + ' is not configurable.');
+ return;
+ }
+ _$$_REQUIRE(_dependencyMap[0], "./defineLazyObjectProperty")(object, name, {
+ get: getValue,
+ enumerable: enumerable !== false,
+ writable: writable !== false
+ });
+ }
+ function polyfillGlobal(name, getValue) {
+ polyfillObjectProperty(global, name, getValue);
+ }
+ module.exports = {
+ polyfillObjectProperty: polyfillObjectProperty,
+ polyfillGlobal: polyfillGlobal
+ };
+},134,[49],"node_modules\\react-native\\Libraries\\Utilities\\PolyfillFunctions.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ 'use strict';
+
+ _$$_REQUIRE(_dependencyMap[0], "promise/setimmediate/finally");
+ if (__DEV__) {
+ _$$_REQUIRE(_dependencyMap[1], "promise/setimmediate/rejection-tracking").enable(_$$_REQUIRE(_dependencyMap[2], "./promiseRejectionTrackingOptions").default);
+ }
+ module.exports = _$$_REQUIRE(_dependencyMap[3], "promise/setimmediate/es6-extensions");
+},135,[136,138,114,139],"node_modules\\react-native\\Libraries\\Promise.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ module.exports = _$$_REQUIRE(_dependencyMap[0], "./core.js");
+ _$$_REQUIRE(_dependencyMap[0], "./core.js").prototype.finally = function (f) {
+ return this.then(function (value) {
+ return _$$_REQUIRE(_dependencyMap[0], "./core.js").resolve(f()).then(function () {
+ return value;
+ });
+ }, function (err) {
+ return _$$_REQUIRE(_dependencyMap[0], "./core.js").resolve(f()).then(function () {
+ throw err;
+ });
+ });
+ };
+},136,[137],"node_modules\\promise\\setimmediate\\finally.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ function noop() {}
+
+ // States:
+ //
+ // 0 - pending
+ // 1 - fulfilled with _value
+ // 2 - rejected with _value
+ // 3 - adopted the state of another promise, _value
+ //
+ // once the state is no longer pending (0) it is immutable
+
+ // All `_` prefixed properties will be reduced to `_{random number}`
+ // at build time to obfuscate them and discourage their use.
+ // We don't use symbols or Object.defineProperty to fully hide them
+ // because the performance isn't good enough.
+
+ // to avoid using try/catch inside critical functions, we
+ // extract them to here.
+ var LAST_ERROR = null;
+ var IS_ERROR = {};
+ function getThen(obj) {
+ try {
+ return obj.then;
+ } catch (ex) {
+ LAST_ERROR = ex;
+ return IS_ERROR;
+ }
+ }
+ function tryCallOne(fn, a) {
+ try {
+ return fn(a);
+ } catch (ex) {
+ LAST_ERROR = ex;
+ return IS_ERROR;
+ }
+ }
+ function tryCallTwo(fn, a, b) {
+ try {
+ fn(a, b);
+ } catch (ex) {
+ LAST_ERROR = ex;
+ return IS_ERROR;
+ }
+ }
+ module.exports = Promise;
+ function Promise(fn) {
+ if (typeof this !== 'object') {
+ throw new TypeError('Promises must be constructed via new');
+ }
+ if (typeof fn !== 'function') {
+ throw new TypeError('Promise constructor\'s argument is not a function');
+ }
+ this._x = 0;
+ this._y = 0;
+ this._z = null;
+ this._A = null;
+ if (fn === noop) return;
+ doResolve(fn, this);
+ }
+ Promise._B = null;
+ Promise._C = null;
+ Promise._D = noop;
+ Promise.prototype.then = function (onFulfilled, onRejected) {
+ if (this.constructor !== Promise) {
+ return safeThen(this, onFulfilled, onRejected);
+ }
+ var res = new Promise(noop);
+ handle(this, new Handler(onFulfilled, onRejected, res));
+ return res;
+ };
+ function safeThen(self, onFulfilled, onRejected) {
+ return new self.constructor(function (resolve, reject) {
+ var res = new Promise(noop);
+ res.then(resolve, reject);
+ handle(self, new Handler(onFulfilled, onRejected, res));
+ });
+ }
+ function handle(self, deferred) {
+ while (self._y === 3) {
+ self = self._z;
+ }
+ if (Promise._B) {
+ Promise._B(self);
+ }
+ if (self._y === 0) {
+ if (self._x === 0) {
+ self._x = 1;
+ self._A = deferred;
+ return;
+ }
+ if (self._x === 1) {
+ self._x = 2;
+ self._A = [self._A, deferred];
+ return;
+ }
+ self._A.push(deferred);
+ return;
+ }
+ handleResolved(self, deferred);
+ }
+ function handleResolved(self, deferred) {
+ setImmediate(function () {
+ var cb = self._y === 1 ? deferred.onFulfilled : deferred.onRejected;
+ if (cb === null) {
+ if (self._y === 1) {
+ resolve(deferred.promise, self._z);
+ } else {
+ reject(deferred.promise, self._z);
+ }
+ return;
+ }
+ var ret = tryCallOne(cb, self._z);
+ if (ret === IS_ERROR) {
+ reject(deferred.promise, LAST_ERROR);
+ } else {
+ resolve(deferred.promise, ret);
+ }
+ });
+ }
+ function resolve(self, newValue) {
+ // Promise Resolution Procedure: https://github.com/promises-aplus/promises-spec#the-promise-resolution-procedure
+ if (newValue === self) {
+ return reject(self, new TypeError('A promise cannot be resolved with itself.'));
+ }
+ if (newValue && (typeof newValue === 'object' || typeof newValue === 'function')) {
+ var then = getThen(newValue);
+ if (then === IS_ERROR) {
+ return reject(self, LAST_ERROR);
+ }
+ if (then === self.then && newValue instanceof Promise) {
+ self._y = 3;
+ self._z = newValue;
+ finale(self);
+ return;
+ } else if (typeof then === 'function') {
+ doResolve(then.bind(newValue), self);
+ return;
+ }
+ }
+ self._y = 1;
+ self._z = newValue;
+ finale(self);
+ }
+ function reject(self, newValue) {
+ self._y = 2;
+ self._z = newValue;
+ if (Promise._C) {
+ Promise._C(self, newValue);
+ }
+ finale(self);
+ }
+ function finale(self) {
+ if (self._x === 1) {
+ handle(self, self._A);
+ self._A = null;
+ }
+ if (self._x === 2) {
+ for (var i = 0; i < self._A.length; i++) {
+ handle(self, self._A[i]);
+ }
+ self._A = null;
+ }
+ }
+ function Handler(onFulfilled, onRejected, promise) {
+ this.onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : null;
+ this.onRejected = typeof onRejected === 'function' ? onRejected : null;
+ this.promise = promise;
+ }
+
+ /**
+ * Take a potentially misbehaving resolver function and make sure
+ * onFulfilled and onRejected are only called once.
+ *
+ * Makes no guarantees about asynchrony.
+ */
+ function doResolve(fn, promise) {
+ var done = false;
+ var res = tryCallTwo(fn, function (value) {
+ if (done) return;
+ done = true;
+ resolve(promise, value);
+ }, function (reason) {
+ if (done) return;
+ done = true;
+ reject(promise, reason);
+ });
+ if (!done && res === IS_ERROR) {
+ done = true;
+ reject(promise, LAST_ERROR);
+ }
+ }
+},137,[],"node_modules\\promise\\setimmediate\\core.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var DEFAULT_WHITELIST = [ReferenceError, TypeError, RangeError];
+ var enabled = false;
+ exports.disable = disable;
+ function disable() {
+ enabled = false;
+ _$$_REQUIRE(_dependencyMap[0], "./core")._B = null;
+ _$$_REQUIRE(_dependencyMap[0], "./core")._C = null;
+ }
+ exports.enable = enable;
+ function enable(options) {
+ options = options || {};
+ if (enabled) disable();
+ enabled = true;
+ var id = 0;
+ var displayId = 0;
+ var rejections = {};
+ _$$_REQUIRE(_dependencyMap[0], "./core")._B = function (promise) {
+ if (promise._y === 2 &&
+ // IS REJECTED
+ rejections[promise._E]) {
+ if (rejections[promise._E].logged) {
+ onHandled(promise._E);
+ } else {
+ clearTimeout(rejections[promise._E].timeout);
+ }
+ delete rejections[promise._E];
+ }
+ };
+ _$$_REQUIRE(_dependencyMap[0], "./core")._C = function (promise, err) {
+ if (promise._x === 0) {
+ // not yet handled
+ promise._E = id++;
+ rejections[promise._E] = {
+ displayId: null,
+ error: err,
+ timeout: setTimeout(onUnhandled.bind(null, promise._E),
+ // For reference errors and type errors, this almost always
+ // means the programmer made a mistake, so log them after just
+ // 100ms
+ // otherwise, wait 2 seconds to see if they get handled
+ matchWhitelist(err, DEFAULT_WHITELIST) ? 100 : 2000),
+ logged: false
+ };
+ }
+ };
+ function onUnhandled(id) {
+ if (options.allRejections || matchWhitelist(rejections[id].error, options.whitelist || DEFAULT_WHITELIST)) {
+ rejections[id].displayId = displayId++;
+ if (options.onUnhandled) {
+ rejections[id].logged = true;
+ options.onUnhandled(rejections[id].displayId, rejections[id].error);
+ } else {
+ rejections[id].logged = true;
+ logError(rejections[id].displayId, rejections[id].error);
+ }
+ }
+ }
+ function onHandled(id) {
+ if (rejections[id].logged) {
+ if (options.onHandled) {
+ options.onHandled(rejections[id].displayId, rejections[id].error);
+ } else if (!rejections[id].onUnhandled) {
+ console.warn('Promise Rejection Handled (id: ' + rejections[id].displayId + '):');
+ console.warn(' This means you can ignore any previous messages of the form "Possible Unhandled Promise Rejection" with id ' + rejections[id].displayId + '.');
+ }
+ }
+ }
+ }
+ function logError(id, error) {
+ console.warn('Possible Unhandled Promise Rejection (id: ' + id + '):');
+ var errStr = (error && (error.stack || error)) + '';
+ errStr.split('\n').forEach(function (line) {
+ console.warn(' ' + line);
+ });
+ }
+ function matchWhitelist(error, list) {
+ return list.some(function (cls) {
+ return error instanceof cls;
+ });
+ }
+},138,[137],"node_modules\\promise\\setimmediate\\rejection-tracking.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ //This file contains the ES6 extensions to the core Promises/A+ API
+ module.exports = _$$_REQUIRE(_dependencyMap[0], "./core.js");
+
+ /* Static Functions */
+
+ var TRUE = valuePromise(true);
+ var FALSE = valuePromise(false);
+ var NULL = valuePromise(null);
+ var UNDEFINED = valuePromise(undefined);
+ var ZERO = valuePromise(0);
+ var EMPTYSTRING = valuePromise('');
+ function valuePromise(value) {
+ var p = new (_$$_REQUIRE(_dependencyMap[0], "./core.js"))(_$$_REQUIRE(_dependencyMap[0], "./core.js")._D);
+ p._y = 1;
+ p._z = value;
+ return p;
+ }
+ _$$_REQUIRE(_dependencyMap[0], "./core.js").resolve = function (value) {
+ if (value instanceof _$$_REQUIRE(_dependencyMap[0], "./core.js")) return value;
+ if (value === null) return NULL;
+ if (value === undefined) return UNDEFINED;
+ if (value === true) return TRUE;
+ if (value === false) return FALSE;
+ if (value === 0) return ZERO;
+ if (value === '') return EMPTYSTRING;
+ if (typeof value === 'object' || typeof value === 'function') {
+ try {
+ var then = value.then;
+ if (typeof then === 'function') {
+ return new (_$$_REQUIRE(_dependencyMap[0], "./core.js"))(then.bind(value));
+ }
+ } catch (ex) {
+ return new (_$$_REQUIRE(_dependencyMap[0], "./core.js"))(function (resolve, reject) {
+ reject(ex);
+ });
+ }
+ }
+ return valuePromise(value);
+ };
+ var _iterableToArray = function iterableToArray(iterable) {
+ if (typeof Array.from === 'function') {
+ // ES2015+, iterables exist
+ _iterableToArray = Array.from;
+ return Array.from(iterable);
+ }
+
+ // ES5, only arrays and array-likes exist
+ _iterableToArray = function iterableToArray(x) {
+ return Array.prototype.slice.call(x);
+ };
+ return Array.prototype.slice.call(iterable);
+ };
+ _$$_REQUIRE(_dependencyMap[0], "./core.js").all = function (arr) {
+ var args = _iterableToArray(arr);
+ return new (_$$_REQUIRE(_dependencyMap[0], "./core.js"))(function (resolve, reject) {
+ if (args.length === 0) return resolve([]);
+ var remaining = args.length;
+ function res(i, val) {
+ if (val && (typeof val === 'object' || typeof val === 'function')) {
+ if (val instanceof _$$_REQUIRE(_dependencyMap[0], "./core.js") && val.then === _$$_REQUIRE(_dependencyMap[0], "./core.js").prototype.then) {
+ while (val._y === 3) {
+ val = val._z;
+ }
+ if (val._y === 1) return res(i, val._z);
+ if (val._y === 2) reject(val._z);
+ val.then(function (val) {
+ res(i, val);
+ }, reject);
+ return;
+ } else {
+ var then = val.then;
+ if (typeof then === 'function') {
+ var p = new (_$$_REQUIRE(_dependencyMap[0], "./core.js"))(then.bind(val));
+ p.then(function (val) {
+ res(i, val);
+ }, reject);
+ return;
+ }
+ }
+ }
+ args[i] = val;
+ if (--remaining === 0) {
+ resolve(args);
+ }
+ }
+ for (var i = 0; i < args.length; i++) {
+ res(i, args[i]);
+ }
+ });
+ };
+ function onSettledFulfill(value) {
+ return {
+ status: 'fulfilled',
+ value: value
+ };
+ }
+ function onSettledReject(reason) {
+ return {
+ status: 'rejected',
+ reason: reason
+ };
+ }
+ function mapAllSettled(item) {
+ if (item && (typeof item === 'object' || typeof item === 'function')) {
+ if (item instanceof _$$_REQUIRE(_dependencyMap[0], "./core.js") && item.then === _$$_REQUIRE(_dependencyMap[0], "./core.js").prototype.then) {
+ return item.then(onSettledFulfill, onSettledReject);
+ }
+ var then = item.then;
+ if (typeof then === 'function') {
+ return new (_$$_REQUIRE(_dependencyMap[0], "./core.js"))(then.bind(item)).then(onSettledFulfill, onSettledReject);
+ }
+ }
+ return onSettledFulfill(item);
+ }
+ _$$_REQUIRE(_dependencyMap[0], "./core.js").allSettled = function (iterable) {
+ return _$$_REQUIRE(_dependencyMap[0], "./core.js").all(_iterableToArray(iterable).map(mapAllSettled));
+ };
+ _$$_REQUIRE(_dependencyMap[0], "./core.js").reject = function (value) {
+ return new (_$$_REQUIRE(_dependencyMap[0], "./core.js"))(function (resolve, reject) {
+ reject(value);
+ });
+ };
+ _$$_REQUIRE(_dependencyMap[0], "./core.js").race = function (values) {
+ return new (_$$_REQUIRE(_dependencyMap[0], "./core.js"))(function (resolve, reject) {
+ _iterableToArray(values).forEach(function (value) {
+ _$$_REQUIRE(_dependencyMap[0], "./core.js").resolve(value).then(resolve, reject);
+ });
+ });
+ };
+
+ /* Prototype Methods */
+
+ _$$_REQUIRE(_dependencyMap[0], "./core.js").prototype['catch'] = function (onRejected) {
+ return this.then(null, onRejected);
+ };
+ function getAggregateError(errors) {
+ if (typeof AggregateError === 'function') {
+ return new AggregateError(errors, 'All promises were rejected');
+ }
+ var error = new Error('All promises were rejected');
+ error.name = 'AggregateError';
+ error.errors = errors;
+ return error;
+ }
+ _$$_REQUIRE(_dependencyMap[0], "./core.js").any = function promiseAny(values) {
+ return new (_$$_REQUIRE(_dependencyMap[0], "./core.js"))(function (resolve, reject) {
+ var promises = _iterableToArray(values);
+ var hasResolved = false;
+ var rejectionReasons = [];
+ function resolveOnce(value) {
+ if (!hasResolved) {
+ hasResolved = true;
+ resolve(value);
+ }
+ }
+ function rejectionCheck(reason) {
+ rejectionReasons.push(reason);
+ if (rejectionReasons.length === promises.length) {
+ reject(getAggregateError(rejectionReasons));
+ }
+ }
+ if (promises.length === 0) {
+ reject(getAggregateError(rejectionReasons));
+ } else {
+ promises.forEach(function (value) {
+ _$$_REQUIRE(_dependencyMap[0], "./core.js").resolve(value).then(resolveOnce, rejectionCheck);
+ });
+ }
+ });
+ };
+},139,[137],"node_modules\\promise\\setimmediate\\es6-extensions.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ 'use strict';
+
+ /**
+ * Set up regenerator.
+ * You can use this module directly, or just require InitializeCore.
+ */
+
+ var hasNativeGenerator;
+ try {
+ // If this function was lowered by regenerator-transform, it will try to
+ // access `global.regeneratorRuntime` which doesn't exist yet and will throw.
+ hasNativeGenerator = _$$_REQUIRE(_dependencyMap[0], "../Utilities/FeatureDetection").hasNativeConstructor(function* () {}, 'GeneratorFunction');
+ } catch (_unused) {
+ // In this case, we know generators are not provided natively.
+ hasNativeGenerator = false;
+ }
+
+ // If generators are provided natively, which suggests that there was no
+ // regenerator-transform, then there is no need to set up the runtime.
+ if (!hasNativeGenerator) {
+ _$$_REQUIRE(_dependencyMap[1], "../Utilities/PolyfillFunctions").polyfillGlobal('regeneratorRuntime', function () {
+ // The require just sets up the global, so make sure when we first
+ // invoke it the global does not exist
+ delete global.regeneratorRuntime;
+
+ // regenerator-runtime/runtime exports the regeneratorRuntime object, so we
+ // can return it safely.
+ return _$$_REQUIRE(_dependencyMap[2], "regenerator-runtime/runtime"); // flowlint-line untyped-import:off
+ });
+ }
+},140,[141,134,142],"node_modules\\react-native\\Libraries\\Core\\setUpRegeneratorRuntime.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ /**
+ * @return whether or not a @param {function} f is provided natively by calling
+ * `toString` and check if the result includes `[native code]` in it.
+ *
+ * Note that a polyfill can technically fake this behavior but few does it.
+ * Therefore, this is usually good enough for our purpose.
+ */
+ function isNativeFunction(f) {
+ return typeof f === 'function' && f.toString().indexOf('[native code]') > -1;
+ }
+
+ /**
+ * @return whether or not the constructor of @param {object} o is an native
+ * function named with @param {string} expectedName.
+ */
+ function hasNativeConstructor(o, expectedName) {
+ var con = Object.getPrototypeOf(o).constructor;
+ return con.name === expectedName && isNativeFunction(con);
+ }
+ module.exports = {
+ isNativeFunction: isNativeFunction,
+ hasNativeConstructor: hasNativeConstructor
+ };
+},141,[],"node_modules\\react-native\\Libraries\\Utilities\\FeatureDetection.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) 2014-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 runtime = function (exports) {
+ "use strict";
+
+ var Op = Object.prototype;
+ var hasOwn = Op.hasOwnProperty;
+ var defineProperty = Object.defineProperty || function (obj, key, desc) {
+ obj[key] = desc.value;
+ };
+ var undefined; // More compressible than void 0.
+ var $Symbol = typeof Symbol === "function" ? Symbol : {};
+ var iteratorSymbol = $Symbol.iterator || "@@iterator";
+ var asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator";
+ var toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag";
+ function define(obj, key, value) {
+ Object.defineProperty(obj, key, {
+ value: value,
+ enumerable: true,
+ configurable: true,
+ writable: true
+ });
+ return obj[key];
+ }
+ try {
+ // IE 8 has a broken Object.defineProperty that only works on DOM objects.
+ define({}, "");
+ } catch (err) {
+ define = function define(obj, key, value) {
+ return obj[key] = value;
+ };
+ }
+ function wrap(innerFn, outerFn, self, tryLocsList) {
+ // If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.
+ var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;
+ var generator = Object.create(protoGenerator.prototype);
+ var context = new Context(tryLocsList || []);
+
+ // The ._invoke method unifies the implementations of the .next,
+ // .throw, and .return methods.
+ defineProperty(generator, "_invoke", {
+ value: makeInvokeMethod(innerFn, self, context)
+ });
+ return generator;
+ }
+ exports.wrap = wrap;
+
+ // Try/catch helper to minimize deoptimizations. Returns a completion
+ // record like context.tryEntries[i].completion. This interface could
+ // have been (and was previously) designed to take a closure to be
+ // invoked without arguments, but in all the cases we care about we
+ // already have an existing method we want to call, so there's no need
+ // to create a new function object. We can even get away with assuming
+ // the method takes exactly one argument, since that happens to be true
+ // in every case, so we don't have to touch the arguments object. The
+ // only additional allocation required is the completion record, which
+ // has a stable shape and so hopefully should be cheap to allocate.
+ function tryCatch(fn, obj, arg) {
+ try {
+ return {
+ type: "normal",
+ arg: fn.call(obj, arg)
+ };
+ } catch (err) {
+ return {
+ type: "throw",
+ arg: err
+ };
+ }
+ }
+ var GenStateSuspendedStart = "suspendedStart";
+ var GenStateSuspendedYield = "suspendedYield";
+ var GenStateExecuting = "executing";
+ var GenStateCompleted = "completed";
+
+ // Returning this object from the innerFn has the same effect as
+ // breaking out of the dispatch switch statement.
+ var ContinueSentinel = {};
+
+ // Dummy constructor functions that we use as the .constructor and
+ // .constructor.prototype properties for functions that return Generator
+ // objects. For full spec compliance, you may wish to configure your
+ // minifier not to mangle the names of these two functions.
+ function Generator() {}
+ function GeneratorFunction() {}
+ function GeneratorFunctionPrototype() {}
+
+ // This is a polyfill for %IteratorPrototype% for environments that
+ // don't natively support it.
+ var IteratorPrototype = {};
+ define(IteratorPrototype, iteratorSymbol, function () {
+ return this;
+ });
+ var getProto = Object.getPrototypeOf;
+ var NativeIteratorPrototype = getProto && getProto(getProto(values([])));
+ if (NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol)) {
+ // This environment has a native %IteratorPrototype%; use it instead
+ // of the polyfill.
+ IteratorPrototype = NativeIteratorPrototype;
+ }
+ var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype);
+ GeneratorFunction.prototype = GeneratorFunctionPrototype;
+ defineProperty(Gp, "constructor", {
+ value: GeneratorFunctionPrototype,
+ configurable: true
+ });
+ defineProperty(GeneratorFunctionPrototype, "constructor", {
+ value: GeneratorFunction,
+ configurable: true
+ });
+ GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction");
+
+ // Helper for defining the .next, .throw, and .return methods of the
+ // Iterator interface in terms of a single ._invoke method.
+ function defineIteratorMethods(prototype) {
+ ["next", "throw", "return"].forEach(function (method) {
+ define(prototype, method, function (arg) {
+ return this._invoke(method, arg);
+ });
+ });
+ }
+ exports.isGeneratorFunction = function (genFun) {
+ var ctor = typeof genFun === "function" && genFun.constructor;
+ return ctor ? ctor === GeneratorFunction ||
+ // For the native GeneratorFunction constructor, the best we can
+ // do is to check its .name property.
+ (ctor.displayName || ctor.name) === "GeneratorFunction" : false;
+ };
+ exports.mark = function (genFun) {
+ if (Object.setPrototypeOf) {
+ Object.setPrototypeOf(genFun, GeneratorFunctionPrototype);
+ } else {
+ genFun.__proto__ = GeneratorFunctionPrototype;
+ define(genFun, toStringTagSymbol, "GeneratorFunction");
+ }
+ genFun.prototype = Object.create(Gp);
+ return genFun;
+ };
+
+ // Within the body of any async function, `await x` is transformed to
+ // `yield regeneratorRuntime.awrap(x)`, so that the runtime can test
+ // `hasOwn.call(value, "__await")` to determine if the yielded value is
+ // meant to be awaited.
+ exports.awrap = function (arg) {
+ return {
+ __await: arg
+ };
+ };
+ function AsyncIterator(generator, PromiseImpl) {
+ function invoke(method, arg, resolve, reject) {
+ var record = tryCatch(generator[method], generator, arg);
+ if (record.type === "throw") {
+ reject(record.arg);
+ } else {
+ var result = record.arg;
+ var value = result.value;
+ if (value && typeof value === "object" && hasOwn.call(value, "__await")) {
+ return PromiseImpl.resolve(value.__await).then(function (value) {
+ invoke("next", value, resolve, reject);
+ }, function (err) {
+ invoke("throw", err, resolve, reject);
+ });
+ }
+ return PromiseImpl.resolve(value).then(function (unwrapped) {
+ // When a yielded Promise is resolved, its final value becomes
+ // the .value of the Promise<{value,done}> result for the
+ // current iteration.
+ result.value = unwrapped;
+ resolve(result);
+ }, function (error) {
+ // If a rejected Promise was yielded, throw the rejection back
+ // into the async generator function so it can be handled there.
+ return invoke("throw", error, resolve, reject);
+ });
+ }
+ }
+ var previousPromise;
+ function enqueue(method, arg) {
+ function callInvokeWithMethodAndArg() {
+ return new PromiseImpl(function (resolve, reject) {
+ invoke(method, arg, resolve, reject);
+ });
+ }
+ return previousPromise =
+ // If enqueue has been called before, then we want to wait until
+ // all previous Promises have been resolved before calling invoke,
+ // so that results are always delivered in the correct order. If
+ // enqueue has not been called before, then it is important to
+ // call invoke immediately, without waiting on a callback to fire,
+ // so that the async generator function has the opportunity to do
+ // any necessary setup in a predictable way. This predictability
+ // is why the Promise constructor synchronously invokes its
+ // executor callback, and why async functions synchronously
+ // execute code before the first await. Since we implement simple
+ // async functions in terms of async generators, it is especially
+ // important to get this right, even though it requires care.
+ previousPromise ? previousPromise.then(callInvokeWithMethodAndArg,
+ // Avoid propagating failures to Promises returned by later
+ // invocations of the iterator.
+ callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
+ }
+
+ // Define the unified helper method that is used to implement .next,
+ // .throw, and .return (see defineIteratorMethods).
+ defineProperty(this, "_invoke", {
+ value: enqueue
+ });
+ }
+ defineIteratorMethods(AsyncIterator.prototype);
+ define(AsyncIterator.prototype, asyncIteratorSymbol, function () {
+ return this;
+ });
+ exports.AsyncIterator = AsyncIterator;
+
+ // Note that simple async functions are implemented on top of
+ // AsyncIterator objects; they just return a Promise for the value of
+ // the final result produced by the iterator.
+ exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) {
+ if (PromiseImpl === void 0) PromiseImpl = Promise;
+ var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl);
+ return exports.isGeneratorFunction(outerFn) ? iter // If outerFn is a generator, return the full iterator.
+ : iter.next().then(function (result) {
+ return result.done ? result.value : iter.next();
+ });
+ };
+ function makeInvokeMethod(innerFn, self, context) {
+ var state = GenStateSuspendedStart;
+ return function invoke(method, arg) {
+ if (state === GenStateExecuting) {
+ throw new Error("Generator is already running");
+ }
+ if (state === GenStateCompleted) {
+ if (method === "throw") {
+ throw arg;
+ }
+
+ // Be forgiving, per 25.3.3.3.3 of the spec:
+ // https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume
+ return doneResult();
+ }
+ context.method = method;
+ context.arg = arg;
+ while (true) {
+ var delegate = context.delegate;
+ if (delegate) {
+ var delegateResult = maybeInvokeDelegate(delegate, context);
+ if (delegateResult) {
+ if (delegateResult === ContinueSentinel) continue;
+ return delegateResult;
+ }
+ }
+ if (context.method === "next") {
+ // Setting context._sent for legacy support of Babel's
+ // function.sent implementation.
+ context.sent = context._sent = context.arg;
+ } else if (context.method === "throw") {
+ if (state === GenStateSuspendedStart) {
+ state = GenStateCompleted;
+ throw context.arg;
+ }
+ context.dispatchException(context.arg);
+ } else if (context.method === "return") {
+ context.abrupt("return", context.arg);
+ }
+ state = GenStateExecuting;
+ var record = tryCatch(innerFn, self, context);
+ if (record.type === "normal") {
+ // If an exception is thrown from innerFn, we leave state ===
+ // GenStateExecuting and loop back for another invocation.
+ state = context.done ? GenStateCompleted : GenStateSuspendedYield;
+ if (record.arg === ContinueSentinel) {
+ continue;
+ }
+ return {
+ value: record.arg,
+ done: context.done
+ };
+ } else if (record.type === "throw") {
+ state = GenStateCompleted;
+ // Dispatch the exception by looping back around to the
+ // context.dispatchException(context.arg) call above.
+ context.method = "throw";
+ context.arg = record.arg;
+ }
+ }
+ };
+ }
+
+ // Call delegate.iterator[context.method](context.arg) and handle the
+ // result, either by returning a { value, done } result from the
+ // delegate iterator, or by modifying context.method and context.arg,
+ // setting context.delegate to null, and returning the ContinueSentinel.
+ function maybeInvokeDelegate(delegate, context) {
+ var methodName = context.method;
+ var method = delegate.iterator[methodName];
+ if (method === undefined) {
+ // A .throw or .return when the delegate iterator has no .throw
+ // method, or a missing .next mehtod, always terminate the
+ // yield* loop.
+ context.delegate = null;
+
+ // Note: ["return"] must be used for ES3 parsing compatibility.
+ if (methodName === "throw" && delegate.iterator["return"]) {
+ // If the delegate iterator has a return method, give it a
+ // chance to clean up.
+ context.method = "return";
+ context.arg = undefined;
+ maybeInvokeDelegate(delegate, context);
+ if (context.method === "throw") {
+ // If maybeInvokeDelegate(context) changed context.method from
+ // "return" to "throw", let that override the TypeError below.
+ return ContinueSentinel;
+ }
+ }
+ if (methodName !== "return") {
+ context.method = "throw";
+ context.arg = new TypeError("The iterator does not provide a '" + methodName + "' method");
+ }
+ return ContinueSentinel;
+ }
+ var record = tryCatch(method, delegate.iterator, context.arg);
+ if (record.type === "throw") {
+ context.method = "throw";
+ context.arg = record.arg;
+ context.delegate = null;
+ return ContinueSentinel;
+ }
+ var info = record.arg;
+ if (!info) {
+ context.method = "throw";
+ context.arg = new TypeError("iterator result is not an object");
+ context.delegate = null;
+ return ContinueSentinel;
+ }
+ if (info.done) {
+ // Assign the result of the finished delegate to the temporary
+ // variable specified by delegate.resultName (see delegateYield).
+ context[delegate.resultName] = info.value;
+
+ // Resume execution at the desired location (see delegateYield).
+ context.next = delegate.nextLoc;
+
+ // If context.method was "throw" but the delegate handled the
+ // exception, let the outer generator proceed normally. If
+ // context.method was "next", forget context.arg since it has been
+ // "consumed" by the delegate iterator. If context.method was
+ // "return", allow the original .return call to continue in the
+ // outer generator.
+ if (context.method !== "return") {
+ context.method = "next";
+ context.arg = undefined;
+ }
+ } else {
+ // Re-yield the result returned by the delegate method.
+ return info;
+ }
+
+ // The delegate iterator is finished, so forget it and continue with
+ // the outer generator.
+ context.delegate = null;
+ return ContinueSentinel;
+ }
+
+ // Define Generator.prototype.{next,throw,return} in terms of the
+ // unified ._invoke helper method.
+ defineIteratorMethods(Gp);
+ define(Gp, toStringTagSymbol, "Generator");
+
+ // A Generator should always return itself as the iterator object when the
+ // @@iterator function is called on it. Some browsers' implementations of the
+ // iterator prototype chain incorrectly implement this, causing the Generator
+ // object to not be returned from this call. This ensures that doesn't happen.
+ // See https://github.com/facebook/regenerator/issues/274 for more details.
+ define(Gp, iteratorSymbol, function () {
+ return this;
+ });
+ define(Gp, "toString", function () {
+ return "[object Generator]";
+ });
+ function pushTryEntry(locs) {
+ var entry = {
+ tryLoc: locs[0]
+ };
+ if (1 in locs) {
+ entry.catchLoc = locs[1];
+ }
+ if (2 in locs) {
+ entry.finallyLoc = locs[2];
+ entry.afterLoc = locs[3];
+ }
+ this.tryEntries.push(entry);
+ }
+ function resetTryEntry(entry) {
+ var record = entry.completion || {};
+ record.type = "normal";
+ delete record.arg;
+ entry.completion = record;
+ }
+ function Context(tryLocsList) {
+ // The root entry object (effectively a try statement without a catch
+ // or a finally block) gives us a place to store values thrown from
+ // locations where there is no enclosing try statement.
+ this.tryEntries = [{
+ tryLoc: "root"
+ }];
+ tryLocsList.forEach(pushTryEntry, this);
+ this.reset(true);
+ }
+ exports.keys = function (val) {
+ var object = Object(val);
+ var keys = [];
+ for (var key in object) {
+ keys.push(key);
+ }
+ keys.reverse();
+
+ // Rather than returning an object with a next method, we keep
+ // things simple and return the next function itself.
+ return function next() {
+ while (keys.length) {
+ var key = keys.pop();
+ if (key in object) {
+ next.value = key;
+ next.done = false;
+ return next;
+ }
+ }
+
+ // To avoid creating an additional object, we just hang the .value
+ // and .done properties off the next function object itself. This
+ // also ensures that the minifier will not anonymize the function.
+ next.done = true;
+ return next;
+ };
+ };
+ function values(iterable) {
+ if (iterable) {
+ var iteratorMethod = iterable[iteratorSymbol];
+ if (iteratorMethod) {
+ return iteratorMethod.call(iterable);
+ }
+ if (typeof iterable.next === "function") {
+ return iterable;
+ }
+ if (!isNaN(iterable.length)) {
+ var i = -1,
+ next = function next() {
+ while (++i < iterable.length) {
+ if (hasOwn.call(iterable, i)) {
+ next.value = iterable[i];
+ next.done = false;
+ return next;
+ }
+ }
+ next.value = undefined;
+ next.done = true;
+ return next;
+ };
+ return next.next = next;
+ }
+ }
+
+ // Return an iterator with no values.
+ return {
+ next: doneResult
+ };
+ }
+ exports.values = values;
+ function doneResult() {
+ return {
+ value: undefined,
+ done: true
+ };
+ }
+ Context.prototype = {
+ constructor: Context,
+ reset: function reset(skipTempReset) {
+ this.prev = 0;
+ this.next = 0;
+ // Resetting context._sent for legacy support of Babel's
+ // function.sent implementation.
+ this.sent = this._sent = undefined;
+ this.done = false;
+ this.delegate = null;
+ this.method = "next";
+ this.arg = undefined;
+ this.tryEntries.forEach(resetTryEntry);
+ if (!skipTempReset) {
+ for (var name in this) {
+ // Not sure about the optimal order of these conditions:
+ if (name.charAt(0) === "t" && hasOwn.call(this, name) && !isNaN(+name.slice(1))) {
+ this[name] = undefined;
+ }
+ }
+ }
+ },
+ stop: function stop() {
+ this.done = true;
+ var rootEntry = this.tryEntries[0];
+ var rootRecord = rootEntry.completion;
+ if (rootRecord.type === "throw") {
+ throw rootRecord.arg;
+ }
+ return this.rval;
+ },
+ dispatchException: function dispatchException(exception) {
+ if (this.done) {
+ throw exception;
+ }
+ var context = this;
+ function handle(loc, caught) {
+ record.type = "throw";
+ record.arg = exception;
+ context.next = loc;
+ if (caught) {
+ // If the dispatched exception was caught by a catch block,
+ // then let that catch block handle the exception normally.
+ context.method = "next";
+ context.arg = undefined;
+ }
+ return !!caught;
+ }
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
+ var entry = this.tryEntries[i];
+ var record = entry.completion;
+ if (entry.tryLoc === "root") {
+ // Exception thrown outside of any try block that could handle
+ // it, so set the completion value of the entire function to
+ // throw the exception.
+ return handle("end");
+ }
+ if (entry.tryLoc <= this.prev) {
+ var hasCatch = hasOwn.call(entry, "catchLoc");
+ var hasFinally = hasOwn.call(entry, "finallyLoc");
+ if (hasCatch && hasFinally) {
+ if (this.prev < entry.catchLoc) {
+ return handle(entry.catchLoc, true);
+ } else if (this.prev < entry.finallyLoc) {
+ return handle(entry.finallyLoc);
+ }
+ } else if (hasCatch) {
+ if (this.prev < entry.catchLoc) {
+ return handle(entry.catchLoc, true);
+ }
+ } else if (hasFinally) {
+ if (this.prev < entry.finallyLoc) {
+ return handle(entry.finallyLoc);
+ }
+ } else {
+ throw new Error("try statement without catch or finally");
+ }
+ }
+ }
+ },
+ abrupt: function abrupt(type, arg) {
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
+ var entry = this.tryEntries[i];
+ if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) {
+ var finallyEntry = entry;
+ break;
+ }
+ }
+ if (finallyEntry && (type === "break" || type === "continue") && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc) {
+ // Ignore the finally entry if control is not jumping to a
+ // location outside the try/catch block.
+ finallyEntry = null;
+ }
+ var record = finallyEntry ? finallyEntry.completion : {};
+ record.type = type;
+ record.arg = arg;
+ if (finallyEntry) {
+ this.method = "next";
+ this.next = finallyEntry.finallyLoc;
+ return ContinueSentinel;
+ }
+ return this.complete(record);
+ },
+ complete: function complete(record, afterLoc) {
+ if (record.type === "throw") {
+ throw record.arg;
+ }
+ if (record.type === "break" || record.type === "continue") {
+ this.next = record.arg;
+ } else if (record.type === "return") {
+ this.rval = this.arg = record.arg;
+ this.method = "return";
+ this.next = "end";
+ } else if (record.type === "normal" && afterLoc) {
+ this.next = afterLoc;
+ }
+ return ContinueSentinel;
+ },
+ finish: function finish(finallyLoc) {
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
+ var entry = this.tryEntries[i];
+ if (entry.finallyLoc === finallyLoc) {
+ this.complete(entry.completion, entry.afterLoc);
+ resetTryEntry(entry);
+ return ContinueSentinel;
+ }
+ }
+ },
+ "catch": function _catch(tryLoc) {
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
+ var entry = this.tryEntries[i];
+ if (entry.tryLoc === tryLoc) {
+ var record = entry.completion;
+ if (record.type === "throw") {
+ var thrown = record.arg;
+ resetTryEntry(entry);
+ }
+ return thrown;
+ }
+ }
+
+ // The context.catch method must only be called with a location
+ // argument that corresponds to a known catch block.
+ throw new Error("illegal catch attempt");
+ },
+ delegateYield: function delegateYield(iterable, resultName, nextLoc) {
+ this.delegate = {
+ iterator: values(iterable),
+ resultName: resultName,
+ nextLoc: nextLoc
+ };
+ if (this.method === "next") {
+ // Deliberately forget the last sent value so that we don't
+ // accidentally pass it on to the delegate.
+ this.arg = undefined;
+ }
+ return ContinueSentinel;
+ }
+ };
+
+ // Regardless of whether this script is executing as a CommonJS module
+ // or not, return the runtime object so that we can declare the variable
+ // regeneratorRuntime in the outer scope, which allows this module to be
+ // injected easily by `bin/regenerator --include-runtime script.js`.
+ return exports;
+ }(
+ // If this script is executing as a CommonJS module, use module.exports
+ // as the regeneratorRuntime namespace. Otherwise create a new empty
+ // object. Either way, the resulting object will be used to initialize
+ // the regeneratorRuntime variable at the top of this file.
+ typeof module === "object" ? module.exports : {});
+ try {
+ regeneratorRuntime = runtime;
+ } catch (accidentalStrictMode) {
+ // This module should not be running in strict mode, so the above
+ // assignment should always work unless something is misconfigured. Just
+ // in case runtime.js accidentally runs in strict mode, in modern engines
+ // we can explicitly access globalThis. In older engines we can escape
+ // strict mode using a global Function call. This could conceivably fail
+ // if a Content Security Policy forbids using Function, but in that case
+ // the proper solution is to fix the accidental strict mode problem. If
+ // you've misconfigured your bundler to force strict mode and applied a
+ // CSP to forbid Function, and you're not willing to fix either of those
+ // problems, please detail your unique predicament in a GitHub issue.
+ if (typeof globalThis === "object") {
+ globalThis.regeneratorRuntime = runtime;
+ } else {
+ Function("r", "regeneratorRuntime = r")(runtime);
+ }
+ }
+},142,[],"node_modules\\react-native\\node_modules\\regenerator-runtime\\runtime.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ 'use strict';
+
+ var _global$HermesInterna, _global$HermesInterna2;
+ if (__DEV__) {
+ if (typeof global.Promise !== 'function') {
+ console.error('Promise should exist before setting up timers.');
+ }
+ }
+
+ // Currently, Hermes `Promise` is implemented via Internal Bytecode.
+ var hasHermesPromiseQueuedToJSVM = ((_global$HermesInterna = global.HermesInternal) == null ? void 0 : _global$HermesInterna.hasPromise == null ? void 0 : _global$HermesInterna.hasPromise()) === true && ((_global$HermesInterna2 = global.HermesInternal) == null ? void 0 : _global$HermesInterna2.useEngineQueue == null ? void 0 : _global$HermesInterna2.useEngineQueue()) === true;
+ var hasNativePromise = _$$_REQUIRE(_dependencyMap[0], "../Utilities/FeatureDetection").isNativeFunction(Promise);
+ var hasPromiseQueuedToJSVM = hasNativePromise || hasHermesPromiseQueuedToJSVM;
+
+ // In bridgeless mode, timers are host functions installed from cpp.
+ if (global.RN$Bridgeless !== true) {
+ /**
+ * Set up timers.
+ * You can use this module directly, or just require InitializeCore.
+ */
+ var defineLazyTimer = function defineLazyTimer(name) {
+ _$$_REQUIRE(_dependencyMap[1], "../Utilities/PolyfillFunctions").polyfillGlobal(name, function () {
+ return _$$_REQUIRE(_dependencyMap[2], "./Timers/JSTimers")[name];
+ });
+ };
+ defineLazyTimer('setTimeout');
+ defineLazyTimer('clearTimeout');
+ defineLazyTimer('setInterval');
+ defineLazyTimer('clearInterval');
+ defineLazyTimer('requestAnimationFrame');
+ defineLazyTimer('cancelAnimationFrame');
+ defineLazyTimer('requestIdleCallback');
+ defineLazyTimer('cancelIdleCallback');
+ }
+
+ /**
+ * Set up immediate APIs, which is required to use the same microtask queue
+ * as the Promise.
+ */
+ if (hasPromiseQueuedToJSVM) {
+ // When promise queues to the JSVM microtasks queue, we shim the immediate
+ // APIs via `queueMicrotask` to maintain the backward compatibility.
+ _$$_REQUIRE(_dependencyMap[1], "../Utilities/PolyfillFunctions").polyfillGlobal('setImmediate', function () {
+ return _$$_REQUIRE(_dependencyMap[3], "./Timers/immediateShim").setImmediate;
+ });
+ _$$_REQUIRE(_dependencyMap[1], "../Utilities/PolyfillFunctions").polyfillGlobal('clearImmediate', function () {
+ return _$$_REQUIRE(_dependencyMap[3], "./Timers/immediateShim").clearImmediate;
+ });
+ } else {
+ // When promise was polyfilled hence is queued to the RN microtask queue,
+ // we polyfill the immediate APIs as aliases to the ReactNativeMicrotask APIs.
+ // Note that in bridgeless mode, immediate APIs are installed from cpp.
+ if (global.RN$Bridgeless !== true) {
+ _$$_REQUIRE(_dependencyMap[1], "../Utilities/PolyfillFunctions").polyfillGlobal('setImmediate', function () {
+ return _$$_REQUIRE(_dependencyMap[2], "./Timers/JSTimers").queueReactNativeMicrotask;
+ });
+ _$$_REQUIRE(_dependencyMap[1], "../Utilities/PolyfillFunctions").polyfillGlobal('clearImmediate', function () {
+ return _$$_REQUIRE(_dependencyMap[2], "./Timers/JSTimers").clearReactNativeMicrotask;
+ });
+ }
+ }
+
+ /**
+ * Set up the microtask queueing API, which is required to use the same
+ * microtask queue as the Promise.
+ */
+ if (hasHermesPromiseQueuedToJSVM) {
+ // Fast path for Hermes.
+ _$$_REQUIRE(_dependencyMap[1], "../Utilities/PolyfillFunctions").polyfillGlobal('queueMicrotask', function () {
+ var _global$HermesInterna3;
+ return (_global$HermesInterna3 = global.HermesInternal) == null ? void 0 : _global$HermesInterna3.enqueueJob;
+ });
+ } else {
+ // Polyfill it with promise (regardless it's polyfilled or native) otherwise.
+ _$$_REQUIRE(_dependencyMap[1], "../Utilities/PolyfillFunctions").polyfillGlobal('queueMicrotask', function () {
+ return _$$_REQUIRE(_dependencyMap[4], "./Timers/queueMicrotask.js").default;
+ });
+ }
+},143,[141,134,144,146,147],"node_modules\\react-native\\Libraries\\Core\\setUpTimers.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ var _NativeTiming = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./NativeTiming")); /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ /**
+ * JS implementation of timer functions. Must be completely driven by an
+ * external clock signal, all that's stored here is timerID, timer type, and
+ * callback.
+ */
+
+ // These timing constants should be kept in sync with the ones in native ios and
+ // android `RCTTiming` module.
+ var FRAME_DURATION = 1000 / 60;
+ var IDLE_CALLBACK_FRAME_DEADLINE = 1;
+
+ // Parallel arrays
+ var callbacks = [];
+ var types = [];
+ var timerIDs = [];
+ var reactNativeMicrotasks = [];
+ var requestIdleCallbacks = [];
+ var requestIdleCallbackTimeouts = {};
+ var GUID = 1;
+ var errors = [];
+ var hasEmittedTimeDriftWarning = false;
+
+ // Returns a free index if one is available, and the next consecutive index otherwise.
+ function _getFreeIndex() {
+ var freeIndex = timerIDs.indexOf(null);
+ if (freeIndex === -1) {
+ freeIndex = timerIDs.length;
+ }
+ return freeIndex;
+ }
+ function _allocateCallback(func, type) {
+ var id = GUID++;
+ var freeIndex = _getFreeIndex();
+ timerIDs[freeIndex] = id;
+ callbacks[freeIndex] = func;
+ types[freeIndex] = type;
+ return id;
+ }
+
+ /**
+ * Calls the callback associated with the ID. Also unregister that callback
+ * if it was a one time timer (setTimeout), and not unregister it if it was
+ * recurring (setInterval).
+ */
+ function _callTimer(timerID, frameTime, didTimeout) {
+ if (timerID > GUID) {
+ console.warn('Tried to call timer with ID %s but no such timer exists.', timerID);
+ }
+
+ // timerIndex of -1 means that no timer with that ID exists. There are
+ // two situations when this happens, when a garbage timer ID was given
+ // and when a previously existing timer was deleted before this callback
+ // fired. In both cases we want to ignore the timer id, but in the former
+ // case we warn as well.
+ var timerIndex = timerIDs.indexOf(timerID);
+ if (timerIndex === -1) {
+ return;
+ }
+ var type = types[timerIndex];
+ var callback = callbacks[timerIndex];
+ if (!callback || !type) {
+ console.error('No callback found for timerID ' + timerID);
+ return;
+ }
+ if (__DEV__) {
+ _$$_REQUIRE(_dependencyMap[2], "../../Performance/Systrace").beginEvent(type + ' [invoke]');
+ }
+
+ // Clear the metadata
+ if (type !== 'setInterval') {
+ _clearIndex(timerIndex);
+ }
+ try {
+ if (type === 'setTimeout' || type === 'setInterval' || type === 'queueReactNativeMicrotask') {
+ callback();
+ } else if (type === 'requestAnimationFrame') {
+ callback(global.performance.now());
+ } else if (type === 'requestIdleCallback') {
+ callback({
+ timeRemaining: function timeRemaining() {
+ // TODO: Optimisation: allow running for longer than one frame if
+ // there are no pending JS calls on the bridge from native. This
+ // would require a way to check the bridge queue synchronously.
+ return Math.max(0, FRAME_DURATION - (global.performance.now() - frameTime));
+ },
+ didTimeout: !!didTimeout
+ });
+ } else {
+ console.error('Tried to call a callback with invalid type: ' + type);
+ }
+ } catch (e) {
+ // Don't rethrow so that we can run all timers.
+ errors.push(e);
+ }
+ if (__DEV__) {
+ _$$_REQUIRE(_dependencyMap[2], "../../Performance/Systrace").endEvent();
+ }
+ }
+
+ /**
+ * Performs a single pass over the enqueued reactNativeMicrotasks. Returns whether
+ * more reactNativeMicrotasks are queued up (can be used as a condition a while loop).
+ */
+ function _callReactNativeMicrotasksPass() {
+ if (reactNativeMicrotasks.length === 0) {
+ return false;
+ }
+ if (__DEV__) {
+ _$$_REQUIRE(_dependencyMap[2], "../../Performance/Systrace").beginEvent('callReactNativeMicrotasksPass()');
+ }
+
+ // The main reason to extract a single pass is so that we can track
+ // in the system trace
+ var passReactNativeMicrotasks = reactNativeMicrotasks;
+ reactNativeMicrotasks = [];
+
+ // Use for loop rather than forEach as per @vjeux's advice
+ // https://github.com/facebook/react-native/commit/c8fd9f7588ad02d2293cac7224715f4af7b0f352#commitcomment-14570051
+ for (var i = 0; i < passReactNativeMicrotasks.length; ++i) {
+ _callTimer(passReactNativeMicrotasks[i], 0);
+ }
+ if (__DEV__) {
+ _$$_REQUIRE(_dependencyMap[2], "../../Performance/Systrace").endEvent();
+ }
+ return reactNativeMicrotasks.length > 0;
+ }
+ function _clearIndex(i) {
+ timerIDs[i] = null;
+ callbacks[i] = null;
+ types[i] = null;
+ }
+ function _freeCallback(timerID) {
+ // timerIDs contains nulls after timers have been removed;
+ // ignore nulls upfront so indexOf doesn't find them
+ if (timerID == null) {
+ return;
+ }
+ var index = timerIDs.indexOf(timerID);
+ // See corresponding comment in `callTimers` for reasoning behind this
+ if (index !== -1) {
+ var type = types[index];
+ _clearIndex(index);
+ if (type !== 'queueReactNativeMicrotask' && type !== 'requestIdleCallback') {
+ deleteTimer(timerID);
+ }
+ }
+ }
+
+ /**
+ * JS implementation of timer functions. Must be completely driven by an
+ * external clock signal, all that's stored here is timerID, timer type, and
+ * callback.
+ */
+ var JSTimers = {
+ /**
+ * @param {function} func Callback to be invoked after `duration` ms.
+ * @param {number} duration Number of milliseconds.
+ */
+ setTimeout: function setTimeout(func, duration) {
+ for (var _len = arguments.length, args = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
+ args[_key - 2] = arguments[_key];
+ }
+ var id = _allocateCallback(function () {
+ return func.apply(undefined, args);
+ }, 'setTimeout');
+ createTimer(id, duration || 0, Date.now(), /* recurring */false);
+ return id;
+ },
+ /**
+ * @param {function} func Callback to be invoked every `duration` ms.
+ * @param {number} duration Number of milliseconds.
+ */
+ setInterval: function setInterval(func, duration) {
+ for (var _len2 = arguments.length, args = new Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {
+ args[_key2 - 2] = arguments[_key2];
+ }
+ var id = _allocateCallback(function () {
+ return func.apply(undefined, args);
+ }, 'setInterval');
+ createTimer(id, duration || 0, Date.now(), /* recurring */true);
+ return id;
+ },
+ /**
+ * The React Native microtask mechanism is used to back public APIs e.g.
+ * `queueMicrotask`, `clearImmediate`, and `setImmediate` (which is used by
+ * the Promise polyfill) when the JSVM microtask mechanism is not used.
+ *
+ * @param {function} func Callback to be invoked before the end of the
+ * current JavaScript execution loop.
+ */
+ queueReactNativeMicrotask: function queueReactNativeMicrotask(func) {
+ for (var _len3 = arguments.length, args = new Array(_len3 > 1 ? _len3 - 1 : 0), _key3 = 1; _key3 < _len3; _key3++) {
+ args[_key3 - 1] = arguments[_key3];
+ }
+ var id = _allocateCallback(function () {
+ return func.apply(undefined, args);
+ }, 'queueReactNativeMicrotask');
+ reactNativeMicrotasks.push(id);
+ return id;
+ },
+ /**
+ * @param {function} func Callback to be invoked every frame.
+ */
+ requestAnimationFrame: function requestAnimationFrame(func) {
+ var id = _allocateCallback(func, 'requestAnimationFrame');
+ createTimer(id, 1, Date.now(), /* recurring */false);
+ return id;
+ },
+ /**
+ * @param {function} func Callback to be invoked every frame and provided
+ * with time remaining in frame.
+ * @param {?object} options
+ */
+ requestIdleCallback: function requestIdleCallback(func, options) {
+ if (requestIdleCallbacks.length === 0) {
+ setSendIdleEvents(true);
+ }
+ var timeout = options && options.timeout;
+ var id = _allocateCallback(timeout != null ? function (deadline) {
+ var timeoutId = requestIdleCallbackTimeouts[id];
+ if (timeoutId) {
+ JSTimers.clearTimeout(timeoutId);
+ delete requestIdleCallbackTimeouts[id];
+ }
+ return func(deadline);
+ } : func, 'requestIdleCallback');
+ requestIdleCallbacks.push(id);
+ if (timeout != null) {
+ var timeoutId = JSTimers.setTimeout(function () {
+ var index = requestIdleCallbacks.indexOf(id);
+ if (index > -1) {
+ requestIdleCallbacks.splice(index, 1);
+ _callTimer(id, global.performance.now(), true);
+ }
+ delete requestIdleCallbackTimeouts[id];
+ if (requestIdleCallbacks.length === 0) {
+ setSendIdleEvents(false);
+ }
+ }, timeout);
+ requestIdleCallbackTimeouts[id] = timeoutId;
+ }
+ return id;
+ },
+ cancelIdleCallback: function cancelIdleCallback(timerID) {
+ _freeCallback(timerID);
+ var index = requestIdleCallbacks.indexOf(timerID);
+ if (index !== -1) {
+ requestIdleCallbacks.splice(index, 1);
+ }
+ var timeoutId = requestIdleCallbackTimeouts[timerID];
+ if (timeoutId) {
+ JSTimers.clearTimeout(timeoutId);
+ delete requestIdleCallbackTimeouts[timerID];
+ }
+ if (requestIdleCallbacks.length === 0) {
+ setSendIdleEvents(false);
+ }
+ },
+ clearTimeout: function clearTimeout(timerID) {
+ _freeCallback(timerID);
+ },
+ clearInterval: function clearInterval(timerID) {
+ _freeCallback(timerID);
+ },
+ clearReactNativeMicrotask: function clearReactNativeMicrotask(timerID) {
+ _freeCallback(timerID);
+ var index = reactNativeMicrotasks.indexOf(timerID);
+ if (index !== -1) {
+ reactNativeMicrotasks.splice(index, 1);
+ }
+ },
+ cancelAnimationFrame: function cancelAnimationFrame(timerID) {
+ _freeCallback(timerID);
+ },
+ /**
+ * This is called from the native side. We are passed an array of timerIDs,
+ * and
+ */
+ callTimers: function callTimers(timersToCall) {
+ _$$_REQUIRE(_dependencyMap[3], "invariant")(timersToCall.length !== 0, 'Cannot call `callTimers` with an empty list of IDs.');
+ errors.length = 0;
+ for (var i = 0; i < timersToCall.length; i++) {
+ _callTimer(timersToCall[i], 0);
+ }
+ var errorCount = errors.length;
+ if (errorCount > 0) {
+ if (errorCount > 1) {
+ // Throw all the other errors in a setTimeout, which will throw each
+ // error one at a time
+ for (var ii = 1; ii < errorCount; ii++) {
+ JSTimers.setTimeout(function (error) {
+ throw error;
+ }.bind(null, errors[ii]), 0);
+ }
+ }
+ throw errors[0];
+ }
+ },
+ callIdleCallbacks: function callIdleCallbacks(frameTime) {
+ if (FRAME_DURATION - (Date.now() - frameTime) < IDLE_CALLBACK_FRAME_DEADLINE) {
+ return;
+ }
+ errors.length = 0;
+ if (requestIdleCallbacks.length > 0) {
+ var passIdleCallbacks = requestIdleCallbacks;
+ requestIdleCallbacks = [];
+ for (var i = 0; i < passIdleCallbacks.length; ++i) {
+ _callTimer(passIdleCallbacks[i], frameTime);
+ }
+ }
+ if (requestIdleCallbacks.length === 0) {
+ setSendIdleEvents(false);
+ }
+ errors.forEach(function (error) {
+ return JSTimers.setTimeout(function () {
+ throw error;
+ }, 0);
+ });
+ },
+ /**
+ * This is called after we execute any command we receive from native but
+ * before we hand control back to native.
+ */
+ callReactNativeMicrotasks: function callReactNativeMicrotasks() {
+ errors.length = 0;
+ while (_callReactNativeMicrotasksPass()) {}
+ errors.forEach(function (error) {
+ return JSTimers.setTimeout(function () {
+ throw error;
+ }, 0);
+ });
+ },
+ /**
+ * Called from native (in development) when environment times are out-of-sync.
+ */
+ emitTimeDriftWarning: function emitTimeDriftWarning(warningMessage) {
+ if (hasEmittedTimeDriftWarning) {
+ return;
+ }
+ hasEmittedTimeDriftWarning = true;
+ console.warn(warningMessage);
+ }
+ };
+ function createTimer(callbackID, duration, jsSchedulingTime, repeats) {
+ _$$_REQUIRE(_dependencyMap[3], "invariant")(_NativeTiming.default, 'NativeTiming is available');
+ _NativeTiming.default.createTimer(callbackID, duration, jsSchedulingTime, repeats);
+ }
+ function deleteTimer(timerID) {
+ _$$_REQUIRE(_dependencyMap[3], "invariant")(_NativeTiming.default, 'NativeTiming is available');
+ _NativeTiming.default.deleteTimer(timerID);
+ }
+ function setSendIdleEvents(sendIdleEvents) {
+ _$$_REQUIRE(_dependencyMap[3], "invariant")(_NativeTiming.default, 'NativeTiming is available');
+ _NativeTiming.default.setSendIdleEvents(sendIdleEvents);
+ }
+ var ExportedJSTimers;
+ if (!_NativeTiming.default) {
+ console.warn("Timing native module is not available, can't set timers.");
+ // $FlowFixMe[prop-missing] : we can assume timers are generally available
+ ExportedJSTimers = {
+ callReactNativeMicrotasks: JSTimers.callReactNativeMicrotasks,
+ queueReactNativeMicrotask: JSTimers.queueReactNativeMicrotask
+ };
+ } else {
+ ExportedJSTimers = JSTimers;
+ }
+ _$$_REQUIRE(_dependencyMap[4], "../../BatchedBridge/BatchedBridge").setReactNativeMicrotasksCallback(JSTimers.callReactNativeMicrotasks);
+ module.exports = ExportedJSTimers;
+},144,[6,145,33,37,39],"node_modules\\react-native\\Libraries\\Core\\Timers\\JSTimers.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = void 0;
+ var TurboModuleRegistry = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../TurboModule/TurboModuleRegistry"));
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+ var _default = exports.default = TurboModuleRegistry.get('Timing');
+},145,[36],"node_modules\\react-native\\Libraries\\Core\\Timers\\NativeTiming.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ 'use strict';
+
+ // Globally Unique Immediate ID.
+ var GUIID = 1;
+
+ // A global set of the currently cleared immediates.
+ var clearedImmediates = new Set();
+
+ /**
+ * Shim the setImmediate API on top of queueMicrotask.
+ * @param {function} func Callback to be invoked before the end of the
+ * current JavaScript execution loop.
+ */
+ function setImmediate(callback) {
+ for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
+ args[_key - 1] = arguments[_key];
+ }
+ if (arguments.length < 1) {
+ throw new TypeError('setImmediate must be called with at least one argument (a function to call)');
+ }
+ if (typeof callback !== 'function') {
+ throw new TypeError('The first argument to setImmediate must be a function.');
+ }
+ var id = GUIID++;
+ // This is an edgey case in which the sequentially assigned ID has been
+ // "guessed" and "cleared" ahead of time, so we need to clear it up first.
+ if (clearedImmediates.has(id)) {
+ clearedImmediates.delete(id);
+ }
+
+ // $FlowFixMe[incompatible-call]
+ global.queueMicrotask(function () {
+ if (!clearedImmediates.has(id)) {
+ callback.apply(undefined, args);
+ } else {
+ // Free up the Set entry.
+ clearedImmediates.delete(id);
+ }
+ });
+ return id;
+ }
+
+ /**
+ * @param {number} immediateID The ID of the immediate to be clearred.
+ */
+ function clearImmediate(immediateID) {
+ clearedImmediates.add(immediateID);
+ }
+ var immediateShim = {
+ setImmediate: setImmediate,
+ clearImmediate: clearImmediate
+ };
+ module.exports = immediateShim;
+},146,[],"node_modules\\react-native\\Libraries\\Core\\Timers\\immediateShim.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ 'use strict';
+
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = queueMicrotask;
+ var resolvedPromise;
+
+ /**
+ * Polyfill for the microtask queueing API defined by WHATWG HTML spec.
+ * https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-queuemicrotask
+ *
+ * The method must queue a microtask to invoke @param {function} callback, and
+ * if the callback throws an exception, report the exception.
+ */
+ function queueMicrotask(callback) {
+ if (arguments.length < 1) {
+ throw new TypeError('queueMicrotask must be called with at least one argument (a function to call)');
+ }
+ if (typeof callback !== 'function') {
+ throw new TypeError('The argument to queueMicrotask must be a function.');
+ }
+
+ // Try to reuse a lazily allocated resolved promise from closure.
+ (resolvedPromise || (resolvedPromise = Promise.resolve())).then(callback).catch(function (error) {
+ return (
+ // Report the exception until the next tick.
+ setTimeout(function () {
+ throw error;
+ }, 0)
+ );
+ });
+ }
+},147,[],"node_modules\\react-native\\Libraries\\Core\\Timers\\queueMicrotask.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ *
+ * @format
+ */
+
+ 'use strict';
+
+ /**
+ * Set up XMLHttpRequest. The native XMLHttpRequest in Chrome dev tools is CORS
+ * aware and won't let you fetch anything from the internet.
+ *
+ * You can use this module directly, or just require InitializeCore.
+ */
+ _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions").polyfillGlobal('XMLHttpRequest', function () {
+ return _$$_REQUIRE(_dependencyMap[1], "../Network/XMLHttpRequest");
+ });
+ _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions").polyfillGlobal('FormData', function () {
+ return _$$_REQUIRE(_dependencyMap[2], "../Network/FormData");
+ });
+ _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions").polyfillGlobal('fetch', function () {
+ return _$$_REQUIRE(_dependencyMap[3], "../Network/fetch").fetch;
+ });
+ _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions").polyfillGlobal('Headers', function () {
+ return _$$_REQUIRE(_dependencyMap[3], "../Network/fetch").Headers;
+ });
+ _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions").polyfillGlobal('Request', function () {
+ return _$$_REQUIRE(_dependencyMap[3], "../Network/fetch").Request;
+ });
+ _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions").polyfillGlobal('Response', function () {
+ return _$$_REQUIRE(_dependencyMap[3], "../Network/fetch").Response;
+ });
+ _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions").polyfillGlobal('WebSocket', function () {
+ return _$$_REQUIRE(_dependencyMap[4], "../WebSocket/WebSocket");
+ });
+ _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions").polyfillGlobal('Blob', function () {
+ return _$$_REQUIRE(_dependencyMap[5], "../Blob/Blob");
+ });
+ _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions").polyfillGlobal('File', function () {
+ return _$$_REQUIRE(_dependencyMap[6], "../Blob/File");
+ });
+ _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions").polyfillGlobal('FileReader', function () {
+ return _$$_REQUIRE(_dependencyMap[7], "../Blob/FileReader");
+ });
+ _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions").polyfillGlobal('URL', function () {
+ return _$$_REQUIRE(_dependencyMap[8], "../Blob/URL").URL;
+ }); // flowlint-line untyped-import:off
+ _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions").polyfillGlobal('URLSearchParams', function () {
+ return _$$_REQUIRE(_dependencyMap[8], "../Blob/URL").URLSearchParams;
+ }); // flowlint-line untyped-import:off
+ _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions").polyfillGlobal('AbortController', function () {
+ return _$$_REQUIRE(_dependencyMap[9], "abort-controller/dist/abort-controller").AbortController;
+ } // flowlint-line untyped-import:off
+ );
+ _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions").polyfillGlobal('AbortSignal', function () {
+ return _$$_REQUIRE(_dependencyMap[9], "abort-controller/dist/abort-controller").AbortSignal;
+ } // flowlint-line untyped-import:off
+ );
+},148,[134,149,162,104,165,153,170,171,173,174],"node_modules\\react-native\\Libraries\\Core\\setUpXHR.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ * @format
+ *
+ */
+
+ 'use strict';
+
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
+ var _toConsumableArray2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/toConsumableArray"));
+ var _get2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/get"));
+ var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "@babel/runtime/helpers/createClass"));
+ var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "@babel/runtime/helpers/classCallCheck"));
+ var _possibleConstructorReturn2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[5], "@babel/runtime/helpers/possibleConstructorReturn"));
+ var _getPrototypeOf2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "@babel/runtime/helpers/getPrototypeOf"));
+ var _inherits2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[7], "@babel/runtime/helpers/inherits"));
+ var _eventTargetShim = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[8], "event-target-shim"));
+ function _superPropGet(t, o, e, r) { var p = (0, _get2.default)((0, _getPrototypeOf2.default)(1 & r ? t.prototype : t), o, e); return 2 & r && "function" == typeof p ? function (t) { return p.apply(e, t); } : p; }
+ function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
+ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
+ var DEBUG_NETWORK_SEND_DELAY = false; // Set to a number of milliseconds when debugging
+
+ // The native blob module is optional so inject it here if available.
+ if (_$$_REQUIRE(_dependencyMap[9], "../Blob/BlobManager").isAvailable) {
+ _$$_REQUIRE(_dependencyMap[9], "../Blob/BlobManager").addNetworkingHandler();
+ }
+ var UNSENT = 0;
+ var OPENED = 1;
+ var HEADERS_RECEIVED = 2;
+ var LOADING = 3;
+ var DONE = 4;
+ var SUPPORTED_RESPONSE_TYPES = {
+ arraybuffer: typeof global.ArrayBuffer === 'function',
+ blob: typeof global.Blob === 'function',
+ document: false,
+ json: true,
+ text: true,
+ '': true
+ };
+ var REQUEST_EVENTS = ['abort', 'error', 'load', 'loadstart', 'progress', 'timeout', 'loadend'];
+ var XHR_EVENTS = REQUEST_EVENTS.concat('readystatechange');
+ var XMLHttpRequestEventTarget = /*#__PURE__*/function (_ref) {
+ function XMLHttpRequestEventTarget() {
+ (0, _classCallCheck2.default)(this, XMLHttpRequestEventTarget);
+ return _callSuper(this, XMLHttpRequestEventTarget, arguments);
+ }
+ (0, _inherits2.default)(XMLHttpRequestEventTarget, _ref);
+ return (0, _createClass2.default)(XMLHttpRequestEventTarget);
+ }(_eventTargetShim.default.apply(void 0, REQUEST_EVENTS));
+ /**
+ * Shared base for platform-specific XMLHttpRequest implementations.
+ */
+ var XMLHttpRequest = /*#__PURE__*/function (_ref2) {
+ function XMLHttpRequest() {
+ var _this;
+ (0, _classCallCheck2.default)(this, XMLHttpRequest);
+ _this = _callSuper(this, XMLHttpRequest);
+ _this.UNSENT = UNSENT;
+ _this.OPENED = OPENED;
+ _this.HEADERS_RECEIVED = HEADERS_RECEIVED;
+ _this.LOADING = LOADING;
+ _this.DONE = DONE;
+ _this.readyState = UNSENT;
+ _this.status = 0;
+ _this.timeout = 0;
+ _this.withCredentials = true;
+ _this.upload = new XMLHttpRequestEventTarget();
+ _this._aborted = false;
+ _this._hasError = false;
+ _this._method = null;
+ _this._perfKey = null;
+ _this._response = '';
+ _this._url = null;
+ _this._timedOut = false;
+ _this._trackingName = 'unknown';
+ _this._incrementalEvents = false;
+ _this._performanceLogger = _$$_REQUIRE(_dependencyMap[10], "../Utilities/GlobalPerformanceLogger");
+ _this._reset();
+ return _this;
+ }
+ (0, _inherits2.default)(XMLHttpRequest, _ref2);
+ return (0, _createClass2.default)(XMLHttpRequest, [{
+ key: "_reset",
+ value: function _reset() {
+ this.readyState = this.UNSENT;
+ this.responseHeaders = undefined;
+ this.status = 0;
+ delete this.responseURL;
+ this._requestId = null;
+ this._cachedResponse = undefined;
+ this._hasError = false;
+ this._headers = {};
+ this._response = '';
+ this._responseType = '';
+ this._sent = false;
+ this._lowerCaseResponseHeaders = {};
+ this._clearSubscriptions();
+ this._timedOut = false;
+ }
+ }, {
+ key: "responseType",
+ get: function get() {
+ return this._responseType;
+ },
+ set: function set(responseType) {
+ if (this._sent) {
+ throw new Error("Failed to set the 'responseType' property on 'XMLHttpRequest': The " + 'response type cannot be set after the request has been sent.');
+ }
+ if (!SUPPORTED_RESPONSE_TYPES.hasOwnProperty(responseType)) {
+ console.warn(`The provided value '${responseType}' is not a valid 'responseType'.`);
+ return;
+ }
+
+ // redboxes early, e.g. for 'arraybuffer' on ios 7
+ _$$_REQUIRE(_dependencyMap[11], "invariant")(SUPPORTED_RESPONSE_TYPES[responseType] || responseType === 'document', `The provided value '${responseType}' is unsupported in this environment.`);
+ if (responseType === 'blob') {
+ _$$_REQUIRE(_dependencyMap[11], "invariant")(_$$_REQUIRE(_dependencyMap[9], "../Blob/BlobManager").isAvailable, 'Native module BlobModule is required for blob support');
+ }
+ this._responseType = responseType;
+ }
+ }, {
+ key: "responseText",
+ get: function get() {
+ if (this._responseType !== '' && this._responseType !== 'text') {
+ throw new Error("The 'responseText' property is only available if 'responseType' " + `is set to '' or 'text', but it is '${this._responseType}'.`);
+ }
+ if (this.readyState < LOADING) {
+ return '';
+ }
+ return this._response;
+ }
+ }, {
+ key: "response",
+ get: function get() {
+ var responseType = this.responseType;
+ if (responseType === '' || responseType === 'text') {
+ return this.readyState < LOADING || this._hasError ? '' : this._response;
+ }
+ if (this.readyState !== DONE) {
+ return null;
+ }
+ if (this._cachedResponse !== undefined) {
+ return this._cachedResponse;
+ }
+ switch (responseType) {
+ case 'document':
+ this._cachedResponse = null;
+ break;
+ case 'arraybuffer':
+ this._cachedResponse = _$$_REQUIRE(_dependencyMap[12], "base64-js").toByteArray(this._response).buffer;
+ break;
+ case 'blob':
+ if (typeof this._response === 'object' && this._response) {
+ this._cachedResponse = _$$_REQUIRE(_dependencyMap[9], "../Blob/BlobManager").createFromOptions(this._response);
+ } else if (this._response === '') {
+ this._cachedResponse = _$$_REQUIRE(_dependencyMap[9], "../Blob/BlobManager").createFromParts([]);
+ } else {
+ throw new Error(`Invalid response for blob: ${this._response}`);
+ }
+ break;
+ case 'json':
+ try {
+ this._cachedResponse = JSON.parse(this._response);
+ } catch (_) {
+ this._cachedResponse = null;
+ }
+ break;
+ default:
+ this._cachedResponse = null;
+ }
+ return this._cachedResponse;
+ }
+
+ // exposed for testing
+ }, {
+ key: "__didCreateRequest",
+ value: function __didCreateRequest(requestId) {
+ this._requestId = requestId;
+ XMLHttpRequest._interceptor && XMLHttpRequest._interceptor.requestSent(requestId, this._url || '', this._method || 'GET', this._headers);
+ }
+
+ // exposed for testing
+ }, {
+ key: "__didUploadProgress",
+ value: function __didUploadProgress(requestId, progress, total) {
+ if (requestId === this._requestId) {
+ this.upload.dispatchEvent({
+ type: 'progress',
+ lengthComputable: true,
+ loaded: progress,
+ total: total
+ });
+ }
+ }
+ }, {
+ key: "__didReceiveResponse",
+ value: function __didReceiveResponse(requestId, status, responseHeaders, responseURL) {
+ if (requestId === this._requestId) {
+ this._perfKey != null && this._performanceLogger.stopTimespan(this._perfKey);
+ this.status = status;
+ this.setResponseHeaders(responseHeaders);
+ this.setReadyState(this.HEADERS_RECEIVED);
+ if (responseURL || responseURL === '') {
+ this.responseURL = responseURL;
+ } else {
+ delete this.responseURL;
+ }
+ XMLHttpRequest._interceptor && XMLHttpRequest._interceptor.responseReceived(requestId, responseURL || this._url || '', status, responseHeaders || {});
+ }
+ }
+ }, {
+ key: "__didReceiveData",
+ value: function __didReceiveData(requestId, response) {
+ if (requestId !== this._requestId) {
+ return;
+ }
+ this._response = response;
+ this._cachedResponse = undefined; // force lazy recomputation
+ this.setReadyState(this.LOADING);
+ XMLHttpRequest._interceptor && XMLHttpRequest._interceptor.dataReceived(requestId, response);
+ }
+ }, {
+ key: "__didReceiveIncrementalData",
+ value: function __didReceiveIncrementalData(requestId, responseText, progress, total) {
+ if (requestId !== this._requestId) {
+ return;
+ }
+ if (!this._response) {
+ this._response = responseText;
+ } else {
+ this._response += responseText;
+ }
+ XMLHttpRequest._interceptor && XMLHttpRequest._interceptor.dataReceived(requestId, responseText);
+ this.setReadyState(this.LOADING);
+ this.__didReceiveDataProgress(requestId, progress, total);
+ }
+ }, {
+ key: "__didReceiveDataProgress",
+ value: function __didReceiveDataProgress(requestId, loaded, total) {
+ if (requestId !== this._requestId) {
+ return;
+ }
+ this.dispatchEvent({
+ type: 'progress',
+ lengthComputable: total >= 0,
+ loaded: loaded,
+ total: total
+ });
+ }
+
+ // exposed for testing
+ }, {
+ key: "__didCompleteResponse",
+ value: function __didCompleteResponse(requestId, error, timeOutError) {
+ if (requestId === this._requestId) {
+ if (error) {
+ if (this._responseType === '' || this._responseType === 'text') {
+ this._response = error;
+ }
+ this._hasError = true;
+ if (timeOutError) {
+ this._timedOut = true;
+ }
+ }
+ this._clearSubscriptions();
+ this._requestId = null;
+ this.setReadyState(this.DONE);
+ if (error) {
+ XMLHttpRequest._interceptor && XMLHttpRequest._interceptor.loadingFailed(requestId, error);
+ } else {
+ XMLHttpRequest._interceptor && XMLHttpRequest._interceptor.loadingFinished(requestId, this._response.length);
+ }
+ }
+ }
+ }, {
+ key: "_clearSubscriptions",
+ value: function _clearSubscriptions() {
+ (this._subscriptions || []).forEach(function (sub) {
+ if (sub) {
+ sub.remove();
+ }
+ });
+ this._subscriptions = [];
+ }
+ }, {
+ key: "getAllResponseHeaders",
+ value: function getAllResponseHeaders() {
+ if (!this.responseHeaders) {
+ // according to the spec, return null if no response has been received
+ return null;
+ }
+
+ // Assign to non-nullable local variable.
+ var responseHeaders = this.responseHeaders;
+ var unsortedHeaders = new Map();
+ for (var rawHeaderName of Object.keys(responseHeaders)) {
+ var headerValue = responseHeaders[rawHeaderName];
+ var lowerHeaderName = rawHeaderName.toLowerCase();
+ var header = unsortedHeaders.get(lowerHeaderName);
+ if (header) {
+ header.headerValue += ', ' + headerValue;
+ unsortedHeaders.set(lowerHeaderName, header);
+ } else {
+ unsortedHeaders.set(lowerHeaderName, {
+ lowerHeaderName: lowerHeaderName,
+ upperHeaderName: rawHeaderName.toUpperCase(),
+ headerValue: headerValue
+ });
+ }
+ }
+
+ // Sort in ascending order, with a being less than b if a's name is legacy-uppercased-byte less than b's name.
+ var sortedHeaders = (0, _toConsumableArray2.default)(unsortedHeaders.values()).sort(function (a, b) {
+ if (a.upperHeaderName < b.upperHeaderName) {
+ return -1;
+ }
+ if (a.upperHeaderName > b.upperHeaderName) {
+ return 1;
+ }
+ return 0;
+ });
+
+ // Combine into single text response.
+ return sortedHeaders.map(function (header) {
+ return header.lowerHeaderName + ': ' + header.headerValue;
+ }).join('\r\n') + '\r\n';
+ }
+ }, {
+ key: "getResponseHeader",
+ value: function getResponseHeader(header) {
+ var value = this._lowerCaseResponseHeaders[header.toLowerCase()];
+ return value !== undefined ? value : null;
+ }
+ }, {
+ key: "setRequestHeader",
+ value: function setRequestHeader(header, value) {
+ if (this.readyState !== this.OPENED) {
+ throw new Error('Request has not been opened');
+ }
+ this._headers[header.toLowerCase()] = String(value);
+ }
+
+ /**
+ * Custom extension for tracking origins of request.
+ */
+ }, {
+ key: "setTrackingName",
+ value: function setTrackingName(trackingName) {
+ this._trackingName = trackingName;
+ return this;
+ }
+
+ /**
+ * Custom extension for setting a custom performance logger
+ */
+ }, {
+ key: "setPerformanceLogger",
+ value: function setPerformanceLogger(performanceLogger) {
+ this._performanceLogger = performanceLogger;
+ return this;
+ }
+ }, {
+ key: "open",
+ value: function open(method, url, async) {
+ /* Other optional arguments are not supported yet */
+ if (this.readyState !== this.UNSENT) {
+ throw new Error('Cannot open, already sending');
+ }
+ if (async !== undefined && !async) {
+ // async is default
+ throw new Error('Synchronous http requests are not supported');
+ }
+ if (!url) {
+ throw new Error('Cannot load an empty url');
+ }
+ this._method = method.toUpperCase();
+ this._url = url;
+ this._aborted = false;
+ this.setReadyState(this.OPENED);
+ }
+ }, {
+ key: "send",
+ value: function send(data) {
+ var _this2 = this;
+ if (this.readyState !== this.OPENED) {
+ throw new Error('Request has not been opened');
+ }
+ if (this._sent) {
+ throw new Error('Request has already been sent');
+ }
+ this._sent = true;
+ var incrementalEvents = this._incrementalEvents || !!this.onreadystatechange || !!this.onprogress;
+ this._subscriptions.push(_$$_REQUIRE(_dependencyMap[13], "./RCTNetworking").default.addListener('didSendNetworkData', function (args) {
+ return _this2.__didUploadProgress.apply(_this2, (0, _toConsumableArray2.default)(args));
+ }));
+ this._subscriptions.push(_$$_REQUIRE(_dependencyMap[13], "./RCTNetworking").default.addListener('didReceiveNetworkResponse', function (args) {
+ return _this2.__didReceiveResponse.apply(_this2, (0, _toConsumableArray2.default)(args));
+ }));
+ this._subscriptions.push(_$$_REQUIRE(_dependencyMap[13], "./RCTNetworking").default.addListener('didReceiveNetworkData', function (args) {
+ return _this2.__didReceiveData.apply(_this2, (0, _toConsumableArray2.default)(args));
+ }));
+ this._subscriptions.push(_$$_REQUIRE(_dependencyMap[13], "./RCTNetworking").default.addListener('didReceiveNetworkIncrementalData', function (args) {
+ return _this2.__didReceiveIncrementalData.apply(_this2, (0, _toConsumableArray2.default)(args));
+ }));
+ this._subscriptions.push(_$$_REQUIRE(_dependencyMap[13], "./RCTNetworking").default.addListener('didReceiveNetworkDataProgress', function (args) {
+ return _this2.__didReceiveDataProgress.apply(_this2, (0, _toConsumableArray2.default)(args));
+ }));
+ this._subscriptions.push(_$$_REQUIRE(_dependencyMap[13], "./RCTNetworking").default.addListener('didCompleteNetworkResponse', function (args) {
+ return _this2.__didCompleteResponse.apply(_this2, (0, _toConsumableArray2.default)(args));
+ }));
+ var nativeResponseType = 'text';
+ if (this._responseType === 'arraybuffer') {
+ nativeResponseType = 'base64';
+ }
+ if (this._responseType === 'blob') {
+ nativeResponseType = 'blob';
+ }
+ var doSend = function doSend() {
+ var friendlyName = _this2._trackingName !== 'unknown' ? _this2._trackingName : _this2._url;
+ _this2._perfKey = 'network_XMLHttpRequest_' + String(friendlyName);
+ _this2._performanceLogger.startTimespan(_this2._perfKey);
+ _$$_REQUIRE(_dependencyMap[11], "invariant")(_this2._method, 'XMLHttpRequest method needs to be defined (%s).', friendlyName);
+ _$$_REQUIRE(_dependencyMap[11], "invariant")(_this2._url, 'XMLHttpRequest URL needs to be defined (%s).', friendlyName);
+ _$$_REQUIRE(_dependencyMap[13], "./RCTNetworking").default.sendRequest(_this2._method, _this2._trackingName, _this2._url, _this2._headers, data,
+ /* $FlowFixMe(>=0.78.0 site=react_native_android_fb) This issue was found
+ * when making Flow check .android.js files. */
+ nativeResponseType, incrementalEvents, _this2.timeout,
+ // $FlowFixMe[method-unbinding] added when improving typing for this parameters
+ _this2.__didCreateRequest.bind(_this2), _this2.withCredentials);
+ };
+ if (DEBUG_NETWORK_SEND_DELAY) {
+ setTimeout(doSend, DEBUG_NETWORK_SEND_DELAY);
+ } else {
+ doSend();
+ }
+ }
+ }, {
+ key: "abort",
+ value: function abort() {
+ this._aborted = true;
+ if (this._requestId) {
+ _$$_REQUIRE(_dependencyMap[13], "./RCTNetworking").default.abortRequest(this._requestId);
+ }
+ // only call onreadystatechange if there is something to abort,
+ // below logic is per spec
+ if (!(this.readyState === this.UNSENT || this.readyState === this.OPENED && !this._sent || this.readyState === this.DONE)) {
+ this._reset();
+ this.setReadyState(this.DONE);
+ }
+ // Reset again after, in case modified in handler
+ this._reset();
+ }
+ }, {
+ key: "setResponseHeaders",
+ value: function setResponseHeaders(responseHeaders) {
+ this.responseHeaders = responseHeaders || null;
+ var headers = responseHeaders || {};
+ this._lowerCaseResponseHeaders = Object.keys(headers).reduce(function (lcaseHeaders, headerName) {
+ lcaseHeaders[headerName.toLowerCase()] = headers[headerName];
+ return lcaseHeaders;
+ }, {});
+ }
+ }, {
+ key: "setReadyState",
+ value: function setReadyState(newState) {
+ this.readyState = newState;
+ this.dispatchEvent({
+ type: 'readystatechange'
+ });
+ if (newState === this.DONE) {
+ if (this._aborted) {
+ this.dispatchEvent({
+ type: 'abort'
+ });
+ } else if (this._hasError) {
+ if (this._timedOut) {
+ this.dispatchEvent({
+ type: 'timeout'
+ });
+ } else {
+ this.dispatchEvent({
+ type: 'error'
+ });
+ }
+ } else {
+ this.dispatchEvent({
+ type: 'load'
+ });
+ }
+ this.dispatchEvent({
+ type: 'loadend'
+ });
+ }
+ }
+
+ /* global EventListener */
+ }, {
+ key: "addEventListener",
+ value: function addEventListener(type, listener) {
+ // If we dont' have a 'readystatechange' event handler, we don't
+ // have to send repeated LOADING events with incremental updates
+ // to responseText, which will avoid a bunch of native -> JS
+ // bridge traffic.
+ if (type === 'readystatechange' || type === 'progress') {
+ this._incrementalEvents = true;
+ }
+ _superPropGet(XMLHttpRequest, "addEventListener", this, 3)([type, listener]);
+ }
+ }], [{
+ key: "setInterceptor",
+ value: function setInterceptor(interceptor) {
+ XMLHttpRequest._interceptor = interceptor;
+ }
+ }]);
+ }(_eventTargetShim.default.apply(void 0, (0, _toConsumableArray2.default)(XHR_EVENTS)));
+ XMLHttpRequest.UNSENT = UNSENT;
+ XMLHttpRequest.OPENED = OPENED;
+ XMLHttpRequest.HEADERS_RECEIVED = HEADERS_RECEIVED;
+ XMLHttpRequest.LOADING = LOADING;
+ XMLHttpRequest.DONE = DONE;
+ XMLHttpRequest._interceptor = null;
+ module.exports = XMLHttpRequest;
+},149,[6,41,26,19,18,23,25,28,150,151,155,37,3,159],"node_modules\\react-native\\Libraries\\Network\\XMLHttpRequest.js");
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ /**
+ * @author Toru Nagashima
+ * @copyright 2015 Toru Nagashima. All rights reserved.
+ * See LICENSE file in root directory for full license.
+ */
+ 'use strict';
+
+ Object.defineProperty(exports, '__esModule', {
+ value: true
+ });
+
+ /**
+ * @typedef {object} PrivateData
+ * @property {EventTarget} eventTarget The event target.
+ * @property {{type:string}} event The original event object.
+ * @property {number} eventPhase The current event phase.
+ * @property {EventTarget|null} currentTarget The current event target.
+ * @property {boolean} canceled The flag to prevent default.
+ * @property {boolean} stopped The flag to stop propagation.
+ * @property {boolean} immediateStopped The flag to stop propagation immediately.
+ * @property {Function|null} passiveListener The listener if the current listener is passive. Otherwise this is null.
+ * @property {number} timeStamp The unix time.
+ * @private
+ */
+
+ /**
+ * Private data for event wrappers.
+ * @type {WeakMap}
+ * @private
+ */
+ var privateData = new WeakMap();
+
+ /**
+ * Cache for wrapper classes.
+ * @type {WeakMap