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 = Object.create(null); return modules; } if (__DEV__) { var verboseNamesToModuleIds = Object.create(null); var initializingModuleIds = []; } function define(factory, moduleId, dependencyMap) { if (modules[moduleId] != null) { 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[moduleId] = mod; if (__DEV__) { mod.hot = createHotReloadingObject(); var verboseName = arguments[3]; if (verboseName) { mod.verboseName = verboseName; verboseNamesToModuleIds[verboseName] = moduleId; } } } function metroRequire(moduleId) { if (__DEV__ && typeof moduleId === "string") { var verboseName = moduleId; moduleId = verboseNamesToModuleIds[verboseName]; if (moduleId == null) { throw new Error(`Unknown named module: "${verboseName}"`); } else { 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) { return modules[id] ? modules[id].verboseName : "[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[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 = verboseNamesToModuleIds[verboseName]; } var moduleIdReallyIsNumber = moduleId; if (modules[moduleIdReallyIsNumber] && modules[moduleIdReallyIsNumber].importedDefault !== EMPTY) { return modules[moduleIdReallyIsNumber].importedDefault; } var exports = metroRequire(moduleIdReallyIsNumber); var importedDefault = exports && exports.__esModule ? exports.default : exports; return modules[moduleIdReallyIsNumber].importedDefault = importedDefault; } metroRequire.importDefault = metroImportDefault; function metroImportAll(moduleId) { if (__DEV__ && typeof moduleId === "string") { var verboseName = moduleId; moduleId = verboseNamesToModuleIds[verboseName]; } var moduleIdReallyIsNumber = moduleId; if (modules[moduleIdReallyIsNumber] && modules[moduleIdReallyIsNumber].importedAll !== EMPTY) { return modules[moduleIdReallyIsNumber].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; } return modules[moduleIdReallyIsNumber].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[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[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[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[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[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[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[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[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) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _reactNative = _$$_REQUIRE(_dependencyMap[1], "react-native"); var _App = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "./App")); var _app = _$$_REQUIRE(_dependencyMap[3], "./app.json"); /** * @format */ _reactNative.AppRegistry.registerComponent(_app.name, function () { return _App.default; }); },0,[1,2,569,1155],"index.js"); __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; },1,[],"node_modules/@babel/runtime/helpers/interopRequireDefault.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'; // APIs // Components // Plugins var warnOnce = _$$_REQUIRE(_dependencyMap[0], "./Libraries/Utilities/warnOnce"); var invariant = _$$_REQUIRE(_dependencyMap[1], "invariant"); module.exports = { get registerCallableModule() { return _$$_REQUIRE(_dependencyMap[2], "./Libraries/Core/registerCallableModule").default; }, // Components get AccessibilityInfo() { return _$$_REQUIRE(_dependencyMap[3], "./Libraries/Components/AccessibilityInfo/AccessibilityInfo").default; }, get ActivityIndicator() { return _$$_REQUIRE(_dependencyMap[4], "./Libraries/Components/ActivityIndicator/ActivityIndicator").default; }, get Button() { return _$$_REQUIRE(_dependencyMap[5], "./Libraries/Components/Button").default; }, // $FlowFixMe[value-as-type] get DrawerLayoutAndroid() { return _$$_REQUIRE(_dependencyMap[6], "./Libraries/Components/DrawerAndroid/DrawerLayoutAndroid"); }, get FlatList() { return _$$_REQUIRE(_dependencyMap[7], "./Libraries/Lists/FlatList"); }, get Image() { return _$$_REQUIRE(_dependencyMap[8], "./Libraries/Image/Image"); }, get ImageBackground() { return _$$_REQUIRE(_dependencyMap[9], "./Libraries/Image/ImageBackground"); }, get InputAccessoryView() { return _$$_REQUIRE(_dependencyMap[10], "./Libraries/Components/TextInput/InputAccessoryView").default; }, get KeyboardAvoidingView() { return _$$_REQUIRE(_dependencyMap[11], "./Libraries/Components/Keyboard/KeyboardAvoidingView").default; }, get Modal() { return _$$_REQUIRE(_dependencyMap[12], "./Libraries/Modal/Modal"); }, get Pressable() { return _$$_REQUIRE(_dependencyMap[13], "./Libraries/Components/Pressable/Pressable").default; }, // $FlowFixMe[value-as-type] get ProgressBarAndroid() { 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[14], "./Libraries/Components/ProgressBarAndroid/ProgressBarAndroid"); }, get RefreshControl() { return _$$_REQUIRE(_dependencyMap[15], "./Libraries/Components/RefreshControl/RefreshControl"); }, get SafeAreaView() { return _$$_REQUIRE(_dependencyMap[16], "./Libraries/Components/SafeAreaView/SafeAreaView").default; }, get ScrollView() { return _$$_REQUIRE(_dependencyMap[17], "./Libraries/Components/ScrollView/ScrollView"); }, get SectionList() { return _$$_REQUIRE(_dependencyMap[18], "./Libraries/Lists/SectionList").default; }, get StatusBar() { return _$$_REQUIRE(_dependencyMap[19], "./Libraries/Components/StatusBar/StatusBar"); }, get Switch() { return _$$_REQUIRE(_dependencyMap[20], "./Libraries/Components/Switch/Switch").default; }, get Text() { return _$$_REQUIRE(_dependencyMap[21], "./Libraries/Text/Text"); }, get TextInput() { return _$$_REQUIRE(_dependencyMap[22], "./Libraries/Components/TextInput/TextInput"); }, get Touchable() { return _$$_REQUIRE(_dependencyMap[23], "./Libraries/Components/Touchable/Touchable").default; }, get TouchableHighlight() { return _$$_REQUIRE(_dependencyMap[24], "./Libraries/Components/Touchable/TouchableHighlight"); }, get TouchableNativeFeedback() { return _$$_REQUIRE(_dependencyMap[25], "./Libraries/Components/Touchable/TouchableNativeFeedback"); }, get TouchableOpacity() { return _$$_REQUIRE(_dependencyMap[26], "./Libraries/Components/Touchable/TouchableOpacity"); }, get TouchableWithoutFeedback() { return _$$_REQUIRE(_dependencyMap[27], "./Libraries/Components/Touchable/TouchableWithoutFeedback"); }, get View() { return _$$_REQUIRE(_dependencyMap[28], "./Libraries/Components/View/View"); }, get VirtualizedList() { return _$$_REQUIRE(_dependencyMap[29], "./Libraries/Lists/VirtualizedList"); }, get VirtualizedSectionList() { return _$$_REQUIRE(_dependencyMap[30], "./Libraries/Lists/VirtualizedSectionList"); }, // APIs get ActionSheetIOS() { return _$$_REQUIRE(_dependencyMap[31], "./Libraries/ActionSheetIOS/ActionSheetIOS"); }, get Alert() { return _$$_REQUIRE(_dependencyMap[32], "./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[33], "./Libraries/Animated/Animated").default; }, get Appearance() { return _$$_REQUIRE(_dependencyMap[34], "./Libraries/Utilities/Appearance"); }, get AppRegistry() { return _$$_REQUIRE(_dependencyMap[35], "./Libraries/ReactNative/AppRegistry"); }, get AppState() { return _$$_REQUIRE(_dependencyMap[36], "./Libraries/AppState/AppState"); }, get BackHandler() { return _$$_REQUIRE(_dependencyMap[37], "./Libraries/Utilities/BackHandler"); }, get Clipboard() { 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[38], "./Libraries/Components/Clipboard/Clipboard"); }, get DeviceInfo() { return _$$_REQUIRE(_dependencyMap[39], "./Libraries/Utilities/DeviceInfo"); }, get DevSettings() { return _$$_REQUIRE(_dependencyMap[40], "./Libraries/Utilities/DevSettings"); }, get Dimensions() { return _$$_REQUIRE(_dependencyMap[41], "./Libraries/Utilities/Dimensions").default; }, get Easing() { return _$$_REQUIRE(_dependencyMap[42], "./Libraries/Animated/Easing").default; }, get findNodeHandle() { return _$$_REQUIRE(_dependencyMap[43], "./Libraries/ReactNative/RendererProxy").findNodeHandle; }, get I18nManager() { return _$$_REQUIRE(_dependencyMap[44], "./Libraries/ReactNative/I18nManager"); }, get InteractionManager() { return _$$_REQUIRE(_dependencyMap[45], "./Libraries/Interaction/InteractionManager"); }, get Keyboard() { return _$$_REQUIRE(_dependencyMap[46], "./Libraries/Components/Keyboard/Keyboard"); }, get LayoutAnimation() { return _$$_REQUIRE(_dependencyMap[47], "./Libraries/LayoutAnimation/LayoutAnimation"); }, get Linking() { return _$$_REQUIRE(_dependencyMap[48], "./Libraries/Linking/Linking"); }, get LogBox() { return _$$_REQUIRE(_dependencyMap[49], "./Libraries/LogBox/LogBox").default; }, get NativeDialogManagerAndroid() { return _$$_REQUIRE(_dependencyMap[50], "./Libraries/NativeModules/specs/NativeDialogManagerAndroid").default; }, get NativeEventEmitter() { return _$$_REQUIRE(_dependencyMap[51], "./Libraries/EventEmitter/NativeEventEmitter").default; }, get Networking() { return _$$_REQUIRE(_dependencyMap[52], "./Libraries/Network/RCTNetworking").default; }, get PanResponder() { return _$$_REQUIRE(_dependencyMap[53], "./Libraries/Interaction/PanResponder").default; }, get PermissionsAndroid() { return _$$_REQUIRE(_dependencyMap[54], "./Libraries/PermissionsAndroid/PermissionsAndroid"); }, get PixelRatio() { return _$$_REQUIRE(_dependencyMap[55], "./Libraries/Utilities/PixelRatio").default; }, get PushNotificationIOS() { 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'); return _$$_REQUIRE(_dependencyMap[56], "./Libraries/PushNotificationIOS/PushNotificationIOS"); }, get Settings() { return _$$_REQUIRE(_dependencyMap[57], "./Libraries/Settings/Settings"); }, get Share() { return _$$_REQUIRE(_dependencyMap[58], "./Libraries/Share/Share"); }, get StyleSheet() { return _$$_REQUIRE(_dependencyMap[59], "./Libraries/StyleSheet/StyleSheet"); }, get Systrace() { return _$$_REQUIRE(_dependencyMap[60], "./Libraries/Performance/Systrace"); }, // $FlowFixMe[value-as-type] get ToastAndroid() { return _$$_REQUIRE(_dependencyMap[61], "./Libraries/Components/ToastAndroid/ToastAndroid"); }, get TurboModuleRegistry() { return _$$_REQUIRE(_dependencyMap[62], "./Libraries/TurboModule/TurboModuleRegistry"); }, get UIManager() { return _$$_REQUIRE(_dependencyMap[63], "./Libraries/ReactNative/UIManager"); }, get unstable_batchedUpdates() { return _$$_REQUIRE(_dependencyMap[43], "./Libraries/ReactNative/RendererProxy").unstable_batchedUpdates; }, get useAnimatedValue() { return _$$_REQUIRE(_dependencyMap[64], "./Libraries/Animated/useAnimatedValue").default; }, get useColorScheme() { return _$$_REQUIRE(_dependencyMap[65], "./Libraries/Utilities/useColorScheme").default; }, get useWindowDimensions() { return _$$_REQUIRE(_dependencyMap[66], "./Libraries/Utilities/useWindowDimensions").default; }, get UTFSequence() { return _$$_REQUIRE(_dependencyMap[67], "./Libraries/UTFSequence").default; }, get Vibration() { return _$$_REQUIRE(_dependencyMap[68], "./Libraries/Vibration/Vibration"); }, get YellowBox() { return _$$_REQUIRE(_dependencyMap[69], "./Libraries/YellowBox/YellowBoxDeprecated"); }, // Plugins get DeviceEventEmitter() { return _$$_REQUIRE(_dependencyMap[70], "./Libraries/EventEmitter/RCTDeviceEventEmitter").default; }, get DynamicColorIOS() { return _$$_REQUIRE(_dependencyMap[71], "./Libraries/StyleSheet/PlatformColorValueTypesIOS").DynamicColorIOS; }, get NativeAppEventEmitter() { return _$$_REQUIRE(_dependencyMap[72], "./Libraries/EventEmitter/RCTNativeAppEventEmitter"); }, get NativeModules() { return _$$_REQUIRE(_dependencyMap[73], "./Libraries/BatchedBridge/NativeModules"); }, get Platform() { return _$$_REQUIRE(_dependencyMap[74], "./Libraries/Utilities/Platform"); }, get PlatformColor() { return _$$_REQUIRE(_dependencyMap[75], "./Libraries/StyleSheet/PlatformColorValueTypes").PlatformColor; }, get processColor() { return _$$_REQUIRE(_dependencyMap[76], "./Libraries/StyleSheet/processColor").default; }, get requireNativeComponent() { return _$$_REQUIRE(_dependencyMap[77], "./Libraries/ReactNative/requireNativeComponent").default; }, get RootTagContext() { return _$$_REQUIRE(_dependencyMap[78], "./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.'); }; } }; 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() { invariant(false, 'ART has been removed from React Native. ' + "Please upgrade to use either 'react-native-svg' or a similar package. " + "If you cannot upgrade to a different library, please install the deprecated '@react-native-community/art' package. " + '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() { 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() { 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() { 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() { 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() { invariant(false, 'CameraRoll has been removed from React Native. ' + "It can now be installed and imported from '@react-native-camera-roll/camera-roll' 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() { 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() { 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() { 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() { 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() { 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() { 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() { invariant(false, 'SegmentedControlIOS has been removed from React Native. ' + "It can now be installed and imported from '@react-native-segmented-control/segmented-control' 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() { 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() { 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() { 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() { 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() { invariant(false, 'MaskedViewIOS has been removed from React Native. ' + "It can now be installed and imported from '@react-native-masked-view/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() { 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() { invariant(false, 'ImagePickerIOS has been removed from React Native. ' + "Please upgrade to use either '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() { 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() { 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() { 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'); } }); } },2,[3,4,5,23,508,512,515,433,327,516,517,520,521,527,509,453,370,373,459,491,529,337,534,536,468,513,514,350,313,540,541,542,243,430,267,299,283,480,545,548,261,102,386,35,366,383,417,418,353,47,247,232,222,549,551,101,554,288,557,317,19,560,51,112,561,562,563,72,564,567,24,568,257,52,48,93,90,321,328],"node_modules/react-native/index.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; },3,[],"node_modules/react-native/Libraries/Utilities/warnOnce.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; },4,[],"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'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var registerCallableModule = function () { if (global.RN$Bridgeless === true) { return function (name, moduleOrFactory) { if (typeof moduleOrFactory === 'function') { global.RN$registerCallableModule(name, moduleOrFactory); return; } global.RN$registerCallableModule(name, function () { return moduleOrFactory; }); }; } var BatchedBridge = _$$_REQUIRE(_dependencyMap[0], "../BatchedBridge/BatchedBridge"); return function (name, moduleOrFactory) { if (typeof moduleOrFactory === 'function') { BatchedBridge.registerLazyCallableModule(name, moduleOrFactory); return; } BatchedBridge.registerCallableModule(name, moduleOrFactory); }; }(); var _default = exports.default = registerCallableModule; },5,[6],"node_modules/react-native/Libraries/Core/registerCallableModule.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 MessageQueue = _$$_REQUIRE(_dependencyMap[0], "./MessageQueue"); var BatchedBridge = new 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; },6,[7],"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 Systrace = _$$_REQUIRE(_dependencyMap[3], "../Performance/Systrace"); var deepFreezeAndThrowOnMutationInDev = _$$_REQUIRE(_dependencyMap[4], "../Utilities/deepFreezeAndThrowOnMutationInDev"); var stringifySafe = _$$_REQUIRE(_dependencyMap[5], "../Utilities/stringifySafe").default; var warnOnce = _$$_REQUIRE(_dependencyMap[6], "../Utilities/warnOnce"); var ErrorUtils = _$$_REQUIRE(_dependencyMap[7], "../vendor/core/ErrorUtils"); var invariant = _$$_REQUIRE(_dependencyMap[8], "invariant"); 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__) { 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 }; }); 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: ${stringifySafe(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 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 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); } 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) { 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() { Systrace.beginEvent('JSTimers.callReactNativeMicrotasks()'); try { if (this._reactNativeMicrotasksCallback != null) { this._reactNativeMicrotasksCallback(); } } finally { Systrace.endEvent(); } } }, { key: "__callFunction", value: function __callFunction(module, method, args) { this._lastFlush = Date.now(); this._eventLoopStartTime = this._lastFlush; if (__DEV__ || this.__spy) { Systrace.beginEvent(`${module}.${method}(${stringifySafe(args)})`); } else { 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'; 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]) { invariant(false, `Failed to call into JavaScript module method ${module}.${method}(). Module exists, but the method is undefined.`); } moduleMethods[method].apply(moduleMethods, args); } finally { 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]]; 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: '${stringifySafe(args)}'`); var profileName = debug ? '' : cbID; if (callback && this.__spy) { this.__spy({ type: TO_JS, module: null, method: profileName, args: args }); } Systrace.beginEvent(`MessageQueue.invokeCallback(${profileName}, ${stringifySafe(args)})`); } try { if (!callback) { return; } this._successCallbacks.delete(callID); this._failureCallbacks.delete(callID); callback.apply(void 0, _toConsumableArray(args)); } finally { if (__DEV__) { 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; },7,[8,14,15,19,20,21,3,22,4],"node_modules/react-native/Libraries/BatchedBridge/MessageQueue.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var arrayWithoutHoles = _$$_REQUIRE(_dependencyMap[0], "./arrayWithoutHoles.js"); var iterableToArray = _$$_REQUIRE(_dependencyMap[1], "./iterableToArray.js"); var unsupportedIterableToArray = _$$_REQUIRE(_dependencyMap[2], "./unsupportedIterableToArray.js"); var nonIterableSpread = _$$_REQUIRE(_dependencyMap[3], "./nonIterableSpread.js"); function _toConsumableArray(r) { return arrayWithoutHoles(r) || iterableToArray(r) || unsupportedIterableToArray(r) || nonIterableSpread(); } module.exports = _toConsumableArray, module.exports.__esModule = true, module.exports["default"] = module.exports; },8,[9,11,12,13],"node_modules/@babel/runtime/helpers/toConsumableArray.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var arrayLikeToArray = _$$_REQUIRE(_dependencyMap[0], "./arrayLikeToArray.js"); function _arrayWithoutHoles(r) { if (Array.isArray(r)) return arrayLikeToArray(r); } module.exports = _arrayWithoutHoles, module.exports.__esModule = true, module.exports["default"] = module.exports; },9,[10],"node_modules/@babel/runtime/helpers/arrayWithoutHoles.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; },10,[],"node_modules/@babel/runtime/helpers/arrayLikeToArray.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; },11,[],"node_modules/@babel/runtime/helpers/iterableToArray.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var arrayLikeToArray = _$$_REQUIRE(_dependencyMap[0], "./arrayLikeToArray.js"); function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return arrayLikeToArray(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) ? arrayLikeToArray(r, a) : void 0; } } module.exports = _unsupportedIterableToArray, module.exports.__esModule = true, module.exports["default"] = module.exports; },12,[10],"node_modules/@babel/runtime/helpers/unsupportedIterableToArray.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; },13,[],"node_modules/@babel/runtime/helpers/nonIterableSpread.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; },14,[],"node_modules/@babel/runtime/helpers/classCallCheck.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var toPropertyKey = _$$_REQUIRE(_dependencyMap[0], "./toPropertyKey.js"); 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, toPropertyKey(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; },15,[16],"node_modules/@babel/runtime/helpers/createClass.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _typeof = _$$_REQUIRE(_dependencyMap[0], "./typeof.js")["default"]; var toPrimitive = _$$_REQUIRE(_dependencyMap[1], "./toPrimitive.js"); function toPropertyKey(t) { var i = toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; } module.exports = toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports; },16,[17,18],"node_modules/@babel/runtime/helpers/toPropertyKey.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; },17,[],"node_modules/@babel/runtime/helpers/typeof.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _typeof = _$$_REQUIRE(_dependencyMap[0], "./typeof.js")["default"]; function toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(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; },18,[17],"node_modules/@babel/runtime/helpers/toPrimitive.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; } },19,[],"node_modules/react-native/Libraries/Performance/Systrace.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; },20,[],"node_modules/react-native/Libraries/Utilities/deepFreezeAndThrowOnMutationInDev.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; },21,[1,4],"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 * */ /** * 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; },22,[],"node_modules/react-native/Libraries/vendor/core/ErrorUtils.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 _RendererProxy = _$$_REQUIRE(_dependencyMap[2], "../../ReactNative/RendererProxy"); var _Platform = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "../../Utilities/Platform")); var _legacySendAccessibilityEvent = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "./legacySendAccessibilityEvent")); var _NativeAccessibilityInfo = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[5], "./NativeAccessibilityInfo")); var _NativeAccessibilityManager = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "./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, _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; },23,[1,24,35,48,133,506,134],"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 _Systrace = _$$_REQUIRE(_dependencyMap[7], "../Performance/Systrace"); var _EventEmitter2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[8], "../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, e, r, o) { var p = (0, _get2.default)((0, _getPrototypeOf2.default)(1 & o ? t.prototype : t), e, r); return 2 & o ? function (t) { return p.apply(r, 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, _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, _Systrace.endEvent)(); } }]); }(_EventEmitter2.default); var instance = new RCTDeviceEventEmitter(); Object.defineProperty(global, '__rctDeviceEventEmitter', { configurable: true, value: instance }); var _default = exports.default = instance; },24,[1,14,15,25,27,28,30,19,32],"node_modules/react-native/Libraries/EventEmitter/RCTDeviceEventEmitter.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _typeof = _$$_REQUIRE(_dependencyMap[0], "./typeof.js")["default"]; var assertThisInitialized = _$$_REQUIRE(_dependencyMap[1], "./assertThisInitialized.js"); function _possibleConstructorReturn(t, e) { if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return assertThisInitialized(t); } module.exports = _possibleConstructorReturn, module.exports.__esModule = true, module.exports["default"] = module.exports; },25,[17,26],"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; },26,[],"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; },27,[],"node_modules/@babel/runtime/helpers/getPrototypeOf.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var superPropBase = _$$_REQUIRE(_dependencyMap[0], "./superPropBase.js"); function _get() { return (module.exports = _get = "undefined" != typeof Reflect && Reflect.get ? Reflect.get.bind() : function (e, t, r) { var p = superPropBase(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; },28,[29],"node_modules/@babel/runtime/helpers/get.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var getPrototypeOf = _$$_REQUIRE(_dependencyMap[0], "./getPrototypeOf.js"); function _superPropBase(t, o) { for (; !{}.hasOwnProperty.call(t, o) && null !== (t = getPrototypeOf(t));); return t; } module.exports = _superPropBase, module.exports.__esModule = true, module.exports["default"] = module.exports; },29,[27],"node_modules/@babel/runtime/helpers/superPropBase.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var setPrototypeOf = _$$_REQUIRE(_dependencyMap[0], "./setPrototypeOf.js"); 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 && setPrototypeOf(t, e); } module.exports = _inherits, module.exports.__esModule = true, module.exports["default"] = module.exports; },30,[31],"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; },31,[],"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 */ // $FlowFixMe[deprecated-type] /** * 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; } },32,[1,14,15,33,34],"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; },33,[],"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; },34,[],"node_modules/@babel/runtime/helpers/classPrivateFieldLooseKey.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _RendererImplementation = _$$_REQUIRE(_dependencyMap[0], "./RendererImplementation"); Object.keys(_RendererImplementation).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (key in exports && exports[key] === _RendererImplementation[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _RendererImplementation[key]; } }); }); },35,[36],"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.isChildPublicInstance = isChildPublicInstance; 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__); } function isChildPublicInstance(parentInstance, childInstance) { return _$$_REQUIRE(_dependencyMap[1], "../Renderer/shims/ReactNative").isChildPublicInstance(parentInstance, childInstance); } },36,[37,462],"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 _ReactNativePrivateInterface = _$$_REQUIRE(_dependencyMap[0], "react-native/Libraries/ReactPrivate/ReactNativePrivateInterface"); var ReactFabric; if (__DEV__) { ReactFabric = _$$_REQUIRE(_dependencyMap[1], "../implementations/ReactFabric-dev"); } else { ReactFabric = _$$_REQUIRE(_dependencyMap[2], "../implementations/ReactFabric-prod"); } global.RN$stopSurface = ReactFabric.stopSurface; if (global.RN$Bridgeless !== true) { _ReactNativePrivateInterface.BatchedBridge.registerCallableModule('ReactFabric', ReactFabric); } module.exports = ReactFabric; },37,[38,157,505],"node_modules/react-native/Libraries/Renderer/shims/ReactFabric.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 * */ // flowlint unsafe-getters-setters:off module.exports = { get BatchedBridge() { return _$$_REQUIRE(_dependencyMap[0], "../BatchedBridge/BatchedBridge"); }, get ExceptionsManager() { return _$$_REQUIRE(_dependencyMap[1], "../Core/ExceptionsManager"); }, get Platform() { return _$$_REQUIRE(_dependencyMap[2], "../Utilities/Platform"); }, get RCTEventEmitter() { return _$$_REQUIRE(_dependencyMap[3], "../EventEmitter/RCTEventEmitter"); }, get ReactNativeViewConfigRegistry() { return _$$_REQUIRE(_dependencyMap[4], "../Renderer/shims/ReactNativeViewConfigRegistry"); }, get TextInputState() { return _$$_REQUIRE(_dependencyMap[5], "../Components/TextInput/TextInputState"); }, get UIManager() { return _$$_REQUIRE(_dependencyMap[6], "../ReactNative/UIManager"); }, // TODO: Remove when React has migrated to `createAttributePayload` and `diffAttributePayloads` get deepDiffer() { return _$$_REQUIRE(_dependencyMap[7], "../Utilities/differ/deepDiffer"); }, get deepFreezeAndThrowOnMutationInDev() { return _$$_REQUIRE(_dependencyMap[8], "../Utilities/deepFreezeAndThrowOnMutationInDev"); }, // TODO: Remove when React has migrated to `createAttributePayload` and `diffAttributePayloads` get flattenStyle() { // $FlowFixMe[underconstrained-implicit-instantiation] // $FlowFixMe[incompatible-return] return _$$_REQUIRE(_dependencyMap[9], "../StyleSheet/flattenStyle"); }, get ReactFiberErrorDialog() { return _$$_REQUIRE(_dependencyMap[10], "../Core/ReactFiberErrorDialog").default; }, get legacySendAccessibilityEvent() { return _$$_REQUIRE(_dependencyMap[11], "../Components/AccessibilityInfo/legacySendAccessibilityEvent"); }, get RawEventEmitter() { return _$$_REQUIRE(_dependencyMap[12], "../Core/RawEventEmitter").default; }, get CustomEvent() { return _$$_REQUIRE(_dependencyMap[13], "../Events/CustomEvent").default; }, get createAttributePayload() { return _$$_REQUIRE(_dependencyMap[14], "../ReactNative/ReactFabricPublicInstance/ReactNativeAttributePayload").create; }, get diffAttributePayloads() { return _$$_REQUIRE(_dependencyMap[14], "../ReactNative/ReactFabricPublicInstance/ReactNativeAttributePayload").diff; }, get createPublicInstance() { return _$$_REQUIRE(_dependencyMap[15], "../ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance").createPublicInstance; }, get createPublicTextInstance() { return _$$_REQUIRE(_dependencyMap[15], "../ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance").createPublicTextInstance; }, get getNativeTagFromPublicInstance() { return _$$_REQUIRE(_dependencyMap[15], "../ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance").getNativeTagFromPublicInstance; }, get getNodeFromPublicInstance() { return _$$_REQUIRE(_dependencyMap[15], "../ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance").getNodeFromPublicInstance; }, get getInternalInstanceHandleFromPublicInstance() { return _$$_REQUIRE(_dependencyMap[15], "../ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance").getInternalInstanceHandleFromPublicInstance; } }; },38,[6,39,48,82,83,84,112,130,20,131,132,133,136,137,139,140],"node_modules/react-native/Libraries/ReactPrivate/ReactNativePrivateInterface.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 }; },39,[15,14,25,27,30,40,44,47,80,21],"node_modules/react-native/Libraries/Core/ExceptionsManager.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var getPrototypeOf = _$$_REQUIRE(_dependencyMap[0], "./getPrototypeOf.js"); var setPrototypeOf = _$$_REQUIRE(_dependencyMap[1], "./setPrototypeOf.js"); var isNativeFunction = _$$_REQUIRE(_dependencyMap[2], "./isNativeFunction.js"); var construct = _$$_REQUIRE(_dependencyMap[3], "./construct.js"); function _wrapNativeSuper(t) { var r = "function" == typeof Map ? new Map() : void 0; return (module.exports = _wrapNativeSuper = function _wrapNativeSuper(t) { if (null === t || !isNativeFunction(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 construct(t, arguments, getPrototypeOf(this).constructor); } return Wrapper.prototype = Object.create(t.prototype, { constructor: { value: Wrapper, enumerable: !1, writable: !0, configurable: !0 } }), setPrototypeOf(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; },40,[27,31,41,42],"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; },41,[],"node_modules/@babel/runtime/helpers/isNativeFunction.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var isNativeReflectConstruct = _$$_REQUIRE(_dependencyMap[0], "./isNativeReflectConstruct.js"); var setPrototypeOf = _$$_REQUIRE(_dependencyMap[1], "./setPrototypeOf.js"); function _construct(t, e, r) { if (isNativeReflectConstruct()) return Reflect.construct.apply(null, arguments); var o = [null]; o.push.apply(o, e); var p = new (t.bind.apply(t, o))(); return r && setPrototypeOf(p, r.prototype), p; } module.exports = _construct, module.exports.__esModule = true, module.exports["default"] = module.exports; },42,[43,31],"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; },43,[],"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'; var parseHermesStack = _$$_REQUIRE(_dependencyMap[0], "./parseHermesStack"); 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[1], "stacktrace-parser"); var parsedStack = Array.isArray(errorStack) ? errorStack : global.HermesInternal ? convertHermesStack(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; },44,[45,46],"node_modules/react-native/Libraries/Core/Devtools/parseErrorStack.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 }; }; },45,[],"node_modules/react-native/Libraries/Core/Devtools/parseHermesStack.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; },46,[],"node_modules/stacktrace-parser/dist/stack-trace-parser.cjs.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; },47,[1,48,58,59,71,60],"node_modules/react-native/Libraries/LogBox/LogBox.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _NativePlatformConstantsIOS = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./NativePlatformConstantsIOS")); /** * 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: 'ios', // $FlowFixMe[unsafe-getters-setters] get Version() { // $FlowFixMe[object-this-reference] return this.constants.osVersion; }, // $FlowFixMe[unsafe-getters-setters] get constants() { // $FlowFixMe[object-this-reference] if (this.__constants == null) { // $FlowFixMe[object-this-reference] this.__constants = _NativePlatformConstantsIOS.default.getConstants(); } // $FlowFixMe[object-this-reference] return this.__constants; }, // $FlowFixMe[unsafe-getters-setters] get isPad() { // $FlowFixMe[object-this-reference] return this.constants.interfaceIdiom === 'pad'; }, // $FlowFixMe[unsafe-getters-setters] get isTV() { // $FlowFixMe[object-this-reference] return this.constants.interfaceIdiom === 'tv'; }, // $FlowFixMe[unsafe-getters-setters] get isVision() { // $FlowFixMe[object-this-reference] return this.constants.interfaceIdiom === 'vision'; }, // $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 isMacCatalyst() { var _this$constants$isMac; // $FlowFixMe[object-this-reference] return (_this$constants$isMac = this.constants.isMacCatalyst) != null ? _this$constants$isMac : false; }, select: function select(spec) { return ( // $FlowFixMe[incompatible-return] 'ios' in spec ? spec.ios : 'native' in spec ? spec.native : spec.default ); } }; module.exports = Platform; },48,[1,49],"node_modules/react-native/Libraries/Utilities/Platform.ios.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativePlatformConstantsIOS = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../src/private/specs/modules/NativePlatformConstantsIOS")); Object.keys(_NativePlatformConstantsIOS).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativePlatformConstantsIOS[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativePlatformConstantsIOS[key]; } }); }); 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 = _NativePlatformConstantsIOS.default; },49,[50],"node_modules/react-native/Libraries/Utilities/NativePlatformConstantsIOS.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], "../../../../Libraries/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'); },50,[51],"node_modules/react-native/src/private/specs/modules/NativePlatformConstantsIOS.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 NativeModules = _$$_REQUIRE(_dependencyMap[2], "../BatchedBridge/NativeModules"); 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 = 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; } },51,[1,4,52],"node_modules/react-native/Libraries/TurboModule/TurboModuleRegistry.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"); var BatchedBridge = _$$_REQUIRE(_dependencyMap[1], "./BatchedBridge"); var invariant = _$$_REQUIRE(_dependencyMap[2], "invariant"); 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]; 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; 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__) { 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) { 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) { 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 && 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 BatchedBridge.callNativeSyncHook(moduleID, methodID, newArgs, onFail, onSuccess); } else { 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 { var bridgeConfig = global.__fbBatchedBridgeConfig; 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; },52,[53,6,4,57],"node_modules/react-native/Libraries/BatchedBridge/NativeModules.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var arrayWithHoles = _$$_REQUIRE(_dependencyMap[0], "./arrayWithHoles.js"); var iterableToArrayLimit = _$$_REQUIRE(_dependencyMap[1], "./iterableToArrayLimit.js"); var unsupportedIterableToArray = _$$_REQUIRE(_dependencyMap[2], "./unsupportedIterableToArray.js"); var nonIterableRest = _$$_REQUIRE(_dependencyMap[3], "./nonIterableRest.js"); function _slicedToArray(r, e) { return arrayWithHoles(r) || iterableToArrayLimit(r, e) || unsupportedIterableToArray(r, e) || nonIterableRest(); } module.exports = _slicedToArray, module.exports.__esModule = true, module.exports["default"] = module.exports; },53,[54,55,12,56],"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; },54,[],"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; },55,[],"node_modules/@babel/runtime/helpers/iterableToArrayLimit.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; },56,[],"node_modules/@babel/runtime/helpers/nonIterableRest.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; },57,[],"node_modules/react-native/Libraries/Utilities/defineLazyObjectProperty.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 invariant = _$$_REQUIRE(_dependencyMap[0], "invariant"); 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]; 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; },58,[4],"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 _parseLogBoxLog = _$$_REQUIRE(_dependencyMap[9], "./parseLogBoxLog"); var React = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[10], "react")); var _jsxRuntime = _$$_REQUIRE(_dependencyMap[11], "react/jsx-runtime"); var _jsxFileName = "/Users/trivikr/workspace/aws-sdk-js-tests/packages/react-native/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[12], "../../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, _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; } },59,[1,14,15,25,27,30,44,60,62,71,74,77,39],"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 }); var _exportNames = {}; exports.default = void 0; var _NativeLogBox = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../../src/private/specs/modules/NativeLogBox")); Object.keys(_NativeLogBox).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeLogBox[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeLogBox[key]; } }); }); 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 = _NativeLogBox.default; },60,[61],"node_modules/react-native/Libraries/NativeModules/specs/NativeLogBox.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], "../../../../Libraries/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'); },61,[51],"node_modules/react-native/src/private/specs/modules/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; },62,[1,14,15,63],"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; } },63,[1,64],"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"); var getDevServer = _$$_REQUIRE(_dependencyMap[1], "./getDevServer"); function symbolicateStackTrace(_x, _x2) { return _symbolicateStackTrace.apply(this, arguments); } function _symbolicateStackTrace() { _symbolicateStackTrace = _asyncToGenerator(function* (stack, extraData) { var _global$fetch; var devServer = 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; },64,[65,66,69],"node_modules/react-native/Libraries/Core/Devtools/symbolicateStackTrace.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; },65,[],"node_modules/@babel/runtime/helpers/asyncToGenerator.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; },66,[1,67],"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 }); var _exportNames = {}; exports.default = void 0; var _NativeSourceCode = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../../src/private/specs/modules/NativeSourceCode")); Object.keys(_NativeSourceCode).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeSourceCode[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeSourceCode[key]; } }); }); 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 = _NativeSourceCode.default; },67,[68],"node_modules/react-native/Libraries/NativeModules/specs/NativeSourceCode.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], "../../../../Libraries/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; },68,[51],"node_modules/react-native/src/private/specs/modules/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 }; },69,[70],"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 }); }); },70,[],"node_modules/whatwg-fetch/dist/fetch.umd.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-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+?)\n([ >]{2}[\t-\r 0-9\xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF]+ \|(?:[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+|\x1B(?:[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\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-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\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 }); } },71,[1,53,8,44,72,21,73],"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; var deepFreezeAndThrowOnMutationInDev = _$$_REQUIRE(_dependencyMap[0], "./Utilities/deepFreezeAndThrowOnMutationInDev"); /** * 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 = 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; },72,[20],"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'); }; },73,[],"node_modules/ansi-regex/index.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"); } },74,[75,76],"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 }; function X() { throw Error("act(...) is not supported in production builds of React."); } 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.act = X; 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 = X; 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.3.1"; },75,[],"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.3.1'; // 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.act = act; 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()); } })(); } },76,[],"node_modules/react/cjs/react.development.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"); } },77,[78,79],"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; },78,[74],"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); } } } var didWarnAboutKeySpread = {}; 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 (hasOwnProperty.call(props, 'key')) { var componentName = getComponentNameFromType(type); var keys = Object.keys(props).filter(function (k) { return k !== 'key'; }); var beforeExample = keys.length > 0 ? '{key: someKey, ' + keys.join(': ..., ') + ': ...}' : '{key: someKey}'; if (!didWarnAboutKeySpread[componentName + beforeExample]) { var afterExample = keys.length > 0 ? '{' + keys.join(': ..., ') + ': ...}' : '{}'; error('A props object containing a "key" prop is being spread into JSX:\n' + ' let props = %s;\n' + ' <%s {...props} />\n' + 'React keys must be passed directly to JSX without using spread:\n' + ' let props = %s;\n' + ' <%s key={someKey} {...props} />', beforeExample, componentName, afterExample, componentName); didWarnAboutKeySpread[componentName + beforeExample] = true; } } } 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; })(); } },79,[74],"node_modules/react/cjs/react-jsx-runtime.development.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativeExceptionsManager = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../src/private/specs/modules/NativeExceptionsManager")); Object.keys(_NativeExceptionsManager).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeExceptionsManager[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeExceptionsManager[key]; } }); }); 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 = _NativeExceptionsManager.default; },80,[81],"node_modules/react-native/Libraries/Core/NativeExceptionsManager.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], "../../../../Libraries/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 Platform = _$$_REQUIRE(_dependencyMap[1], "../../../../Libraries/Utilities/Platform"); 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 ("ios" !== '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; },81,[51,48],"node_modules/react-native/src/private/specs/modules/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 BatchedBridge = _$$_REQUIRE(_dependencyMap[0], "../BatchedBridge/BatchedBridge"); var RCTEventEmitter = { register: function register(eventEmitter) { if (global.RN$Bridgeless) { global.RN$registerCallableModule('RCTEventEmitter', function () { return eventEmitter; }); } else { BatchedBridge.registerCallableModule('RCTEventEmitter', eventEmitter); } } }; module.exports = RCTEventEmitter; },82,[6],"node_modules/react-native/Libraries/EventEmitter/RCTEventEmitter.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<<73af5b3fe29d226634ed64bc861634df>> */ 'use strict'; var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.customDirectEventTypes = exports.customBubblingEventTypes = void 0; exports.get = get; exports.register = register; var _invariant = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "invariant")); // Event configs var customBubblingEventTypes = exports.customBubblingEventTypes = {}; var customDirectEventTypes = exports.customDirectEventTypes = {}; var viewConfigCallbacks = new Map(); var viewConfigs = new Map(); function processEventTypes(viewConfig) { var bubblingEventTypes = viewConfig.bubblingEventTypes, directEventTypes = viewConfig.directEventTypes; if (__DEV__) { if (bubblingEventTypes != null && directEventTypes != null) { for (var topLevelType in directEventTypes) { (0, _invariant.default)(bubblingEventTypes[topLevelType] == null, 'Event cannot be both direct and bubbling: %s', topLevelType); } } } if (bubblingEventTypes != null) { for (var _topLevelType in bubblingEventTypes) { if (customBubblingEventTypes[_topLevelType] == null) { customBubblingEventTypes[_topLevelType] = bubblingEventTypes[_topLevelType]; } } } if (directEventTypes != null) { for (var _topLevelType2 in directEventTypes) { if (customDirectEventTypes[_topLevelType2] == null) { customDirectEventTypes[_topLevelType2] = directEventTypes[_topLevelType2]; } } } } /** * Registers a native view/component by name. * A callback is provided to load the view config from UIManager. * The callback is deferred until the view is actually rendered. */ function register(name, callback) { (0, _invariant.default)(!viewConfigCallbacks.has(name), 'Tried to register two views with the same name %s', name); (0, _invariant.default)(typeof callback === 'function', 'View config getter callback for component `%s` must be a function (received `%s`)', name, callback === null ? 'null' : typeof callback); viewConfigCallbacks.set(name, callback); return name; } /** * Retrieves a config for the specified view. * If this is the first time the view has been used, * This configuration will be lazy-loaded from UIManager. */ function get(name) { var viewConfig; if (!viewConfigs.has(name)) { var callback = viewConfigCallbacks.get(name); if (typeof callback !== 'function') { (0, _invariant.default)(false, 'View config getter callback for component `%s` must be a function (received `%s`).%s', name, callback === null ? 'null' : typeof callback, // $FlowFixMe[recursive-definition] typeof name[0] === 'string' && /[a-z]/.test(name[0]) ? ' Make sure to start component names with a capital letter.' : ''); } viewConfig = callback(); processEventTypes(viewConfig); viewConfigs.set(name, viewConfig); // Clear the callback after the config is set so that // we don't mask any errors during registration. viewConfigCallbacks.set(name, null); } else { viewConfig = viewConfigs.get(name); } (0, _invariant.default)(viewConfig, 'View config not found for name %s', name); return viewConfig; } },83,[1,4],"node_modules/react-native/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _AndroidTextInputNativeComponent = _$$_REQUIRE(_dependencyMap[0], "../../Components/TextInput/AndroidTextInputNativeComponent"); var _RCTSingelineTextInputNativeComponent = _$$_REQUIRE(_dependencyMap[1], "../../Components/TextInput/RCTSingelineTextInputNativeComponent"); /** * 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 class is responsible for coordinating the "focused" state for // TextInputs. All calls relating to the keyboard should be funneled // through here. var _require = _$$_REQUIRE(_dependencyMap[2], "../../ReactNative/RendererProxy"), findNodeHandle = _require.findNodeHandle; var Platform = _$$_REQUIRE(_dependencyMap[3], "../../Utilities/Platform"); var React = _$$_REQUIRE(_dependencyMap[4], "react"); var currentlyFocusedInputRef = null; var inputs = new Set(); function currentlyFocusedInput() { return currentlyFocusedInputRef; } /** * Returns the ID of the currently focused text field, if one exists * If no text field is focused it returns null */ function currentlyFocusedField() { if (__DEV__) { console.error('currentlyFocusedField is deprecated and will be removed in a future release. Use currentlyFocusedInput'); } return findNodeHandle(currentlyFocusedInputRef); } function focusInput(textField) { if (currentlyFocusedInputRef !== textField && textField != null) { currentlyFocusedInputRef = textField; } } function blurInput(textField) { if (currentlyFocusedInputRef === textField && textField != null) { currentlyFocusedInputRef = null; } } function focusField(textFieldID) { if (__DEV__) { console.error('focusField no longer works. Use focusInput'); } return; } function blurField(textFieldID) { if (__DEV__) { console.error('blurField no longer works. Use blurInput'); } return; } /** * @param {number} TextInputID id of the text field to focus * Focuses the specified text field * noop if the text field was already focused or if the field is not editable */ function focusTextInput(textField) { if (typeof textField === 'number') { if (__DEV__) { console.error('focusTextInput must be called with a host component. Passing a react tag is deprecated.'); } return; } if (textField != null) { var _textField$currentPro; var fieldCanBeFocused = currentlyFocusedInputRef !== textField && // $FlowFixMe - `currentProps` is missing in `NativeMethods` ((_textField$currentPro = textField.currentProps) == null ? void 0 : _textField$currentPro.editable) !== false; if (!fieldCanBeFocused) { return; } focusInput(textField); if ("ios" === 'ios') { // This isn't necessarily a single line text input // But commands don't actually care as long as the thing being passed in // actually has a command with that name. So this should work with single // and multiline text inputs. Ideally we'll merge them into one component // in the future. _RCTSingelineTextInputNativeComponent.Commands.focus(textField); } else if ("ios" === 'android') { _AndroidTextInputNativeComponent.Commands.focus(textField); } } } /** * @param {number} textFieldID id of the text field to unfocus * Unfocuses the specified text field * noop if it wasn't focused */ function blurTextInput(textField) { if (typeof textField === 'number') { if (__DEV__) { console.error('blurTextInput must be called with a host component. Passing a react tag is deprecated.'); } return; } if (currentlyFocusedInputRef === textField && textField != null) { blurInput(textField); if ("ios" === 'ios') { // This isn't necessarily a single line text input // But commands don't actually care as long as the thing being passed in // actually has a command with that name. So this should work with single // and multiline text inputs. Ideally we'll merge them into one component // in the future. _RCTSingelineTextInputNativeComponent.Commands.blur(textField); } else if ("ios" === 'android') { _AndroidTextInputNativeComponent.Commands.blur(textField); } } } function registerInput(textField) { if (typeof textField === 'number') { if (__DEV__) { console.error('registerInput must be called with a host component. Passing a react tag is deprecated.'); } return; } inputs.add(textField); } function unregisterInput(textField) { if (typeof textField === 'number') { if (__DEV__) { console.error('unregisterInput must be called with a host component. Passing a react tag is deprecated.'); } return; } inputs.delete(textField); } function isTextInput(textField) { if (typeof textField === 'number') { if (__DEV__) { console.error('isTextInput must be called with a host component. Passing a react tag is deprecated.'); } return false; } return inputs.has(textField); } module.exports = { currentlyFocusedInput: currentlyFocusedInput, focusInput: focusInput, blurInput: blurInput, currentlyFocusedField: currentlyFocusedField, focusField: focusField, blurField: blurField, focusTextInput: focusTextInput, blurTextInput: blurTextInput, registerInput: registerInput, unregisterInput: unregisterInput, isTextInput: isTextInput }; },84,[85,128,35,48,74],"node_modules/react-native/Libraries/Components/TextInput/TextInputState.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.__INTERNAL_VIEW_CONFIG = exports.Commands = void 0; var NativeComponentRegistry = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[1], "../../NativeComponent/NativeComponentRegistry")); var _codegenNativeCommands = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "../../Utilities/codegenNativeCommands")); 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 Commands = exports.Commands = (0, _codegenNativeCommands.default)({ supportedCommands: ['focus', 'blur', 'setTextAndSelection'] }); var __INTERNAL_VIEW_CONFIG = exports.__INTERNAL_VIEW_CONFIG = { uiViewClassName: 'AndroidTextInput', bubblingEventTypes: { topBlur: { phasedRegistrationNames: { bubbled: 'onBlur', captured: 'onBlurCapture' } }, topEndEditing: { phasedRegistrationNames: { bubbled: 'onEndEditing', captured: 'onEndEditingCapture' } }, topFocus: { phasedRegistrationNames: { bubbled: 'onFocus', captured: 'onFocusCapture' } }, topKeyPress: { phasedRegistrationNames: { bubbled: 'onKeyPress', captured: 'onKeyPressCapture' } }, topSubmitEditing: { phasedRegistrationNames: { bubbled: 'onSubmitEditing', captured: 'onSubmitEditingCapture' } }, topTextInput: { phasedRegistrationNames: { bubbled: 'onTextInput', captured: 'onTextInputCapture' } } }, directEventTypes: { topScroll: { registrationName: 'onScroll' } }, validAttributes: { maxFontSizeMultiplier: true, adjustsFontSizeToFit: true, minimumFontScale: true, autoFocus: true, placeholder: true, inlineImagePadding: true, contextMenuHidden: true, textShadowColor: { process: _$$_REQUIRE(_dependencyMap[3], "../../StyleSheet/processColor").default }, maxLength: true, selectTextOnFocus: true, textShadowRadius: true, underlineColorAndroid: { process: _$$_REQUIRE(_dependencyMap[3], "../../StyleSheet/processColor").default }, textDecorationLine: true, submitBehavior: true, textAlignVertical: true, fontStyle: true, textShadowOffset: true, selectionColor: { process: _$$_REQUIRE(_dependencyMap[3], "../../StyleSheet/processColor").default }, selectionHandleColor: { process: _$$_REQUIRE(_dependencyMap[3], "../../StyleSheet/processColor").default }, placeholderTextColor: { process: _$$_REQUIRE(_dependencyMap[3], "../../StyleSheet/processColor").default }, importantForAutofill: true, lineHeight: true, textTransform: true, returnKeyType: true, keyboardType: true, multiline: true, color: { process: _$$_REQUIRE(_dependencyMap[3], "../../StyleSheet/processColor").default }, autoComplete: true, numberOfLines: true, letterSpacing: true, returnKeyLabel: true, fontSize: true, onKeyPress: true, cursorColor: { process: _$$_REQUIRE(_dependencyMap[3], "../../StyleSheet/processColor").default }, text: true, showSoftInputOnFocus: true, textAlign: true, autoCapitalize: true, autoCorrect: true, caretHidden: true, secureTextEntry: true, textBreakStrategy: true, onScroll: true, onContentSizeChange: true, disableFullscreenUI: true, includeFontPadding: true, fontWeight: true, fontFamily: true, allowFontScaling: true, onSelectionChange: true, mostRecentEventCount: true, inlineImageLeft: true, editable: true, fontVariant: true, borderBottomRightRadius: true, borderBottomColor: { process: _$$_REQUIRE(_dependencyMap[3], "../../StyleSheet/processColor").default }, borderRadius: true, borderRightColor: { process: _$$_REQUIRE(_dependencyMap[3], "../../StyleSheet/processColor").default }, borderColor: { process: _$$_REQUIRE(_dependencyMap[3], "../../StyleSheet/processColor").default }, borderTopRightRadius: true, borderStyle: true, borderBottomLeftRadius: true, borderLeftColor: { process: _$$_REQUIRE(_dependencyMap[3], "../../StyleSheet/processColor").default }, borderTopLeftRadius: true, borderTopColor: { process: _$$_REQUIRE(_dependencyMap[3], "../../StyleSheet/processColor").default } } }; var AndroidTextInputNativeComponent = NativeComponentRegistry.get('AndroidTextInput', function () { return __INTERNAL_VIEW_CONFIG; }); // flowlint-next-line unclear-type:off var _default = exports.default = AndroidTextInputNativeComponent; },85,[1,86,127,90],"node_modules/react-native/Libraries/Components/TextInput/AndroidTextInputNativeComponent.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.getWithFallback_DEPRECATED = getWithFallback_DEPRECATED; exports.setRuntimeConfigProvider = setRuntimeConfigProvider; exports.unstable_hasStaticViewConfig = unstable_hasStaticViewConfig; var _getNativeComponentAttributes = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../ReactNative/getNativeComponentAttributes")); var _UIManager = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "../ReactNative/UIManager")); var ReactNativeViewConfigRegistry = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[3], "../Renderer/shims/ReactNativeViewConfigRegistry")); var _verifyComponentAttributeEquivalence = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "../Utilities/verifyComponentAttributeEquivalence")); var StaticViewConfigValidator = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[5], "./StaticViewConfigValidator")); var _ViewConfig = _$$_REQUIRE(_dependencyMap[6], "./ViewConfig"); var _invariant = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[7], "invariant")); var React = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[8], "react")); 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 getRuntimeConfig; /** * Configures a function that is called to determine whether a given component * should be registered using reflection of the native component at runtime. * * The provider should return null if the native component is unavailable in * the current environment. */ function setRuntimeConfigProvider(runtimeConfigProvider) { if (getRuntimeConfig === undefined) { getRuntimeConfig = runtimeConfigProvider; } } /** * Gets a `NativeComponent` that can be rendered by React Native. * * The supplied `viewConfigProvider` may or may not be invoked and utilized, * depending on how `setRuntimeConfigProvider` is configured. */ function get(name, viewConfigProvider) { ReactNativeViewConfigRegistry.register(name, function () { var _getRuntimeConfig; var _ref = (_getRuntimeConfig = getRuntimeConfig == null ? void 0 : getRuntimeConfig(name)) != null ? _getRuntimeConfig : { native: !global.RN$Bridgeless, strict: false, verify: false }, native = _ref.native, strict = _ref.strict, verify = _ref.verify; var viewConfig; if (native) { viewConfig = (0, _getNativeComponentAttributes.default)(name); } else { viewConfig = (0, _ViewConfig.createViewConfig)(viewConfigProvider()); if (viewConfig == null) { viewConfig = (0, _getNativeComponentAttributes.default)(name); } } if (verify) { var nativeViewConfig = native ? viewConfig : (0, _getNativeComponentAttributes.default)(name); var staticViewConfig = native ? (0, _ViewConfig.createViewConfig)(viewConfigProvider()) : viewConfig; if (strict) { var validationOutput = StaticViewConfigValidator.validate(name, nativeViewConfig, staticViewConfig); if (validationOutput.type === 'invalid') { console.error(StaticViewConfigValidator.stringifyValidationResult(name, validationOutput)); } } else { (0, _verifyComponentAttributeEquivalence.default)(nativeViewConfig, staticViewConfig); } } return viewConfig; }); // $FlowFixMe[incompatible-return] `NativeComponent` is actually string! return name; } /** * Same as `NativeComponentRegistry.get(...)`, except this will check either * the `setRuntimeConfigProvider` configuration or use native reflection (slow) * to determine whether this native component is available. * * If the native component is not available, a stub component is returned. Note * that the return value of this is not `HostComponent` because the returned * component instance is not guaranteed to have native methods. */ function getWithFallback_DEPRECATED(name, viewConfigProvider) { if (getRuntimeConfig == null) { // `getRuntimeConfig == null` when static view configs are disabled // If `setRuntimeConfigProvider` is not configured, use native reflection. if (hasNativeViewConfig(name)) { return get(name, viewConfigProvider); } } else { // If there is no runtime config, then the native component is unavailable. if (getRuntimeConfig(name) != null) { return get(name, viewConfigProvider); } } var FallbackNativeComponent = function FallbackNativeComponent(props) { return null; }; FallbackNativeComponent.displayName = `Fallback(${name})`; return FallbackNativeComponent; } function hasNativeViewConfig(name) { (0, _invariant.default)(getRuntimeConfig == null, 'Unexpected invocation!'); return _UIManager.default.getViewManagerConfig(name) != null; } /** * Unstable API. Do not use! * * This method returns if there is a StaticViewConfig registered for the * component name received as a parameter. */ function unstable_hasStaticViewConfig(name) { var _getRuntimeConfig2; var _ref2 = (_getRuntimeConfig2 = getRuntimeConfig == null ? void 0 : getRuntimeConfig(name)) != null ? _getRuntimeConfig2 : { native: true }, native = _ref2.native; return !native; } },86,[1,87,112,83,121,125,126,4,74],"node_modules/react-native/Libraries/NativeComponent/NativeComponentRegistry.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 ReactNativeStyleAttributes = _$$_REQUIRE(_dependencyMap[0], "../Components/View/ReactNativeStyleAttributes"); var resolveAssetSource = _$$_REQUIRE(_dependencyMap[1], "../Image/resolveAssetSource"); var processColor = _$$_REQUIRE(_dependencyMap[2], "../StyleSheet/processColor").default; var processColorArray = _$$_REQUIRE(_dependencyMap[3], "../StyleSheet/processColorArray"); var insetsDiffer = _$$_REQUIRE(_dependencyMap[4], "../Utilities/differ/insetsDiffer"); var matricesDiffer = _$$_REQUIRE(_dependencyMap[5], "../Utilities/differ/matricesDiffer"); var pointsDiffer = _$$_REQUIRE(_dependencyMap[6], "../Utilities/differ/pointsDiffer"); var sizesDiffer = _$$_REQUIRE(_dependencyMap[7], "../Utilities/differ/sizesDiffer"); var UIManager = _$$_REQUIRE(_dependencyMap[8], "./UIManager"); var invariant = _$$_REQUIRE(_dependencyMap[9], "invariant"); var nullthrows = _$$_REQUIRE(_dependencyMap[10], "nullthrows"); function getNativeComponentAttributes(uiViewClassName) { var _bubblingEventTypes, _directEventTypes; var viewConfig = UIManager.getViewManagerConfig(uiViewClassName); invariant(viewConfig != null && viewConfig.NativeProps != null, 'requireNativeComponent: "%s" was not found in the UIManager.', uiViewClassName); // TODO: This seems like a whole lot of runtime initialization for every // native component that can be either avoided or simplified. var baseModuleName = viewConfig.baseModuleName, bubblingEventTypes = viewConfig.bubblingEventTypes, directEventTypes = viewConfig.directEventTypes; var nativeProps = viewConfig.NativeProps; bubblingEventTypes = (_bubblingEventTypes = bubblingEventTypes) != null ? _bubblingEventTypes : {}; directEventTypes = (_directEventTypes = directEventTypes) != null ? _directEventTypes : {}; while (baseModuleName) { var baseModule = UIManager.getViewManagerConfig(baseModuleName); if (!baseModule) { baseModuleName = null; } else { bubblingEventTypes = Object.assign({}, baseModule.bubblingEventTypes, bubblingEventTypes); directEventTypes = Object.assign({}, baseModule.directEventTypes, directEventTypes); nativeProps = Object.assign({}, baseModule.NativeProps, nativeProps); baseModuleName = baseModule.baseModuleName; } } var validAttributes = {}; for (var key in nativeProps) { var typeName = nativeProps[key]; var diff = getDifferForType(typeName); var process = getProcessorForType(typeName); // If diff or process == null, omit the corresponding property from the Attribute // Why: // 1. Consistency with AttributeType flow type // 2. Consistency with Static View Configs, which omit the null properties validAttributes[key] = diff == null ? process == null ? true : { process: process } : process == null ? { diff: diff } : { diff: diff, process: process }; } // Unfortunately, the current setup declares style properties as top-level // props. This makes it so we allow style properties in the `style` prop. // TODO: Move style properties into a `style` prop and disallow them as // top-level props on the native side. validAttributes.style = ReactNativeStyleAttributes; Object.assign(viewConfig, { uiViewClassName: uiViewClassName, validAttributes: validAttributes, bubblingEventTypes: bubblingEventTypes, directEventTypes: directEventTypes }); attachDefaultEventTypes(viewConfig); return viewConfig; } function attachDefaultEventTypes(viewConfig) { // This is supported on UIManager platforms (ex: Android), // as lazy view managers are not implemented for all platforms. // See [UIManager] for details on constants and implementations. var constants = UIManager.getConstants(); if (constants.ViewManagerNames || constants.LazyViewManagersEnabled) { // Lazy view managers enabled. viewConfig = merge(viewConfig, nullthrows(UIManager.getDefaultEventTypes)()); } else { viewConfig.bubblingEventTypes = merge(viewConfig.bubblingEventTypes, constants.genericBubblingEventTypes); viewConfig.directEventTypes = merge(viewConfig.directEventTypes, constants.genericDirectEventTypes); } } // TODO: Figure out how to avoid all this runtime initialization cost. function merge(destination, source) { if (!source) { return destination; } if (!destination) { return source; } for (var key in source) { if (!source.hasOwnProperty(key)) { continue; } var sourceValue = source[key]; if (destination.hasOwnProperty(key)) { var destinationValue = destination[key]; if (typeof sourceValue === 'object' && typeof destinationValue === 'object') { sourceValue = merge(destinationValue, sourceValue); } } destination[key] = sourceValue; } return destination; } function getDifferForType(typeName) { switch (typeName) { // iOS Types case 'CATransform3D': return matricesDiffer; case 'CGPoint': return pointsDiffer; case 'CGSize': return sizesDiffer; case 'UIEdgeInsets': return insetsDiffer; // Android Types case 'Point': return pointsDiffer; case 'EdgeInsets': return insetsDiffer; } return null; } function getProcessorForType(typeName) { switch (typeName) { // iOS Types case 'CGColor': case 'UIColor': return processColor; case 'CGColorArray': case 'UIColorArray': return processColorArray; case 'CGImage': case 'UIImage': case 'RCTImageSource': return resolveAssetSource; // Android Types case 'Color': return processColor; case 'ColorArray': return processColorArray; case 'ImageSource': return resolveAssetSource; } return null; } module.exports = getNativeComponentAttributes; },87,[88,99,90,108,109,110,111,98,112,4,114],"node_modules/react-native/Libraries/ReactNative/getNativeComponentAttributes.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _processAspectRatio = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../../StyleSheet/processAspectRatio")); var _processColor = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "../../StyleSheet/processColor")); var _processFontVariant = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "../../StyleSheet/processFontVariant")); var _processTransform = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "../../StyleSheet/processTransform")); var _processTransformOrigin = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[5], "../../StyleSheet/processTransformOrigin")); var _sizesDiffer = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "../../Utilities/differ/sizesDiffer")); /** * 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 strict-local * */ var colorAttributes = { process: _processColor.default }; var ReactNativeStyleAttributes = { /** * Layout */ alignContent: true, alignItems: true, alignSelf: true, aspectRatio: { process: _processAspectRatio.default }, borderBottomWidth: true, borderEndWidth: true, borderLeftWidth: true, borderRightWidth: true, borderStartWidth: true, borderTopWidth: true, columnGap: true, borderWidth: true, bottom: true, direction: true, display: true, end: true, flex: true, flexBasis: true, flexDirection: true, flexGrow: true, flexShrink: true, flexWrap: true, gap: true, height: true, inset: true, insetBlock: true, insetBlockEnd: true, insetBlockStart: true, insetInline: true, insetInlineEnd: true, insetInlineStart: true, justifyContent: true, left: true, margin: true, marginBlock: true, marginBlockEnd: true, marginBlockStart: true, marginBottom: true, marginEnd: true, marginHorizontal: true, marginInline: true, marginInlineEnd: true, marginInlineStart: true, marginLeft: true, marginRight: true, marginStart: true, marginTop: true, marginVertical: true, maxHeight: true, maxWidth: true, minHeight: true, minWidth: true, overflow: true, padding: true, paddingBlock: true, paddingBlockEnd: true, paddingBlockStart: true, paddingBottom: true, paddingEnd: true, paddingHorizontal: true, paddingInline: true, paddingInlineEnd: true, paddingInlineStart: true, paddingLeft: true, paddingRight: true, paddingStart: true, paddingTop: true, paddingVertical: true, position: true, right: true, rowGap: true, start: true, top: true, width: true, zIndex: true, /** * Shadow */ elevation: true, shadowColor: colorAttributes, shadowOffset: { diff: _sizesDiffer.default }, shadowOpacity: true, shadowRadius: true, /** * Transform */ transform: { process: _processTransform.default }, transformOrigin: { process: _processTransformOrigin.default }, /** * View */ backfaceVisibility: true, backgroundColor: colorAttributes, borderBlockColor: colorAttributes, borderBlockEndColor: colorAttributes, borderBlockStartColor: colorAttributes, borderBottomColor: colorAttributes, borderBottomEndRadius: true, borderBottomLeftRadius: true, borderBottomRightRadius: true, borderBottomStartRadius: true, borderColor: colorAttributes, borderCurve: true, borderEndColor: colorAttributes, borderEndEndRadius: true, borderEndStartRadius: true, borderLeftColor: colorAttributes, borderRadius: true, borderRightColor: colorAttributes, borderStartColor: colorAttributes, borderStartEndRadius: true, borderStartStartRadius: true, borderStyle: true, borderTopColor: colorAttributes, borderTopEndRadius: true, borderTopLeftRadius: true, borderTopRightRadius: true, borderTopStartRadius: true, cursor: true, opacity: true, pointerEvents: true, /** * Text */ color: colorAttributes, fontFamily: true, fontSize: true, fontStyle: true, fontVariant: { process: _processFontVariant.default }, fontWeight: true, includeFontPadding: true, letterSpacing: true, lineHeight: true, textAlign: true, textAlignVertical: true, textDecorationColor: colorAttributes, textDecorationLine: true, textDecorationStyle: true, textShadowColor: colorAttributes, textShadowOffset: true, textShadowRadius: true, textTransform: true, userSelect: true, verticalAlign: true, writingDirection: true, /** * Image */ overlayColor: colorAttributes, resizeMode: true, tintColor: colorAttributes, objectFit: true }; module.exports = ReactNativeStyleAttributes; },88,[1,89,90,94,95,97,98],"node_modules/react-native/Libraries/Components/View/ReactNativeStyleAttributes.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 invariant = _$$_REQUIRE(_dependencyMap[0], "invariant"); function processAspectRatio(aspectRatio) { if (typeof aspectRatio === 'number') { return aspectRatio; } if (typeof aspectRatio !== 'string') { if (__DEV__) { invariant(!aspectRatio, 'aspectRatio must either be a number, a ratio string or `auto`. You passed: %s', aspectRatio); } return; } var matches = aspectRatio.split('/').map(function (s) { return s.trim(); }); if (matches.includes('auto')) { if (__DEV__) { invariant(matches.length, 'aspectRatio does not support `auto `. You passed: %s', aspectRatio); } return; } var hasNonNumericValues = matches.some(function (n) { return Number.isNaN(Number(n)); }); if (__DEV__) { invariant(!hasNonNumericValues && (matches.length === 1 || matches.length === 2), 'aspectRatio must either be a number, a ratio string or `auto`. You passed: %s', aspectRatio); } if (hasNonNumericValues) { return; } if (matches.length === 2) { return Number(matches[0]) / Number(matches[1]); } return Number(matches[0]); } module.exports = processAspectRatio; },89,[4],"node_modules/react-native/Libraries/StyleSheet/processAspectRatio.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; var Platform = _$$_REQUIRE(_dependencyMap[0], "../Utilities/Platform"); var normalizeColor = _$$_REQUIRE(_dependencyMap[1], "./normalizeColor"); /* eslint no-bitwise: 0 */ function processColor(color) { if (color === undefined || color === null) { return color; } var normalizedColor = normalizeColor(color); if (normalizedColor === null || normalizedColor === undefined) { return undefined; } if (typeof normalizedColor === 'object') { var processColorObject = _$$_REQUIRE(_dependencyMap[2], "./PlatformColorValueTypes").processColorObject; var processedColorObj = processColorObject(normalizedColor); if (processedColorObj != null) { return processedColorObj; } } if (typeof normalizedColor !== 'number') { return null; } // Converts 0xrrggbbaa into 0xaarrggbb normalizedColor = (normalizedColor << 24 | normalizedColor >>> 8) >>> 0; if ("ios" === 'android') { // Android use 32 bit *signed* integer to represent the color // We utilize the fact that bitwise operations in JS also operates on // signed 32 bit integers, so that we can use those to convert from // *unsigned* to *signed* 32bit int that way. normalizedColor = normalizedColor | 0x0; } return normalizedColor; } var _default = exports.default = processColor; },90,[48,91,93],"node_modules/react-native/Libraries/StyleSheet/processColor.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _normalizeColors = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@react-native/normalize-colors")); /** * 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 * */ /* eslint no-bitwise: 0 */ function normalizeColor(color) { if (typeof color === 'object' && color != null) { var _require = _$$_REQUIRE(_dependencyMap[2], "./PlatformColorValueTypes"), normalizeColorObject = _require.normalizeColorObject; var normalizedColor = normalizeColorObject(color); if (normalizedColor != null) { return normalizedColor; } } if (typeof color === 'string' || typeof color === 'number') { return (0, _normalizeColors.default)(color); } } module.exports = normalizeColor; },91,[1,92,93],"node_modules/react-native/Libraries/StyleSheet/normalizeColor.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 * */ /* eslint no-bitwise: 0 */ 'use strict'; function normalizeColor(color) { if (typeof color === 'number') { if (color >>> 0 === color && color >= 0 && color <= 0xffffffff) { return color; } return null; } if (typeof color !== 'string') { return null; } var matchers = getMatchers(); var match; // Ordered based on occurrences on Facebook codebase if (match = matchers.hex6.exec(color)) { return parseInt(match[1] + 'ff', 16) >>> 0; } var colorFromKeyword = normalizeKeyword(color); if (colorFromKeyword != null) { return colorFromKeyword; } if (match = matchers.rgb.exec(color)) { return (parse255(match[1]) << 24 | // r parse255(match[2]) << 16 | // g parse255(match[3]) << 8 | // b 0x000000ff) >>> // a 0; } if (match = matchers.rgba.exec(color)) { // rgba(R G B / A) notation if (match[6] !== undefined) { return (parse255(match[6]) << 24 | // r parse255(match[7]) << 16 | // g parse255(match[8]) << 8 | // b parse1(match[9])) >>> // a 0; } // rgba(R, G, B, A) notation return (parse255(match[2]) << 24 | // r parse255(match[3]) << 16 | // g parse255(match[4]) << 8 | // b parse1(match[5])) >>> // a 0; } if (match = matchers.hex3.exec(color)) { return parseInt(match[1] + match[1] + // r match[2] + match[2] + // g match[3] + match[3] + // b 'ff', // a 16) >>> 0; } // https://drafts.csswg.org/css-color-4/#hex-notation if (match = matchers.hex8.exec(color)) { return parseInt(match[1], 16) >>> 0; } if (match = matchers.hex4.exec(color)) { return parseInt(match[1] + match[1] + // r match[2] + match[2] + // g match[3] + match[3] + // b match[4] + match[4], // a 16) >>> 0; } if (match = matchers.hsl.exec(color)) { return (hslToRgb(parse360(match[1]), // h parsePercentage(match[2]), // s parsePercentage(match[3]) // l ) | 0x000000ff) >>> // a 0; } if (match = matchers.hsla.exec(color)) { // hsla(H S L / A) notation if (match[6] !== undefined) { return (hslToRgb(parse360(match[6]), // h parsePercentage(match[7]), // s parsePercentage(match[8]) // l ) | parse1(match[9])) >>> // a 0; } // hsla(H, S, L, A) notation return (hslToRgb(parse360(match[2]), // h parsePercentage(match[3]), // s parsePercentage(match[4]) // l ) | parse1(match[5])) >>> // a 0; } if (match = matchers.hwb.exec(color)) { return (hwbToRgb(parse360(match[1]), // h parsePercentage(match[2]), // w parsePercentage(match[3]) // b ) | 0x000000ff) >>> // a 0; } return null; } function hue2rgb(p, q, t) { if (t < 0) { t += 1; } if (t > 1) { t -= 1; } if (t < 1 / 6) { return p + (q - p) * 6 * t; } if (t < 1 / 2) { return q; } if (t < 2 / 3) { return p + (q - p) * (2 / 3 - t) * 6; } return p; } function hslToRgb(h, s, l) { var q = l < 0.5 ? l * (1 + s) : l + s - l * s; var p = 2 * l - q; var r = hue2rgb(p, q, h + 1 / 3); var g = hue2rgb(p, q, h); var b = hue2rgb(p, q, h - 1 / 3); return Math.round(r * 255) << 24 | Math.round(g * 255) << 16 | Math.round(b * 255) << 8; } function hwbToRgb(h, w, b) { if (w + b >= 1) { var gray = Math.round(w * 255 / (w + b)); return gray << 24 | gray << 16 | gray << 8; } var red = hue2rgb(0, 1, h + 1 / 3) * (1 - w - b) + w; var green = hue2rgb(0, 1, h) * (1 - w - b) + w; var blue = hue2rgb(0, 1, h - 1 / 3) * (1 - w - b) + w; return Math.round(red * 255) << 24 | Math.round(green * 255) << 16 | Math.round(blue * 255) << 8; } var NUMBER = '[-+]?\\d*\\.?\\d+'; var PERCENTAGE = NUMBER + '%'; function call() { for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } return '\\(\\s*(' + args.join(')\\s*,?\\s*(') + ')\\s*\\)'; } function callWithSlashSeparator() { for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) { args[_key2] = arguments[_key2]; } return '\\(\\s*(' + args.slice(0, args.length - 1).join(')\\s*,?\\s*(') + ')\\s*/\\s*(' + args[args.length - 1] + ')\\s*\\)'; } function commaSeparatedCall() { for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) { args[_key3] = arguments[_key3]; } return '\\(\\s*(' + args.join(')\\s*,\\s*(') + ')\\s*\\)'; } var cachedMatchers; function getMatchers() { if (cachedMatchers === undefined) { cachedMatchers = { rgb: new RegExp('rgb' + call(NUMBER, NUMBER, NUMBER)), rgba: new RegExp('rgba(' + commaSeparatedCall(NUMBER, NUMBER, NUMBER, NUMBER) + '|' + callWithSlashSeparator(NUMBER, NUMBER, NUMBER, NUMBER) + ')'), hsl: new RegExp('hsl' + call(NUMBER, PERCENTAGE, PERCENTAGE)), hsla: new RegExp('hsla(' + commaSeparatedCall(NUMBER, PERCENTAGE, PERCENTAGE, NUMBER) + '|' + callWithSlashSeparator(NUMBER, PERCENTAGE, PERCENTAGE, NUMBER) + ')'), hwb: new RegExp('hwb' + call(NUMBER, PERCENTAGE, PERCENTAGE)), hex3: /^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/, hex4: /^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/, hex6: /^#([0-9a-fA-F]{6})$/, hex8: /^#([0-9a-fA-F]{8})$/ }; } return cachedMatchers; } function parse255(str) { var int = parseInt(str, 10); if (int < 0) { return 0; } if (int > 255) { return 255; } return int; } function parse360(str) { var int = parseFloat(str); return (int % 360 + 360) % 360 / 360; } function parse1(str) { var num = parseFloat(str); if (num < 0) { return 0; } if (num > 1) { return 255; } return Math.round(num * 255); } function parsePercentage(str) { // parseFloat conveniently ignores the final % var int = parseFloat(str); if (int < 0) { return 0; } if (int > 100) { return 1; } return int / 100; } function normalizeKeyword(name) { // prettier-ignore switch (name) { case 'transparent': return 0x00000000; // http://www.w3.org/TR/css3-color/#svg-color case 'aliceblue': return 0xf0f8ffff; case 'antiquewhite': return 0xfaebd7ff; case 'aqua': return 0x00ffffff; case 'aquamarine': return 0x7fffd4ff; case 'azure': return 0xf0ffffff; case 'beige': return 0xf5f5dcff; case 'bisque': return 0xffe4c4ff; case 'black': return 0x000000ff; case 'blanchedalmond': return 0xffebcdff; case 'blue': return 0x0000ffff; case 'blueviolet': return 0x8a2be2ff; case 'brown': return 0xa52a2aff; case 'burlywood': return 0xdeb887ff; case 'burntsienna': return 0xea7e5dff; case 'cadetblue': return 0x5f9ea0ff; case 'chartreuse': return 0x7fff00ff; case 'chocolate': return 0xd2691eff; case 'coral': return 0xff7f50ff; case 'cornflowerblue': return 0x6495edff; case 'cornsilk': return 0xfff8dcff; case 'crimson': return 0xdc143cff; case 'cyan': return 0x00ffffff; case 'darkblue': return 0x00008bff; case 'darkcyan': return 0x008b8bff; case 'darkgoldenrod': return 0xb8860bff; case 'darkgray': return 0xa9a9a9ff; case 'darkgreen': return 0x006400ff; case 'darkgrey': return 0xa9a9a9ff; case 'darkkhaki': return 0xbdb76bff; case 'darkmagenta': return 0x8b008bff; case 'darkolivegreen': return 0x556b2fff; case 'darkorange': return 0xff8c00ff; case 'darkorchid': return 0x9932ccff; case 'darkred': return 0x8b0000ff; case 'darksalmon': return 0xe9967aff; case 'darkseagreen': return 0x8fbc8fff; case 'darkslateblue': return 0x483d8bff; case 'darkslategray': return 0x2f4f4fff; case 'darkslategrey': return 0x2f4f4fff; case 'darkturquoise': return 0x00ced1ff; case 'darkviolet': return 0x9400d3ff; case 'deeppink': return 0xff1493ff; case 'deepskyblue': return 0x00bfffff; case 'dimgray': return 0x696969ff; case 'dimgrey': return 0x696969ff; case 'dodgerblue': return 0x1e90ffff; case 'firebrick': return 0xb22222ff; case 'floralwhite': return 0xfffaf0ff; case 'forestgreen': return 0x228b22ff; case 'fuchsia': return 0xff00ffff; case 'gainsboro': return 0xdcdcdcff; case 'ghostwhite': return 0xf8f8ffff; case 'gold': return 0xffd700ff; case 'goldenrod': return 0xdaa520ff; case 'gray': return 0x808080ff; case 'green': return 0x008000ff; case 'greenyellow': return 0xadff2fff; case 'grey': return 0x808080ff; case 'honeydew': return 0xf0fff0ff; case 'hotpink': return 0xff69b4ff; case 'indianred': return 0xcd5c5cff; case 'indigo': return 0x4b0082ff; case 'ivory': return 0xfffff0ff; case 'khaki': return 0xf0e68cff; case 'lavender': return 0xe6e6faff; case 'lavenderblush': return 0xfff0f5ff; case 'lawngreen': return 0x7cfc00ff; case 'lemonchiffon': return 0xfffacdff; case 'lightblue': return 0xadd8e6ff; case 'lightcoral': return 0xf08080ff; case 'lightcyan': return 0xe0ffffff; case 'lightgoldenrodyellow': return 0xfafad2ff; case 'lightgray': return 0xd3d3d3ff; case 'lightgreen': return 0x90ee90ff; case 'lightgrey': return 0xd3d3d3ff; case 'lightpink': return 0xffb6c1ff; case 'lightsalmon': return 0xffa07aff; case 'lightseagreen': return 0x20b2aaff; case 'lightskyblue': return 0x87cefaff; case 'lightslategray': return 0x778899ff; case 'lightslategrey': return 0x778899ff; case 'lightsteelblue': return 0xb0c4deff; case 'lightyellow': return 0xffffe0ff; case 'lime': return 0x00ff00ff; case 'limegreen': return 0x32cd32ff; case 'linen': return 0xfaf0e6ff; case 'magenta': return 0xff00ffff; case 'maroon': return 0x800000ff; case 'mediumaquamarine': return 0x66cdaaff; case 'mediumblue': return 0x0000cdff; case 'mediumorchid': return 0xba55d3ff; case 'mediumpurple': return 0x9370dbff; case 'mediumseagreen': return 0x3cb371ff; case 'mediumslateblue': return 0x7b68eeff; case 'mediumspringgreen': return 0x00fa9aff; case 'mediumturquoise': return 0x48d1ccff; case 'mediumvioletred': return 0xc71585ff; case 'midnightblue': return 0x191970ff; case 'mintcream': return 0xf5fffaff; case 'mistyrose': return 0xffe4e1ff; case 'moccasin': return 0xffe4b5ff; case 'navajowhite': return 0xffdeadff; case 'navy': return 0x000080ff; case 'oldlace': return 0xfdf5e6ff; case 'olive': return 0x808000ff; case 'olivedrab': return 0x6b8e23ff; case 'orange': return 0xffa500ff; case 'orangered': return 0xff4500ff; case 'orchid': return 0xda70d6ff; case 'palegoldenrod': return 0xeee8aaff; case 'palegreen': return 0x98fb98ff; case 'paleturquoise': return 0xafeeeeff; case 'palevioletred': return 0xdb7093ff; case 'papayawhip': return 0xffefd5ff; case 'peachpuff': return 0xffdab9ff; case 'peru': return 0xcd853fff; case 'pink': return 0xffc0cbff; case 'plum': return 0xdda0ddff; case 'powderblue': return 0xb0e0e6ff; case 'purple': return 0x800080ff; case 'rebeccapurple': return 0x663399ff; case 'red': return 0xff0000ff; case 'rosybrown': return 0xbc8f8fff; case 'royalblue': return 0x4169e1ff; case 'saddlebrown': return 0x8b4513ff; case 'salmon': return 0xfa8072ff; case 'sandybrown': return 0xf4a460ff; case 'seagreen': return 0x2e8b57ff; case 'seashell': return 0xfff5eeff; case 'sienna': return 0xa0522dff; case 'silver': return 0xc0c0c0ff; case 'skyblue': return 0x87ceebff; case 'slateblue': return 0x6a5acdff; case 'slategray': return 0x708090ff; case 'slategrey': return 0x708090ff; case 'snow': return 0xfffafaff; case 'springgreen': return 0x00ff7fff; case 'steelblue': return 0x4682b4ff; case 'tan': return 0xd2b48cff; case 'teal': return 0x008080ff; case 'thistle': return 0xd8bfd8ff; case 'tomato': return 0xff6347ff; case 'turquoise': return 0x40e0d0ff; case 'violet': return 0xee82eeff; case 'wheat': return 0xf5deb3ff; case 'white': return 0xffffffff; case 'whitesmoke': return 0xf5f5f5ff; case 'yellow': return 0xffff00ff; case 'yellowgreen': return 0x9acd32ff; } return null; } module.exports = normalizeColor; },92,[],"node_modules/@react-native/normalize-colors/index.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); exports.processColorObject = exports.normalizeColorObject = exports.PlatformColor = exports.DynamicColorIOSPrivate = void 0; /** * 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 actual type of the opaque NativeColorValue on iOS platform */ var PlatformColor = exports.PlatformColor = function PlatformColor() { for (var _len = arguments.length, names = new Array(_len), _key = 0; _key < _len; _key++) { names[_key] = arguments[_key]; } // $FlowExpectedError[incompatible-return] LocalNativeColorValue is the iOS LocalNativeColorValue type return { semantic: names }; }; var DynamicColorIOSPrivate = exports.DynamicColorIOSPrivate = function DynamicColorIOSPrivate(tuple) { return { dynamic: { light: tuple.light, dark: tuple.dark, highContrastLight: tuple.highContrastLight, highContrastDark: tuple.highContrastDark } /* $FlowExpectedError[incompatible-return] * LocalNativeColorValue is the actual type of the opaque NativeColorValue on iOS platform */ }; }; var _normalizeColorObject = function _normalizeColorObject(color) { if ('semantic' in color) { // an ios semantic color return color; } else if ('dynamic' in color && color.dynamic !== undefined) { var normalizeColor = _$$_REQUIRE(_dependencyMap[0], "./normalizeColor"); // a dynamic, appearance aware color var dynamic = color.dynamic; var dynamicColor = { dynamic: { // $FlowFixMe[incompatible-use] light: normalizeColor(dynamic.light), // $FlowFixMe[incompatible-use] dark: normalizeColor(dynamic.dark), // $FlowFixMe[incompatible-use] highContrastLight: normalizeColor(dynamic.highContrastLight), // $FlowFixMe[incompatible-use] highContrastDark: normalizeColor(dynamic.highContrastDark) } }; return dynamicColor; } return null; }; var normalizeColorObject = exports.normalizeColorObject = _normalizeColorObject; var _processColorObject = function _processColorObject(color) { if ('dynamic' in color && color.dynamic != null) { var processColor = _$$_REQUIRE(_dependencyMap[1], "./processColor").default; var dynamic = color.dynamic; var dynamicColor = { dynamic: { // $FlowFixMe[incompatible-use] light: processColor(dynamic.light), // $FlowFixMe[incompatible-use] dark: processColor(dynamic.dark), // $FlowFixMe[incompatible-use] highContrastLight: processColor(dynamic.highContrastLight), // $FlowFixMe[incompatible-use] highContrastDark: processColor(dynamic.highContrastDark) } }; return dynamicColor; } return color; }; var processColorObject = exports.processColorObject = _processColorObject; },93,[91,90],"node_modules/react-native/Libraries/StyleSheet/PlatformColorValueTypes.ios.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 processFontVariant(fontVariant) { if (Array.isArray(fontVariant)) { return fontVariant; } // $FlowFixMe[incompatible-type] var match = fontVariant.split(' ').filter(Boolean); return match; } module.exports = processFontVariant; },94,[],"node_modules/react-native/Libraries/StyleSheet/processFontVariant.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 _defineProperty = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/defineProperty"); var stringifySafe = _$$_REQUIRE(_dependencyMap[1], "../Utilities/stringifySafe").default; var invariant = _$$_REQUIRE(_dependencyMap[2], "invariant"); /** * Generate a transform matrix based on the provided transforms, and use that * within the style object instead. * * This allows us to provide an API that is similar to CSS, where transforms may * be applied in an arbitrary order, and yet have a universal, singular * interface to native code. */ function processTransform(transform) { if (typeof transform === 'string') { var regex = new RegExp(/(\w+)\(([^)]+)\)/g); var transformArray = []; var matches; while (matches = regex.exec(transform)) { var _getKeyAndValueFromCS = _getKeyAndValueFromCSSTransform(matches[1], matches[2]), _key = _getKeyAndValueFromCS.key, value = _getKeyAndValueFromCS.value; if (value !== undefined) { transformArray.push(_defineProperty({}, _key, value)); } } transform = transformArray; } if (__DEV__) { _validateTransforms(transform); } return transform; } var _getKeyAndValueFromCSSTransform = function _getKeyAndValueFromCSSTransform(key, args) { var _args$match; var argsWithUnitsRegex = new RegExp(/([+-]?\d+(\.\d+)?)([a-zA-Z]+)?/g); switch (key) { case 'matrix': return { key: key, value: (_args$match = args.match(/[+-]?\d+(\.\d+)?/g)) == null ? void 0 : _args$match.map(Number) }; case 'translate': case 'translate3d': var parsedArgs = []; var missingUnitOfMeasurement = false; var matches; while (matches = argsWithUnitsRegex.exec(args)) { var _value = Number(matches[1]); var _unitOfMeasurement = matches[3]; if (_value !== 0 && !_unitOfMeasurement) { missingUnitOfMeasurement = true; } parsedArgs.push(_value); } if (__DEV__) { invariant(!missingUnitOfMeasurement, `Transform with key ${key} must have units unless the provided value is 0, found %s`, `${key}(${args})`); if (key === 'translate') { invariant((parsedArgs == null ? void 0 : parsedArgs.length) === 1 || (parsedArgs == null ? void 0 : parsedArgs.length) === 2, 'Transform with key translate must be an string with 1 or 2 parameters, found %s: %s', parsedArgs == null ? void 0 : parsedArgs.length, `${key}(${args})`); } else { invariant((parsedArgs == null ? void 0 : parsedArgs.length) === 3, 'Transform with key translate3d must be an string with 3 parameters, found %s: %s', parsedArgs == null ? void 0 : parsedArgs.length, `${key}(${args})`); } } if ((parsedArgs == null ? void 0 : parsedArgs.length) === 1) { parsedArgs.push(0); } return { key: 'translate', value: parsedArgs }; case 'translateX': case 'translateY': case 'perspective': var argMatches = argsWithUnitsRegex.exec(args); if (!(argMatches != null && argMatches.length)) { return { key: key, value: undefined }; } var value = Number(argMatches[1]); var unitOfMeasurement = argMatches[3]; if (__DEV__) { invariant(value === 0 || unitOfMeasurement, `Transform with key ${key} must have units unless the provided value is 0, found %s`, `${key}(${args})`); } return { key: key, value: value }; default: return { key: key, value: !isNaN(args) ? Number(args) : args }; } }; function _validateTransforms(transform) { transform.forEach(function (transformation) { var keys = Object.keys(transformation); invariant(keys.length === 1, 'You must specify exactly one property per transform object. Passed properties: %s', stringifySafe(transformation)); var key = keys[0]; var value = transformation[key]; _validateTransform(key, value, transformation); }); } function _validateTransform(key, value, transformation) { invariant(!value.getValue, 'You passed an Animated.Value to a normal component. ' + 'You need to wrap that component in an Animated. For example, ' + 'replace by .'); var multivalueTransforms = ['matrix', 'translate']; if (multivalueTransforms.indexOf(key) !== -1) { invariant(Array.isArray(value), 'Transform with key of %s must have an array as the value: %s', key, stringifySafe(transformation)); } switch (key) { case 'matrix': invariant(value.length === 9 || value.length === 16, 'Matrix transform must have a length of 9 (2d) or 16 (3d). ' + 'Provided matrix has a length of %s: %s', /* $FlowFixMe[prop-missing] (>=0.84.0 site=react_native_fb) This * comment suppresses an error found when Flow v0.84 was deployed. To * see the error, delete this comment and run Flow. */ value.length, stringifySafe(transformation)); break; case 'translate': invariant(value.length === 2 || value.length === 3, 'Transform with key translate must be an array of length 2 or 3, found %s: %s', /* $FlowFixMe[prop-missing] (>=0.84.0 site=react_native_fb) This * comment suppresses an error found when Flow v0.84 was deployed. To * see the error, delete this comment and run Flow. */ value.length, stringifySafe(transformation)); break; case 'rotateX': case 'rotateY': case 'rotateZ': case 'rotate': case 'skewX': case 'skewY': invariant(typeof value === 'string', 'Transform with key of "%s" must be a string: %s', key, stringifySafe(transformation)); invariant(value.indexOf('deg') > -1 || value.indexOf('rad') > -1, 'Rotate transform must be expressed in degrees (deg) or radians ' + '(rad): %s', stringifySafe(transformation)); break; case 'perspective': invariant(typeof value === 'number', 'Transform with key of "%s" must be a number: %s', key, stringifySafe(transformation)); invariant(value !== 0, 'Transform with key of "%s" cannot be zero: %s', key, stringifySafe(transformation)); break; case 'translateX': case 'translateY': case 'scale': case 'scaleX': case 'scaleY': invariant(typeof value === 'number', 'Transform with key of "%s" must be a number: %s', key, stringifySafe(transformation)); break; default: invariant(false, 'Invalid transform %s: %s', key, stringifySafe(transformation)); } } module.exports = processTransform; },95,[96,21,4],"node_modules/react-native/Libraries/StyleSheet/processTransform.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var toPropertyKey = _$$_REQUIRE(_dependencyMap[0], "./toPropertyKey.js"); function _defineProperty(e, r, t) { return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; } module.exports = _defineProperty, module.exports.__esModule = true, module.exports["default"] = module.exports; },96,[16],"node_modules/@babel/runtime/helpers/defineProperty.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 = processTransformOrigin; var _slicedToArray2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/slicedToArray")); var _invariant = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "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 INDEX_X = 0; var INDEX_Y = 1; var INDEX_Z = 2; /* eslint-disable no-labels */ function processTransformOrigin(transformOrigin) { if (typeof transformOrigin === 'string') { var transformOriginString = transformOrigin; var regex = /(top|bottom|left|right|center|\d+(?:%|px)|0)/gi; var transformOriginArray = ['50%', '50%', 0]; var index = INDEX_X; var matches; outer: while (matches = regex.exec(transformOriginString)) { var nextIndex = index + 1; var value = matches[0]; var valueLower = value.toLowerCase(); switch (valueLower) { case 'left': case 'right': { (0, _invariant.default)(index === INDEX_X, 'Transform-origin %s can only be used for x-position', value); transformOriginArray[INDEX_X] = valueLower === 'left' ? 0 : '100%'; break; } case 'top': case 'bottom': { (0, _invariant.default)(index !== INDEX_Z, 'Transform-origin %s can only be used for y-position', value); transformOriginArray[INDEX_Y] = valueLower === 'top' ? 0 : '100%'; // Handle [[ center | left | right ] && [ center | top | bottom ]] ? if (index === INDEX_X) { var horizontal = regex.exec(transformOriginString); if (horizontal == null) { break outer; } switch (horizontal[0].toLowerCase()) { case 'left': transformOriginArray[INDEX_X] = 0; break; case 'right': transformOriginArray[INDEX_X] = '100%'; break; case 'center': transformOriginArray[INDEX_X] = '50%'; break; default: (0, _invariant.default)(false, 'Could not parse transform-origin: %s', transformOriginString); } nextIndex = INDEX_Z; } break; } case 'center': { (0, _invariant.default)(index !== INDEX_Z, 'Transform-origin value %s cannot be used for z-position', value); transformOriginArray[index] = '50%'; break; } default: { if (value.endsWith('%')) { transformOriginArray[index] = value; } else { transformOriginArray[index] = parseFloat(value); // Remove `px` } break; } } index = nextIndex; } transformOrigin = transformOriginArray; } if (__DEV__) { _validateTransformOrigin(transformOrigin); } return transformOrigin; } function _validateTransformOrigin(transformOrigin) { (0, _invariant.default)(transformOrigin.length === 3, 'Transform origin must have exactly 3 values.'); var _transformOrigin = (0, _slicedToArray2.default)(transformOrigin, 3), x = _transformOrigin[0], y = _transformOrigin[1], z = _transformOrigin[2]; (0, _invariant.default)(typeof x === 'number' || typeof x === 'string' && x.endsWith('%'), 'Transform origin x-position must be a number. Passed value: %s.', x); (0, _invariant.default)(typeof y === 'number' || typeof y === 'string' && y.endsWith('%'), 'Transform origin y-position must be a number. Passed value: %s.', y); (0, _invariant.default)(typeof z === 'number', 'Transform origin z-position must be a number. Passed value: %s.', z); } },97,[1,53,4],"node_modules/react-native/Libraries/StyleSheet/processTransformOrigin.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 dummySize = { width: undefined, height: undefined }; var sizesDiffer = function sizesDiffer(one, two) { var defaultedOne = one || dummySize; var defaultedTwo = two || dummySize; return defaultedOne !== defaultedTwo && (defaultedOne.width !== defaultedTwo.width || defaultedOne.height !== defaultedTwo.height); }; module.exports = sizesDiffer; },98,[],"node_modules/react-native/Libraries/Utilities/differ/sizesDiffer.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 * */ // Utilities for resolving an asset into a `source` for e.g. `Image` var AssetSourceResolver = _$$_REQUIRE(_dependencyMap[2], "./AssetSourceResolver"); var _require = _$$_REQUIRE(_dependencyMap[3], "./AssetUtils"), pickScale = _require.pickScale; var AssetRegistry = _$$_REQUIRE(_dependencyMap[4], "@react-native/assets-registry/registry"); var _customSourceTransformers = []; var _serverURL; var _scriptURL; var _sourceCodeScriptURL; function getSourceCodeScriptURL() { if (_sourceCodeScriptURL != null) { return _sourceCodeScriptURL; } _sourceCodeScriptURL = _NativeSourceCode.default.getConstants().scriptURL; return _sourceCodeScriptURL; } function getDevServerURL() { if (_serverURL === undefined) { var sourceCodeScriptURL = getSourceCodeScriptURL(); var match = sourceCodeScriptURL == null ? void 0 : sourceCodeScriptURL.match(/^https?:\/\/.*?\//); if (match) { // jsBundle was loaded from network _serverURL = match[0]; } else { // jsBundle was loaded from file _serverURL = null; } } return _serverURL; } function _coerceLocalScriptURL(scriptURL) { var normalizedScriptURL = scriptURL; if (normalizedScriptURL != null) { if (normalizedScriptURL.startsWith('assets://')) { // android: running from within assets, no offline path to use return null; } normalizedScriptURL = normalizedScriptURL.substring(0, normalizedScriptURL.lastIndexOf('/') + 1); if (!normalizedScriptURL.includes('://')) { // Add file protocol in case we have an absolute file path and not a URL. // This shouldn't really be necessary. scriptURL should be a URL. normalizedScriptURL = 'file://' + normalizedScriptURL; } } return normalizedScriptURL; } function getScriptURL() { if (_scriptURL === undefined) { _scriptURL = _coerceLocalScriptURL(getSourceCodeScriptURL()); } return _scriptURL; } /** * `transformer` can optionally be used to apply a custom transformation when * resolving an asset source. This methods overrides all other custom transformers * that may have been previously registered. */ function setCustomSourceTransformer(transformer) { _customSourceTransformers = [transformer]; } /** * Adds a `transformer` into the chain of custom source transformers, which will * be applied in the order registered, until one returns a non-null value. */ function addCustomSourceTransformer(transformer) { _customSourceTransformers.push(transformer); } /** * `source` is either a number (opaque type returned by require('./foo.png')) * or an `ImageSource` like { uri: '' } */ function resolveAssetSource(source) { if (source == null || typeof source === 'object') { // $FlowFixMe[incompatible-exact] `source` doesn't exactly match `ResolvedAssetSource` // $FlowFixMe[incompatible-return] `source` doesn't exactly match `ResolvedAssetSource` return source; } var asset = AssetRegistry.getAssetByID(source); if (!asset) { return null; } var resolver = new AssetSourceResolver(getDevServerURL(), getScriptURL(), asset); // Apply (chained) custom source transformers, if any if (_customSourceTransformers) { for (var customSourceTransformer of _customSourceTransformers) { var transformedSource = customSourceTransformer(resolver); if (transformedSource != null) { return transformedSource; } } } return resolver.defaultAsset(); } resolveAssetSource.pickScale = pickScale; resolveAssetSource.setCustomSourceTransformer = setCustomSourceTransformer; resolveAssetSource.addCustomSourceTransformer = addCustomSourceTransformer; module.exports = resolveAssetSource; },99,[1,67,100,105,107],"node_modules/react-native/Libraries/Image/resolveAssetSource.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 _classCallCheck = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/classCallCheck"); var _createClass = _$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/createClass"); var PixelRatio = _$$_REQUIRE(_dependencyMap[2], "../Utilities/PixelRatio").default; var Platform = _$$_REQUIRE(_dependencyMap[3], "../Utilities/Platform"); var _require = _$$_REQUIRE(_dependencyMap[4], "./AssetUtils"), pickScale = _require.pickScale; var _require2 = _$$_REQUIRE(_dependencyMap[5], "@react-native/assets-registry/path-support"), getAndroidResourceFolderName = _require2.getAndroidResourceFolderName, getAndroidResourceIdentifier = _require2.getAndroidResourceIdentifier, getBasePath = _require2.getBasePath; var invariant = _$$_REQUIRE(_dependencyMap[6], "invariant"); /** * Returns a path like 'assets/AwesomeModule/icon@2x.png' */ function getScaledAssetPath(asset) { var scale = pickScale(asset.scales, PixelRatio.get()); var scaleSuffix = scale === 1 ? '' : '@' + scale + 'x'; var assetDir = getBasePath(asset); return assetDir + '/' + asset.name + scaleSuffix + '.' + asset.type; } /** * Returns a path like 'drawable-mdpi/icon.png' */ function getAssetPathInDrawableFolder(asset) { var scale = pickScale(asset.scales, PixelRatio.get()); var drawableFolder = getAndroidResourceFolderName(asset, scale); var fileName = getAndroidResourceIdentifier(asset); return drawableFolder + '/' + fileName + '.' + asset.type; } var AssetSourceResolver = /*#__PURE__*/function () { // where the jsbundle is being run from // the asset to resolve function AssetSourceResolver(serverUrl, jsbundleUrl, asset) { _classCallCheck(this, AssetSourceResolver); this.serverUrl = serverUrl; this.jsbundleUrl = jsbundleUrl; this.asset = asset; } return _createClass(AssetSourceResolver, [{ key: "isLoadedFromServer", value: function isLoadedFromServer() { return !!this.serverUrl; } }, { key: "isLoadedFromFileSystem", value: function isLoadedFromFileSystem() { var _this$jsbundleUrl; return this.jsbundleUrl != null && ((_this$jsbundleUrl = this.jsbundleUrl) == null ? void 0 : _this$jsbundleUrl.startsWith('file://')); } }, { key: "defaultAsset", value: function defaultAsset() { if (this.isLoadedFromServer()) { return this.assetServerURL(); } if ("ios" === 'android') { return this.isLoadedFromFileSystem() ? this.drawableFolderInBundle() : this.resourceIdentifierWithoutScale(); } else { return this.scaledAssetURLNearBundle(); } } /** * Returns an absolute URL which can be used to fetch the asset * from the devserver */ }, { key: "assetServerURL", value: function assetServerURL() { invariant(this.serverUrl != null, 'need server to load from'); return this.fromSource(this.serverUrl + getScaledAssetPath(this.asset) + '?platform=' + "ios" + '&hash=' + this.asset.hash); } /** * Resolves to just the scaled asset filename * E.g. 'assets/AwesomeModule/icon@2x.png' */ }, { key: "scaledAssetPath", value: function scaledAssetPath() { return this.fromSource(getScaledAssetPath(this.asset)); } /** * Resolves to where the bundle is running from, with a scaled asset filename * E.g. 'file:///sdcard/bundle/assets/AwesomeModule/icon@2x.png' */ }, { key: "scaledAssetURLNearBundle", value: function scaledAssetURLNearBundle() { var _this$jsbundleUrl2; var path = (_this$jsbundleUrl2 = this.jsbundleUrl) != null ? _this$jsbundleUrl2 : 'file://'; return this.fromSource( // Assets can have relative paths outside of the project root. // When bundling them we replace `../` with `_` to make sure they // don't end up outside of the expected assets directory. path + getScaledAssetPath(this.asset).replace(/\.\.\//g, '_')); } /** * The default location of assets bundled with the app, located by * resource identifier * The Android resource system picks the correct scale. * E.g. 'assets_awesomemodule_icon' */ }, { key: "resourceIdentifierWithoutScale", value: function resourceIdentifierWithoutScale() { invariant("ios" === 'android', 'resource identifiers work on Android'); return this.fromSource(getAndroidResourceIdentifier(this.asset)); } /** * If the jsbundle is running from a sideload location, this resolves assets * relative to its location * E.g. 'file:///sdcard/AwesomeModule/drawable-mdpi/icon.png' */ }, { key: "drawableFolderInBundle", value: function drawableFolderInBundle() { var _this$jsbundleUrl3; var path = (_this$jsbundleUrl3 = this.jsbundleUrl) != null ? _this$jsbundleUrl3 : 'file://'; return this.fromSource(path + getAssetPathInDrawableFolder(this.asset)); } }, { key: "fromSource", value: function fromSource(source) { return { __packager_asset: true, width: this.asset.width, height: this.asset.height, uri: source, scale: pickScale(this.asset.scales, PixelRatio.get()) }; } }]); }(); AssetSourceResolver.pickScale = pickScale; module.exports = AssetSourceResolver; },100,[14,15,101,48,105,106,4],"node_modules/react-native/Libraries/Image/AssetSourceResolver.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.default = void 0; var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck")); var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass")); var Dimensions = _$$_REQUIRE(_dependencyMap[3], "./Dimensions").default; /** * PixelRatio class gives access to the device pixel density. * * ## Fetching a correctly sized image * * You should get a higher resolution image if you are on a high pixel density * device. A good rule of thumb is to multiply the size of the image you display * by the pixel ratio. * * ``` * var image = getImage({ * width: PixelRatio.getPixelSizeForLayoutSize(200), * height: PixelRatio.getPixelSizeForLayoutSize(100), * }); * * ``` * * ## Pixel grid snapping * * In iOS, you can specify positions and dimensions for elements with arbitrary * precision, for example 29.674825. But, ultimately the physical display only * have a fixed number of pixels, for example 640×960 for iPhone 4 or 750×1334 * for iPhone 6. iOS tries to be as faithful as possible to the user value by * spreading one original pixel into multiple ones to trick the eye. The * downside of this technique is that it makes the resulting element look * blurry. * * In practice, we found out that developers do not want this feature and they * have to work around it by doing manual rounding in order to avoid having * blurry elements. In React Native, we are rounding all the pixels * automatically. * * We have to be careful when to do this rounding. You never want to work with * rounded and unrounded values at the same time as you're going to accumulate * rounding errors. Having even one rounding error is deadly because a one * pixel border may vanish or be twice as big. * * In React Native, everything in JavaScript and within the layout engine works * with arbitrary precision numbers. It's only when we set the position and * dimensions of the native element on the main thread that we round. Also, * rounding is done relative to the root rather than the parent, again to avoid * accumulating rounding errors. * */ var PixelRatio = /*#__PURE__*/function () { function PixelRatio() { (0, _classCallCheck2.default)(this, PixelRatio); } return (0, _createClass2.default)(PixelRatio, null, [{ key: "get", value: /** * Returns the device pixel density. Some examples: * * - PixelRatio.get() === 1 * - mdpi Android devices (160 dpi) * - PixelRatio.get() === 1.5 * - hdpi Android devices (240 dpi) * - PixelRatio.get() === 2 * - iPhone 4, 4S * - iPhone 5, 5c, 5s * - iPhone 6 * - iPhone 7 * - iPhone 8 * - iPhone SE * - xhdpi Android devices (320 dpi) * - PixelRatio.get() === 3 * - iPhone 6 Plus * - iPhone 7 Plus * - iPhone 8 Plus * - iPhone X * - xxhdpi Android devices (480 dpi) * - PixelRatio.get() === 3.5 * - Nexus 6 */ function get() { return Dimensions.get('window').scale; } /** * Returns the scaling factor for font sizes. This is the ratio that is used to calculate the * absolute font size, so any elements that heavily depend on that should use this to do * calculations. * * If a font scale is not set, this returns the device pixel ratio. * * This reflects the user preference set in: * - Settings > Display > Font size on Android, * - Settings > Display & Brightness > Text Size on iOS. */ }, { key: "getFontScale", value: function getFontScale() { return Dimensions.get('window').fontScale || PixelRatio.get(); } /** * Converts a layout size (dp) to pixel size (px). * * Guaranteed to return an integer number. */ }, { key: "getPixelSizeForLayoutSize", value: function getPixelSizeForLayoutSize(layoutSize) { return Math.round(layoutSize * PixelRatio.get()); } /** * Rounds a layout size (dp) to the nearest layout size that corresponds to * an integer number of pixels. For example, on a device with a PixelRatio * of 3, `PixelRatio.roundToNearestPixel(8.4) = 8.33`, which corresponds to * exactly (8.33 * 3) = 25 pixels. */ }, { key: "roundToNearestPixel", value: function roundToNearestPixel(layoutSize) { var ratio = PixelRatio.get(); return Math.round(layoutSize * ratio) / ratio; } // No-op for iOS, but used on the web. Should not be documented. }, { key: "startDetecting", value: function startDetecting() {} }]); }(); var _default = exports.default = PixelRatio; },101,[1,14,15,102],"node_modules/react-native/Libraries/Utilities/PixelRatio.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 _RCTDeviceEventEmitter = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "../EventEmitter/RCTDeviceEventEmitter")); var _EventEmitter = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "../vendor/emitter/EventEmitter")); var _NativeDeviceInfo = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[5], "./NativeDeviceInfo")); var _invariant = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "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 eventEmitter = new _EventEmitter.default(); var dimensionsInitialized = false; var dimensions; var Dimensions = /*#__PURE__*/function () { function Dimensions() { (0, _classCallCheck2.default)(this, Dimensions); } return (0, _createClass2.default)(Dimensions, null, [{ key: "get", value: /** * NOTE: `useWindowDimensions` is the preferred API for React components. * * Initial dimensions are set before `runApplication` is called so they should * be available before any other require's are run, but may be updated later. * * Note: Although dimensions are available immediately, they may change (e.g * due to device rotation) so any rendering logic or styles that depend on * these constants should try to call this function on every render, rather * than caching the value (for example, using inline styles rather than * setting a value in a `StyleSheet`). * * Example: `const {height, width} = Dimensions.get('window');` * * @param {string} dim Name of dimension as defined when calling `set`. * @returns {DisplayMetrics? | DisplayMetricsAndroid?} Value for the dimension. */ function get(dim) { (0, _invariant.default)(dimensions[dim], 'No dimension set for key ' + dim); return dimensions[dim]; } /** * This should only be called from native code by sending the * didUpdateDimensions event. * * @param {DimensionsPayload} dims Simple string-keyed object of dimensions to set */ }, { key: "set", value: function set(dims) { // We calculate the window dimensions in JS so that we don't encounter loss of // precision in transferring the dimensions (which could be non-integers) over // the bridge. var screen = dims.screen, window = dims.window; var windowPhysicalPixels = dims.windowPhysicalPixels; if (windowPhysicalPixels) { window = { width: windowPhysicalPixels.width / windowPhysicalPixels.scale, height: windowPhysicalPixels.height / windowPhysicalPixels.scale, scale: windowPhysicalPixels.scale, fontScale: windowPhysicalPixels.fontScale }; } var screenPhysicalPixels = dims.screenPhysicalPixels; if (screenPhysicalPixels) { screen = { width: screenPhysicalPixels.width / screenPhysicalPixels.scale, height: screenPhysicalPixels.height / screenPhysicalPixels.scale, scale: screenPhysicalPixels.scale, fontScale: screenPhysicalPixels.fontScale }; } else if (screen == null) { screen = window; } dimensions = { window: window, screen: screen }; if (dimensionsInitialized) { // Don't fire 'change' the first time the dimensions are set. eventEmitter.emit('change', dimensions); } else { dimensionsInitialized = true; } } /** * Add an event handler. Supported events: * * - `change`: Fires when a property within the `Dimensions` object changes. The argument * to the event handler is an object with `window` and `screen` properties whose values * are the same as the return values of `Dimensions.get('window')` and * `Dimensions.get('screen')`, respectively. */ }, { key: "addEventListener", value: function addEventListener(type, handler) { (0, _invariant.default)(type === 'change', 'Trying to subscribe to unknown event: "%s"', type); return eventEmitter.addListener(type, handler); } }]); }(); // Subscribe before calling getConstants to make sure we don't miss any updates in between. _RCTDeviceEventEmitter.default.addListener('didUpdateDimensions', function (update) { Dimensions.set(update); }); Dimensions.set(_NativeDeviceInfo.default.getConstants().Dimensions); var _default = exports.default = Dimensions; },102,[1,14,15,24,32,103,4],"node_modules/react-native/Libraries/Utilities/Dimensions.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativeDeviceInfo = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../src/private/specs/modules/NativeDeviceInfo")); Object.keys(_NativeDeviceInfo).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeDeviceInfo[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeDeviceInfo[key]; } }); }); 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 = _NativeDeviceInfo.default; },103,[104],"node_modules/react-native/Libraries/Utilities/NativeDeviceInfo.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], "../../../../Libraries/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('DeviceInfo'); var constants = null; var NativeDeviceInfo = { getConstants: function getConstants() { if (constants == null) { constants = NativeModule.getConstants(); } return constants; } }; var _default = exports.default = NativeDeviceInfo; },104,[51],"node_modules/react-native/src/private/specs/modules/NativeDeviceInfo.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.getUrlCacheBreaker = getUrlCacheBreaker; exports.pickScale = pickScale; exports.setUrlCacheBreaker = setUrlCacheBreaker; var _PixelRatio = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../Utilities/PixelRatio")); /** * 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 cacheBreaker; var warnIfCacheBreakerUnset = true; function pickScale(scales, deviceScale) { var requiredDeviceScale = deviceScale != null ? deviceScale : _PixelRatio.default.get(); // Packager guarantees that `scales` array is sorted for (var i = 0; i < scales.length; i++) { if (scales[i] >= requiredDeviceScale) { return scales[i]; } } // If nothing matches, device scale is larger than any available // scales, so we return the biggest one. Unless the array is empty, // in which case we default to 1 return scales[scales.length - 1] || 1; } function setUrlCacheBreaker(appendage) { cacheBreaker = appendage; } function getUrlCacheBreaker() { if (cacheBreaker == null) { if (__DEV__ && warnIfCacheBreakerUnset) { warnIfCacheBreakerUnset = false; console.warn('AssetUtils.getUrlCacheBreaker: Cache breaker value is unset'); } return ''; } return cacheBreaker; } },105,[1,101],"node_modules/react-native/Libraries/Image/AssetUtils.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 androidScaleSuffix = { '0.75': 'ldpi', '1': 'mdpi', '1.5': 'hdpi', '2': 'xhdpi', '3': 'xxhdpi', '4': 'xxxhdpi' }; var ANDROID_BASE_DENSITY = 160; /** * FIXME: using number to represent discrete scale numbers is fragile in essence because of * floating point numbers imprecision. */ function getAndroidAssetSuffix(scale) { if (scale.toString() in androidScaleSuffix) { return androidScaleSuffix[scale.toString()]; } // NOTE: Android Gradle Plugin does not fully support the nnndpi format. // See https://issuetracker.google.com/issues/72884435 if (Number.isFinite(scale) && scale > 0) { return Math.round(scale * ANDROID_BASE_DENSITY) + 'dpi'; } throw new Error('no such scale ' + scale.toString()); } // See https://developer.android.com/guide/topics/resources/drawable-resource.html var drawableFileTypes = new Set(['gif', 'jpeg', 'jpg', 'ktx', 'png', 'svg', 'webp', 'xml']); function getAndroidResourceFolderName(asset, scale) { if (!drawableFileTypes.has(asset.type)) { return 'raw'; } var suffix = getAndroidAssetSuffix(scale); if (!suffix) { throw new Error("Don't know which android drawable suffix to use for scale: " + scale + '\nAsset: ' + JSON.stringify(asset, null, '\t') + '\nPossible scales are:' + JSON.stringify(androidScaleSuffix, null, '\t')); } return 'drawable-' + suffix; } function getAndroidResourceIdentifier(asset) { return (getBasePath(asset) + '/' + asset.name).toLowerCase().replace(/\//g, '_') // Encode folder structure in file name .replace(/([^a-z0-9_])/g, '') // Remove illegal chars .replace(/^assets_/, ''); // Remove "assets_" prefix } function getBasePath(asset) { var basePath = asset.httpServerLocation; return basePath.startsWith('/') ? basePath.slice(1) : basePath; } module.exports = { getAndroidResourceFolderName: getAndroidResourceFolderName, getAndroidResourceIdentifier: getAndroidResourceIdentifier, getBasePath: getBasePath }; },106,[],"node_modules/@react-native/assets-registry/path-support.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 assets = []; function registerAsset(asset) { // `push` returns new array length, so the first asset will // get id 1 (not 0) to make the value truthy return assets.push(asset); } function getAssetByID(assetId) { return assets[assetId - 1]; } module.exports = { registerAsset: registerAsset, getAssetByID: getAssetByID }; },107,[],"node_modules/@react-native/assets-registry/registry.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 _processColor = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./processColor")); var TRANSPARENT = 0; // rgba(0, 0, 0, 0) function processColorArray(colors) { return colors == null ? null : colors.map(processColorElement); } function processColorElement(color) { var value = (0, _processColor.default)(color); // For invalid colors, fallback to transparent. if (value == null) { console.error('Invalid value in color array:', color); return TRANSPARENT; } return value; } module.exports = processColorArray; },108,[1,90],"node_modules/react-native/Libraries/StyleSheet/processColorArray.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 dummyInsets = { top: undefined, left: undefined, right: undefined, bottom: undefined }; var insetsDiffer = function insetsDiffer(one, two) { one = one || dummyInsets; two = two || dummyInsets; return one !== two && (one.top !== two.top || one.left !== two.left || one.right !== two.right || one.bottom !== two.bottom); }; module.exports = insetsDiffer; },109,[],"node_modules/react-native/Libraries/Utilities/differ/insetsDiffer.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'; /** * Unrolls an array comparison specially for matrices. Prioritizes * checking of indices that are most likely to change so that the comparison * bails as early as possible. * * @param {MatrixMath.Matrix} one First matrix. * @param {MatrixMath.Matrix} two Second matrix. * @return {boolean} Whether or not the two matrices differ. */ var matricesDiffer = function matricesDiffer(one, two) { if (one === two) { return false; } return !one || !two || one[12] !== two[12] || one[13] !== two[13] || one[14] !== two[14] || one[5] !== two[5] || one[10] !== two[10] || one[0] !== two[0] || one[1] !== two[1] || one[2] !== two[2] || one[3] !== two[3] || one[4] !== two[4] || one[6] !== two[6] || one[7] !== two[7] || one[8] !== two[8] || one[9] !== two[9] || one[11] !== two[11] || one[15] !== two[15]; }; module.exports = matricesDiffer; },110,[],"node_modules/react-native/Libraries/Utilities/differ/matricesDiffer.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 dummyPoint = { x: undefined, y: undefined }; var pointsDiffer = function pointsDiffer(one, two) { one = one || dummyPoint; two = two || dummyPoint; return one !== two && (one.x !== two.x || one.y !== two.y); }; module.exports = pointsDiffer; },111,[],"node_modules/react-native/Libraries/Utilities/differ/pointsDiffer.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _FabricUIManager = _$$_REQUIRE(_dependencyMap[1], "./FabricUIManager"); var _nullthrows = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "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[3], "./BridgelessUIManager") : _$$_REQUIRE(_dependencyMap[4], "./PaperUIManager"); // $FlowFixMe[cannot-spread-interface] var UIManager = Object.assign({}, UIManagerImpl, { measure: function measure(reactTag, callback) { if (isFabricReactTag(reactTag)) { var FabricUIManager = (0, _nullthrows.default)((0, _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, _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, _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, _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, _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; },112,[1,113,114,115,117],"node_modules/react-native/Libraries/ReactNative/UIManager.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; } },113,[1,57],"node_modules/react-native/Libraries/ReactNative/FabricUIManager.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 }); },114,[],"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 _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _NativeComponentRegistryUnstable = _$$_REQUIRE(_dependencyMap[1], "../NativeComponent/NativeComponentRegistryUnstable"); var _defineLazyObjectProperty = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "../Utilities/defineLazyObjectProperty")); var _Platform = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "../Utilities/Platform")); var _FabricUIManager = _$$_REQUIRE(_dependencyMap[4], "./FabricUIManager"); var _nullthrows = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[5], "nullthrows")); function raiseSoftError(methodName, details) { console.error(`[ReactNative Architecture][JS] '${methodName}' is not available in the new React Native architecture.` + (details ? ` ${details}` : '')); } var getUIManagerConstants = global.RN$LegacyInterop_UIManager_getConstants; var getUIManagerConstantsCached = function () { var wasCalledOnce = false; var result = {}; return function () { if (!wasCalledOnce) { result = (0, _nullthrows.default)(getUIManagerConstants)(); wasCalledOnce = true; } return result; }; }(); var _getConstantsForViewManager = global.RN$LegacyInterop_UIManager_getConstantsForViewManager; var _getDefaultEventTypes = global.RN$LegacyInterop_UIManager_getDefaultEventTypes; var getDefaultEventTypesCached = function () { var wasCalledOnce = false; var result = null; return function () { if (!wasCalledOnce) { result = (0, _nullthrows.default)(_getDefaultEventTypes)(); wasCalledOnce = true; } return result; }; }(); /** * UIManager.js overrides these APIs. * Pull them out from the BridgelessUIManager implementation. So, we can ignore them. */ var UIManagerJSOverridenAPIs = { measure: function measure(reactTag, callback) { raiseSoftError('measure'); }, measureInWindow: function measureInWindow(reactTag, callback) { raiseSoftError('measureInWindow'); }, measureLayout: function measureLayout(reactTag, ancestorReactTag, errorCallback, callback) { raiseSoftError('measureLayout'); }, measureLayoutRelativeToParent: function measureLayoutRelativeToParent(reactTag, errorCallback, callback) { raiseSoftError('measureLayoutRelativeToParent'); }, dispatchViewManagerCommand: function dispatchViewManagerCommand(reactTag, commandID, commandArgs) { raiseSoftError('dispatchViewManagerCommand'); } }; /** * Leave Unimplemented: The only thing that called these methods was the paper renderer. * In OSS, the New Architecture will just use the Fabric renderer, which uses * different APIs. */ var UIManagerJSUnusedInNewArchAPIs = { createView: function createView(reactTag, viewName, rootTag, props) { raiseSoftError('createView'); }, updateView: function updateView(reactTag, viewName, props) { raiseSoftError('updateView'); }, setChildren: function setChildren(containerTag, reactTags) { raiseSoftError('setChildren'); }, manageChildren: function manageChildren(containerTag, moveFromIndices, moveToIndices, addChildReactTags, addAtIndices, removeAtIndices) { raiseSoftError('manageChildren'); }, setJSResponder: function setJSResponder(reactTag, blockNativeResponder) { raiseSoftError('setJSResponder'); }, clearJSResponder: function clearJSResponder() { raiseSoftError('clearJSResponder'); } }; /** * Leave unimplemented: These APIs are deprecated in UIManager. We will eventually remove * them from React Native. */ var UIManagerJSDeprecatedPlatformAPIs = _Platform.default.select({ android: { // TODO(T175424986): Remove UIManager.showPopupMenu() in React Native v0.75. showPopupMenu: function showPopupMenu(reactTag, items, error, success) { raiseSoftError('showPopupMenu', 'Please use the component instead.'); }, // TODO(T175424986): Remove UIManager.dismissPopupMenu() in React Native v0.75. dismissPopupMenu: function dismissPopupMenu() { raiseSoftError('dismissPopupMenu', 'Please use the component instead.'); } } }); var UIManagerJSPlatformAPIs = _Platform.default.select({ android: { getConstantsForViewManager: function getConstantsForViewManager(viewManagerName) { if (_getConstantsForViewManager) { return _getConstantsForViewManager(viewManagerName); } raiseSoftError('getConstantsForViewManager'); return {}; }, getDefaultEventTypes: function getDefaultEventTypes() { if (_getDefaultEventTypes) { return getDefaultEventTypesCached(); } raiseSoftError('getDefaultEventTypes'); return []; }, setLayoutAnimationEnabledExperimental: function setLayoutAnimationEnabledExperimental(enabled) { /** * Layout animations are always enabled in the New Architecture. * They cannot be turned off. */ if (!enabled) { raiseSoftError('setLayoutAnimationEnabledExperimental(false)', 'Layout animations are always enabled in the New Architecture.'); } }, sendAccessibilityEvent: function sendAccessibilityEvent(reactTag, eventType) { // Keep this in sync with java:FabricUIManager.sendAccessibilityEventFromJS // and legacySendAccessibilityEvent.android.js var AccessibilityEvent = { TYPE_VIEW_FOCUSED: 0x00000008, TYPE_WINDOW_STATE_CHANGED: 0x00000020, TYPE_VIEW_CLICKED: 0x00000001, TYPE_VIEW_HOVER_ENTER: 0x00000080 }; var eventName = null; if (eventType === AccessibilityEvent.TYPE_VIEW_FOCUSED) { eventName = 'focus'; } else if (eventType === AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED) { eventName = 'windowStateChange'; } else if (eventType === AccessibilityEvent.TYPE_VIEW_CLICKED) { eventName = 'click'; } else if (eventType === AccessibilityEvent.TYPE_VIEW_HOVER_ENTER) { eventName = 'viewHoverEnter'; } else { console.error(`sendAccessibilityEvent() dropping event: Called with unsupported eventType: ${eventType}`); return; } var FabricUIManager = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()); var shadowNode = FabricUIManager.findShadowNodeByTag_DEPRECATED(reactTag); if (!shadowNode) { console.error(`sendAccessibilityEvent() dropping event: Cannot find view with tag #${reactTag}`); return; } FabricUIManager.sendAccessibilityEvent(shadowNode, eventName); } }, ios: { /** * TODO(T174674274): Implement lazy loading of legacy view managers in the new architecture. * * Leave this unimplemented until we implement lazy loading of legacy modules and view managers in the new architecture. */ lazilyLoadView: function lazilyLoadView(name) { raiseSoftError('lazilyLoadView'); return {}; }, focus: function focus(reactTag) { var FabricUIManager = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()); var shadowNode = FabricUIManager.findShadowNodeByTag_DEPRECATED(reactTag); if (!shadowNode) { console.error(`focus() noop: Cannot find view with tag #${reactTag}`); return; } FabricUIManager.dispatchCommand(shadowNode, 'focus', []); }, blur: function blur(reactTag) { var FabricUIManager = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()); var shadowNode = FabricUIManager.findShadowNodeByTag_DEPRECATED(reactTag); if (!shadowNode) { console.error(`blur() noop: Cannot find view with tag #${reactTag}`); return; } FabricUIManager.dispatchCommand(shadowNode, 'blur', []); } } }); var UIManagerJS = Object.assign({}, UIManagerJSOverridenAPIs, UIManagerJSDeprecatedPlatformAPIs, UIManagerJSPlatformAPIs, UIManagerJSUnusedInNewArchAPIs, { getViewManagerConfig: function getViewManagerConfig(viewManagerName) { if (getUIManagerConstants) { var constants = getUIManagerConstantsCached(); if (!constants[viewManagerName] && UIManagerJS.getConstantsForViewManager) { constants[viewManagerName] = UIManagerJS.getConstantsForViewManager(viewManagerName); } return constants[viewManagerName]; } else { raiseSoftError(`getViewManagerConfig('${viewManagerName}')`, `If '${viewManagerName}' has a ViewManager and you want to retrieve its native ViewConfig, please turn on the native ViewConfig interop layer. If you want to see if this component is registered with React Native, please call hasViewManagerConfig('${viewManagerName}') instead.`); return null; } }, hasViewManagerConfig: function hasViewManagerConfig(viewManagerName) { return (0, _NativeComponentRegistryUnstable.unstable_hasComponent)(viewManagerName); }, getConstants: function getConstants() { if (getUIManagerConstants) { return getUIManagerConstantsCached(); } else { raiseSoftError('getConstants'); return null; } }, findSubviewIn: function findSubviewIn(reactTag, point, callback) { var FabricUIManager = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()); var shadowNode = FabricUIManager.findShadowNodeByTag_DEPRECATED(reactTag); if (!shadowNode) { console.error(`findSubviewIn() noop: Cannot find view with reactTag ${reactTag}`); return; } FabricUIManager.findNodeAtPoint(shadowNode, point[0], point[1], function (internalInstanceHandle) { if (internalInstanceHandle == null) { console.error('findSubviewIn(): Cannot find node at point'); return; } var instanceHandle = internalInstanceHandle; var node = instanceHandle.stateNode.node; if (!node) { console.error('findSubviewIn(): Cannot find node at point'); return; } var nativeViewTag = instanceHandle.stateNode.canonical.nativeTag; FabricUIManager.measure(node, function (x, y, width, height, pageX, pageY) { callback(nativeViewTag, pageX, pageY, width, height); }); }); }, viewIsDescendantOf: function viewIsDescendantOf(reactTag, ancestorReactTag, callback) { var FabricUIManager = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()); var shadowNode = FabricUIManager.findShadowNodeByTag_DEPRECATED(reactTag); if (!shadowNode) { console.error(`viewIsDescendantOf() noop: Cannot find view with reactTag ${reactTag}`); return; } var ancestorShadowNode = FabricUIManager.findShadowNodeByTag_DEPRECATED(ancestorReactTag); if (!ancestorShadowNode) { console.error(`viewIsDescendantOf() noop: Cannot find view with ancestorReactTag ${ancestorReactTag}`); return; } // Keep this in sync with ReadOnlyNode.js var DOCUMENT_POSITION_CONTAINED_BY = 16; var result = FabricUIManager.compareDocumentPosition(ancestorShadowNode, shadowNode); var isAncestor = (result & DOCUMENT_POSITION_CONTAINED_BY) !== 0; callback([isAncestor]); }, configureNextLayoutAnimation: function configureNextLayoutAnimation(config, callback, errorCallback) { var FabricUIManager = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()); FabricUIManager.configureNextLayoutAnimation(config, callback, errorCallback); } }); if (getUIManagerConstants) { Object.keys(getUIManagerConstantsCached()).forEach(function (viewConfigName) { UIManagerJS[viewConfigName] = getUIManagerConstantsCached()[viewConfigName]; }); if (UIManagerJS.getConstants().ViewManagerNames) { UIManagerJS.getConstants().ViewManagerNames.forEach(function (viewManagerName) { (0, _defineLazyObjectProperty.default)(UIManagerJS, viewManagerName, { get: function get() { return (0, _nullthrows.default)(UIManagerJS.getConstantsForViewManager)(viewManagerName); } }); }); } } module.exports = UIManagerJS; },115,[1,116,57,48,113,114],"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; } },116,[],"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")); var _nullthrows = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "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 */ var NativeModules = _$$_REQUIRE(_dependencyMap[3], "../BatchedBridge/NativeModules"); var defineLazyObjectProperty = _$$_REQUIRE(_dependencyMap[4], "../Utilities/defineLazyObjectProperty"); var Platform = _$$_REQUIRE(_dependencyMap[5], "../Utilities/Platform"); var UIManagerProperties = _$$_REQUIRE(_dependencyMap[6], "./UIManagerProperties"); 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 = (0, _nullthrows.default)(_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] var UIManagerJS = Object.assign({}, _NativeUIManager.default, { createView: function createView(reactTag, viewName, rootTag, props) { if ("ios" === '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) { defineLazyObjectProperty(viewConfig, 'Constants', { get: function get() { var viewManager = 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; } }); defineLazyObjectProperty(viewConfig, 'Commands', { get: function get() { var viewManager = 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 ("ios" === 'ios') { Object.keys(_getConstants()).forEach(function (viewName) { lazifyViewManagerConfig(viewName); }); } else if (_getConstants().ViewManagerNames) { _NativeUIManager.default.getConstants().ViewManagerNames.forEach(function (viewManagerName) { defineLazyObjectProperty(_NativeUIManager.default, viewManagerName, { get: function get() { return (0, _nullthrows.default)(_NativeUIManager.default.getConstantsForViewManager)(viewManagerName); } }); }); } if (!global.nativeCallSyncHook) { Object.keys(_getConstants()).forEach(function (viewManagerName) { if (!UIManagerProperties.includes(viewManagerName)) { if (!viewManagerConfigs[viewManagerName]) { viewManagerConfigs[viewManagerName] = _getConstants()[viewManagerName]; } 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; },117,[1,118,114,52,57,48,120],"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 }); var _exportNames = {}; exports.default = void 0; var _NativeUIManager = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../src/private/specs/modules/NativeUIManager")); Object.keys(_NativeUIManager).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeUIManager[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeUIManager[key]; } }); }); 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 = _NativeUIManager.default; },118,[119],"node_modules/react-native/Libraries/ReactNative/NativeUIManager.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], "../../../../Libraries/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'); },119,[51],"node_modules/react-native/src/private/specs/modules/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', 'sendAccessibilityEvent', 'setChildren', 'setJSResponder', 'setLayoutAnimationEnabledExperimental', 'showPopupMenu', 'updateView', 'viewIsDescendantOf', 'PopupMenu', 'LazyViewManagersEnabled', 'ViewManagerNames', 'StyleConstants', 'AccessibilityEventTypes', 'UIView', 'getViewManagerConfig', 'hasViewManagerConfig', 'blur', 'focus', 'genericBubblingEventTypes', 'genericDirectEventTypes', 'lazilyLoadView']; },120,[],"node_modules/react-native/Libraries/ReactNative/UIManagerProperties.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 = verifyComponentAttributeEquivalence; exports.getConfigWithoutViewProps = getConfigWithoutViewProps; exports.stringifyViewConfig = stringifyViewConfig; var _PlatformBaseViewConfig = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../NativeComponent/PlatformBaseViewConfig")); /** * 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 IGNORED_KEYS = ['transform', 'hitSlop']; /** * The purpose of this function is to validate that the view config that * native exposes for a given view manager is the same as the view config * that is specified for that view manager in JS. * * In order to improve perf, we want to avoid calling into native to get * the view config when each view manager is used. To do this, we are moving * the configs to JS. In the future we will use these JS based view configs * to codegen the view manager on native to ensure they stay in sync without * this runtime check. * * If this function fails, that likely means a change was made to the native * view manager without updating the JS config as well. Ideally you can make * that direct change to the JS config. If you don't know what the differences * are, the best approach I've found is to create a view that prints * the return value of getNativeComponentAttributes, and then copying that * text and pasting it back into JS: * {JSON.stringify(getNativeComponentAttributes('RCTView'))} * * This is meant to be a stopgap until the time comes when we only have a * single source of truth. I wonder if this message will still be here two * years from now... */ function verifyComponentAttributeEquivalence(nativeViewConfig, staticViewConfig) { for (var prop of ['validAttributes', 'bubblingEventTypes', 'directEventTypes']) { var diff = Object.keys(lefthandObjectDiff(nativeViewConfig[prop], staticViewConfig[prop])); if (diff.length > 0) { var _staticViewConfig$uiV; var name = (_staticViewConfig$uiV = staticViewConfig.uiViewClassName) != null ? _staticViewConfig$uiV : nativeViewConfig.uiViewClassName; console.error(`'${name}' has a view config that does not match native. ` + `'${prop}' is missing: ${diff.join(', ')}`); } } } // Return the different key-value pairs of the right object, by iterating through the keys in the left object // Note it won't return a difference where a key is missing in the left but exists the right. function lefthandObjectDiff(leftObj, rightObj) { var differentKeys = {}; function compare(leftItem, rightItem, key) { if (typeof leftItem !== typeof rightItem && leftItem != null) { differentKeys[key] = rightItem; return; } if (typeof leftItem === 'object') { var objDiff = lefthandObjectDiff(leftItem, rightItem); if (Object.keys(objDiff).length > 1) { differentKeys[key] = objDiff; } return; } if (leftItem !== rightItem) { differentKeys[key] = rightItem; return; } } for (var key in leftObj) { if (IGNORED_KEYS.includes(key)) { continue; } if (!rightObj) { differentKeys[key] = {}; } else if (leftObj.hasOwnProperty(key)) { compare(leftObj[key], rightObj[key], key); } } return differentKeys; } function getConfigWithoutViewProps(viewConfig, propName) { if (!viewConfig[propName]) { return {}; } return Object.keys(viewConfig[propName]).filter(function (prop) { return !_PlatformBaseViewConfig.default[propName][prop]; }).reduce(function (obj, prop) { obj[prop] = viewConfig[propName][prop]; return obj; }, {}); } function stringifyViewConfig(viewConfig) { return JSON.stringify(viewConfig, function (key, val) { if (typeof val === 'function') { return `ƒ ${val.name}`; } return val; }, 2); } },121,[1,122],"node_modules/react-native/Libraries/Utilities/verifyComponentAttributeEquivalence.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 _BaseViewConfig = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./BaseViewConfig")); /** * 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 PlatformBaseViewConfig = _BaseViewConfig.default; // In Wilde/FB4A, use RNHostComponentListRoute in Bridge mode to verify // whether the JS props defined here match the native props defined // in RCTViewManagers in iOS, and ViewManagers in Android. var _default = exports.default = PlatformBaseViewConfig; },122,[1,123],"node_modules/react-native/Libraries/NativeComponent/PlatformBaseViewConfig.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 _ReactNativeStyleAttributes = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../Components/View/ReactNativeStyleAttributes")); var _ViewConfigIgnore = _$$_REQUIRE(_dependencyMap[2], "./ViewConfigIgnore"); /** * 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 bubblingEventTypes = { // Generic Events topPress: { phasedRegistrationNames: { bubbled: 'onPress', captured: 'onPressCapture' } }, topChange: { phasedRegistrationNames: { bubbled: 'onChange', captured: 'onChangeCapture' } }, topFocus: { phasedRegistrationNames: { bubbled: 'onFocus', captured: 'onFocusCapture' } }, topBlur: { phasedRegistrationNames: { bubbled: 'onBlur', captured: 'onBlurCapture' } }, topSubmitEditing: { phasedRegistrationNames: { bubbled: 'onSubmitEditing', captured: 'onSubmitEditingCapture' } }, topEndEditing: { phasedRegistrationNames: { bubbled: 'onEndEditing', captured: 'onEndEditingCapture' } }, topKeyPress: { phasedRegistrationNames: { bubbled: 'onKeyPress', captured: 'onKeyPressCapture' } }, // Touch Events topTouchStart: { phasedRegistrationNames: { bubbled: 'onTouchStart', captured: 'onTouchStartCapture' } }, topTouchMove: { phasedRegistrationNames: { bubbled: 'onTouchMove', captured: 'onTouchMoveCapture' } }, topTouchCancel: { phasedRegistrationNames: { bubbled: 'onTouchCancel', captured: 'onTouchCancelCapture' } }, topTouchEnd: { phasedRegistrationNames: { bubbled: 'onTouchEnd', captured: 'onTouchEndCapture' } }, // Experimental/Work in Progress Pointer Events (not yet ready for use) topClick: { phasedRegistrationNames: { captured: 'onClickCapture', bubbled: 'onClick' } }, topPointerCancel: { phasedRegistrationNames: { captured: 'onPointerCancelCapture', bubbled: 'onPointerCancel' } }, topPointerDown: { phasedRegistrationNames: { captured: 'onPointerDownCapture', bubbled: 'onPointerDown' } }, topPointerMove: { phasedRegistrationNames: { captured: 'onPointerMoveCapture', bubbled: 'onPointerMove' } }, topPointerUp: { phasedRegistrationNames: { captured: 'onPointerUpCapture', bubbled: 'onPointerUp' } }, topPointerEnter: { phasedRegistrationNames: { captured: 'onPointerEnterCapture', bubbled: 'onPointerEnter', skipBubbling: true } }, topPointerLeave: { phasedRegistrationNames: { captured: 'onPointerLeaveCapture', bubbled: 'onPointerLeave', skipBubbling: true } }, topPointerOver: { phasedRegistrationNames: { captured: 'onPointerOverCapture', bubbled: 'onPointerOver' } }, topPointerOut: { phasedRegistrationNames: { captured: 'onPointerOutCapture', bubbled: 'onPointerOut' } }, topGotPointerCapture: { phasedRegistrationNames: { captured: 'onGotPointerCaptureCapture', bubbled: 'onGotPointerCapture' } }, topLostPointerCapture: { phasedRegistrationNames: { captured: 'onLostPointerCaptureCapture', bubbled: 'onLostPointerCapture' } } }; var directEventTypes = { topAccessibilityAction: { registrationName: 'onAccessibilityAction' }, topAccessibilityTap: { registrationName: 'onAccessibilityTap' }, topMagicTap: { registrationName: 'onMagicTap' }, topAccessibilityEscape: { registrationName: 'onAccessibilityEscape' }, topLayout: { registrationName: 'onLayout' }, onGestureHandlerEvent: (0, _ViewConfigIgnore.DynamicallyInjectedByGestureHandler)({ registrationName: 'onGestureHandlerEvent' }), onGestureHandlerStateChange: (0, _ViewConfigIgnore.DynamicallyInjectedByGestureHandler)({ registrationName: 'onGestureHandlerStateChange' }) }; var validAttributesForNonEventProps = { // View Props accessible: true, accessibilityActions: true, accessibilityLabel: true, accessibilityHint: true, accessibilityLanguage: true, accessibilityValue: true, accessibilityViewIsModal: true, accessibilityElementsHidden: true, accessibilityIgnoresInvertColors: true, testID: true, backgroundColor: { process: _$$_REQUIRE(_dependencyMap[3], "../StyleSheet/processColor").default }, backfaceVisibility: true, opacity: true, shadowColor: { process: _$$_REQUIRE(_dependencyMap[3], "../StyleSheet/processColor").default }, shadowOffset: { diff: _$$_REQUIRE(_dependencyMap[4], "../Utilities/differ/sizesDiffer") }, shadowOpacity: true, shadowRadius: true, needsOffscreenAlphaCompositing: true, overflow: true, shouldRasterizeIOS: true, transform: { diff: _$$_REQUIRE(_dependencyMap[5], "../Utilities/differ/matricesDiffer") }, transformOrigin: true, accessibilityRole: true, accessibilityState: true, nativeID: true, pointerEvents: true, removeClippedSubviews: true, role: true, borderRadius: true, borderColor: { process: _$$_REQUIRE(_dependencyMap[3], "../StyleSheet/processColor").default }, borderCurve: true, borderWidth: true, borderStyle: true, hitSlop: { diff: _$$_REQUIRE(_dependencyMap[6], "../Utilities/differ/insetsDiffer") }, collapsable: true, borderTopWidth: true, borderTopColor: { process: _$$_REQUIRE(_dependencyMap[3], "../StyleSheet/processColor").default }, borderRightWidth: true, borderRightColor: { process: _$$_REQUIRE(_dependencyMap[3], "../StyleSheet/processColor").default }, borderBottomWidth: true, borderBottomColor: { process: _$$_REQUIRE(_dependencyMap[3], "../StyleSheet/processColor").default }, borderLeftWidth: true, borderLeftColor: { process: _$$_REQUIRE(_dependencyMap[3], "../StyleSheet/processColor").default }, borderStartWidth: true, borderStartColor: { process: _$$_REQUIRE(_dependencyMap[3], "../StyleSheet/processColor").default }, borderEndWidth: true, borderEndColor: { process: _$$_REQUIRE(_dependencyMap[3], "../StyleSheet/processColor").default }, borderTopLeftRadius: true, borderTopRightRadius: true, borderTopStartRadius: true, borderTopEndRadius: true, borderBottomLeftRadius: true, borderBottomRightRadius: true, borderBottomStartRadius: true, borderBottomEndRadius: true, borderEndEndRadius: true, borderEndStartRadius: true, borderStartEndRadius: true, borderStartStartRadius: true, display: true, zIndex: true, // ShadowView properties top: true, right: true, start: true, end: true, bottom: true, left: true, inset: true, insetBlock: true, insetBlockEnd: true, insetBlockStart: true, insetInline: true, insetInlineEnd: true, insetInlineStart: true, width: true, height: true, minWidth: true, maxWidth: true, minHeight: true, maxHeight: true, // Also declared as ViewProps // borderTopWidth: true, // borderRightWidth: true, // borderBottomWidth: true, // borderLeftWidth: true, // borderStartWidth: true, // borderEndWidth: true, // borderWidth: true, margin: true, marginBlock: true, marginBlockEnd: true, marginBlockStart: true, marginBottom: true, marginEnd: true, marginHorizontal: true, marginInline: true, marginInlineEnd: true, marginInlineStart: true, marginLeft: true, marginRight: true, marginStart: true, marginTop: true, marginVertical: true, padding: true, paddingBlock: true, paddingBlockEnd: true, paddingBlockStart: true, paddingBottom: true, paddingEnd: true, paddingHorizontal: true, paddingInline: true, paddingInlineEnd: true, paddingInlineStart: true, paddingLeft: true, paddingRight: true, paddingStart: true, paddingTop: true, paddingVertical: true, flex: true, flexGrow: true, rowGap: true, columnGap: true, gap: true, flexShrink: true, flexBasis: true, flexDirection: true, flexWrap: true, justifyContent: true, alignItems: true, alignSelf: true, alignContent: true, position: true, aspectRatio: true, // Also declared as ViewProps // overflow: true, // display: true, direction: true, style: _ReactNativeStyleAttributes.default, experimental_layoutConformance: true }; // Props for bubbling and direct events var validAttributesForEventProps = (0, _ViewConfigIgnore.ConditionallyIgnoredEventHandlers)({ onLayout: true, onMagicTap: true, // Accessibility onAccessibilityAction: true, onAccessibilityEscape: true, onAccessibilityTap: true, // PanResponder handlers onMoveShouldSetResponder: true, onMoveShouldSetResponderCapture: true, onStartShouldSetResponder: true, onStartShouldSetResponderCapture: true, onResponderGrant: true, onResponderReject: true, onResponderStart: true, onResponderEnd: true, onResponderRelease: true, onResponderMove: true, onResponderTerminate: true, onResponderTerminationRequest: true, onShouldBlockNativeResponder: true, // Touch events onTouchStart: true, onTouchMove: true, onTouchEnd: true, onTouchCancel: true, // Pointer events onClick: true, onPointerUp: true, onPointerDown: true, onPointerCancel: true, onPointerEnter: true, onPointerMove: true, onPointerLeave: true, onPointerOver: true, onPointerOut: true, onGotPointerCapture: true, onLostPointerCapture: true }); /** * On iOS, view managers define all of a component's props. * All view managers extend RCTViewManager, and RCTViewManager declares these props. */ var PlatformBaseViewConfigIos = { bubblingEventTypes: bubblingEventTypes, directEventTypes: directEventTypes, validAttributes: Object.assign({}, validAttributesForNonEventProps, validAttributesForEventProps) }; var _default = exports.default = PlatformBaseViewConfigIos; },123,[1,88,124,90,98,110,109],"node_modules/react-native/Libraries/NativeComponent/BaseViewConfig.ios.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.ConditionallyIgnoredEventHandlers = ConditionallyIgnoredEventHandlers; exports.DynamicallyInjectedByGestureHandler = DynamicallyInjectedByGestureHandler; exports.isIgnored = isIgnored; var _Platform = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../Utilities/Platform")); /** * 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 ignoredViewConfigProps = new WeakSet(); /** * Decorates ViewConfig values that are dynamically injected by the library, * react-native-gesture-handler. (T45765076) */ function DynamicallyInjectedByGestureHandler(object) { ignoredViewConfigProps.add(object); return object; } /** * On iOS, ViewManager event declarations generate {eventName}: true entries * in ViewConfig valueAttributes. These entries aren't generated for Android. * This annotation allows Static ViewConfigs to insert these entries into * iOS but not Android. * * In the future, we want to remove this platform-inconsistency. We want * to set RN$ViewConfigEventValidAttributesDisabled = true server-side, * so that iOS does not generate validAttributes from event props in iOS RCTViewManager, * since Android does not generate validAttributes from events props in Android ViewManager. * * TODO(T110872225): Remove this logic, after achieving platform-consistency */ function ConditionallyIgnoredEventHandlers(value) { if (_Platform.default.OS === 'ios') { return value; } return undefined; } function isIgnored(value) { if (typeof value === 'object' && value != null) { return ignoredViewConfigProps.has(value); } return false; } },124,[1,48],"node_modules/react-native/Libraries/NativeComponent/ViewConfigIgnore.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.stringifyValidationResult = stringifyValidationResult; exports.validate = validate; var _toConsumableArray2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/toConsumableArray")); var _ViewConfigIgnore = _$$_REQUIRE(_dependencyMap[2], "./ViewConfigIgnore"); /** * 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 */ /** * During the migration from native view configs to static view configs, this is * used to validate that the two are equivalent. */ function validate(name, nativeViewConfig, staticViewConfig) { var differences = []; accumulateDifferences(differences, [], { bubblingEventTypes: nativeViewConfig.bubblingEventTypes, directEventTypes: nativeViewConfig.directEventTypes, uiViewClassName: nativeViewConfig.uiViewClassName, validAttributes: nativeViewConfig.validAttributes }, { bubblingEventTypes: staticViewConfig.bubblingEventTypes, directEventTypes: staticViewConfig.directEventTypes, uiViewClassName: staticViewConfig.uiViewClassName, validAttributes: staticViewConfig.validAttributes }); if (differences.length === 0) { return { type: 'valid' }; } return { type: 'invalid', differences: differences }; } function stringifyValidationResult(name, validationResult) { var differences = validationResult.differences; return [`StaticViewConfigValidator: Invalid static view config for '${name}'.`, ''].concat((0, _toConsumableArray2.default)(differences.map(function (difference) { var type = difference.type, path = difference.path; switch (type) { case 'missing': return `- '${path.join('.')}' is missing.`; case 'unequal': return `- '${path.join('.')}' is the wrong value.`; case 'unexpected': return `- '${path.join('.')}' is present but not expected to be.`; } })), ['']).join('\n'); } function accumulateDifferences(differences, path, nativeObject, staticObject) { for (var nativeKey in nativeObject) { var nativeValue = nativeObject[nativeKey]; if (!staticObject.hasOwnProperty(nativeKey)) { differences.push({ path: [].concat((0, _toConsumableArray2.default)(path), [nativeKey]), type: 'missing', nativeValue: nativeValue }); continue; } var staticValue = staticObject[nativeKey]; var nativeValueIfObject = ifObject(nativeValue); if (nativeValueIfObject != null) { var staticValueIfObject = ifObject(staticValue); if (staticValueIfObject != null) { path.push(nativeKey); accumulateDifferences(differences, path, nativeValueIfObject, staticValueIfObject); path.pop(); continue; } } if (nativeValue !== staticValue) { differences.push({ path: [].concat((0, _toConsumableArray2.default)(path), [nativeKey]), type: 'unequal', nativeValue: nativeValue, staticValue: staticValue }); } } for (var staticKey in staticObject) { if (!nativeObject.hasOwnProperty(staticKey) && !(0, _ViewConfigIgnore.isIgnored)(staticObject[staticKey])) { differences.push({ path: [].concat((0, _toConsumableArray2.default)(path), [staticKey]), type: 'unexpected', staticValue: staticObject[staticKey] }); } } } function ifObject(value) { return typeof value === 'object' && !Array.isArray(value) ? value : null; } },125,[1,8,124],"node_modules/react-native/Libraries/NativeComponent/StaticViewConfigValidator.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.createViewConfig = createViewConfig; var _PlatformBaseViewConfig = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./PlatformBaseViewConfig")); /** * 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 */ /** * Creates a complete `ViewConfig` from a `PartialViewConfig`. */ function createViewConfig(partialViewConfig) { return { uiViewClassName: partialViewConfig.uiViewClassName, Commands: {}, bubblingEventTypes: composeIndexers(_PlatformBaseViewConfig.default.bubblingEventTypes, partialViewConfig.bubblingEventTypes), directEventTypes: composeIndexers(_PlatformBaseViewConfig.default.directEventTypes, partialViewConfig.directEventTypes), // $FlowFixMe[incompatible-return] validAttributes: composeIndexers( // $FlowFixMe[incompatible-call] `style` property confuses Flow. _PlatformBaseViewConfig.default.validAttributes, // $FlowFixMe[incompatible-call] `style` property confuses Flow. partialViewConfig.validAttributes) }; } function composeIndexers(maybeA, maybeB) { var _ref; return maybeA == null || maybeB == null ? (_ref = maybeA != null ? maybeA : maybeB) != null ? _ref : {} : Object.assign({}, maybeA, maybeB); } },126,[1,122],"node_modules/react-native/Libraries/NativeComponent/ViewConfig.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; /** * 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 _require = _$$_REQUIRE(_dependencyMap[0], "../ReactNative/RendererProxy"), dispatchCommand = _require.dispatchCommand; function codegenNativeCommands(options) { var commandObj = {}; options.supportedCommands.forEach(function (command) { // $FlowFixMe[missing-local-annot] commandObj[command] = function (ref) { for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { args[_key - 1] = arguments[_key]; } // $FlowFixMe[incompatible-call] dispatchCommand(ref, command, args); }; }); return commandObj; } var _default = exports.default = codegenNativeCommands; },127,[35],"node_modules/react-native/Libraries/Utilities/codegenNativeCommands.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.__INTERNAL_VIEW_CONFIG = exports.Commands = void 0; var NativeComponentRegistry = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[1], "../../NativeComponent/NativeComponentRegistry")); var _codegenNativeCommands = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "../../Utilities/codegenNativeCommands")); var _RCTTextInputViewConfig = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "./RCTTextInputViewConfig")); 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 Commands = exports.Commands = (0, _codegenNativeCommands.default)({ supportedCommands: ['focus', 'blur', 'setTextAndSelection'] }); var __INTERNAL_VIEW_CONFIG = exports.__INTERNAL_VIEW_CONFIG = Object.assign({ uiViewClassName: 'RCTSinglelineTextInputView' }, _RCTTextInputViewConfig.default); var SinglelineTextInputNativeComponent = NativeComponentRegistry.get('RCTSinglelineTextInputView', function () { return __INTERNAL_VIEW_CONFIG; }); // flowlint-next-line unclear-type:off var _default = exports.default = SinglelineTextInputNativeComponent; },128,[1,86,127,129],"node_modules/react-native/Libraries/Components/TextInput/RCTSingelineTextInputNativeComponent.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _ViewConfigIgnore = _$$_REQUIRE(_dependencyMap[0], "../../NativeComponent/ViewConfigIgnore"); /** * 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 RCTTextInputViewConfig = { bubblingEventTypes: { topBlur: { phasedRegistrationNames: { bubbled: 'onBlur', captured: 'onBlurCapture' } }, topChange: { phasedRegistrationNames: { bubbled: 'onChange', captured: 'onChangeCapture' } }, topEndEditing: { phasedRegistrationNames: { bubbled: 'onEndEditing', captured: 'onEndEditingCapture' } }, topFocus: { phasedRegistrationNames: { bubbled: 'onFocus', captured: 'onFocusCapture' } }, topKeyPress: { phasedRegistrationNames: { bubbled: 'onKeyPress', captured: 'onKeyPressCapture' } }, topSubmitEditing: { phasedRegistrationNames: { bubbled: 'onSubmitEditing', captured: 'onSubmitEditingCapture' } }, topTouchCancel: { phasedRegistrationNames: { bubbled: 'onTouchCancel', captured: 'onTouchCancelCapture' } }, topTouchEnd: { phasedRegistrationNames: { bubbled: 'onTouchEnd', captured: 'onTouchEndCapture' } }, topTouchMove: { phasedRegistrationNames: { bubbled: 'onTouchMove', captured: 'onTouchMoveCapture' } } }, directEventTypes: { topTextInput: { registrationName: 'onTextInput' }, topKeyPressSync: { registrationName: 'onKeyPressSync' }, topScroll: { registrationName: 'onScroll' }, topSelectionChange: { registrationName: 'onSelectionChange' }, topChangeSync: { registrationName: 'onChangeSync' }, topContentSizeChange: { registrationName: 'onContentSizeChange' } }, validAttributes: Object.assign({ fontSize: true, fontWeight: true, fontVariant: true, // flowlint-next-line untyped-import:off textShadowOffset: { diff: _$$_REQUIRE(_dependencyMap[1], "../../Utilities/differ/sizesDiffer") }, allowFontScaling: true, fontStyle: true, textTransform: true, textAlign: true, fontFamily: true, lineHeight: true, isHighlighted: true, writingDirection: true, textDecorationLine: true, textShadowRadius: true, letterSpacing: true, textDecorationStyle: true, textDecorationColor: { process: _$$_REQUIRE(_dependencyMap[2], "../../StyleSheet/processColor").default }, color: { process: _$$_REQUIRE(_dependencyMap[2], "../../StyleSheet/processColor").default }, maxFontSizeMultiplier: true, textShadowColor: { process: _$$_REQUIRE(_dependencyMap[2], "../../StyleSheet/processColor").default }, editable: true, inputAccessoryViewID: true, caretHidden: true, enablesReturnKeyAutomatically: true, placeholderTextColor: { process: _$$_REQUIRE(_dependencyMap[2], "../../StyleSheet/processColor").default }, clearButtonMode: true, keyboardType: true, selection: true, returnKeyType: true, submitBehavior: true, mostRecentEventCount: true, scrollEnabled: true, selectionColor: { process: _$$_REQUIRE(_dependencyMap[2], "../../StyleSheet/processColor").default }, contextMenuHidden: true, secureTextEntry: true, placeholder: true, autoCorrect: true, multiline: true, textContentType: true, maxLength: true, autoCapitalize: true, keyboardAppearance: true, passwordRules: true, spellCheck: true, selectTextOnFocus: true, text: true, clearTextOnFocus: true, showSoftInputOnFocus: true, autoFocus: true, lineBreakStrategyIOS: true, smartInsertDelete: true }, (0, _ViewConfigIgnore.ConditionallyIgnoredEventHandlers)({ onChange: true, onSelectionChange: true, onContentSizeChange: true, onScroll: true, onChangeSync: true, onKeyPressSync: true, onTextInput: true })) }; module.exports = RCTTextInputViewConfig; },129,[124,98,90],"node_modules/react-native/Libraries/Components/TextInput/RCTTextInputViewConfig.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 logListeners; function unstable_setLogListeners(listeners) { logListeners = listeners; } /* * @returns {bool} true if different, false if equal */ var _deepDiffer = function deepDiffer(one, two) { var maxDepthOrOptions = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : -1; var maybeOptions = arguments.length > 3 ? arguments[3] : undefined; var options = typeof maxDepthOrOptions === 'number' ? maybeOptions : maxDepthOrOptions; var maxDepth = typeof maxDepthOrOptions === 'number' ? maxDepthOrOptions : -1; if (maxDepth === 0) { return true; } if (one === two) { // Short circuit on identical object references instead of traversing them. return false; } if (typeof one === 'function' && typeof two === 'function') { // We consider all functions equal unless explicitly configured otherwise var unsafelyIgnoreFunctions = options == null ? void 0 : options.unsafelyIgnoreFunctions; if (unsafelyIgnoreFunctions == null) { if (logListeners && logListeners.onDifferentFunctionsIgnored && (!options || !('unsafelyIgnoreFunctions' in options))) { logListeners.onDifferentFunctionsIgnored(one.name, two.name); } unsafelyIgnoreFunctions = true; } return !unsafelyIgnoreFunctions; } if (typeof one !== 'object' || one === null) { // Primitives can be directly compared return one !== two; } if (typeof two !== 'object' || two === null) { // We know they are different because the previous case would have triggered // otherwise. return true; } if (one.constructor !== two.constructor) { return true; } if (Array.isArray(one)) { // We know two is also an array because the constructors are equal var len = one.length; if (two.length !== len) { return true; } for (var ii = 0; ii < len; ii++) { if (_deepDiffer(one[ii], two[ii], maxDepth - 1, options)) { return true; } } } else { for (var key in one) { if (_deepDiffer(one[key], two[key], maxDepth - 1, options)) { return true; } } for (var twoKey in two) { // The only case we haven't checked yet is keys that are in two but aren't // in one, which means they are different. if (one[twoKey] === undefined && two[twoKey] !== undefined) { return true; } } } return false; }; _deepDiffer.unstable_setLogListeners = unstable_setLogListeners; module.exports = _deepDiffer; },130,[],"node_modules/react-native/Libraries/Utilities/differ/deepDiffer.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 flattenStyle(style // $FlowFixMe[underconstrained-implicit-instantiation] ) { if (style === null || typeof style !== 'object') { return undefined; } if (!Array.isArray(style)) { // $FlowFixMe[incompatible-return] return style; } var result = {}; for (var i = 0, styleLength = style.length; i < styleLength; ++i) { // $FlowFixMe[underconstrained-implicit-instantiation] var computedStyle = flattenStyle(style[i]); if (computedStyle) { // $FlowFixMe[invalid-in-rhs] for (var key in computedStyle) { // $FlowFixMe[incompatible-use] result[key] = computedStyle[key]; } } } // $FlowFixMe[incompatible-return] return result; } module.exports = flattenStyle; },131,[],"node_modules/react-native/Libraries/StyleSheet/flattenStyle.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _ExceptionsManager = _$$_REQUIRE(_dependencyMap[0], "./ExceptionsManager"); /** * 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 ReactFiberErrorDialog = { /** * Intercept lifecycle errors and ensure they are shown with the correct stack * trace within the native redbox component. */ showErrorDialog: function showErrorDialog(_ref) { var componentStack = _ref.componentStack, errorValue = _ref.error; var error; // Typically, `errorValue` should be an error. However, other values such as // strings (or even null) are sometimes thrown. if (errorValue instanceof Error) { /* $FlowFixMe[class-object-subtyping] added when improving typing for * this parameters */ error = errorValue; } else if (typeof errorValue === 'string') { /* $FlowFixMe[class-object-subtyping] added when improving typing for * this parameters */ error = new _ExceptionsManager.SyntheticError(errorValue); } else { /* $FlowFixMe[class-object-subtyping] added when improving typing for * this parameters */ error = new _ExceptionsManager.SyntheticError('Unspecified error'); } try { error.componentStack = componentStack; error.isComponentError = true; } catch (_unused) { // Ignored. } (0, _ExceptionsManager.handleException)(error, false); // Return false here to prevent ReactFiberErrorLogger default behavior of // logging error details to console.error. Calls to console.error are // automatically routed to the native redbox controller, which we've already // done above by calling ExceptionsManager. return false; } }; var _default = exports.default = ReactFiberErrorDialog; },132,[39],"node_modules/react-native/Libraries/Core/ReactFiberErrorDialog.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _NativeAccessibilityManager = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./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 * */ /** * 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' && _NativeAccessibilityManager.default) { _NativeAccessibilityManager.default.setAccessibilityFocus(reactTag); } } module.exports = legacySendAccessibilityEvent; },133,[1,134],"node_modules/react-native/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.ios.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativeAccessibilityManager = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../../src/private/specs/modules/NativeAccessibilityManager")); Object.keys(_NativeAccessibilityManager).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeAccessibilityManager[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeAccessibilityManager[key]; } }); }); 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 = _NativeAccessibilityManager.default; },134,[135],"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 }); exports.default = void 0; var TurboModuleRegistry = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../../../Libraries/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'); },135,[51],"node_modules/react-native/src/private/specs/modules/NativeAccessibilityManager.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 _EventEmitter = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../vendor/emitter/EventEmitter")); /** * 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 RawEventEmitter = new _EventEmitter.default(); // See the React renderer / react repo for how this is used. // Raw events are emitted here when they are received in JS // and before any event Plugins process them or before components // have a chance to respond to them. This allows you to implement // app-specific perf monitoring, which is unimplemented by default, // making this entire RawEventEmitter do nothing by default until // *you* add listeners for your own app. // Besides perf monitoring and maybe debugging, this RawEventEmitter // should not be used. var _default = exports.default = RawEventEmitter; },136,[1,32],"node_modules/react-native/Libraries/Core/RawEventEmitter.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 _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/createClass")); var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/classCallCheck")); 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 _EventPolyfill2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "./EventPolyfill")); 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 * */ // Make sure global Event is defined var CustomEvent = /*#__PURE__*/function (_EventPolyfill) { function CustomEvent(typeArg, options) { var _this; (0, _classCallCheck2.default)(this, CustomEvent); var bubbles = options.bubbles, cancelable = options.cancelable, composed = options.composed; _this = _callSuper(this, CustomEvent, [typeArg, { bubbles: bubbles, cancelable: cancelable, composed: composed }]); _this.detail = options.detail; // this would correspond to `NativeEvent` in SyntheticEvent return _this; } (0, _inherits2.default)(CustomEvent, _EventPolyfill); return (0, _createClass2.default)(CustomEvent); }(_EventPolyfill2.default); var _default = exports.default = CustomEvent; },137,[1,15,14,25,27,30,138],"node_modules/react-native/Libraries/Events/CustomEvent.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 * */ // https://dom.spec.whatwg.org/#dictdef-eventinit /** * This is a copy of the Event interface defined in Flow: * https://github.com/facebook/flow/blob/741104e69c43057ebd32804dd6bcc1b5e97548ea/lib/dom.js * which is itself a faithful interface of the W3 spec: * https://dom.spec.whatwg.org/#interface-event * * Since Flow assumes that Event is provided and is on the global object, * we must provide an implementation of Event for CustomEvent (and future * alignment of React Native's event system with the W3 spec). */ var EventPolyfill = /*#__PURE__*/function () { // Non-standard. See `composed` instead. // https://developer.mozilla.org/en-US/docs/Web/API/Event/eventPhase // TODO: nullable // TODO: nullable /** @deprecated */ // TODO: nullable // React Native-specific: proxy data to a SyntheticEvent when // certain methods are called. // SyntheticEvent will also have a reference to this instance - // it is circular - and both classes use this reference to keep // data with the other in sync. function EventPolyfill(type, eventInitDict) { (0, _classCallCheck2.default)(this, EventPolyfill); this.type = type; this.bubbles = !!(eventInitDict != null && eventInitDict.bubbles || false); this.cancelable = !!(eventInitDict != null && eventInitDict.cancelable || false); this.composed = !!(eventInitDict != null && eventInitDict.composed || false); this.scoped = !!(eventInitDict != null && eventInitDict.scoped || false); // TODO: somehow guarantee that only "private" instantiations of Event // can set this to true this.isTrusted = false; // TODO: in the future we'll want to make sure this has the same // time-basis as events originating from native this.timeStamp = Date.now(); this.defaultPrevented = false; // https://developer.mozilla.org/en-US/docs/Web/API/Event/eventPhase this.NONE = 0; this.AT_TARGET = 1; this.BUBBLING_PHASE = 2; this.CAPTURING_PHASE = 3; this.eventPhase = this.NONE; // $FlowFixMe this.currentTarget = null; // $FlowFixMe this.target = null; // $FlowFixMe this.srcElement = null; } return (0, _createClass2.default)(EventPolyfill, [{ key: "composedPath", value: function composedPath() { throw new Error('TODO: not yet implemented'); } }, { key: "preventDefault", value: function preventDefault() { this.defaultPrevented = true; if (this._syntheticEvent != null) { // $FlowFixMe this._syntheticEvent.preventDefault(); } } }, { key: "initEvent", value: function initEvent(type, bubbles, cancelable) { throw new Error('TODO: not yet implemented. This method is also deprecated.'); } }, { key: "stopImmediatePropagation", value: function stopImmediatePropagation() { throw new Error('TODO: not yet implemented'); } }, { key: "stopPropagation", value: function stopPropagation() { if (this._syntheticEvent != null) { // $FlowFixMe this._syntheticEvent.stopPropagation(); } } }, { key: "setSyntheticEvent", value: function setSyntheticEvent(value) { this._syntheticEvent = value; } }]); }(); // Assertion magic for polyfill follows. // eslint-disable-line no-unused-vars /*:: // This can be a strict mode error at runtime so put it in a Flow comment. (checkEvent: IEvent); */ global.Event = EventPolyfill; var _default = exports.default = EventPolyfill; },138,[1,14,15],"node_modules/react-native/Libraries/Events/EventPolyfill.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.create = create; exports.diff = diff; var _flattenStyle = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../../StyleSheet/flattenStyle")); var _deepDiffer = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "../../Utilities/differ/deepDiffer")); /** * 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 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 (0, _deepDiffer.default)(prevProp, nextProp, deepDifferOptions); } } function restoreDeletedValuesInNestedArray(updatePayload, node, validAttributes) { if (Array.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) { // $FlowFixMe[incompatible-use] found when upgrading Flow 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') { // $FlowFixMe[incompatible-type] found when upgrading Flow nextProp = true; } if (typeof nextProp === 'undefined') { // $FlowFixMe[incompatible-type] found when upgrading Flow 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; } // $FlowFixMe[incompatible-use] found when upgrading Flow 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 (!Array.isArray(prevProp) && !Array.isArray(nextProp)) { // Both are leaves, we can diff the leaves. return diffProperties(updatePayload, prevProp, nextProp, validAttributes); } if (Array.isArray(prevProp) && Array.isArray(nextProp)) { // Both are arrays, we can diff the arrays. return diffNestedArrayProperty(updatePayload, prevProp, nextProp, validAttributes); } if (Array.isArray(prevProp)) { return diffProperties(updatePayload, // $FlowFixMe - We know that this is always an object when the input is. (0, _flattenStyle.default)(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. (0, _flattenStyle.default)(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 (!Array.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 (!Array.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' ? // $FlowFixMe[incompatible-use] found when upgrading Flow 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); } },139,[1,131,130],"node_modules/react-native/Libraries/ReactNative/ReactFabricPublicInstance/ReactNativeAttributePayload.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); exports.createPublicInstance = createPublicInstance; exports.createPublicTextInstance = createPublicTextInstance; exports.getInternalInstanceHandleFromPublicInstance = getInternalInstanceHandleFromPublicInstance; exports.getNativeTagFromPublicInstance = getNativeTagFromPublicInstance; exports.getNodeFromPublicInstance = getNodeFromPublicInstance; var ReactNativeFeatureFlags = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../../src/private/featureflags/ReactNativeFeatureFlags")); 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 * */ /** * This module is meant to be used by the React renderers to create public * instances and get some data from them (like their instance handle / fiber). */ // Lazy loaded to avoid evaluating the module when using the legacy renderer. var PublicInstanceClass; var ReadOnlyTextClass; // Lazy loaded to avoid evaluating the module when using the legacy renderer. var ReactFabric; function createPublicInstance(tag, viewConfig, internalInstanceHandle) { if (PublicInstanceClass == null) { // We don't use inline requires in react-native, so this forces lazy loading // the right module to avoid eagerly loading both. if (ReactNativeFeatureFlags.enableAccessToHostTreeInFabric()) { PublicInstanceClass = _$$_REQUIRE(_dependencyMap[1], "../../../src/private/webapis/dom/nodes/ReactNativeElement").default; } else { PublicInstanceClass = _$$_REQUIRE(_dependencyMap[2], "./ReactFabricHostComponent").default; } } return new PublicInstanceClass(tag, viewConfig, internalInstanceHandle); } function createPublicTextInstance(internalInstanceHandle) { if (ReadOnlyTextClass == null) { ReadOnlyTextClass = _$$_REQUIRE(_dependencyMap[3], "../../../src/private/webapis/dom/nodes/ReadOnlyText").default; } return new ReadOnlyTextClass(internalInstanceHandle); } function getNativeTagFromPublicInstance(publicInstance) { return publicInstance.__nativeTag; } function getNodeFromPublicInstance(publicInstance) { // Avoid loading ReactFabric if using an instance from the legacy renderer. if (publicInstance.__internalInstanceHandle == null) { return null; } if (ReactFabric == null) { ReactFabric = _$$_REQUIRE(_dependencyMap[4], "../../Renderer/shims/ReactFabric"); } return ReactFabric.getNodeFromInternalInstanceHandle(publicInstance.__internalInstanceHandle); } function getInternalInstanceHandleFromPublicInstance(publicInstance) { // TODO(T174762768): Remove this once OSS versions of renderers will be synced. // $FlowExpectedError[prop-missing] Keeping this for backwards-compatibility with the renderers versions in open source. if (publicInstance._internalInstanceHandle != null) { // $FlowExpectedError[incompatible-return] Keeping this for backwards-compatibility with the renderers versions in open source. return publicInstance._internalInstanceHandle; } return publicInstance.__internalInstanceHandle; } },140,[141,144,154,155,37],"node_modules/react-native/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); exports.useModernRuntimeScheduler = exports.shouldUseSetNativePropsInFabric = exports.shouldUseRemoveClippedSubviewsAsDefaultOnIOS = exports.shouldUseAnimatedObjectForTransform = exports.override = exports.jsOnlyTestFlag = exports.isLayoutAnimationEnabled = exports.inspectorEnableModernCDPRegistry = exports.inspectorEnableCxxInspectorPackagerConnection = exports.enableSpannableBuildingUnification = exports.enableMicrotasks = exports.enableFixForClippedSubviewsCrash = exports.enableCustomDrawOrderFabric = exports.enableBackgroundExecutor = exports.enableAccessToHostTreeInFabric = exports.destroyFabricSurfacesInReactInstanceManager = exports.commonTestFlag = exports.batchRenderingUpdatesInEventLoop = exports.animatedShouldUseSingleOp = exports.animatedShouldDebounceQueueFlush = exports.androidEnablePendingFabricTransactions = void 0; var _ReactNativeFeatureFlagsBase = _$$_REQUIRE(_dependencyMap[0], "./ReactNativeFeatureFlagsBase"); /** * 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. * * @generated SignedSource<> * */ /** * IMPORTANT: Do NOT modify this file directly. * * To change the definition of the flags, edit * packages/react-native/scripts/featureflags/ReactNativeFeatureFlags.config.js. * * To regenerate this code, run the following script from the repo root: * yarn featureflags-update */ /** * JS-only flag for testing. Do NOT modify. */ var jsOnlyTestFlag = exports.jsOnlyTestFlag = (0, _ReactNativeFeatureFlagsBase.createJavaScriptFlagGetter)('jsOnlyTestFlag', false); /** * Function used to enable / disabled Layout Animations in React Native. */ var isLayoutAnimationEnabled = exports.isLayoutAnimationEnabled = (0, _ReactNativeFeatureFlagsBase.createJavaScriptFlagGetter)('isLayoutAnimationEnabled', true); /** * Enables an experimental flush-queue debouncing in Animated.js. */ var animatedShouldDebounceQueueFlush = exports.animatedShouldDebounceQueueFlush = (0, _ReactNativeFeatureFlagsBase.createJavaScriptFlagGetter)('animatedShouldDebounceQueueFlush', false); /** * Enables an experimental mega-operation for Animated.js that replaces many calls to native with a single call into native, to reduce JSI/JNI traffic. */ var animatedShouldUseSingleOp = exports.animatedShouldUseSingleOp = (0, _ReactNativeFeatureFlagsBase.createJavaScriptFlagGetter)('animatedShouldUseSingleOp', false); /** * Enables access to the host tree in Fabric using DOM-compatible APIs. */ var enableAccessToHostTreeInFabric = exports.enableAccessToHostTreeInFabric = (0, _ReactNativeFeatureFlagsBase.createJavaScriptFlagGetter)('enableAccessToHostTreeInFabric', false); /** * Enables use of AnimatedObject for animating transform values. */ var shouldUseAnimatedObjectForTransform = exports.shouldUseAnimatedObjectForTransform = (0, _ReactNativeFeatureFlagsBase.createJavaScriptFlagGetter)('shouldUseAnimatedObjectForTransform', false); /** * Enables use of setNativeProps in JS driven animations. */ var shouldUseSetNativePropsInFabric = exports.shouldUseSetNativePropsInFabric = (0, _ReactNativeFeatureFlagsBase.createJavaScriptFlagGetter)('shouldUseSetNativePropsInFabric', true); /** * removeClippedSubviews prop will be used as the default in FlatList on iOS to match Android */ var shouldUseRemoveClippedSubviewsAsDefaultOnIOS = exports.shouldUseRemoveClippedSubviewsAsDefaultOnIOS = (0, _ReactNativeFeatureFlagsBase.createJavaScriptFlagGetter)('shouldUseRemoveClippedSubviewsAsDefaultOnIOS', false); /** * Common flag for testing. Do NOT modify. */ var commonTestFlag = exports.commonTestFlag = (0, _ReactNativeFeatureFlagsBase.createNativeFlagGetter)('commonTestFlag', false); /** * To be used with batchRenderingUpdatesInEventLoop. When enbled, the Android mounting layer will concatenate pending transactions to ensure they're applied atomatically */ var androidEnablePendingFabricTransactions = exports.androidEnablePendingFabricTransactions = (0, _ReactNativeFeatureFlagsBase.createNativeFlagGetter)('androidEnablePendingFabricTransactions', false); /** * When enabled, the RuntimeScheduler processing the event loop will batch all rendering updates and dispatch them together at the end of each iteration of the loop. */ var batchRenderingUpdatesInEventLoop = exports.batchRenderingUpdatesInEventLoop = (0, _ReactNativeFeatureFlagsBase.createNativeFlagGetter)('batchRenderingUpdatesInEventLoop', false); /** * When enabled, ReactInstanceManager will clean up Fabric surfaces on destroy(). */ var destroyFabricSurfacesInReactInstanceManager = exports.destroyFabricSurfacesInReactInstanceManager = (0, _ReactNativeFeatureFlagsBase.createNativeFlagGetter)('destroyFabricSurfacesInReactInstanceManager', false); /** * Enables the use of a background executor to compute layout and commit updates on Fabric (this system is deprecated and should not be used). */ var enableBackgroundExecutor = exports.enableBackgroundExecutor = (0, _ReactNativeFeatureFlagsBase.createNativeFlagGetter)('enableBackgroundExecutor', false); /** * When enabled, it uses the modern fork of RuntimeScheduler that allows scheduling tasks with priorities from any thread. */ var useModernRuntimeScheduler = exports.useModernRuntimeScheduler = (0, _ReactNativeFeatureFlagsBase.createNativeFlagGetter)('useModernRuntimeScheduler', false); /** * Enables the use of microtasks in Hermes (scheduling) and RuntimeScheduler (execution). */ var enableMicrotasks = exports.enableMicrotasks = (0, _ReactNativeFeatureFlagsBase.createNativeFlagGetter)('enableMicrotasks', false); /** * Uses new, deduplicated logic for constructing Android Spannables from text fragments */ var enableSpannableBuildingUnification = exports.enableSpannableBuildingUnification = (0, _ReactNativeFeatureFlagsBase.createNativeFlagGetter)('enableSpannableBuildingUnification', false); /** * When enabled, Fabric will use customDrawOrder in ReactViewGroup (similar to old architecture). */ var enableCustomDrawOrderFabric = exports.enableCustomDrawOrderFabric = (0, _ReactNativeFeatureFlagsBase.createNativeFlagGetter)('enableCustomDrawOrderFabric', false); /** * Attempt at fixing a crash related to subview clipping on Android. This is a kill switch for the fix */ var enableFixForClippedSubviewsCrash = exports.enableFixForClippedSubviewsCrash = (0, _ReactNativeFeatureFlagsBase.createNativeFlagGetter)('enableFixForClippedSubviewsCrash', false); /** * Flag determining if the C++ implementation of InspectorPackagerConnection should be used instead of the per-platform one. This flag is global and should not be changed across React Host lifetimes. */ var inspectorEnableCxxInspectorPackagerConnection = exports.inspectorEnableCxxInspectorPackagerConnection = (0, _ReactNativeFeatureFlagsBase.createNativeFlagGetter)('inspectorEnableCxxInspectorPackagerConnection', false); /** * Flag determining if the modern CDP backend should be enabled. This flag is global and should not be changed across React Host lifetimes. */ var inspectorEnableModernCDPRegistry = exports.inspectorEnableModernCDPRegistry = (0, _ReactNativeFeatureFlagsBase.createNativeFlagGetter)('inspectorEnableModernCDPRegistry', false); /** * Overrides the feature flags with the provided methods. * NOTE: Only JS-only flags can be overridden from JavaScript using this API. */ var override = exports.override = _ReactNativeFeatureFlagsBase.setOverrides; },141,[142],"node_modules/react-native/src/private/featureflags/ReactNativeFeatureFlags.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.createJavaScriptFlagGetter = createJavaScriptFlagGetter; exports.createNativeFlagGetter = createNativeFlagGetter; exports.getOverrides = getOverrides; exports.setOverrides = setOverrides; var _NativeReactNativeFeatureFlags = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./NativeReactNativeFeatureFlags")); /** * 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 accessedFeatureFlags = new Set(); var overrides; function createGetter(configName, customValueGetter, defaultValue) { var cachedValue; return function () { if (cachedValue == null) { var _customValueGetter; accessedFeatureFlags.add(configName); cachedValue = (_customValueGetter = customValueGetter()) != null ? _customValueGetter : defaultValue; } return cachedValue; }; } function createJavaScriptFlagGetter(configName, defaultValue) { return createGetter(configName, function () { var _overrides, _overrides$configName; return (_overrides = overrides) == null ? void 0 : (_overrides$configName = _overrides[configName]) == null ? void 0 : _overrides$configName.call(_overrides); }, defaultValue); } function createNativeFlagGetter(configName, defaultValue) { return createGetter(configName, function () { var _NativeReactNativeFea; return _NativeReactNativeFeatureFlags.default == null ? void 0 : (_NativeReactNativeFea = _NativeReactNativeFeatureFlags.default[configName]) == null ? void 0 : _NativeReactNativeFea.call(_NativeReactNativeFeatureFlags.default); }, defaultValue); } function getOverrides() { return overrides; } function setOverrides(newOverrides) { if (overrides != null) { throw new Error('Feature flags cannot be overridden more than once'); } if (accessedFeatureFlags.size > 0) { var accessedFeatureFlagsStr = Array.from(accessedFeatureFlags).join(', '); throw new Error(`Feature flags were accessed before being overridden: ${accessedFeatureFlagsStr}`); } overrides = newOverrides; } },142,[1,143],"node_modules/react-native/src/private/featureflags/ReactNativeFeatureFlagsBase.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], "../../../Libraries/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. * * @generated SignedSource<<8f82962343a5146622f36c2de071ff6a>> * */ /** * IMPORTANT: Do NOT modify this file directly. * * To change the definition of the flags, edit * packages/react-native/scripts/featureflags/ReactNativeFeatureFlags.config.js. * * To regenerate this code, run the following script from the repo root: * yarn featureflags-update */ var NativeReactNativeFeatureFlags = TurboModuleRegistry.get('NativeReactNativeFeatureFlagsCxx'); var _default = exports.default = NativeReactNativeFeatureFlags; },143,[51],"node_modules/react-native/src/private/featureflags/NativeReactNativeFeatureFlags.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 _TextInputState = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "../../../../../Libraries/Components/TextInput/TextInputState")); var _FabricUIManager = _$$_REQUIRE(_dependencyMap[7], "../../../../../Libraries/ReactNative/FabricUIManager"); var _ReactNativeAttributePayload = _$$_REQUIRE(_dependencyMap[8], "../../../../../Libraries/ReactNative/ReactFabricPublicInstance/ReactNativeAttributePayload"); var _warnForStyleProps = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[9], "../../../../../Libraries/ReactNative/ReactFabricPublicInstance/warnForStyleProps")); var _ReadOnlyElement2 = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[10], "./ReadOnlyElement")); var _ReadOnlyNode = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[11], "./ReadOnlyNode")); var _nullthrows = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[12], "nullthrows")); 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 * */ // flowlint unsafe-getters-setters:off var noop = function noop() {}; var ReactNativeElement = exports.default = /*#__PURE__*/function (_ReadOnlyElement) { // These need to be accessible from `ReactFabricPublicInstanceUtils`. function ReactNativeElement(tag, viewConfig, internalInstanceHandle) { var _this; (0, _classCallCheck2.default)(this, ReactNativeElement); _this = _callSuper(this, ReactNativeElement, [internalInstanceHandle]); _this.__nativeTag = tag; _this.__internalInstanceHandle = internalInstanceHandle; _this._viewConfig = viewConfig; return _this; } (0, _inherits2.default)(ReactNativeElement, _ReadOnlyElement); return (0, _createClass2.default)(ReactNativeElement, [{ key: "offsetHeight", get: function get() { return Math.round((0, _ReadOnlyElement2.getBoundingClientRect)(this, { includeTransform: false }).height); } }, { key: "offsetLeft", get: function get() { var node = (0, _ReadOnlyNode.getShadowNode)(this); if (node != null) { var offset = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getOffset(node); if (offset != null) { return Math.round(offset[2]); } } return 0; } }, { key: "offsetParent", get: function get() { var node = (0, _ReadOnlyNode.getShadowNode)(this); if (node != null) { var offset = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getOffset(node); // For children of the root node we currently return offset data // but a `null` parent because the root node is not accessible // in JavaScript yet. if (offset != null && offset[0] != null) { var offsetParentInstanceHandle = offset[0]; var offsetParent = (0, _ReadOnlyNode.getPublicInstanceFromInternalInstanceHandle)(offsetParentInstanceHandle); // $FlowExpectedError[incompatible-type] The value returned by `getOffset` is always an instance handle for `ReadOnlyElement`. var offsetParentElement = offsetParent; return offsetParentElement; } } return null; } }, { key: "offsetTop", get: function get() { var node = (0, _ReadOnlyNode.getShadowNode)(this); if (node != null) { var offset = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getOffset(node); if (offset != null) { return Math.round(offset[1]); } } return 0; } }, { key: "offsetWidth", get: function get() { return Math.round((0, _ReadOnlyElement2.getBoundingClientRect)(this, { includeTransform: false }).width); } /** * React Native compatibility methods */ }, { key: "blur", value: function blur() { // $FlowFixMe[incompatible-exact] Migrate all usages of `NativeMethods` to an interface to fix this. _TextInputState.default.blurTextInput(this); } }, { key: "focus", value: function focus() { // $FlowFixMe[incompatible-exact] Migrate all usages of `NativeMethods` to an interface to fix this. _TextInputState.default.focusTextInput(this); } }, { key: "measure", value: function measure(callback) { var node = (0, _ReadOnlyNode.getShadowNode)(this); if (node != null) { (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).measure(node, callback); } } }, { key: "measureInWindow", value: function measureInWindow(callback) { var node = (0, _ReadOnlyNode.getShadowNode)(this); if (node != null) { (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).measureInWindow(node, callback); } } }, { key: "measureLayout", value: function measureLayout(relativeToNativeNode, onSuccess, onFail) { if (!(relativeToNativeNode instanceof _ReadOnlyNode.default)) { if (__DEV__) { console.error('Warning: ref.measureLayout must be called with a ref to a native component.'); } return; } var toStateNode = (0, _ReadOnlyNode.getShadowNode)(this); var fromStateNode = (0, _ReadOnlyNode.getShadowNode)(relativeToNativeNode); if (toStateNode != null && fromStateNode != null) { (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).measureLayout(toStateNode, fromStateNode, onFail != null ? onFail : noop, onSuccess != null ? onSuccess : noop); } } }, { key: "setNativeProps", value: function setNativeProps(nativeProps) { if (__DEV__) { (0, _warnForStyleProps.default)(nativeProps, this._viewConfig.validAttributes); } var updatePayload = (0, _ReactNativeAttributePayload.create)(nativeProps, this._viewConfig.validAttributes); var node = (0, _ReadOnlyNode.getShadowNode)(this); if (node != null && updatePayload != null) { (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).setNativeProps(node, updatePayload); } } }]); }(_ReadOnlyElement2.default); },144,[1,14,15,25,27,30,84,113,139,145,146,151,114],"node_modules/react-native/src/private/webapis/dom/nodes/ReactNativeElement.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); exports.default = warnForStyleProps; /** * 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 warnForStyleProps(props, validAttributes) { if (__DEV__) { for (var key in validAttributes.style) { if (!(validAttributes[key] || props[key] === undefined)) { console.error('You are setting the style `{ %s' + ': ... }` as a prop. You ' + 'should nest it in a style object. ' + 'E.g. `{ style: { %s' + ': ... } }`', key, key); } } } } },145,[],"node_modules/react-native/Libraries/ReactNative/ReactFabricPublicInstance/warnForStyleProps.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; exports.getBoundingClientRect = _getBoundingClientRect; 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 _FabricUIManager = _$$_REQUIRE(_dependencyMap[6], "../../../../../Libraries/ReactNative/FabricUIManager"); var _DOMRect = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[7], "../geometry/DOMRect")); var _HTMLCollection = _$$_REQUIRE(_dependencyMap[8], "../oldstylecollections/HTMLCollection"); var _ReadOnlyNode2 = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[9], "./ReadOnlyNode")); var _Traversal = _$$_REQUIRE(_dependencyMap[10], "./utilities/Traversal"); var _nullthrows = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[11], "nullthrows")); 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 * */ // flowlint unsafe-getters-setters:off var ReadOnlyElement = exports.default = /*#__PURE__*/function (_ReadOnlyNode) { function ReadOnlyElement() { (0, _classCallCheck2.default)(this, ReadOnlyElement); return _callSuper(this, ReadOnlyElement, arguments); } (0, _inherits2.default)(ReadOnlyElement, _ReadOnlyNode); return (0, _createClass2.default)(ReadOnlyElement, [{ key: "childElementCount", get: function get() { return getChildElements(this).length; } }, { key: "children", get: function get() { return (0, _HTMLCollection.createHTMLCollection)(getChildElements(this)); } }, { key: "clientHeight", get: function get() { var node = (0, _ReadOnlyNode2.getShadowNode)(this); if (node != null) { var innerSize = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getInnerSize(node); if (innerSize != null) { return innerSize[1]; } } return 0; } }, { key: "clientLeft", get: function get() { var node = (0, _ReadOnlyNode2.getShadowNode)(this); if (node != null) { var borderSize = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getBorderSize(node); if (borderSize != null) { return borderSize[3]; } } return 0; } }, { key: "clientTop", get: function get() { var node = (0, _ReadOnlyNode2.getShadowNode)(this); if (node != null) { var borderSize = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getBorderSize(node); if (borderSize != null) { return borderSize[0]; } } return 0; } }, { key: "clientWidth", get: function get() { var node = (0, _ReadOnlyNode2.getShadowNode)(this); if (node != null) { var innerSize = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getInnerSize(node); if (innerSize != null) { return innerSize[0]; } } return 0; } }, { key: "firstElementChild", get: function get() { var childElements = getChildElements(this); if (childElements.length === 0) { return null; } return childElements[0]; } }, { key: "id", get: function get() { var _instanceHandle$state, _instanceHandle$state2, _ref, _props$id; var instanceHandle = (0, _ReadOnlyNode2.getInstanceHandle)(this); // TODO: migrate off this private React API // $FlowExpectedError[incompatible-use] var props = instanceHandle == null ? void 0 : (_instanceHandle$state = instanceHandle.stateNode) == null ? void 0 : (_instanceHandle$state2 = _instanceHandle$state.canonical) == null ? void 0 : _instanceHandle$state2.currentProps; return (_ref = (_props$id = props == null ? void 0 : props.id) != null ? _props$id : props == null ? void 0 : props.nativeID) != null ? _ref : ''; } }, { key: "lastElementChild", get: function get() { var childElements = getChildElements(this); if (childElements.length === 0) { return null; } return childElements[childElements.length - 1]; } }, { key: "nextElementSibling", get: function get() { return (0, _Traversal.getElementSibling)(this, 'next'); } }, { key: "nodeName", get: function get() { return this.tagName; } }, { key: "nodeType", get: function get() { return _ReadOnlyNode2.default.ELEMENT_NODE; } }, { key: "nodeValue", get: function get() { return null; }, set: function set(value) {} }, { key: "previousElementSibling", get: function get() { return (0, _Traversal.getElementSibling)(this, 'previous'); } }, { key: "scrollHeight", get: function get() { var node = (0, _ReadOnlyNode2.getShadowNode)(this); if (node != null) { var scrollSize = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getScrollSize(node); if (scrollSize != null) { return scrollSize[1]; } } return 0; } }, { key: "scrollLeft", get: function get() { var node = (0, _ReadOnlyNode2.getShadowNode)(this); if (node != null) { var scrollPosition = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getScrollPosition(node); if (scrollPosition != null) { return scrollPosition[0]; } } return 0; } }, { key: "scrollTop", get: function get() { var node = (0, _ReadOnlyNode2.getShadowNode)(this); if (node != null) { var scrollPosition = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getScrollPosition(node); if (scrollPosition != null) { return scrollPosition[1]; } } return 0; } }, { key: "scrollWidth", get: function get() { var node = (0, _ReadOnlyNode2.getShadowNode)(this); if (node != null) { var scrollSize = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getScrollSize(node); if (scrollSize != null) { return scrollSize[0]; } } return 0; } }, { key: "tagName", get: function get() { var node = (0, _ReadOnlyNode2.getShadowNode)(this); if (node != null) { return (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getTagName(node); } return ''; } }, { key: "textContent", get: function get() { var shadowNode = (0, _ReadOnlyNode2.getShadowNode)(this); if (shadowNode != null) { return (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getTextContent(shadowNode); } return ''; } }, { key: "getBoundingClientRect", value: function getBoundingClientRect() { return _getBoundingClientRect(this, { includeTransform: true }); } /** * Pointer Capture APIs */ }, { key: "hasPointerCapture", value: function hasPointerCapture(pointerId) { var node = (0, _ReadOnlyNode2.getShadowNode)(this); if (node != null) { return (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).hasPointerCapture(node, pointerId); } return false; } }, { key: "setPointerCapture", value: function setPointerCapture(pointerId) { var node = (0, _ReadOnlyNode2.getShadowNode)(this); if (node != null) { (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).setPointerCapture(node, pointerId); } } }, { key: "releasePointerCapture", value: function releasePointerCapture(pointerId) { var node = (0, _ReadOnlyNode2.getShadowNode)(this); if (node != null) { (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).releasePointerCapture(node, pointerId); } } }]); }(_ReadOnlyNode2.default); function getChildElements(node) { // $FlowIssue[incompatible-call] return (0, _ReadOnlyNode2.getChildNodes)(node).filter(function (childNode) { return childNode instanceof ReadOnlyElement; }); } /** * The public API for `getBoundingClientRect` always includes transform, * so we use this internal version to get the data without transform to * implement methods like `offsetWidth` and `offsetHeight`. */ function _getBoundingClientRect(node, _ref2) { var includeTransform = _ref2.includeTransform; var shadowNode = (0, _ReadOnlyNode2.getShadowNode)(node); if (shadowNode != null) { var rect = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getBoundingClientRect(shadowNode, includeTransform); if (rect) { return new _DOMRect.default(rect[0], rect[1], rect[2], rect[3]); } } // Empty rect if any of the above failed return new _DOMRect.default(0, 0, 0, 0); } },146,[1,14,15,25,27,30,113,147,149,151,153,114],"node_modules/react-native/src/private/webapis/dom/nodes/ReadOnlyElement.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); },147,[1,14,15,25,27,30,148],"node_modules/react-native/src/private/webapis/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); } }]); }(); },148,[1,14,15],"node_modules/react-native/src/private/webapis/dom/geometry/DOMRectReadOnly.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.createHTMLCollection = createHTMLCollection; 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 _ArrayLikeUtils = _$$_REQUIRE(_dependencyMap[3], "./ArrayLikeUtils"); /** * 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 // IMPORTANT: The type definition for this module is defined in `HTMLCollection.js.flow` // because Flow only supports indexers in classes in declaration files. // $FlowIssue[prop-missing] Flow doesn't understand [Symbol.iterator]() {} and thinks this class doesn't implement the Iterable interface. var HTMLCollection = exports.default = /*#__PURE__*/function () { /** * Use `createHTMLCollection` to create instances of this class. * * @private This is not defined in the declaration file, so users will not see * the signature of the constructor. */ function HTMLCollection(elements) { (0, _classCallCheck2.default)(this, HTMLCollection); for (var i = 0; i < elements.length; i++) { Object.defineProperty(this, i, { value: elements[i], enumerable: true, configurable: false, writable: false }); } this._length = elements.length; } return (0, _createClass2.default)(HTMLCollection, [{ key: "length", get: function get() { return this._length; } }, { key: "item", value: function item(index) { if (index < 0 || index >= this._length) { return null; } // assigning to the interface allows us to access the indexer property in a // type-safe way. // eslint-disable-next-line consistent-this var arrayLike = this; return arrayLike[index]; } /** * @deprecated Unused in React Native. */ }, { key: "namedItem", value: function namedItem(name) { return null; } // $FlowIssue[unsupported-syntax] Flow does not support computed properties in classes. }, { key: Symbol.iterator, value: function value() { return (0, _ArrayLikeUtils.createValueIterator)(this); } }]); }(); /** * This is an internal method to create instances of `HTMLCollection`, * which avoids leaking its constructor to end users. * We can do that because the external definition of `HTMLCollection` lives in * `HTMLCollection.js.flow`, not here. */ function createHTMLCollection(elements) { return new HTMLCollection(elements); } },149,[1,14,15,150],"node_modules/react-native/src/private/webapis/dom/oldstylecollections/HTMLCollection.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); exports.createEntriesIterator = createEntriesIterator; exports.createKeyIterator = createKeyIterator; exports.createValueIterator = createValueIterator; /** * 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 definition is different from the current built-in type `$ArrayLike` * provided by Flow, in that this is an interface and that one is an object. * * The difference is important because, when using objects, Flow thinks * a `length` property would be copied over when using the spread operator, * which is incorrect. */ function* createValueIterator(arrayLike) { for (var i = 0; i < arrayLike.length; i++) { yield arrayLike[i]; } } function* createKeyIterator(arrayLike) { for (var i = 0; i < arrayLike.length; i++) { yield i; } } function* createEntriesIterator(arrayLike) { for (var i = 0; i < arrayLike.length; i++) { yield [i, arrayLike[i]]; } } },150,[],"node_modules/react-native/src/private/webapis/dom/oldstylecollections/ArrayLikeUtils.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; exports.getChildNodes = getChildNodes; exports.getInstanceHandle = getInstanceHandle; exports.getPublicInstanceFromInternalInstanceHandle = getPublicInstanceFromInternalInstanceHandle; exports.getShadowNode = getShadowNode; var _slicedToArray2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/slicedToArray")); var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/classCallCheck")); var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "@babel/runtime/helpers/createClass")); var _FabricUIManager = _$$_REQUIRE(_dependencyMap[4], "../../../../../Libraries/ReactNative/FabricUIManager"); var _NodeList = _$$_REQUIRE(_dependencyMap[5], "../oldstylecollections/NodeList"); var _nullthrows = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "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 * */ // flowlint unsafe-getters-setters:off // We initialize this lazily to avoid a require cycle // (`ReadOnlyElement` also depends on `ReadOnlyNode`). var ReadOnlyElementClass; var ReadOnlyNode = exports.default = /*#__PURE__*/function () { function ReadOnlyNode(internalInstanceHandle) { (0, _classCallCheck2.default)(this, ReadOnlyNode); setInstanceHandle(this, internalInstanceHandle); } return (0, _createClass2.default)(ReadOnlyNode, [{ key: "childNodes", get: function get() { var childNodes = getChildNodes(this); return (0, _NodeList.createNodeList)(childNodes); } }, { key: "firstChild", get: function get() { var childNodes = getChildNodes(this); if (childNodes.length === 0) { return null; } return childNodes[0]; } }, { key: "isConnected", get: function get() { var shadowNode = getShadowNode(this); if (shadowNode == null) { return false; } return (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).isConnected(shadowNode); } }, { key: "lastChild", get: function get() { var childNodes = getChildNodes(this); if (childNodes.length === 0) { return null; } return childNodes[childNodes.length - 1]; } }, { key: "nextSibling", get: function get() { var _getNodeSiblingsAndPo = getNodeSiblingsAndPosition(this), _getNodeSiblingsAndPo2 = (0, _slicedToArray2.default)(_getNodeSiblingsAndPo, 2), siblings = _getNodeSiblingsAndPo2[0], position = _getNodeSiblingsAndPo2[1]; if (position === siblings.length - 1) { // this node is the last child of its parent, so there is no next sibling. return null; } return siblings[position + 1]; } /** * @abstract */ }, { key: "nodeName", get: function get() { throw new TypeError('`nodeName` is abstract and must be implemented in a subclass of `ReadOnlyNode`'); } /** * @abstract */ }, { key: "nodeType", get: function get() { throw new TypeError('`nodeType` is abstract and must be implemented in a subclass of `ReadOnlyNode`'); } /** * @abstract */ }, { key: "nodeValue", get: function get() { throw new TypeError('`nodeValue` is abstract and must be implemented in a subclass of `ReadOnlyNode`'); } }, { key: "parentElement", get: function get() { var parentNode = this.parentNode; if (ReadOnlyElementClass == null) { // We initialize this lazily to avoid a require cycle. ReadOnlyElementClass = _$$_REQUIRE(_dependencyMap[7], "./ReadOnlyElement").default; } if (parentNode instanceof ReadOnlyElementClass) { return parentNode; } return null; } }, { key: "parentNode", get: function get() { var _getPublicInstanceFro; var shadowNode = getShadowNode(this); if (shadowNode == null) { return null; } var parentInstanceHandle = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getParentNode(shadowNode); if (parentInstanceHandle == null) { return null; } return (_getPublicInstanceFro = getPublicInstanceFromInternalInstanceHandle(parentInstanceHandle)) != null ? _getPublicInstanceFro : null; } }, { key: "previousSibling", get: function get() { var _getNodeSiblingsAndPo3 = getNodeSiblingsAndPosition(this), _getNodeSiblingsAndPo4 = (0, _slicedToArray2.default)(_getNodeSiblingsAndPo3, 2), siblings = _getNodeSiblingsAndPo4[0], position = _getNodeSiblingsAndPo4[1]; if (position === 0) { // this node is the first child of its parent, so there is no previous sibling. return null; } return siblings[position - 1]; } /** * @abstract */ }, { key: "textContent", get: function get() { throw new TypeError('`textContent` is abstract and must be implemented in a subclass of `ReadOnlyNode`'); } }, { key: "compareDocumentPosition", value: function compareDocumentPosition(otherNode) { // Quick check to avoid having to call into Fabric if the nodes are the same. if (otherNode === this) { return 0; } var shadowNode = getShadowNode(this); var otherShadowNode = getShadowNode(otherNode); if (shadowNode == null || otherShadowNode == null) { return ReadOnlyNode.DOCUMENT_POSITION_DISCONNECTED; } return (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).compareDocumentPosition(shadowNode, otherShadowNode); } }, { key: "contains", value: function contains(otherNode) { if (otherNode === this) { return true; } var position = this.compareDocumentPosition(otherNode); // eslint-disable-next-line no-bitwise return (position & ReadOnlyNode.DOCUMENT_POSITION_CONTAINED_BY) !== 0; } }, { key: "getRootNode", value: function getRootNode() { // eslint-disable-next-line consistent-this var lastKnownParent = this; var nextPossibleParent = this.parentNode; while (nextPossibleParent != null) { lastKnownParent = nextPossibleParent; nextPossibleParent = nextPossibleParent.parentNode; } return lastKnownParent; } }, { key: "hasChildNodes", value: function hasChildNodes() { return getChildNodes(this).length > 0; } /* * Node types, as returned by the `nodeType` property. */ /** * Type of Element, HTMLElement and ReactNativeElement instances. */ }]); }(); ReadOnlyNode.ELEMENT_NODE = 1; /** * Currently Unused in React Native. */ ReadOnlyNode.ATTRIBUTE_NODE = 2; /** * Text nodes. */ ReadOnlyNode.TEXT_NODE = 3; /** * @deprecated Unused in React Native. */ ReadOnlyNode.CDATA_SECTION_NODE = 4; /** * @deprecated */ ReadOnlyNode.ENTITY_REFERENCE_NODE = 5; /** * @deprecated */ ReadOnlyNode.ENTITY_NODE = 6; /** * @deprecated Unused in React Native. */ ReadOnlyNode.PROCESSING_INSTRUCTION_NODE = 7; /** * @deprecated Unused in React Native. */ ReadOnlyNode.COMMENT_NODE = 8; /** * @deprecated Unused in React Native. */ ReadOnlyNode.DOCUMENT_NODE = 9; /** * @deprecated Unused in React Native. */ ReadOnlyNode.DOCUMENT_TYPE_NODE = 10; /** * @deprecated Unused in React Native. */ ReadOnlyNode.DOCUMENT_FRAGMENT_NODE = 11; /** * @deprecated */ ReadOnlyNode.NOTATION_NODE = 12; /* * Document position flags. Used to check the return value of * `compareDocumentPosition()`. */ /** * Both nodes are in different documents. */ ReadOnlyNode.DOCUMENT_POSITION_DISCONNECTED = 1; /** * `otherNode` precedes the node in either a pre-order depth-first traversal of a tree containing both * (e.g., as an ancestor or previous sibling or a descendant of a previous sibling or previous sibling of an ancestor) * or (if they are disconnected) in an arbitrary but consistent ordering. */ ReadOnlyNode.DOCUMENT_POSITION_PRECEDING = 2; /** * `otherNode` follows the node in either a pre-order depth-first traversal of a tree containing both * (e.g., as a descendant or following sibling or a descendant of a following sibling or following sibling of an ancestor) * or (if they are disconnected) in an arbitrary but consistent ordering. */ ReadOnlyNode.DOCUMENT_POSITION_FOLLOWING = 4; /** * `otherNode` is an ancestor of the node. */ ReadOnlyNode.DOCUMENT_POSITION_CONTAINS = 8; /** * `otherNode` is a descendant of the node. */ ReadOnlyNode.DOCUMENT_POSITION_CONTAINED_BY = 16; /** * @deprecated Unused in React Native. */ ReadOnlyNode.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 32; var INSTANCE_HANDLE_KEY = Symbol('internalInstanceHandle'); function getInstanceHandle(node) { // $FlowExpectedError[prop-missing] return node[INSTANCE_HANDLE_KEY]; } function setInstanceHandle(node, instanceHandle) { // $FlowExpectedError[prop-missing] node[INSTANCE_HANDLE_KEY] = instanceHandle; } function getShadowNode(node) { // Lazy import Fabric here to avoid DOM Node APIs classes from having side-effects. // With a static import we can't use these classes for Paper-only variants. var ReactFabric = _$$_REQUIRE(_dependencyMap[8], "../../../../../Libraries/Renderer/shims/ReactFabric"); return ReactFabric.getNodeFromInternalInstanceHandle(getInstanceHandle(node)); } function getChildNodes(node) { var shadowNode = getShadowNode(node); if (shadowNode == null) { return []; } var childNodeInstanceHandles = (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getChildNodes(shadowNode); return childNodeInstanceHandles.map(function (instanceHandle) { return getPublicInstanceFromInternalInstanceHandle(instanceHandle); }).filter(Boolean); } function getNodeSiblingsAndPosition(node) { var parent = node.parentNode; if (parent == null) { // This node is the root or it's disconnected. return [[node], 0]; } var siblings = getChildNodes(parent); var position = siblings.indexOf(node); if (position === -1) { throw new TypeError("Missing node in parent's child node list"); } return [siblings, position]; } function getPublicInstanceFromInternalInstanceHandle(instanceHandle) { // Lazy import Fabric here to avoid DOM Node APIs classes from having side-effects. // With a static import we can't use these classes for Paper-only variants. var ReactFabric = _$$_REQUIRE(_dependencyMap[8], "../../../../../Libraries/Renderer/shims/ReactFabric"); var mixedPublicInstance = ReactFabric.getPublicInstanceFromInternalInstanceHandle(instanceHandle); // $FlowExpectedError[incompatible-return] React defines public instances as "mixed" because it can't access the definition from React Native. return mixedPublicInstance; } },151,[1,53,14,15,113,152,114,146,37],"node_modules/react-native/src/private/webapis/dom/nodes/ReadOnlyNode.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.createNodeList = createNodeList; 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 _ArrayLikeUtils = _$$_REQUIRE(_dependencyMap[3], "./ArrayLikeUtils"); /** * 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 // IMPORTANT: The Flow type definition for this module is defined in `NodeList.js.flow` // because Flow only supports indexers in classes in declaration files. // $FlowIssue[prop-missing] Flow doesn't understand [Symbol.iterator]() {} and thinks this class doesn't implement the Iterable interface. var NodeList = exports.default = /*#__PURE__*/function () { /** * Use `createNodeList` to create instances of this class. * * @private This is not defined in the declaration file, so users will not see * the signature of the constructor. */ function NodeList(elements) { (0, _classCallCheck2.default)(this, NodeList); for (var i = 0; i < elements.length; i++) { Object.defineProperty(this, i, { value: elements[i], writable: false }); } this._length = elements.length; } return (0, _createClass2.default)(NodeList, [{ key: "length", get: function get() { return this._length; } }, { key: "item", value: function item(index) { if (index < 0 || index >= this._length) { return null; } // assigning to the interface allows us to access the indexer property in a // type-safe way. // eslint-disable-next-line consistent-this var arrayLike = this; return arrayLike[index]; } }, { key: "entries", value: function entries() { return (0, _ArrayLikeUtils.createEntriesIterator)(this); } }, { key: "forEach", value: function forEach(callbackFn, thisArg) { // assigning to the interface allows us to access the indexer property in a // type-safe way. // eslint-disable-next-line consistent-this var arrayLike = this; for (var _index = 0; _index < this._length; _index++) { if (thisArg == null) { callbackFn(arrayLike[_index], _index, this); } else { callbackFn.call(thisArg, arrayLike[_index], _index, this); } } } }, { key: "keys", value: function keys() { return (0, _ArrayLikeUtils.createKeyIterator)(this); } }, { key: "values", value: function values() { return (0, _ArrayLikeUtils.createValueIterator)(this); } // $FlowIssue[unsupported-syntax] Flow does not support computed properties in classes. }, { key: Symbol.iterator, value: function value() { return (0, _ArrayLikeUtils.createValueIterator)(this); } }]); }(); /** * This is an internal method to create instances of `NodeList`, * which avoids leaking its constructor to end users. * We can do that because the external definition of `NodeList` lives in * `NodeList.js.flow`, not here. */ function createNodeList(elements) { return new NodeList(elements); } },152,[1,14,15,150],"node_modules/react-native/src/private/webapis/dom/oldstylecollections/NodeList.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); exports.getElementSibling = getElementSibling; var _ReadOnlyNode = _$$_REQUIRE(_dependencyMap[0], "../ReadOnlyNode"); /** * 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 * */ // We initialize this lazily to avoid a require cycle // (`ReadOnlyElement` also depends on `Traversal`). var ReadOnlyElementClass; function getElementSibling(node, direction) { var _childNodes$position; var parent = node.parentNode; if (parent == null) { // This node is the root or it's disconnected. return null; } var childNodes = (0, _ReadOnlyNode.getChildNodes)(parent); var startPosition = childNodes.indexOf(node); if (startPosition === -1) { return null; } var increment = direction === 'next' ? 1 : -1; var position = startPosition + increment; if (ReadOnlyElementClass == null) { // We initialize this lazily to avoid a require cycle. ReadOnlyElementClass = _$$_REQUIRE(_dependencyMap[1], "../ReadOnlyElement").default; } while (childNodes[position] != null && !(childNodes[position] instanceof ReadOnlyElementClass)) { position = position + increment; } return (_childNodes$position = childNodes[position]) != null ? _childNodes$position : null; } },153,[151,146],"node_modules/react-native/src/private/webapis/dom/nodes/utilities/Traversal.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 _TextInputState = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "../../Components/TextInput/TextInputState")); var _ReactFabric = _$$_REQUIRE(_dependencyMap[4], "../../Renderer/shims/ReactFabric"); var _FabricUIManager = _$$_REQUIRE(_dependencyMap[5], "../FabricUIManager"); var _ReactNativeAttributePayload = _$$_REQUIRE(_dependencyMap[6], "./ReactNativeAttributePayload"); var _warnForStyleProps = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[7], "./warnForStyleProps")); var _nullthrows2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[8], "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 * */ var _nullthrows = (0, _nullthrows2.default)((0, _FabricUIManager.getFabricUIManager)()), fabricMeasure = _nullthrows.measure, fabricMeasureInWindow = _nullthrows.measureInWindow, fabricMeasureLayout = _nullthrows.measureLayout, fabricGetBoundingClientRect = _nullthrows.getBoundingClientRect, _setNativeProps = _nullthrows.setNativeProps; var noop = function noop() {}; /** * This is used for refs on host components. */ var ReactFabricHostComponent = exports.default = /*#__PURE__*/function () { // These need to be accessible from `ReactFabricPublicInstanceUtils`. function ReactFabricHostComponent(tag, viewConfig, internalInstanceHandle) { (0, _classCallCheck2.default)(this, ReactFabricHostComponent); this.__nativeTag = tag; this._viewConfig = viewConfig; this.__internalInstanceHandle = internalInstanceHandle; } return (0, _createClass2.default)(ReactFabricHostComponent, [{ key: "blur", value: function blur() { // $FlowFixMe[incompatible-exact] Migrate all usages of `NativeMethods` to an interface to fix this. _TextInputState.default.blurTextInput(this); } }, { key: "focus", value: function focus() { // $FlowFixMe[incompatible-exact] Migrate all usages of `NativeMethods` to an interface to fix this. _TextInputState.default.focusTextInput(this); } }, { key: "measure", value: function measure(callback) { var node = (0, _ReactFabric.getNodeFromInternalInstanceHandle)(this.__internalInstanceHandle); if (node != null) { fabricMeasure(node, callback); } } }, { key: "measureInWindow", value: function measureInWindow(callback) { var node = (0, _ReactFabric.getNodeFromInternalInstanceHandle)(this.__internalInstanceHandle); if (node != null) { fabricMeasureInWindow(node, callback); } } }, { key: "measureLayout", value: function measureLayout(relativeToNativeNode, onSuccess, onFail) { if (typeof relativeToNativeNode === 'number' || !(relativeToNativeNode instanceof ReactFabricHostComponent)) { if (__DEV__) { console.error('Warning: ref.measureLayout must be called with a ref to a native component.'); } return; } var toStateNode = (0, _ReactFabric.getNodeFromInternalInstanceHandle)(this.__internalInstanceHandle); var fromStateNode = (0, _ReactFabric.getNodeFromInternalInstanceHandle)(relativeToNativeNode.__internalInstanceHandle); if (toStateNode != null && fromStateNode != null) { fabricMeasureLayout(toStateNode, fromStateNode, onFail != null ? onFail : noop, onSuccess != null ? onSuccess : noop); } } }, { key: "unstable_getBoundingClientRect", value: function unstable_getBoundingClientRect() { var node = (0, _ReactFabric.getNodeFromInternalInstanceHandle)(this.__internalInstanceHandle); if (node != null) { var rect = fabricGetBoundingClientRect(node, true); if (rect) { return new DOMRect(rect[0], rect[1], rect[2], rect[3]); } } // Empty rect if any of the above failed return new DOMRect(0, 0, 0, 0); } }, { key: "setNativeProps", value: function setNativeProps(nativeProps) { if (__DEV__) { (0, _warnForStyleProps.default)(nativeProps, this._viewConfig.validAttributes); } var updatePayload = (0, _ReactNativeAttributePayload.create)(nativeProps, this._viewConfig.validAttributes); var node = (0, _ReactFabric.getNodeFromInternalInstanceHandle)(this.__internalInstanceHandle); if (node != null && updatePayload != null) { _setNativeProps(node, updatePayload); } } }]); }(); },154,[1,14,15,84,37,113,139,145,114],"node_modules/react-native/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.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 _ReadOnlyCharacterData = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "./ReadOnlyCharacterData")); var _ReadOnlyNode = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[7], "./ReadOnlyNode")); 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 ReadOnlyText = exports.default = /*#__PURE__*/function (_ReadOnlyCharacterDat) { function ReadOnlyText() { (0, _classCallCheck2.default)(this, ReadOnlyText); return _callSuper(this, ReadOnlyText, arguments); } (0, _inherits2.default)(ReadOnlyText, _ReadOnlyCharacterDat); return (0, _createClass2.default)(ReadOnlyText, [{ key: "nodeName", get: /** * @override */ function get() { return '#text'; } /** * @override */ }, { key: "nodeType", get: function get() { return _ReadOnlyNode.default.TEXT_NODE; } }]); }(_ReadOnlyCharacterData.default); },155,[1,14,15,25,27,30,156,151],"node_modules/react-native/src/private/webapis/dom/nodes/ReadOnlyText.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 _FabricUIManager = _$$_REQUIRE(_dependencyMap[6], "../../../../../Libraries/ReactNative/FabricUIManager"); var _ReadOnlyNode2 = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[7], "./ReadOnlyNode")); var _Traversal = _$$_REQUIRE(_dependencyMap[8], "./utilities/Traversal"); var _nullthrows = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[9], "nullthrows")); 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 * */ // flowlint unsafe-getters-setters:off var ReadOnlyCharacterData = exports.default = /*#__PURE__*/function (_ReadOnlyNode) { function ReadOnlyCharacterData() { (0, _classCallCheck2.default)(this, ReadOnlyCharacterData); return _callSuper(this, ReadOnlyCharacterData, arguments); } (0, _inherits2.default)(ReadOnlyCharacterData, _ReadOnlyNode); return (0, _createClass2.default)(ReadOnlyCharacterData, [{ key: "nextElementSibling", get: function get() { return (0, _Traversal.getElementSibling)(this, 'next'); } }, { key: "previousElementSibling", get: function get() { return (0, _Traversal.getElementSibling)(this, 'previous'); } }, { key: "data", get: function get() { var shadowNode = (0, _ReadOnlyNode2.getShadowNode)(this); if (shadowNode != null) { return (0, _nullthrows.default)((0, _FabricUIManager.getFabricUIManager)()).getTextContent(shadowNode); } return ''; } }, { key: "length", get: function get() { return this.data.length; } /** * @override */ }, { key: "textContent", get: function get() { return this.data; } /** * @override */ }, { key: "nodeValue", get: function get() { return this.data; } }, { key: "substringData", value: function substringData(offset, count) { var data = this.data; if (offset < 0) { throw new TypeError(`Failed to execute 'substringData' on 'CharacterData': The offset ${offset} is negative.`); } if (offset > data.length) { throw new TypeError(`Failed to execute 'substringData' on 'CharacterData': The offset ${offset} is greater than the node's length (${data.length}).`); } var adjustedCount = count < 0 || count > data.length ? data.length : count; return data.slice(offset, offset + adjustedCount); } }]); }(_ReadOnlyNode2.default); },156,[1,14,15,25,27,30,113,151,153,114],"node_modules/react-native/src/private/webapis/dom/nodes/ReadOnlyCharacterData.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. * * * @nolint * @providesModule ReactFabric-dev * @preventMunge * @generated SignedSource<> */ "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()); } 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); } } var fakeNode = null; { if (typeof window !== "undefined" && typeof window.dispatchEvent === "function" && typeof document !== "undefined" && // $FlowFixMe[method-unbinding] typeof document.createEvent === "function") { fakeNode = document.createElement("react"); } } function invokeGuardedCallbackImpl(name, func, context) { { // In DEV mode, we use 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 // event loop context, it does not interrupt the normal program flow. // Effectively, this gives us try-catch behavior without actually using // try-catch. Neat! // fakeNode signifies we are in an environment with a document and window object if (fakeNode) { 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"); var restoreAfterDispatch = 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. // $FlowFixMe[method-unbinding] var _funcArgs = Array.prototype.slice.call(arguments, 3); var callCallback = function callCallback() { didCall = true; restoreAfterDispatch(); // $FlowFixMe[incompatible-call] Flow doesn't understand the arguments splicing. 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; var handleWindowError = 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://reactjs.org/link/crossorigin-error for more information."); } this.onError(error); } // Remove our event listeners window.removeEventListener("error", handleWindowError); if (didCall) { return; } else { // 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(); // we fall through and call the prod version instead } } // We only get here if we are in an environment that either does not support the browser // variant or we had trouble getting the browser to emit the error. // $FlowFixMe[method-unbinding] var funcArgs = Array.prototype.slice.call(arguments, 3); try { // $FlowFixMe[incompatible-call] Flow doesn't understand the arguments splicing. func.apply(context, funcArgs); } catch (error) { this.onError(error); } } } 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.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$1 = null; var getInstanceFromNode$1 = null; var getNodeFromInstance$1 = null; function setComponentTree(getFiberCurrentPropsFromNodeImpl, getInstanceFromNodeImpl, getNodeFromInstanceImpl) { getFiberCurrentPropsFromNode$1 = getFiberCurrentPropsFromNodeImpl; getInstanceFromNode$1 = getInstanceFromNodeImpl; getNodeFromInstance$1 = getNodeFromInstanceImpl; { if (!getNodeFromInstance$1 || !getInstanceFromNode$1) { error("EventPluginUtils.setComponentTree(...): Injected " + "module is missing getNodeFromInstance or getInstanceFromNode."); } } } 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$1(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$1(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://reactjs.org/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)) { /* $FlowFixMe[incompatible-return] if `current` is `T` and `T` an array, * `isArray` might refine to the array element type of `T` */ return current.concat(next); } if (isArray(next)) { /* $FlowFixMe[incompatible-return] unsound if `next` is `T` and `T` an array, * `isArray` might refine to the array element type of `T` */ 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)) { // $FlowFixMe[prop-missing] `isArray` does not ensure array is mutable // $FlowFixMe[method-unbinding] current.push.apply(current, next); return current; } // $FlowFixMe[prop-missing] `isArray` does not ensure array is mutable current.push(next); return current; } if (isArray(next)) { // A bit too dangerous to mutate `next`. /* $FlowFixMe[incompatible-return] unsound if `next` is `T` and `T` an array, * `isArray` might refine to the array element type of `T` */ 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)) { // $FlowFixMe[incompatible-call] if `T` is an array, `cb` cannot be called 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; var HostHoistable = 26; var HostSingleton = 27; /** * 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; 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$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; } /** * 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$1(tempA)) { depthA++; } var depthB = 0; for (var tempB = instB; tempB; tempB = getParent$1(tempB)) { depthB++; } // If A is deeper, crawl up. while (depthA - depthB > 0) { instA = getParent$1(instA); depthA--; } // If B is deeper, crawl up. while (depthB - depthA > 0) { instB = getParent$1(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$1(instA); instB = getParent$1(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$1(instB); } return false; } /** * Simulates the traversal of a two-phase, capture/bubble event dispatch. */ function traverseTwoPhase$1(inst, fn, arg) { var path = []; while (inst) { path.push(inst); inst = getParent$1(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$1(inst, registrationName) { var stateNode = inst.stateNode; if (stateNode === null) { // Work in progress (ex: onload events in incremental mode). return null; } var props = getFiberCurrentPropsFromNode$1(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$1(inst, event, propagationPhase) { var registrationName = event.dispatchConfig.phasedRegistrationNames[propagationPhase]; return getListener$1(inst, registrationName); } function accumulateDirectionalDispatches$1(inst, phase, event) { { if (!inst) { error("Dispatching inst must not be null"); } } var listener = listenerAtPhase$1(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$1(inst, ignoredDirection, event) { if (inst && event && event.dispatchConfig.registrationName) { var registrationName = event.dispatchConfig.registrationName; var listener = getListener$1(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$1(event) { if (event && event.dispatchConfig.registrationName) { accumulateDispatches$1(event._targetInst, null, event); } } function accumulateDirectDispatches$1(events) { forEachAccumulated(events, accumulateDirectDispatchesSingle$1); } function accumulateTwoPhaseDispatchesSingleSkipTarget(event) { if (event && event.dispatchConfig.phasedRegistrationNames) { var targetInst = event._targetInst; var parentInst = targetInst ? getParent$1(targetInst) : null; traverseTwoPhase$1(parentInst, accumulateDirectionalDispatches$1, event); } } function accumulateTwoPhaseDispatchesSkipTarget(events) { forEachAccumulated(events, accumulateTwoPhaseDispatchesSingleSkipTarget); } function accumulateTwoPhaseDispatchesSingle$1(event) { if (event && event.dispatchConfig.phasedRegistrationNames) { traverseTwoPhase$1(event._targetInst, accumulateDirectionalDispatches$1, event); } } function accumulateTwoPhaseDispatches$1(events) { forEachAccumulated(events, accumulateTwoPhaseDispatchesSingle$1); } // 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$1(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$1(grantEvent); var blockHostResponder = executeDirectDispatch(grantEvent) === true; if (responderInst) { var terminationRequestEvent = ResponderSyntheticEvent.getPooled(eventTypes.responderTerminationRequest, responderInst, nativeEvent, nativeEventTarget); terminationRequestEvent.touchHistory = ResponderTouchHistoryStore.touchHistory; accumulateDirectDispatches$1(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$1(terminateEvent); extracted = accumulate(extracted, [grantEvent, terminateEvent]); changeResponder(wantsResponderInst, blockHostResponder); } else { var rejectEvent = ResponderSyntheticEvent.getPooled(eventTypes.responderReject, wantsResponderInst, nativeEvent, nativeEventTarget); rejectEvent.touchHistory = ResponderTouchHistoryStore.touchHistory; accumulateDirectDispatches$1(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$1(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$1(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$1(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]; // $FlowFixMe[incompatible-use] found when upgrading Flow 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); } } return true; } else if (dispatchConfig.registrationName) { publishRegistrationName(dispatchConfig.registrationName, pluginModule); 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; { 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 = {}; /** * 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. // $FlowFixMe[method-unbinding] found when upgrading Flow 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(); } } 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$1(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; } 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. // $FlowFixMe[missing-local-annot] function listenerAtPhase(inst, event, propagationPhase) { var registrationName = event.dispatchConfig.phasedRegistrationNames[propagationPhase]; return getListener(inst, registrationName); } // $FlowFixMe[missing-local-annot] 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); } } // $FlowFixMe[missing-local-annot] 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; } /** * Simulates the traversal of a two-phase, capture/bubble event dispatch. */ function traverseTwoPhase(inst, fn, arg, skipBubbling) { var path = []; while (inst) { path.push(inst); inst = getParent(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); } } } // $FlowFixMe[missing-local-annot] function accumulateTwoPhaseDispatchesSingle(event) { if (event && event.dispatchConfig.phasedRegistrationNames) { traverseTwoPhase(event._targetInst, accumulateDirectionalDispatches, event, false); } } // $FlowFixMe[missing-local-annot] function accumulateTwoPhaseDispatches(events) { forEachAccumulated(events, accumulateTwoPhaseDispatchesSingle); } // $FlowFixMe[missing-local-annot] function accumulateCapturePhaseDispatches(event) { if (event && event.dispatchConfig.phasedRegistrationNames) { traverseTwoPhase(event._targetInst, accumulateDirectionalDispatches, 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(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); } // 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[incompatible-type] - 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(event); } } else if (directDispatchConfig) { accumulateDirectDispatches(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 }); // Modules provided by RN: var emptyObject$1 = {}; /** * 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) { // $FlowFixMe[incompatible-use] found when upgrading Flow 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") { // $FlowFixMe[incompatible-type] found when upgrading Flow nextProp = true; } if (typeof nextProp === "undefined") { // $FlowFixMe[incompatible-type] found when upgrading Flow 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; } // $FlowFixMe[incompatible-use] found when upgrading Flow 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, ReactNativePrivateInterface.flattenStyle(prevProp), nextProp, validAttributes); } return diffProperties(updatePayload, prevProp, 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" // $FlowFixMe[incompatible-use] found when upgrading Flow ? 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$1, 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$1, 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$1(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 */ function executeDispatchesAndRelease(event) { if (event) { executeDispatchesInOrder(event); if (!event.isPersistent()) { event.constructor.release(event); } } } // $FlowFixMe[missing-local-annot] 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) { // $FlowExpectedError[incompatible-cast] public instances in Fabric do not implement `EventTarget` yet. eventTarget = getPublicInstance(stateNode); } } batchedUpdates$1(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 }; // $FlowFixMe[class-object-subtyping] found when upgrading Flow ReactNativePrivateInterface.RawEventEmitter.emit(topLevelType, event); // $FlowFixMe[class-object-subtyping] found when upgrading Flow 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. } var enableSchedulingProfiler = false; var enableProfilerTimer = true; var enableProfilerCommitHooks = true; var enableProfilerNestedUpdatePhase = true; var syncLaneExpirationMs = 250; var transitionLaneExpirationMs = 5000; var enableLazyContextPropagation = false; var enableLegacyHidden = false; var enableAsyncActions = false; var passChildrenWhenCloningPersistedNodes = false; var NoFlags$1 = /* */ 0; var PerformedWork = /* */ 1; var Placement = /* */ 2; var DidCapture = /* */ 128; var Hydrating = /* */ 4096; // You can change the rest (and add more). var Update = /* */ 4; /* Skipped value: 0b0000000000000000000000001000; */ var ChildDeletion = /* */ 16; var ContentReset = /* */ 32; var Callback = /* */ 64; /* Used by DidCapture: 0b0000000000000000000010000000; */ var ForceClientRender = /* */ 256; var Ref = /* */ 512; var Snapshot = /* */ 1024; var Passive$1 = /* */ 2048; /* Used by Hydrating: 0b0000000000000001000000000000; */ var Visibility = /* */ 8192; var StoreConsistency = /* */ 16384; // It's OK to reuse these bits because these flags are mutually exclusive for // different fiber types. We should really be doing this for as many flags as // possible, because we're about to run out of bits. var ScheduleRetry = StoreConsistency; var ShouldSuspendCommit = Visibility; var DidDefer = ContentReset; var LifecycleEffectMask = Passive$1 | 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; var MaySuspendCommit = /* */ 16777216; // Flag used to identify newly inserted fibers. It isn't reset after commit unlike `Placement`. var PlacementDEV = /* */ 33554432; var MountLayoutDev = /* */ 67108864; var MountPassiveDev = /* */ 134217728; // Groups of flags that are used in the commit phase to skip over trees that // 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$1 | Visibility | 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 | MaySuspendCommit; // This module only exists as an ESM wrapper around the external CommonJS var scheduleCallback$2 = Scheduler.unstable_scheduleCallback; var cancelCallback$1 = Scheduler.unstable_cancelCallback; var shouldYield = Scheduler.unstable_shouldYield; var requestPaint = Scheduler.unstable_requestPaint; var now$1 = Scheduler.unstable_now; var ImmediatePriority = Scheduler.unstable_ImmediatePriority; var UserBlockingPriority = Scheduler.unstable_UserBlockingPriority; var NormalPriority = Scheduler.unstable_NormalPriority; var IdlePriority = Scheduler.unstable_IdlePriority; // this doesn't actually exist on the scheduler, but it *does* // 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[cannot-write] 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[cannot-write] 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 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://reactjs.org/link/react-devtools"); } // DevTools exists, even though it doesn't support Fiber. return true; } try { if (enableSchedulingProfiler) ; 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); } } 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 setIsStrictModeForDevtools(newIsStrictMode) { { if (newIsStrictMode) { disableLogs(); } else { reenableLogs(); } } } // Profiler API hooks function injectProfilingHooks(profilingHooks) {} function getLaneLabelMap() { { return null; } } var NoMode = /* */ 0; // TODO: Remove ConcurrentMode by reading from the root tag instead var ConcurrentMode = /* */ 1; var ProfileMode = /* */ 2; var StrictLegacyMode = /* */ 8; var StrictEffectsMode = /* */ 16; var NoStrictPassiveEffectsMode = /* */ 64; // 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 SyncHydrationLane = /* */ 1; var SyncLane = /* */ 2; var SyncLaneIndex = 1; var InputContinuousHydrationLane = /* */ 4; var InputContinuousLane = /* */ 8; var DefaultHydrationLane = /* */ 16; var DefaultLane = /* */ 32; var SyncUpdateLanes = SyncLane | InputContinuousLane | DefaultLane; var TransitionHydrationLane = /* */ 64; var TransitionLanes = /* */ 4194176; var TransitionLane1 = /* */ 128; var TransitionLane2 = /* */ 256; var TransitionLane3 = /* */ 512; var TransitionLane4 = /* */ 1024; var TransitionLane5 = /* */ 2048; var TransitionLane6 = /* */ 4096; var TransitionLane7 = /* */ 8192; var TransitionLane8 = /* */ 16384; var TransitionLane9 = /* */ 32768; var TransitionLane10 = /* */ 65536; var TransitionLane11 = /* */ 131072; var TransitionLane12 = /* */ 262144; var TransitionLane13 = /* */ 524288; var TransitionLane14 = /* */ 1048576; var TransitionLane15 = /* */ 2097152; var RetryLanes = /* */ 62914560; var RetryLane1 = /* */ 4194304; var RetryLane2 = /* */ 8388608; var RetryLane3 = /* */ 16777216; var RetryLane4 = /* */ 33554432; var SomeRetryLane = RetryLane1; var SelectiveHydrationLane = /* */ 67108864; var NonIdleLanes = /* */ 134217727; var IdleHydrationLane = /* */ 134217728; var IdleLane = /* */ 268435456; var OffscreenLane = /* */ 536870912; var DeferredLane = /* */ 1073741824; // Any lane that might schedule an update. This is used to detect infinite // update loops, so it doesn't include hydration lanes or retries. var UpdateLanes = SyncLane | InputContinuousLane | DefaultLane | TransitionLanes; // This function is used for the experimental timeline (react-devtools-timeline) var NoTimestamp = -1; var nextTransitionLane = TransitionLane1; var nextRetryLane = RetryLane1; function getHighestPriorityLanes(lanes) { { var pendingSyncLanes = lanes & SyncUpdateLanes; if (pendingSyncLanes !== 0) { return pendingSyncLanes; } } switch (getHighestPriorityLane(lanes)) { case SyncHydrationLane: return SyncHydrationLane; 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: return lanes & TransitionLanes; case RetryLane1: case RetryLane2: case RetryLane3: case RetryLane4: return lanes & RetryLanes; case SelectiveHydrationLane: return SelectiveHydrationLane; case IdleHydrationLane: return IdleHydrationLane; case IdleLane: return IdleLane; case OffscreenLane: return OffscreenLane; case DeferredLane: // This shouldn't be reachable because deferred work is always entangled // with something else. return NoLanes; 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; } } return nextLanes; } function getEntangledLanes(root, renderLanes) { var entangledLanes = renderLanes; if ((entangledLanes & 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. entangledLanes |= entangledLanes & 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, // we should ensure that there is no partial work at the // time we apply the entanglement. var allEntangledLanes = root.entangledLanes; if (allEntangledLanes !== NoLanes) { var entanglements = root.entanglements; var lanes = entangledLanes & allEntangledLanes; while (lanes > 0) { var index = pickArbitraryLaneIndex(lanes); var lane = 1 << index; entangledLanes |= entanglements[index]; lanes &= ~lane; } } return entangledLanes; } function computeExpirationTime(lane, currentTime) { switch (lane) { case SyncHydrationLane: 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 + syncLaneExpirationMs; 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: return currentTime + transitionLaneExpirationMs; case RetryLane1: case RetryLane2: case RetryLane3: case RetryLane4: // 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: case DeferredLane: // 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. // TODO: We should be able to replace this with upgradePendingLanesToSync // // We exclude retry lanes because those must always be time sliced, in order // to unwrap uncached promises. // TODO: Write a test for this var lanes = pendingLanes & ~RetryLanes; 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, originallyAttemptedLanes) { if (root.errorRecoveryDisabledLanes & originallyAttemptedLanes) { // The error recovery mechanism is disabled until these lanes are cleared. return NoLanes; } var everythingButOffscreen = root.pendingLanes & ~OffscreenLane; if (everythingButOffscreen !== NoLanes) { return everythingButOffscreen; } if (everythingButOffscreen & OffscreenLane) { return OffscreenLane; } return NoLanes; } function includesSyncLane(lanes) { return (lanes & (SyncLane | SyncHydrationLane)) !== NoLanes; } function includesNonIdleWork(lanes) { return (lanes & NonIdleLanes) !== NoLanes; } function includesOnlyRetries(lanes) { return (lanes & RetryLanes) === lanes; } function includesOnlyNonUrgentLanes(lanes) { // TODO: Should hydration lanes be included here? This function is only // used in `updateDeferredValueImpl`. 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) { 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; } } function markRootSuspended$1(root, suspendedLanes, spawnedLane) { 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; } if (spawnedLane !== NoLane) { markSpawnedDeferredLane(root, spawnedLane, suspendedLanes); } } function markRootPinged(root, pingedLanes) { root.pingedLanes |= root.suspendedLanes & pingedLanes; } function markRootFinished(root, remainingLanes, spawnedLane) { var noLongerPendingLanes = root.pendingLanes & ~remainingLanes; root.pendingLanes = remainingLanes; // Let's try everything again root.suspendedLanes = NoLanes; root.pingedLanes = NoLanes; root.expiredLanes &= remainingLanes; root.entangledLanes &= remainingLanes; root.errorRecoveryDisabledLanes &= remainingLanes; root.shellSuspendCounter = 0; var entanglements = root.entanglements; var expirationTimes = root.expirationTimes; var hiddenUpdates = root.hiddenUpdates; // 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; expirationTimes[index] = NoTimestamp; var hiddenUpdatesForLane = hiddenUpdates[index]; if (hiddenUpdatesForLane !== null) { hiddenUpdates[index] = null; // "Hidden" updates are updates that were made to a hidden component. They // have special logic associated with them because they may be entangled // with updates that occur outside that tree. But once the outer tree // commits, they behave like regular updates. for (var i = 0; i < hiddenUpdatesForLane.length; i++) { var update = hiddenUpdatesForLane[i]; if (update !== null) { update.lane &= ~OffscreenLane; } } } lanes &= ~lane; } if (spawnedLane !== NoLane) { markSpawnedDeferredLane(root, spawnedLane, // This render finished successfully without suspending, so we don't need // to entangle the spawned task with the parent task. NoLanes); } } function markSpawnedDeferredLane(root, spawnedLane, entangledLanes) { // This render spawned a deferred task. Mark it as pending. root.pendingLanes |= spawnedLane; root.suspendedLanes &= ~spawnedLane; // Entangle the spawned lane with the DeferredLane bit so that we know it // was the result of another render. This lets us avoid a useDeferredValue // waterfall — only the first level will defer. var spawnedLaneIndex = laneToIndex(spawnedLane); root.entangledLanes |= spawnedLane; root.entanglements[spawnedLaneIndex] |= DeferredLane | // If the parent render task suspended, we must also entangle those lanes // with the spawned task, so that the deferred task includes all the same // updates that the parent task did. We can exclude any lane that is not // used for updates (e.g. Offscreen). entangledLanes & UpdateLanes; } 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 upgradePendingLaneToSync(root, lane) { // Since we're upgrading the priority of the given lane, there is now pending // sync work. root.pendingLanes |= SyncLane; // Entangle the sync lane with the lane we're upgrading. This means SyncLane // will not be allowed to finish without also finishing the given lane. root.entangledLanes |= SyncLane; root.entanglements[SyncLaneIndex] |= lane; } function markHiddenUpdate(root, update, lane) { var index = laneToIndex(lane); var hiddenUpdates = root.hiddenUpdates; var hiddenUpdatesForLane = hiddenUpdates[index]; if (hiddenUpdatesForLane === null) { hiddenUpdates[index] = [update]; } else { hiddenUpdatesForLane.push(update); } update.lane = lane | OffscreenLane; } function getBumpedLaneForHydration(root, renderLanes) { var renderLane = getHighestPriorityLane(renderLanes); var lane; if ((renderLane & SyncUpdateLanes) !== NoLane) { lane = SyncHydrationLane; } else { switch (renderLane) { case SyncLane: lane = SyncHydrationLane; break; 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 RetryLane1: case RetryLane2: case RetryLane3: case RetryLane4: 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$2() { 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$2; // 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 errorHydratingContainer = shim$1; // Renderers that don't support hydration // can re-export everything from this module. function shim() { throw new Error("The current renderer does not support Resources. " + "This error is likely caused by a bug in React. " + "Please file an issue."); } // Resources (when unsupported) var suspendResource = shim; var _nativeFabricUIManage = nativeFabricUIManager, createNode = _nativeFabricUIManage.createNode, cloneNodeWithNewChildren = _nativeFabricUIManage.cloneNodeWithNewChildren, cloneNodeWithNewChildrenAndProps = _nativeFabricUIManage.cloneNodeWithNewChildrenAndProps, cloneNodeWithNewProps = _nativeFabricUIManage.cloneNodeWithNewProps, createChildNodeSet = _nativeFabricUIManage.createChildSet, appendChildNode = _nativeFabricUIManage.appendChild, appendChildNodeToSet = _nativeFabricUIManage.appendChildToSet, completeRoot = _nativeFabricUIManage.completeRoot, registerEventHandler = _nativeFabricUIManage.registerEventHandler, FabricDefaultPriority = _nativeFabricUIManage.unstable_DefaultEventPriority, FabricDiscretePriority = _nativeFabricUIManage.unstable_DiscreteEventPriority, fabricGetCurrentEventPriority = _nativeFabricUIManage.unstable_getCurrentEventPriority; 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); } 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 = ReactNativePrivateInterface.createPublicInstance(tag, viewConfig, internalInstanceHandle); return { node: node, canonical: { nativeTag: tag, viewConfig: viewConfig, currentProps: props, internalInstanceHandle: internalInstanceHandle, publicInstance: 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) { 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) { if (instance.canonical != null && instance.canonical.publicInstance != null) { return instance.canonical.publicInstance; } // For compatibility with the legacy renderer, in case it's used with Fabric // in the same app. // $FlowExpectedError[prop-missing] if (instance._nativeTag != null) { // $FlowExpectedError[incompatible-return] return instance; } return null; } function getPublicTextInstance(textInstance, internalInstanceHandle) { if (textInstance.publicInstance == null) { textInstance.publicInstance = ReactNativePrivateInterface.createPublicTextInstance(internalInstanceHandle); } return textInstance.publicInstance; } function getPublicInstanceFromInternalInstanceHandle(internalInstanceHandle) { var instance = internalInstanceHandle.stateNode; // React resets all the fields in the fiber when the component is unmounted // to prevent memory leaks. if (instance == null) { return null; } if (internalInstanceHandle.tag === HostText) { var textInstance = instance; return getPublicTextInstance(textInstance, internalInstanceHandle); } var elementInstance = internalInstanceHandle.stateNode; return getPublicInstance(elementInstance); } 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; } function shouldAttemptEagerTransition() { return false; } // 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, type, oldProps, newProps, keepChildren, newChildSet) { 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; var node = instance.node; var clone; if (keepChildren) { if (updatePayload !== null) { clone = cloneNodeWithNewProps(node, updatePayload); } else { // No changes return instance; } } else { // If passChildrenWhenCloningPersistedNodes is enabled, children will be non-null if (newChildSet != null) { if (updatePayload !== null) { clone = cloneNodeWithNewChildrenAndProps(node, newChildSet, updatePayload); } else { clone = cloneNodeWithNewChildren(node, newChildSet); } } else { if (updatePayload !== null) { clone = cloneNodeWithNewChildrenAndProps(node, updatePayload); } else { clone = cloneNodeWithNewChildren(node); } } } return { node: clone, canonical: instance.canonical }; } function cloneHiddenInstance(instance, type, props) { 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) { throw new Error("Not yet implemented."); } function createContainerChildSet() { { return createChildNodeSet(); } } function appendChildToContainerChildSet(childSet, child) { { appendChildNodeToSet(childSet, child.node); } } function finalizeContainerChildren(container, newChildren) { completeRoot(container, newChildren); } function replaceContainerChildren(container, newChildren) { // Noop - children will be replaced in finalizeContainerChildren } function preloadInstance(type, props) { return true; } function waitForCommitToBeReady() { return null; } // This is ok in DOM because they types are interchangeable, but in React Native // they aren't. function getInstanceFromNode(node) { var instance = node; // In React Native, node is never a text instance if (instance.canonical != null && instance.canonical.internalInstanceHandle != null) { return instance.canonical.internalInstanceHandle; } // $FlowFixMe[incompatible-return] DevTools incorrectly passes a fiber in React Native. return node; } function getNodeFromInstance(fiber) { var publicInstance = getPublicInstance(fiber.stateNode); if (publicInstance == null) { throw new Error("Could not find host instance from fiber"); } return publicInstance; } function getFiberCurrentPropsFromNode(instance) { return instance.canonical.currentProps; } var ReactFabricGlobalResponderHandler = { onChange: function onChange(from, to, blockNativeResponder) { if (from && from.stateNode) { // equivalent to clearJSResponder nativeFabricUIManager.setIsJSResponder(from.stateNode.node, false, blockNativeResponder || false); } if (to && to.stateNode) { // equivalent to setJSResponder nativeFabricUIManager.setIsJSResponder(to.stateNode.node, true, blockNativeResponder || false); } } }; setComponentTree(getFiberCurrentPropsFromNode, getInstanceFromNode, getNodeFromInstance); 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; } // 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$1(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$1(type) { return type.displayName || "Context"; } var REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"); // 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 === "function") { if (type.$$typeof === REACT_CLIENT_REFERENCE) { // TODO: Create a convention for naming client references with debug info. return null; } 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") { { if (typeof type.tag === "number") { error("Received an unexpected object in getComponentNameFromType(). " + "This is likely a bug in React. Please file an issue."); } } switch (type.$$typeof) { case REACT_CONTEXT_TYPE: var context = type; return getContextName$1(context) + ".Consumer"; case REACT_PROVIDER_TYPE: var provider = type; return getContextName$1(provider._context) + ".Provider"; case REACT_FORWARD_REF_TYPE: return getWrappedName$1(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; } } } } return null; } function getWrappedName(outerType, innerType, wrapperName) { var functionName = innerType.displayName || innerType.name || ""; return outerType.displayName || (functionName !== "" ? wrapperName + "(" + functionName + ")" : wrapperName); } // Keep in sync with shared/getComponentNameFromType function getContextName(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(context) + ".Consumer"; case ContextProvider: var provider = type; return getContextName(provider._context) + ".Provider"; case DehydratedFragment: return "DehydratedFragment"; case ForwardRef: return getWrappedName(type, type.render, "ForwardRef"); case Fragment: return "Fragment"; case HostHoistable: case HostSingleton: 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; } var ReactCurrentOwner$3 = 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$1) { // 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; } // $FlowFixMe[incompatible-type] we bail out when we get a null 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$3.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. var tag = node.tag; if (tag === HostComponent || tag === HostHoistable || tag === HostSingleton || 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; } function doesFiberContain(parentFiber, childFiber) { var node = childFiber; var parentFiberAlternate = parentFiber.alternate; while (node !== null) { if (node === parentFiber || node === parentFiberAlternate) { return true; } node = node.return; } return false; } function describeBuiltInComponentFrame(name, ownerFn) { { var ownerName = null; if (ownerFn) { ownerName = ownerFn.displayName || ownerFn.name || null; } return describeComponentFrame(name, ownerName); } } { var PossiblyWeakMap$1 = typeof WeakMap === "function" ? WeakMap : Map; new PossiblyWeakMap$1(); } function describeComponentFrame(name, ownerName) { var sourceInfo = ""; if (ownerName) { sourceInfo = " (created by " + ownerName + ")"; } return "\n in " + (name || "Unknown") + sourceInfo; } function describeClassComponentFrame(ctor, ownerFn) { { return describeFunctionComponentFrame(ctor, ownerFn); } } function describeFunctionComponentFrame(fn, 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, ownerName); } } function describeUnknownElementTypeFrameInDEV(type, ownerFn) { if (type == null) { return ""; } if (typeof type === "function") { { return describeFunctionComponentFrame(type, ownerFn); } } if (typeof type === "string") { return describeBuiltInComponentFrame(type, ownerFn); } switch (type) { case REACT_SUSPENSE_TYPE: return describeBuiltInComponentFrame("Suspense", ownerFn); case REACT_SUSPENSE_LIST_TYPE: return describeBuiltInComponentFrame("SuspenseList", ownerFn); } if (typeof type === "object") { switch (type.$$typeof) { case REACT_FORWARD_REF_TYPE: return describeFunctionComponentFrame(type.render, ownerFn); case REACT_MEMO_TYPE: // Memo may contain any component type so we recursively resolve it. return describeUnknownElementTypeFrameInDEV(type.type, 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), ownerFn); } catch (x) {} } } } return ""; } // $FlowFixMe[method-unbinding] var hasOwnProperty = Object.prototype.hasOwnProperty; var loggedTypeFailures = {}; var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame; function setCurrentlyValidatingElement(element) { { if (element) { var owner = element._owner; var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null); ReactDebugCurrentFrame$1.setExtraStackFrame(stack); } else { ReactDebugCurrentFrame$1.setExtraStackFrame(null); } } } function checkPropTypes(typeSpecs, values, location, componentName, element) { { // $FlowFixMe[incompatible-use] 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$1 = 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$1.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$1, fiber); } } function popTopLevelContextObject(fiber) { { pop(didPerformWorkStackCursor, fiber); pop(contextStackCursor$1, fiber); } } function pushTopLevelContextObject(fiber, context, didChange) { { if (contextStackCursor$1.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$1, 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$1.current; push(contextStackCursor$1, 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$1, workInProgress); // Now push the new context and mark that it has changed. push(contextStackCursor$1, 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; } } // $FlowFixMe[incompatible-type] we bail out when we get a null 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; // We use the existence of the state object as an indicator that the component // is hidden. var OffscreenVisible = /* */ 1; var OffscreenDetached = /* */ 2; var OffscreenPassiveEffectsConnected = /* */ 4; function isOffscreenManual(offscreenFiber) { return offscreenFiber.memoizedProps !== null && offscreenFiber.memoizedProps.mode === "manual"; } /** * 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; // $FlowFixMe[method-unbinding] // 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; } var contextStackCursor = createCursor(null); var contextFiberStackCursor = createCursor(null); var rootInstanceStackCursor = createCursor(null); // Represents the nearest host transition provider (in React DOM, a
) function requiredContext(c) { { if (c === null) { 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, null, fiber); var nextRootContext = getRootHostContext(); // Now that we know this function doesn't throw, replace it. pop(contextStackCursor, fiber); push(contextStackCursor, nextRootContext, fiber); } function popHostContainer(fiber) { pop(contextStackCursor, fiber); pop(contextFiberStackCursor, fiber); pop(rootInstanceStackCursor, fiber); } function getHostContext() { var context = requiredContext(contextStackCursor.current); return context; } function pushHostContext(fiber) { var context = requiredContext(contextStackCursor.current); var nextContext = getChildHostContext(context, fiber.type); // Don't push this Fiber's context unless it's unique. if (context !== nextContext) { // 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, nextContext, fiber); } } function popHostContext(fiber) { if (contextFiberStackCursor.current === fiber) { // Do not pop unless this Fiber provided the current context. // pushHostContext() only pushes Fibers that provide unique contexts. pop(contextStackCursor, fiber); pop(contextFiberStackCursor, fiber); } } 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 prepareToHydrateHostInstance(fiber, 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."); } } 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); } } // we wait until the current render is over (either finished or interrupted) // before adding it to the fiber/hook queue. Push to this array so we can // access the queue, fiber, update, et al later. var concurrentQueues = []; var concurrentQueuesIndex = 0; var concurrentlyUpdatedLanes = NoLanes; function finishQueueingConcurrentUpdates() { var endIndex = concurrentQueuesIndex; concurrentQueuesIndex = 0; concurrentlyUpdatedLanes = NoLanes; var i = 0; while (i < endIndex) { var fiber = concurrentQueues[i]; concurrentQueues[i++] = null; var queue = concurrentQueues[i]; concurrentQueues[i++] = null; var update = concurrentQueues[i]; concurrentQueues[i++] = null; var lane = concurrentQueues[i]; concurrentQueues[i++] = null; if (queue !== null && update !== null) { 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; } if (lane !== NoLane) { markUpdateLaneFromFiberToRoot(fiber, update, lane); } } } function getConcurrentlyUpdatedLanes() { return concurrentlyUpdatedLanes; } function enqueueUpdate$1(fiber, queue, update, lane) { // Don't update the `childLanes` on the return path yet. If we already in // the middle of rendering, wait until after it has completed. concurrentQueues[concurrentQueuesIndex++] = fiber; concurrentQueues[concurrentQueuesIndex++] = queue; concurrentQueues[concurrentQueuesIndex++] = update; concurrentQueues[concurrentQueuesIndex++] = lane; concurrentlyUpdatedLanes = mergeLanes(concurrentlyUpdatedLanes, lane); // The fiber's `lane` field is used in some places to check if any work is // scheduled, to perform an eager bailout, so we need to update it immediately. // TODO: We should probably move this to the "shared" queue instead. fiber.lanes = mergeLanes(fiber.lanes, lane); var alternate = fiber.alternate; if (alternate !== null) { alternate.lanes = mergeLanes(alternate.lanes, lane); } } function enqueueConcurrentHookUpdate(fiber, queue, update, lane) { var concurrentQueue = queue; var concurrentUpdate = update; enqueueUpdate$1(fiber, concurrentQueue, concurrentUpdate, lane); return getRootForUpdatedFiber(fiber); } function enqueueConcurrentHookUpdateAndEagerlyBailout(fiber, queue, update) { // This function is used to queue an update that doesn't need a rerender. The // only reason we queue it is in case there's a subsequent higher priority // update that causes it to be rebased. var lane = NoLane; var concurrentQueue = queue; var concurrentUpdate = update; enqueueUpdate$1(fiber, concurrentQueue, concurrentUpdate, lane); // Usually we can rely on the upcoming render phase to process the concurrent // queue. However, since this is a bail out, we're not scheduling any work // here. So the update we just queued will leak until something else happens // to schedule work (if ever). // // Check if we're currently in the middle of rendering a tree, and if not, // process the queue immediately to prevent a leak. var isConcurrentlyRendering = getWorkInProgressRoot() !== null; if (!isConcurrentlyRendering) { finishQueueingConcurrentUpdates(); } } function enqueueConcurrentClassUpdate(fiber, queue, update, lane) { var concurrentQueue = queue; var concurrentUpdate = update; enqueueUpdate$1(fiber, concurrentQueue, concurrentUpdate, lane); return getRootForUpdatedFiber(fiber); } function enqueueConcurrentRenderForLane(fiber, lane) { enqueueUpdate$1(fiber, null, null, lane); return getRootForUpdatedFiber(fiber); } // Calling this function outside this module should only be done for backwards // compatibility and should always be accompanied by a warning. function unsafe_markUpdateLaneFromFiberToRoot(sourceFiber, lane) { // NOTE: For Hyrum's Law reasons, if an infinite update loop is detected, it // should throw before `markUpdateLaneFromFiberToRoot` is called. But this is // undefined behavior and we can change it if we need to; it just so happens // that, at the time of this writing, there's an internal product test that // happens to rely on this. var root = getRootForUpdatedFiber(sourceFiber); markUpdateLaneFromFiberToRoot(sourceFiber, null, lane); return root; } function markUpdateLaneFromFiberToRoot(sourceFiber, update, 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); } // Walk the parent path to the root and update the child lanes. var isHidden = false; var parent = sourceFiber.return; var node = sourceFiber; while (parent !== null) { parent.childLanes = mergeLanes(parent.childLanes, lane); alternate = parent.alternate; if (alternate !== null) { alternate.childLanes = mergeLanes(alternate.childLanes, lane); } if (parent.tag === OffscreenComponent) { // Check if this offscreen boundary is currently hidden. // // The instance may be null if the Offscreen parent was unmounted. Usually // the parent wouldn't be reachable in that case because we disconnect // fibers from the tree when they are deleted. However, there's a weird // edge case where setState is called on a fiber that was interrupted // before it ever mounted. Because it never mounts, it also never gets // deleted. Because it never gets deleted, its return pointer never gets // disconnected. Which means it may be attached to a deleted Offscreen // parent node. (This discovery suggests it may be better for memory usage // if we don't attach the `return` pointer until the commit phase, though // in order to do that we'd need some other way to track the return // pointer during the initial render, like on the stack.) // // This case is always accompanied by a warning, but we still need to // account for it. (There may be other cases that we haven't discovered, // too.) var offscreenInstance = parent.stateNode; if (offscreenInstance !== null && !(offscreenInstance._visibility & OffscreenVisible)) { isHidden = true; } } node = parent; parent = parent.return; } if (isHidden && update !== null && node.tag === HostRoot) { var root = node.stateNode; markHiddenUpdate(root, update, lane); } } function getRootForUpdatedFiber(sourceFiber) { // TODO: We will detect and infinite update loop and throw even if this fiber // has already unmounted. This isn't really necessary but it happens to be the // current behavior we've used for several release cycles. Consider not // performing this check if the updated fiber already unmounted, since it's // not possible for that to cause an infinite update loop. throwIfInfiniteUpdateLoopDetected(); // When a setState happens, we must ensure the root is scheduled. Because // update queues do not have a backpointer to the root, the only way to do // this currently is to walk up the return path. This used to not be a big // deal because we would have to walk up the return path to set // the `childLanes`, anyway, but now those two traversals happen at // different times. // TODO: Consider adding a `root` backpointer on the update queue. detectUpdateOnUnmountedFiber(sourceFiber, sourceFiber); var node = sourceFiber; var parent = node.return; while (parent !== null) { detectUpdateOnUnmountedFiber(sourceFiber, node); node = parent; parent = node.return; } return node.tag === HostRoot ? node.stateNode : null; } function detectUpdateOnUnmountedFiber(sourceFiber, parent) { { var alternate = parent.alternate; if (alternate === null && (parent.flags & (Placement | Hydrating)) !== NoFlags$1) { warnAboutUpdateOnNotYetMountedFiberInDEV(sourceFiber); } } } var ReactCurrentActQueue$3 = ReactSharedInternals.ReactCurrentActQueue; // A linked list of all the roots with pending work. In an idiomatic app, // there's only a single root, but we do support multi root apps, hence this // extra complexity. But this module is optimized for the single root case. var firstScheduledRoot = null; var lastScheduledRoot = null; // Used to prevent redundant mircotasks from being scheduled. var didScheduleMicrotask = false; // `act` "microtasks" are scheduled on the `act` queue instead of an actual // microtask, so we have to dedupe those separately. This wouldn't be an issue // if we required all `act` calls to be awaited, which we might in the future. var didScheduleMicrotask_act = false; // Used to quickly bail out of flushSync if there's no sync work to do. var mightHavePendingSyncWork = false; var isFlushingWork = false; var currentEventTransitionLane = NoLane; function ensureRootIsScheduled(root) { // This function is called whenever a root receives an update. It does two // things 1) it ensures the root is in the root schedule, and 2) it ensures // there's a pending microtask to process the root schedule. // // Most of the actual scheduling logic does not happen until // `scheduleTaskForRootDuringMicrotask` runs. // Add the root to the schedule if (root === lastScheduledRoot || root.next !== null) ;else { if (lastScheduledRoot === null) { firstScheduledRoot = lastScheduledRoot = root; } else { lastScheduledRoot.next = root; lastScheduledRoot = root; } } // Any time a root received an update, we set this to true until the next time // we process the schedule. If it's false, then we can quickly exit flushSync // without consulting the schedule. mightHavePendingSyncWork = true; // At the end of the current event, go through each of the roots and ensure // there's a task scheduled for each one at the correct priority. if (ReactCurrentActQueue$3.current !== null) { // We're inside an `act` scope. if (!didScheduleMicrotask_act) { didScheduleMicrotask_act = true; scheduleImmediateTask(processRootScheduleInMicrotask); } } else { if (!didScheduleMicrotask) { didScheduleMicrotask = true; scheduleImmediateTask(processRootScheduleInMicrotask); } } { // While this flag is disabled, we schedule the render task immediately // instead of waiting a microtask. // TODO: We need to land enableDeferRootSchedulingToMicrotask ASAP to // unblock additional features we have planned. scheduleTaskForRootDuringMicrotask(root, now$1()); } if (ReactCurrentActQueue$3.isBatchingLegacy && root.tag === LegacyRoot) { // Special `act` case: Record whenever a legacy update is scheduled. ReactCurrentActQueue$3.didScheduleLegacyUpdate = true; } } function flushSyncWorkOnAllRoots() { // This is allowed to be called synchronously, but the caller should check // the execution context first. flushSyncWorkAcrossRoots_impl(false); } function flushSyncWorkOnLegacyRootsOnly() { // This is allowed to be called synchronously, but the caller should check // the execution context first. flushSyncWorkAcrossRoots_impl(true); } function flushSyncWorkAcrossRoots_impl(onlyLegacy) { if (isFlushingWork) { // Prevent reentrancy. // TODO: Is this overly defensive? The callers must check the execution // context first regardless. return; } if (!mightHavePendingSyncWork) { // Fast path. There's no sync work to do. return; } // There may or may not be synchronous work scheduled. Let's check. var didPerformSomeWork; var errors = null; isFlushingWork = true; do { didPerformSomeWork = false; var root = firstScheduledRoot; while (root !== null) { if (onlyLegacy && root.tag !== LegacyRoot) ;else { var workInProgressRoot = getWorkInProgressRoot(); var workInProgressRootRenderLanes = getWorkInProgressRootRenderLanes(); var nextLanes = getNextLanes(root, root === workInProgressRoot ? workInProgressRootRenderLanes : NoLanes); if (includesSyncLane(nextLanes)) { // This root has pending sync work. Flush it now. try { didPerformSomeWork = true; performSyncWorkOnRoot(root, nextLanes); } catch (error) { // Collect errors so we can rethrow them at the end if (errors === null) { errors = [error]; } else { errors.push(error); } } } } root = root.next; } } while (didPerformSomeWork); isFlushingWork = false; // If any errors were thrown, rethrow them right before exiting. // TODO: Consider returning these to the caller, to allow them to decide // how/when to rethrow. if (errors !== null) { if (errors.length > 1) { if (typeof AggregateError === "function") { // eslint-disable-next-line no-undef throw new AggregateError(errors); } else { for (var i = 1; i < errors.length; i++) { scheduleImmediateTask(throwError.bind(null, errors[i])); } var firstError = errors[0]; throw firstError; } } else { var error = errors[0]; throw error; } } } function throwError(error) { throw error; } function processRootScheduleInMicrotask() { // This function is always called inside a microtask. It should never be // called synchronously. didScheduleMicrotask = false; { didScheduleMicrotask_act = false; } // We'll recompute this as we iterate through all the roots and schedule them. mightHavePendingSyncWork = false; var currentTime = now$1(); var prev = null; var root = firstScheduledRoot; while (root !== null) { var next = root.next; if (currentEventTransitionLane !== NoLane && shouldAttemptEagerTransition()) { // A transition was scheduled during an event, but we're going to try to // render it synchronously anyway. We do this during a popstate event to // preserve the scroll position of the previous page. upgradePendingLaneToSync(root, currentEventTransitionLane); } var nextLanes = scheduleTaskForRootDuringMicrotask(root, currentTime); if (nextLanes === NoLane) { // This root has no more pending work. Remove it from the schedule. To // guard against subtle reentrancy bugs, this microtask is the only place // we do this — you can add roots to the schedule whenever, but you can // only remove them here. // Null this out so we know it's been removed from the schedule. root.next = null; if (prev === null) { // This is the new head of the list firstScheduledRoot = next; } else { prev.next = next; } if (next === null) { // This is the new tail of the list lastScheduledRoot = prev; } } else { // This root still has work. Keep it in the list. prev = root; if (includesSyncLane(nextLanes)) { mightHavePendingSyncWork = true; } } root = next; } currentEventTransitionLane = NoLane; // At the end of the microtask, flush any pending synchronous work. This has // to come at the end, because it does actual rendering work that might throw. flushSyncWorkOnAllRoots(); } function scheduleTaskForRootDuringMicrotask(root, currentTime) { // This function is always called inside a microtask, or at the very end of a // rendering task right before we yield to the main thread. It should never be // called synchronously. // // TODO: Unless enableDeferRootSchedulingToMicrotask is off. We need to land // that ASAP to unblock additional features we have planned. // // This function also never performs React work synchronously; it should // only schedule work to be performed later, in a separate task or microtask. // 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 workInProgressRoot = getWorkInProgressRoot(); var workInProgressRootRenderLanes = getWorkInProgressRootRenderLanes(); var nextLanes = getNextLanes(root, root === workInProgressRoot ? workInProgressRootRenderLanes : NoLanes); var existingCallbackNode = root.callbackNode; if ( // Check if there's nothing to work on nextLanes === NoLanes || // If this root is currently suspended and waiting for data to resolve, don't // schedule a task to render it. We'll either wait for a ping, or wait to // receive an update. // // Suspended render phase root === workInProgressRoot && isWorkLoopSuspendedOnData() || // Suspended commit phase root.cancelPendingCommit !== null) { // Fast path: There's nothing to work on. if (existingCallbackNode !== null) { cancelCallback(existingCallbackNode); } root.callbackNode = null; root.callbackPriority = NoLane; return NoLane; } // Schedule a new callback in the host environment. if (includesSyncLane(nextLanes)) { // Synchronous work is always flushed at the end of the microtask, so we // don't need to schedule an additional task. if (existingCallbackNode !== null) { cancelCallback(existingCallbackNode); } root.callbackPriority = SyncLane; root.callbackNode = null; return SyncLane; } else { // We use the highest priority lane to represent the priority of the callback. var existingCallbackPriority = root.callbackPriority; var newCallbackPriority = getHighestPriorityLane(nextLanes); if (newCallbackPriority === existingCallbackPriority && // Special case related to `act`. If the currently scheduled task is a // Scheduler task, rather than an `act` task, cancel it and re-schedule // on the `act` queue. !(ReactCurrentActQueue$3.current !== null && existingCallbackNode !== fakeActCallbackNode$1)) { // The priority hasn't changed. We can reuse the existing task. return newCallbackPriority; } else { // Cancel the existing callback. We'll schedule a new one below. cancelCallback(existingCallbackNode); } 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; } var newCallbackNode = scheduleCallback$1(schedulerPriorityLevel, performConcurrentWorkOnRoot.bind(null, root)); root.callbackPriority = newCallbackPriority; root.callbackNode = newCallbackNode; return newCallbackPriority; } } function getContinuationForRoot(root, originalCallbackNode) { // This is called at the end of `performConcurrentWorkOnRoot` to determine // if we need to schedule a continuation task. // // Usually `scheduleTaskForRootDuringMicrotask` only runs inside a microtask; // however, since most of the logic for determining if we need a continuation // versus a new task is the same, we cheat a bit and call it here. This is // only safe to do because we know we're at the end of the browser task. // So although it's not an actual microtask, it might as well be. scheduleTaskForRootDuringMicrotask(root, now$1()); 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; } var fakeActCallbackNode$1 = {}; function scheduleCallback$1(priorityLevel, callback) { if (ReactCurrentActQueue$3.current !== null) { // Special case: We're inside an `act` scope (a testing utility). // Instead of scheduling work in the host environment, add it to a // fake internal queue that's managed by the `act` implementation. ReactCurrentActQueue$3.current.push(callback); return fakeActCallbackNode$1; } else { return scheduleCallback$2(priorityLevel, callback); } } function cancelCallback(callbackNode) { if (callbackNode === fakeActCallbackNode$1) ;else if (callbackNode !== null) { cancelCallback$1(callbackNode); } } function scheduleImmediateTask(cb) { if (ReactCurrentActQueue$3.current !== null) { // Special case: Inside an `act` scope, we push microtasks to the fake `act` // callback queue. This is because we currently support calling `act` // without awaiting the result. The plan is to deprecate that, and require // that you always await the result so that the microtasks have a chance to // run. But it hasn't happened yet. ReactCurrentActQueue$3.current.push(function () { cb(); return null; }); } // TODO: Can we land supportsMicrotasks? Which environments don't support it? // Alternatively, can we move this check to the host config? { // If microtasks are not supported, use Scheduler. scheduleCallback$2(ImmediatePriority, cb); } } function requestTransitionLane( // This argument isn't used, it's only here to encourage the caller to // check that it's inside a transition before calling this function. // TODO: Make this non-nullable. Requires a tweak to useOptimistic. transition) { // 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; } var currentEntangledLane = NoLane; // A thenable that resolves when the entangled scope completes. It does not // resolve to a particular value because it's only used for suspending the UI // until the async action scope has completed. var currentEntangledActionThenable = null; function chainThenableValue(thenable, result) { // Equivalent to: Promise.resolve(thenable).then(() => result), except we can // cheat a bit since we know that that this thenable is only ever consumed // by React. // // We don't technically require promise support on the client yet, hence this // extra code. var listeners = []; var thenableWithOverride = { status: "pending", value: null, reason: null, then: function then(resolve) { listeners.push(resolve); } }; thenable.then(function (value) { var fulfilledThenable = thenableWithOverride; fulfilledThenable.status = "fulfilled"; fulfilledThenable.value = result; for (var i = 0; i < listeners.length; i++) { var listener = listeners[i]; listener(result); } }, function (error) { var rejectedThenable = thenableWithOverride; rejectedThenable.status = "rejected"; rejectedThenable.reason = error; for (var i = 0; i < listeners.length; i++) { var listener = listeners[i]; // This is a perf hack where we call the `onFulfill` ping function // instead of `onReject`, because we know that React is the only // consumer of these promises, and it passes the same listener to both. // We also know that it will read the error directly off the // `.reason` field. listener(undefined); } }); return thenableWithOverride; } function peekEntangledActionLane() { return currentEntangledLane; } function peekEntangledActionThenable() { return currentEntangledActionThenable; } 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, lanes: NoLanes, hiddenCallbacks: null }, callbacks: 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, callbacks: null }; workInProgress.updateQueue = clone; } } function createUpdate(lane) { var update = { 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) { var componentName = getComponentNameFromFiber(fiber); 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.\n\nPlease update the following component: %s", componentName); 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 = { lane: update.lane, tag: update.tag, payload: update.payload, // When this update is rebased, we should not fire its // callback again. callback: null, next: null }; if (newLast === null) { newFirst = newLast = clone; } else { newLast.next = clone; newLast = clone; } // $FlowFixMe[incompatible-type] we bail out when we get a null 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, callbacks: currentQueue.callbacks }; 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); { if (workInProgress.mode & StrictLegacyMode) { setIsStrictModeForDevtools(true); try { payload.call(instance, prevState, nextProps); } finally { setIsStrictModeForDevtools(false); } } 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); { if (workInProgress.mode & StrictLegacyMode) { setIsStrictModeForDevtools(true); try { _payload.call(instance, prevState, nextProps); } finally { setIsStrictModeForDevtools(false); } } 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; } var didReadFromEntangledAsyncAction = false; // Each call to processUpdateQueue should be accompanied by a call to this. It's // only in a separate function because in updateHostRoot, it must happen after // all the context stacks have been pushed to, to prevent a stack mismatch. A // bit unfortunate. function suspendIfUpdateReadFromEntangledAsyncAction() { // Check if this update is part of a pending async action. If so, we'll // need to suspend until the action has finished, so that it's batched // together with future updates in the same action. // TODO: Once we support hooks inside useMemo (or an equivalent // memoization boundary like Forget), hoist this logic so that it only // suspends if the memo boundary produces a new value. if (didReadFromEntangledAsyncAction) { var entangledActionThenable = peekEntangledActionThenable(); if (entangledActionThenable !== null) { // TODO: Instead of the throwing the thenable directly, throw a // special object like `use` does so we can detect if it's captured // by userspace. throw entangledActionThenable; } } } function processUpdateQueue(workInProgress, props, instance, renderLanes) { didReadFromEntangledAsyncAction = false; // 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 { // An extra OffscreenLane bit is added to updates that were made to // a hidden tree, so that we can distinguish them from updates that were // already there when the tree was hidden. var updateLane = removeLanes(update.lane, OffscreenLane); var isHiddenUpdate = updateLane !== update.lane; // Check if this update was made while the tree was hidden. If so, then // it's not a "base" update and we should disregard the extra base lanes // that were added to renderLanes when we entered the Offscreen tree. var shouldSkipUpdate = isHiddenUpdate ? !isSubsetOfLanes(getWorkInProgressRootRenderLanes(), updateLane) : !isSubsetOfLanes(renderLanes, updateLane); if (shouldSkipUpdate) { // 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, 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. // Check if this update is part of a pending async action. If so, // we'll need to suspend until the action has finished, so that it's // batched together with future updates in the same action. if (updateLane !== NoLane && updateLane === peekEntangledActionLane()) { didReadFromEntangledAsyncAction = true; } if (newLastBaseUpdate !== 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, tag: update.tag, payload: update.payload, // When this update is rebased, we should not fire its // callback again. callback: null, next: null }; newLastBaseUpdate = newLastBaseUpdate.next = _clone; } // Process this update. newState = getStateFromUpdate(workInProgress, queue, update, newState, props, instance); var callback = update.callback; if (callback !== null) { workInProgress.flags |= Callback; if (isHiddenUpdate) { workInProgress.flags |= Visibility; } var callbacks = queue.callbacks; if (callbacks === null) { queue.callbacks = [callback]; } else { callbacks.push(callback); } } } // $FlowFixMe[incompatible-type] we bail out when we get a null 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; 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 deferHiddenCallbacks(updateQueue) { // When an update finishes on a hidden component, its callback should not // be fired until/unless the component is made visible again. Stash the // callback on the shared queue object so it can be fired later. var newHiddenCallbacks = updateQueue.callbacks; if (newHiddenCallbacks !== null) { var existingHiddenCallbacks = updateQueue.shared.hiddenCallbacks; if (existingHiddenCallbacks === null) { updateQueue.shared.hiddenCallbacks = newHiddenCallbacks; } else { updateQueue.shared.hiddenCallbacks = existingHiddenCallbacks.concat(newHiddenCallbacks); } } } function commitHiddenCallbacks(updateQueue, context) { // This component is switching from hidden -> visible. Commit any callbacks // that were previously deferred. var hiddenCallbacks = updateQueue.shared.hiddenCallbacks; if (hiddenCallbacks !== null) { updateQueue.shared.hiddenCallbacks = null; for (var i = 0; i < hiddenCallbacks.length; i++) { var callback = hiddenCallbacks[i]; callCallback(callback, context); } } } function commitCallbacks(updateQueue, context) { var callbacks = updateQueue.callbacks; if (callbacks !== null) { updateQueue.callbacks = null; for (var i = 0; i < callbacks.length; i++) { var callback = callbacks[i]; callCallback(callback, context); } } } /** * 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) || // $FlowFixMe[incompatible-use] lost refinement of `objB` !objectIs(objA[currentKey], objB[currentKey])) { return false; } } return true; } function describeFiber(fiber) { var owner = fiber._debugOwner ? fiber._debugOwner.type : null; switch (fiber.tag) { case HostHoistable: case HostSingleton: case HostComponent: return describeBuiltInComponentFrame(fiber.type, owner); case LazyComponent: return describeBuiltInComponentFrame("Lazy", owner); case SuspenseComponent: return describeBuiltInComponentFrame("Suspense", owner); case SuspenseListComponent: return describeBuiltInComponentFrame("SuspenseList", owner); case FunctionComponent: case IndeterminateComponent: case SimpleMemoComponent: return describeFunctionComponentFrame(fiber.type, owner); case ForwardRef: return describeFunctionComponentFrame(fiber.type.render, owner); case ClassComponent: return describeClassComponentFrame(fiber.type, owner); default: return ""; } } function getStackByFiberInDevAndProd(workInProgress) { try { var info = ""; var node = workInProgress; do { info += describeFiber(node); // $FlowFixMe[incompatible-type] we bail out when we get a null node = node.return; } while (node); return info; } catch (x) { return "\nError generating stack: " + x.message + "\n" + x.stack; } } var ReactDebugCurrentFrame = 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.getCurrentStack = null; current = null; isRendering = false; } } function setCurrentFiber(fiber) { { ReactDebugCurrentFrame.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://reactjs.org/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://reactjs.org/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://reactjs.org/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://reactjs.org/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://reactjs.org/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://reactjs.org/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://reactjs.org/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://reactjs.org/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://reactjs.org/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 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[incompatible-return] 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"; // $FlowFixMe[incompatible-return] return type; } } // $FlowFixMe[incompatible-return] 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 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 using it here.", propName, typeName(value)); return testStringCoercion(value); // throw (to help callers find troubleshooting comments) } } } var ReactCurrentActQueue$2 = ReactSharedInternals.ReactCurrentActQueue; function getThenablesFromState(state) { { var devState = state; return devState.thenables; } } // An error that is thrown (e.g. by `use`) to trigger Suspense. If we // detect this is caught by userspace, we'll log a warning in development. var SuspenseException = new Error("Suspense Exception: This is not a real error! It's an implementation " + "detail of `use` to interrupt the current render. You must either " + "rethrow it immediately, or move the `use` call outside of the " + "`try/catch` block. Capturing without rethrowing will lead to " + "unexpected behavior.\n\n" + "To handle async errors, wrap your component in an error boundary, or " + "call the promise's `.catch` method and pass the result to `use`"); var SuspenseyCommitException = new Error("Suspense Exception: This is not a real error, and should not leak into " + "userspace. If you're seeing this, it's likely a bug in React."); // This is a noop thenable that we use to trigger a fallback in throwException. // TODO: It would be better to refactor throwException into multiple functions // so we can trigger a fallback directly without having to check the type. But // for now this will do. var noopSuspenseyCommitThenable = { then: function then() { { error("Internal React error: A listener was unexpectedly attached to a " + '"noop" thenable. This is a bug in React. Please file an issue.'); } } }; function createThenableState() { // The ThenableState is created the first time a component suspends. If it // suspends again, we'll reuse the same state. { return { didWarnAboutUncachedPromise: false, thenables: [] }; } } function isThenableResolved(thenable) { var status = thenable.status; return status === "fulfilled" || status === "rejected"; } function noop() {} function trackUsedThenable(thenableState, thenable, index) { if (ReactCurrentActQueue$2.current !== null) { ReactCurrentActQueue$2.didUsePromise = true; } var trackedThenables = getThenablesFromState(thenableState); var previous = trackedThenables[index]; if (previous === undefined) { trackedThenables.push(thenable); } else { if (previous !== thenable) { // Reuse the previous thenable, and drop the new one. We can assume // they represent the same value, because components are idempotent. { var thenableStateDev = thenableState; if (!thenableStateDev.didWarnAboutUncachedPromise) { // We should only warn the first time an uncached thenable is // discovered per component, because if there are multiple, the // subsequent ones are likely derived from the first. // // We track this on the thenableState instead of deduping using the // component name like we usually do, because in the case of a // promise-as-React-node, the owner component is likely different from // the parent that's currently being reconciled. We'd have to track // the owner using state, which we're trying to move away from. Though // since this is dev-only, maybe that'd be OK. // // However, another benefit of doing it this way is we might // eventually have a thenableState per memo/Forget boundary instead // of per component, so this would allow us to have more // granular warnings. thenableStateDev.didWarnAboutUncachedPromise = true; // TODO: This warning should link to a corresponding docs page. error("A component was suspended by an uncached promise. Creating " + "promises inside a Client Component or hook is not yet " + "supported, except via a Suspense-compatible library or framework."); } } // Avoid an unhandled rejection errors for the Promises that we'll // intentionally ignore. thenable.then(noop, noop); thenable = previous; } } // We use an expando to track the status and result of a thenable so that we // can synchronously unwrap the value. Think of this as an extension of the // Promise API, or a custom interface that is a superset of Thenable. // // If the thenable doesn't have a status, set it to "pending" and attach // a listener that will update its status and result when it resolves. switch (thenable.status) { case "fulfilled": { var fulfilledValue = thenable.value; return fulfilledValue; } case "rejected": { var rejectedError = thenable.reason; checkIfUseWrappedInAsyncCatch(rejectedError); throw rejectedError; } default: { if (typeof thenable.status === "string") { // Only instrument the thenable if the status if not defined. If // it's defined, but an unknown value, assume it's been instrumented by // some custom userspace implementation. We treat it as "pending". // Attach a dummy listener, to ensure that any lazy initialization can // happen. Flight lazily parses JSON when the value is actually awaited. thenable.then(noop, noop); } else { // This is an uncached thenable that we haven't seen before. // Detect infinite ping loops caused by uncached promises. var root = getWorkInProgressRoot(); if (root !== null && root.shellSuspendCounter > 100) { // This root has suspended repeatedly in the shell without making any // progress (i.e. committing something). This is highly suggestive of // an infinite ping loop, often caused by an accidental Async Client // Component. // // During a transition, we can suspend the work loop until the promise // to resolve, but this is a sync render, so that's not an option. We // also can't show a fallback, because none was provided. So our last // resort is to throw an error. // // TODO: Remove this error in a future release. Other ways of handling // this case include forcing a concurrent render, or putting the whole // root into offscreen mode. throw new Error("async/await is not yet supported in Client Components, only " + "Server Components. This error is often caused by accidentally " + "adding `'use client'` to a module that was originally written " + "for the server."); } var pendingThenable = thenable; pendingThenable.status = "pending"; pendingThenable.then(function (fulfilledValue) { if (thenable.status === "pending") { var fulfilledThenable = thenable; fulfilledThenable.status = "fulfilled"; fulfilledThenable.value = fulfilledValue; } }, function (error) { if (thenable.status === "pending") { var rejectedThenable = thenable; rejectedThenable.status = "rejected"; rejectedThenable.reason = error; } }); // Check one more time in case the thenable resolved synchronously. switch (thenable.status) { case "fulfilled": { var fulfilledThenable = thenable; return fulfilledThenable.value; } case "rejected": { var rejectedThenable = thenable; var _rejectedError = rejectedThenable.reason; checkIfUseWrappedInAsyncCatch(_rejectedError); throw _rejectedError; } } } // Suspend. // // Throwing here is an implementation detail that allows us to unwind the // call stack. But we shouldn't allow it to leak into userspace. Throw an // opaque placeholder value instead of the actual thenable. If it doesn't // get captured by the work loop, log a warning, because that means // something in userspace must have caught it. suspendedThenable = thenable; { needsToResetSuspendedThenableDEV = true; } throw SuspenseException; } } } // passed to the rest of the Suspense implementation — which, for historical // reasons, expects to receive a thenable. var suspendedThenable = null; var needsToResetSuspendedThenableDEV = false; function getSuspendedThenable() { // This is called right after `use` suspends by throwing an exception. `use` // throws an opaque value instead of the thenable itself so that it can't be // caught in userspace. Then the work loop accesses the actual thenable using // this function. if (suspendedThenable === null) { throw new Error("Expected a suspended thenable. This is a bug in React. Please file " + "an issue."); } var thenable = suspendedThenable; suspendedThenable = null; { needsToResetSuspendedThenableDEV = false; } return thenable; } function checkIfUseWrappedInTryCatch() { { // This was set right before SuspenseException was thrown, and it should // have been cleared when the exception was handled. If it wasn't, // it must have been caught by userspace. if (needsToResetSuspendedThenableDEV) { needsToResetSuspendedThenableDEV = false; return true; } } return false; } function checkIfUseWrappedInAsyncCatch(rejectedReason) { // This check runs in prod, too, because it prevents a more confusing // downstream error, where SuspenseException is caught by a promise and // thrown asynchronously. // TODO: Another way to prevent SuspenseException from leaking into an async // execution context is to check the dispatcher every time `use` is called, // or some equivalent. That might be preferable for other reasons, too, since // it matches how we prevent similar mistakes for other hooks. if (rejectedReason === SuspenseException) { throw new Error("Hooks are not supported inside an async component. This " + "error is often caused by accidentally adding `'use client'` " + "to a module that was originally written for the server."); } } var thenableState$1 = null; var thenableIndexCounter$1 = 0; 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."); } // $FlowFixMe[cannot-write] unable to narrow type from mixed to writable object 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://reactjs.org/link/warning-keys for ' + "more information."); }; } function isReactClass(type) { return type.prototype && type.prototype.isReactComponent; } function unwrapThenable(thenable) { var index = thenableIndexCounter$1; thenableIndexCounter$1 += 1; if (thenableState$1 === null) { thenableState$1 = createThenableState(); } return trackUsedThenable(thenableState$1, thenable, index); } function coerceRef(returnFiber, current, element) { var mixedRef = element.ref; if (mixedRef !== null && typeof mixedRef !== "function" && typeof mixedRef !== "object") { { if ( // Will already throw with "Function components cannot have string refs" !(element._owner && element._owner.tag !== ClassComponent) && // Will already warn with "Function components cannot be given refs" !(typeof element.type === "function" && !isReactClass(element.type)) && // Will already throw with "Element ref was specified as a string (someStringRef) but no owner was set" element._owner) { var componentName = getComponentNameFromFiber(returnFiber) || "Component"; if (!didWarnAboutStringRefs[componentName]) { error('Component "%s" contains the string ref "%s". Support for string refs ' + "will be removed in a future major release. We recommend using " + "useRef() or createRef() instead. " + "Learn more about using refs safely here: " + "https://reactjs.org/link/strict-mode-string-ref", componentName, 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://reactjs.org/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 (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://reactjs.org/link/refs-must-have-owner for more information."); } } } return mixedRef; } function throwOnInvalidObjectType(returnFiber, newChild) { // $FlowFixMe[method-unbinding] 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 createChildReconciler(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 | PlacementDEV; return lastPlacedIndex; } else { // This item can stay in place. return oldIndex; } } else { // This is an insertion. newFiber.flags |= Placement | PlacementDEV; 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 | PlacementDEV; } 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._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; } // Usable node types // // Unwrap the inner value and recursively call this function again. if (typeof newChild.then === "function") { var thenable = newChild; return createChild(returnFiber, unwrapThenable(thenable), lanes); } if (newChild.$$typeof === REACT_CONTEXT_TYPE) { var context = newChild; return createChild(returnFiber, readContextDuringReconcilation(returnFiber, context, lanes), lanes); } 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); } // Usable node types // // Unwrap the inner value and recursively call this function again. if (typeof newChild.then === "function") { var thenable = newChild; return updateSlot(returnFiber, oldFiber, unwrapThenable(thenable), lanes); } if (newChild.$$typeof === REACT_CONTEXT_TYPE) { var context = newChild; return updateSlot(returnFiber, oldFiber, readContextDuringReconcilation(returnFiber, context, lanes), lanes); } 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); } // Usable node types // // Unwrap the inner value and recursively call this function again. if (typeof newChild.then === "function") { var thenable = newChild; return updateFromMap(existingChildren, returnFiber, newIdx, unwrapThenable(thenable), lanes); } if (newChild.$$typeof === REACT_CONTEXT_TYPE) { var context = newChild; return updateFromMap(existingChildren, returnFiber, newIdx, readContextDuringReconcilation(returnFiber, context, lanes), lanes); } 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[prop-missing] 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._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._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 reconcileChildFibersImpl(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. // TODO: Let's use recursion like we do for Usable nodes? 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); } // Usables are a valid React node type. When React encounters a Usable in // a child position, it unwraps it using the same algorithm as `use`. For // example, for promises, React will throw an exception to unwind the // stack, then replay the component once the promise resolves. // // A difference from `use` is that React will keep unwrapping the value // until it reaches a non-Usable type. // // e.g. Usable>> should resolve to T // // The structure is a bit unfortunate. Ideally, we shouldn't need to // replay the entire begin phase of the parent fiber in order to reconcile // the children again. This would require a somewhat significant refactor, // because reconcilation happens deep within the begin phase, and // depending on the type of work, not always at the end. We should // consider as an future improvement. if (typeof newChild.then === "function") { var thenable = newChild; return reconcileChildFibersImpl(returnFiber, currentFirstChild, unwrapThenable(thenable), lanes); } if (newChild.$$typeof === REACT_CONTEXT_TYPE) { var context = newChild; return reconcileChildFibersImpl(returnFiber, currentFirstChild, readContextDuringReconcilation(returnFiber, context, lanes), 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); } function reconcileChildFibers(returnFiber, currentFirstChild, newChild, lanes) { // This indirection only exists so we can reset `thenableState` at the end. // It should get inlined by Closure. thenableIndexCounter$1 = 0; var firstChildFiber = reconcileChildFibersImpl(returnFiber, currentFirstChild, newChild, lanes); thenableState$1 = null; // Don't bother to reset `thenableIndexCounter` to 0 because it always gets // set at the beginning. return firstChildFiber; } return reconcileChildFibers; } var reconcileChildFibers = createChildReconciler(true); var mountChildFibers = createChildReconciler(false); function resetChildReconcilerOnUnwind() { // On unwind, clear any pending thenables that were used. thenableState$1 = null; thenableIndexCounter$1 = 0; } 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; } } // TODO: This isn't being used yet, but it's intended to replace the // InvisibleParentContext that is currently managed by SuspenseContext. var currentTreeHiddenStackCursor = createCursor(null); var prevEntangledRenderLanesCursor = createCursor(NoLanes); function pushHiddenContext(fiber, context) { var prevEntangledRenderLanes = getEntangledRenderLanes(); push(prevEntangledRenderLanesCursor, prevEntangledRenderLanes, fiber); push(currentTreeHiddenStackCursor, context, fiber); // When rendering a subtree that's currently hidden, we must include all // lanes that would have rendered if the hidden subtree hadn't been deferred. // That is, in order to reveal content from hidden -> visible, we must commit // all the updates that we skipped when we originally hid the tree. setEntangledRenderLanes(mergeLanes(prevEntangledRenderLanes, context.baseLanes)); } function reuseHiddenContextOnStack(fiber) { // This subtree is not currently hidden, so we don't need to add any lanes // to the render lanes. But we still need to push something to avoid a // context mismatch. Reuse the existing context on the stack. push(prevEntangledRenderLanesCursor, getEntangledRenderLanes(), fiber); push(currentTreeHiddenStackCursor, currentTreeHiddenStackCursor.current, fiber); } function popHiddenContext(fiber) { // Restore the previous render lanes from the stack setEntangledRenderLanes(prevEntangledRenderLanesCursor.current); pop(currentTreeHiddenStackCursor, fiber); pop(prevEntangledRenderLanesCursor, fiber); } function isCurrentTreeHidden() { return currentTreeHiddenStackCursor.current !== null; } // suspends, i.e. it's the nearest `catch` block on the stack. var suspenseHandlerStackCursor = createCursor(null); // Represents the outermost boundary that is not visible in the current tree. // Everything above this is the "shell". When this is null, it means we're // rendering in the shell of the app. If it's non-null, it means we're rendering // deeper than the shell, inside a new tree that wasn't already visible. // // The main way we use this concept is to determine whether showing a fallback // would result in a desirable or undesirable loading state. Activing a fallback // in the shell is considered an undersirable loading state, because it would // mean hiding visible (albeit stale) content in the current tree — we prefer to // show the stale content, rather than switch to a fallback. But showing a // fallback in a new tree is fine, because there's no stale content to // prefer instead. var shellBoundary = null; function getShellBoundary() { return shellBoundary; } function pushPrimaryTreeSuspenseHandler(handler) { // TODO: Pass as argument var current = handler.alternate; // propagated a single level. For example, when ForceSuspenseFallback is set, // it should only force the nearest Suspense boundary into fallback mode. pushSuspenseListContext(handler, setDefaultShallowSuspenseListContext(suspenseStackCursor.current)); // Experimental feature: Some Suspense boundaries are marked as having an // to push a nested Suspense handler, because it will get replaced by the // outer fallback, anyway. Consider this as a future optimization. push(suspenseHandlerStackCursor, handler, handler); if (shellBoundary === null) { if (current === null || isCurrentTreeHidden()) { // This boundary is not visible in the current UI. shellBoundary = handler; } else { var prevState = current.memoizedState; if (prevState !== null) { // This boundary is showing a fallback in the current UI. shellBoundary = handler; } } } } function pushFallbackTreeSuspenseHandler(fiber) { // We're about to render the fallback. If something in the fallback suspends, // it's akin to throwing inside of a `catch` block. This boundary should not // capture. Reuse the existing handler on the stack. reuseSuspenseHandlerOnStack(fiber); } function pushOffscreenSuspenseHandler(fiber) { if (fiber.tag === OffscreenComponent) { // A SuspenseList context is only pushed here to avoid a push/pop mismatch. // Reuse the current value on the stack. // TODO: We can avoid needing to push here by by forking popSuspenseHandler // into separate functions for Suspense and Offscreen. pushSuspenseListContext(fiber, suspenseStackCursor.current); push(suspenseHandlerStackCursor, fiber, fiber); if (shellBoundary !== null) ;else { var current = fiber.alternate; if (current !== null) { var prevState = current.memoizedState; if (prevState !== null) { // This is the first boundary in the stack that's already showing // a fallback. So everything outside is considered the shell. shellBoundary = fiber; } } } } else { // This is a LegacyHidden component. reuseSuspenseHandlerOnStack(fiber); } } function reuseSuspenseHandlerOnStack(fiber) { pushSuspenseListContext(fiber, suspenseStackCursor.current); push(suspenseHandlerStackCursor, getSuspenseHandler(), fiber); } function getSuspenseHandler() { return suspenseHandlerStackCursor.current; } function popSuspenseHandler(fiber) { pop(suspenseHandlerStackCursor, fiber); if (shellBoundary === fiber) { // Popping back into the shell. shellBoundary = null; } popSuspenseListContext(fiber); } // SuspenseList context // TODO: Move to a separate module? We may change the SuspenseList // implementation to hide/show in the commit phase, anyway. var DefaultSuspenseContext = 0; var SubtreeSuspenseContextMask = 1; // 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 hasSuspenseListContext(parentContext, flag) { return (parentContext & flag) !== 0; } function setDefaultShallowSuspenseListContext(parentContext) { return parentContext & SubtreeSuspenseContextMask; } function setShallowSuspenseListContext(parentContext, shallowContext) { return parentContext & SubtreeSuspenseContextMask | shallowContext; } function pushSuspenseListContext(fiber, newContext) { push(suspenseStackCursor, newContext, fiber); } function popSuspenseListContext(fiber) { pop(suspenseStackCursor, fiber); } // A non-null SuspenseState means that it is blocked for one reason or another. // - A non-null dehydrated field means it's blocked pending hydration. // - A non-null dehydrated field can use isSuspenseInstancePending or // isSuspenseInstanceFallback to query the reason for being dehydrated. // - A null dehydrated field means it's blocked by something suspending and // we're currently showing a fallback instead. 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$1; 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 = /* */ 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 = /* */ 8; var ReactCurrentDispatcher$1 = ReactSharedInternals.ReactCurrentDispatcher, ReactCurrentBatchConfig$2 = ReactSharedInternals.ReactCurrentBatchConfig; var didWarnAboutMismatchedHooksForComponent; var didWarnUncachedGetSnapshot; var didWarnAboutUseWrappedInTryCatch; var didWarnAboutAsyncClientComponent; { didWarnAboutMismatchedHooksForComponent = new Set(); didWarnAboutUseWrappedInTryCatch = new Set(); didWarnAboutAsyncClientComponent = new Set(); } // The effect "instance" is a shared object that remains the same for the entire // lifetime of an effect. In Rust terms, a RefCell. We use it to store the // "destroy" function that is returned from an effect, because that is stateful. // The field is `undefined` if the effect is unmounted, or if the effect ran // but is not stateful. We don't explicitly track whether the effect is mounted // or unmounted because that can be inferred by the hiddenness of the fiber in // the tree, i.e. whether there is a hidden Offscreen fiber above it. // // It's unfortunate that this is stored on a separate object, because it adds // more memory per effect instance, but it's conceptually sound. I think there's // likely a better data structure we could use for effects; perhaps just one // array of effect instances per fiber. But I think this is OK for now despite // the additional memory and we can follow up with performance // optimizations later. // 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; var shouldDoubleInvokeUserFnsInHooksDEV = false; // Counts the number of useId hooks in this component. var thenableIndexCounter = 0; var thenableState = null; // Used for ids that are generated completely client-side (i.e. not during // 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://reactjs.org/link/rules-of-hooks\n\n" + " Previous render Next render\n" + " ------------------------------------------------------\n" + "%s" + " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", componentName, table); } } } } function warnIfAsyncClientComponent(Component) { { // This dev-only check only works for detecting native async functions, // not transpiled ones. There's also a prod check that we use to prevent // async client components from crashing the app; the prod one works even // for transpiled async functions. Neither mechanism is completely // bulletproof but together they cover the most common cases. var isAsyncFunction = // $FlowIgnore[method-unbinding] Object.prototype.toString.call(Component) === "[object AsyncFunction]"; if (isAsyncFunction) { // Encountered an async Client Component. This is not yet supported. var componentName = getComponentNameFromFiber(currentlyRenderingFiber$1); if (!didWarnAboutAsyncClientComponent.has(componentName)) { didWarnAboutAsyncClientComponent.add(componentName); error("async/await is not yet supported in Client Components, only " + "Server Components. This error is often caused by accidentally " + "adding `'use client'` to a module that was originally written " + "for the server."); } } } } 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://reactjs.org/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(", ") + "]"); } } // $FlowFixMe[incompatible-use] found when upgrading Flow for (var i = 0; i < prevDeps.length && i < nextDeps.length; i++) { // $FlowFixMe[incompatible-use] found when upgrading Flow 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; warnIfAsyncClientComponent(Component); } workInProgress.memoizedState = null; workInProgress.updateQueue = null; workInProgress.lanes = NoLanes; // The following should have already been reset // currentHook = null; // workInProgressHook = null; // didScheduleRenderPhaseUpdate = false; // localIdCounter = 0; // thenableIndexCounter = 0; // thenableState = null; // 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; } } // In Strict Mode, during development, user functions are double invoked to // help detect side effects. The logic for how this is implemented for in // hook components is a bit complex so let's break it down. // // We will invoke the entire component function twice. However, during the // second invocation of the component, the hook state from the first // invocation will be reused. That means things like `useMemo` functions won't // run again, because the deps will match and the memoized result will // be reused. // // We want memoized functions to run twice, too, so account for this, user // functions are double invoked during the *first* invocation of the component // function, and are *not* double invoked during the second incovation: // // - First execution of component function: user functions are double invoked // - Second execution of component function (in Strict Mode, during // development): user functions are not double invoked. // // This is intentional for a few reasons; most importantly, it's because of // how `use` works when something suspends: it reuses the promise that was // passed during the first attempt. This is itself a form of memoization. // We need to be able to memoize the reactive inputs to the `use` call using // a hook (i.e. `useMemo`), which means, the reactive inputs to `use` must // come from the same component invocation as the output. // // There are plenty of tests to ensure this behavior is correct. var shouldDoubleRenderDEV = (workInProgress.mode & StrictLegacyMode) !== NoMode; shouldDoubleInvokeUserFnsInHooksDEV = shouldDoubleRenderDEV; var children = Component(props, secondArg); shouldDoubleInvokeUserFnsInHooksDEV = false; // Check if there was a render phase update if (didScheduleRenderPhaseUpdateDuringThisPass) { // Keep rendering until the component stabilizes (there are no more render // phase updates). children = renderWithHooksAgain(workInProgress, Component, props, secondArg); } if (shouldDoubleRenderDEV) { // In development, components are invoked twice to help detect side effects. setIsStrictModeForDevtools(true); try { children = renderWithHooksAgain(workInProgress, Component, props, secondArg); } finally { setIsStrictModeForDevtools(false); } } finishRenderingHooks(current, workInProgress); return children; } function finishRenderingHooks(current, workInProgress, Component) { { workInProgress._debugHookTypes = hookTypesDev; } // 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; // 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; thenableIndexCounter = 0; thenableState = null; if (didRenderTooFewHooks) { throw new Error("Rendered fewer hooks than expected. This may be caused by an accidental " + "early return statement."); } { if (checkIfUseWrappedInTryCatch()) { var componentName = getComponentNameFromFiber(workInProgress) || "Unknown"; if (!didWarnAboutUseWrappedInTryCatch.has(componentName) && // This warning also fires if you suspend with `use` inside an // async component. Since we warn for that above, we'll silence this // second warning by checking here. !didWarnAboutAsyncClientComponent.has(componentName)) { didWarnAboutUseWrappedInTryCatch.add(componentName); error("`use` was called from inside a try/catch block. This is not allowed " + "and can lead to unexpected behavior. To handle errors triggered " + "by `use`, wrap your component in a error boundary."); } } } } function replaySuspendedComponentWithHooks(current, workInProgress, Component, props, secondArg) { // This function is used to replay a component that previously suspended, // after its data resolves. // // It's a simplified version of renderWithHooks, but it doesn't need to do // most of the set up work because they weren't reset when we suspended; they // only get reset when the component either completes (finishRenderingHooks) // or unwinds (resetHooksOnUnwind). { hookTypesUpdateIndexDev = -1; // Used for hot reloading: ignorePreviousDependencies = current !== null && current.type !== workInProgress.type; } var children = renderWithHooksAgain(workInProgress, Component, props, secondArg); finishRenderingHooks(current, workInProgress); return children; } function renderWithHooksAgain(workInProgress, Component, props, secondArg) { // This is used to perform another render pass. It's used when setState is // called during render, and for double invoking components in Strict Mode // during development. // // The state from the previous pass is reused whenever possible. So, state // updates that were already processed are not processed again, and memoized // functions (`useMemo`) are not invoked again. // // Keep rendering in a loop for as long as render phase updates continue to // be scheduled. Use a counter to prevent infinite loops. currentlyRenderingFiber$1 = workInProgress; var numberOfReRenders = 0; var children; do { if (didScheduleRenderPhaseUpdateDuringThisPass) { // It's possible that a use() value depended on a state that was updated in // this rerender, so we need to watch for different thenables this time. thenableState = null; } thenableIndexCounter = 0; 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); 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). if ((workInProgress.mode & StrictEffectsMode) !== NoMode) { workInProgress.flags &= ~(MountPassiveDev | MountLayoutDev | Passive$1 | Update); } else { workInProgress.flags &= ~(Passive$1 | Update); } current.lanes = removeLanes(current.lanes, lanes); } function resetHooksAfterThrow() { // This is called immediaetly after a throw. It shouldn't reset the entire // module state, because the work loop might decide to replay the component // again without rewinding. // // It should only reset things like the current dispatcher, to prevent hooks // from being called outside of a component. currentlyRenderingFiber$1 = null; // 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; } function resetHooksOnUnwind(workInProgress) { 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 = workInProgress.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; } didScheduleRenderPhaseUpdateDuringThisPass = false; thenableIndexCounter = 0; thenableState = null; } 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. 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) { var currentFiber = currentlyRenderingFiber$1.alternate; if (currentFiber === null) { // This is the initial render. This branch is reached when the component // suspends, resumes, then renders an additional hook. // Should never be reached because we should switch to the mount dispatcher first. throw new Error("Update hook called on initial render. This is likely a bug in React. Please file an issue."); } else { // This is an update. We should always have a current hook. 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; } // NOTE: defining two versions of this function to avoid size impact when this feature is disabled. // Previously this function was inlined, the additional `memoCache` property makes it not inlined. var createFunctionComponentUpdateQueue; { createFunctionComponentUpdateQueue = function createFunctionComponentUpdateQueue() { return { lastEffect: null, events: null, stores: null }; }; } function useThenable(thenable) { // Track the position of the thenable within this fiber. var index = thenableIndexCounter; thenableIndexCounter += 1; if (thenableState === null) { thenableState = createThenableState(); } var result = trackUsedThenable(thenableState, thenable, index); if (currentlyRenderingFiber$1.alternate === null && (workInProgressHook === null ? currentlyRenderingFiber$1.memoizedState === null : workInProgressHook.next === null)) { // Initial render, and either this is the first time the component is // called, or there were no Hooks called after this use() the previous // time (perhaps because it threw). Subsequent Hook calls should use the // mount dispatcher. { ReactCurrentDispatcher$1.current = HooksDispatcherOnMountInDEV; } } return result; } function _use(usable) { if (usable !== null && typeof usable === "object") { // $FlowFixMe[method-unbinding] if (typeof usable.then === "function") { // This is a thenable. var thenable = usable; return useThenable(thenable); } else if (usable.$$typeof === REACT_CONTEXT_TYPE) { var context = usable; return _readContext(context); } } // eslint-disable-next-line react-internal/safe-string-coercion throw new Error("An unsupported type was passed to use(): " + String(usable)); } function basicStateReducer(state, action) { // $FlowFixMe[incompatible-use]: 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); if (shouldDoubleInvokeUserFnsInHooksDEV) { setIsStrictModeForDevtools(true); init(initialArg); setIsStrictModeForDevtools(false); } } else { initialState = initialArg; } hook.memoizedState = hook.baseState = initialState; var queue = { pending: 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(); return updateReducerImpl(hook, currentHook, reducer); } function updateReducerImpl(hook, current, reducer) { 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; // The last rebase update that is NOT part of the base state. var baseQueue = hook.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; } var baseState = hook.baseState; if (baseQueue === null) { // If there are no pending updates, then the memoized state should be the // same as the base state. Currently these only diverge in the case of // useOptimistic, because useOptimistic accepts a new baseState on // every render. hook.memoizedState = baseState; // We don't need to call markWorkInProgressReceivedUpdate because // baseState is derived from other reactive values. } else { // We have a queue to process. var first = baseQueue.next; var newState = baseState; var newBaseState = null; var newBaseQueueFirst = null; var newBaseQueueLast = null; var update = first; var didReadFromEntangledAsyncAction = false; do { // An extra OffscreenLane bit is added to updates that were made to // a hidden tree, so that we can distinguish them from updates that were // already there when the tree was hidden. var updateLane = removeLanes(update.lane, OffscreenLane); var isHiddenUpdate = updateLane !== update.lane; // Check if this update was made while the tree was hidden. If so, then // it's not a "base" update and we should disregard the extra base lanes // that were added to renderLanes when we entered the Offscreen tree. var shouldSkipUpdate = isHiddenUpdate ? !isSubsetOfLanes(getWorkInProgressRootRenderLanes(), updateLane) : !isSubsetOfLanes(renderLanes, updateLane); if (shouldSkipUpdate) { // 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, revertLane: update.revertLane, 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 is not an optimistic update, and we're going to apply it now. // But, if there were earlier updates that were skipped, we need to // leave this update in the queue so it can be rebased later. 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, revertLane: NoLane, action: update.action, hasEagerState: update.hasEagerState, eagerState: update.eagerState, next: null }; newBaseQueueLast = newBaseQueueLast.next = _clone; } // Check if this update is part of a pending async action. If so, // we'll need to suspend until the action has finished, so that it's // batched together with future updates in the same action. if (updateLane === peekEntangledActionLane()) { didReadFromEntangledAsyncAction = true; } } // Process this update. var action = update.action; if (shouldDoubleInvokeUserFnsInHooksDEV) { reducer(newState, action); } 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 { 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(); // Check if this update is part of a pending async action. If so, we'll // need to suspend until the action has finished, so that it's batched // together with future updates in the same action. // TODO: Once we support hooks inside useMemo (or an equivalent // memoization boundary like Forget), hoist this logic so that it only // suspends if the memo boundary produces a new value. if (didReadFromEntangledAsyncAction) { var entangledActionThenable = peekEntangledActionThenable(); if (entangledActionThenable !== null) { // TODO: Instead of the throwing the thenable directly, throw a // special object like `use` does so we can detect if it's captured // by userspace. throw entangledActionThenable; } } } hook.memoizedState = newState; hook.baseState = newBaseState; hook.baseQueue = newBaseQueueLast; queue.lastRenderedState = newState; } 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 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."); } var rootRenderLanes = getWorkInProgressRootRenderLanes(); if (!includesBlockingLane(root, rootRenderLanes)) { 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. fiber.flags |= Passive$1; pushEffect(HasEffect | Passive, updateStoreInstance.bind(null, fiber, inst, nextSnapshot, getSnapshot), createEffectInstance(), 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; { 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 = (currentHook || 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 subscribe 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$1; pushEffect(HasEffect | Passive, updateStoreInstance.bind(null, fiber, inst, nextSnapshot, getSnapshot), createEffectInstance(), 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); } } function mountStateImpl(initialState) { var hook = mountWorkInProgressHook(); if (typeof initialState === "function") { var initialStateInitializer = initialState; // $FlowFixMe[incompatible-use]: Flow doesn't like mixed types initialState = initialStateInitializer(); if (shouldDoubleInvokeUserFnsInHooksDEV) { setIsStrictModeForDevtools(true); // $FlowFixMe[incompatible-use]: Flow doesn't like mixed types initialStateInitializer(); setIsStrictModeForDevtools(false); } } hook.memoizedState = hook.baseState = initialState; var queue = { pending: null, lanes: NoLanes, dispatch: null, lastRenderedReducer: basicStateReducer, lastRenderedState: initialState }; hook.queue = queue; return hook; } function mountState(initialState) { var hook = mountStateImpl(initialState); var queue = hook.queue; var dispatch = dispatchSetState.bind(null, currentlyRenderingFiber$1, queue); queue.dispatch = dispatch; return [hook.memoizedState, dispatch]; } function updateState(initialState) { return updateReducer(basicStateReducer); } function rerenderState(initialState) { return rerenderReducer(basicStateReducer); } function pushEffect(tag, create, inst, deps) { var effect = { tag: tag, create: create, inst: inst, 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 createEffectInstance() { return { destroy: undefined }; } 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, createEffectInstance(), nextDeps); } function updateEffectImpl(fiberFlags, hookFlags, create, deps) { var hook = updateWorkInProgressHook(); var nextDeps = deps === undefined ? null : deps; var effect = hook.memoizedState; var inst = effect.inst; // currentHook is null on initial mount when rerendering after a render phase // state update or for strict mode. if (currentHook !== null) { if (nextDeps !== null) { var prevEffect = currentHook.memoizedState; var prevDeps = prevEffect.deps; if (areHookInputsEqual(nextDeps, prevDeps)) { hook.memoizedState = pushEffect(hookFlags, create, inst, nextDeps); return; } } } currentlyRenderingFiber$1.flags |= fiberFlags; hook.memoizedState = pushEffect(HasEffect | hookFlags, create, inst, nextDeps); } function mountEffect(create, deps) { if ((currentlyRenderingFiber$1.mode & StrictEffectsMode) !== NoMode && (currentlyRenderingFiber$1.mode & NoStrictPassiveEffectsMode) === NoMode) { mountEffectImpl(MountPassiveDev | Passive$1 | PassiveStatic, Passive, create, deps); } else { mountEffectImpl(Passive$1 | PassiveStatic, Passive, create, deps); } } function updateEffect(create, deps) { updateEffectImpl(Passive$1, Passive, create, deps); } function mountInsertionEffect(create, deps) { mountEffectImpl(Update, Insertion, create, deps); } function updateInsertionEffect(create, deps) { return updateEffectImpl(Update, Insertion, create, deps); } function mountLayoutEffect(create, deps) { var fiberFlags = Update | LayoutStatic; if ((currentlyRenderingFiber$1.mode & StrictEffectsMode) !== NoMode) { fiberFlags |= MountLayoutDev; } 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 _inst = create(); refObject.current = _inst; 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 | LayoutStatic; if ((currentlyRenderingFiber$1.mode & StrictEffectsMode) !== NoMode) { fiberFlags |= MountLayoutDev; } 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; 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 (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(); if (shouldDoubleInvokeUserFnsInHooksDEV) { setIsStrictModeForDevtools(true); nextCreate(); setIsStrictModeForDevtools(false); } hook.memoizedState = [nextValue, nextDeps]; return nextValue; } function updateMemo(nextCreate, deps) { var hook = updateWorkInProgressHook(); var nextDeps = deps === undefined ? null : deps; var prevState = hook.memoizedState; // 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(); if (shouldDoubleInvokeUserFnsInHooksDEV) { setIsStrictModeForDevtools(true); nextCreate(); setIsStrictModeForDevtools(false); } hook.memoizedState = [nextValue, nextDeps]; return nextValue; } function mountDeferredValue(value, initialValue) { var hook = mountWorkInProgressHook(); return mountDeferredValueImpl(hook, value, initialValue); } function updateDeferredValue(value, initialValue) { var hook = updateWorkInProgressHook(); var resolvedCurrentHook = currentHook; var prevValue = resolvedCurrentHook.memoizedState; return updateDeferredValueImpl(hook, prevValue, value, initialValue); } function rerenderDeferredValue(value, initialValue) { var hook = updateWorkInProgressHook(); if (currentHook === null) { // This is a rerender during a mount. return mountDeferredValueImpl(hook, value, initialValue); } else { // This is a rerender during an update. var prevValue = currentHook.memoizedState; return updateDeferredValueImpl(hook, prevValue, value, initialValue); } } function mountDeferredValueImpl(hook, value, initialValue) { if ( // When `initialValue` is provided, we defer the initial render even if the // current render is not synchronous. initialValue !== undefined && // However, to avoid waterfalls, we do not defer if this render // was itself spawned by an earlier useDeferredValue. Check if DeferredLane // is part of the render lanes. !includesSomeLane(renderLanes, DeferredLane)) { // Render with the initial value hook.memoizedState = initialValue; // Schedule a deferred render to switch to the final value. var deferredLane = requestDeferredLane(); currentlyRenderingFiber$1.lanes = mergeLanes(currentlyRenderingFiber$1.lanes, deferredLane); markSkippedUpdateLanes(deferredLane); return initialValue; } else { hook.memoizedState = value; return value; } } function updateDeferredValueImpl(hook, prevValue, value, initialValue) { if (objectIs(value, prevValue)) { // The incoming value is referentially identical to the currently rendered // value, so we can bail out quickly. return value; } else { // Received a new value that's different from the current value. // Check if we're inside a hidden tree if (isCurrentTreeHidden()) { // Revealing a prerendered tree is considered the same as mounting new // one, so we reuse the "mount" path in this case. var resultValue = mountDeferredValueImpl(hook, value, initialValue); // Unlike during an actual mount, we need to mark this as an update if // the value changed. if (!objectIs(resultValue, prevValue)) { markWorkInProgressReceivedUpdate(); } return resultValue; } var shouldDeferValue = !includesOnlyNonUrgentLanes(renderLanes); if (shouldDeferValue) { // This is an urgent update. Since the value has changed, keep using the // previous value and spawn a deferred render to update it later. // Schedule a deferred render var deferredLane = requestDeferredLane(); currentlyRenderingFiber$1.lanes = mergeLanes(currentlyRenderingFiber$1.lanes, deferredLane); markSkippedUpdateLanes(deferredLane); // Reuse the previous value. We do not need to mark this as an update, // because we did not render a new 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. // Mark this as an update to prevent the fiber from bailing out. markWorkInProgressReceivedUpdate(); hook.memoizedState = value; return value; } } } function startTransition(fiber, queue, pendingState, finishedState, callback, options) { var previousPriority = getCurrentUpdatePriority(); setCurrentUpdatePriority(higherEventPriority(previousPriority, ContinuousEventPriority)); var prevTransition = ReactCurrentBatchConfig$2.transition; var currentTransition = { _callbacks: new Set() }; { ReactCurrentBatchConfig$2.transition = null; dispatchSetState(fiber, queue, pendingState); ReactCurrentBatchConfig$2.transition = currentTransition; } { ReactCurrentBatchConfig$2.transition._updatedFibers = new Set(); } try { var returnValue, thenable, thenableForFinishedState; if (enableAsyncActions) ;else { // Async actions are not enabled. dispatchSetState(fiber, queue, finishedState); callback(); } } catch (error) { { // The error rethrowing behavior is only enabled when the async actions // feature is on, even for sync actions. throw error; } } finally { setCurrentUpdatePriority(previousPriority); ReactCurrentBatchConfig$2.transition = prevTransition; { if (prevTransition === null && currentTransition._updatedFibers) { var updatedFibersCount = currentTransition._updatedFibers.size; currentTransition._updatedFibers.clear(); 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."); } } } } } function mountTransition() { var stateHook = mountStateImpl(false); // The `start` method never changes. var start = startTransition.bind(null, currentlyRenderingFiber$1, stateHook.queue, true, false); var hook = mountWorkInProgressHook(); hook.memoizedState = start; return [false, start]; } function updateTransition() { var _updateState = updateState(), booleanOrThenable = _updateState[0]; var hook = updateWorkInProgressHook(); var start = hook.memoizedState; var isPending = typeof booleanOrThenable === "boolean" ? booleanOrThenable // This will suspend until the async action scope has finished. : useThenable(booleanOrThenable); return [isPending, start]; } function rerenderTransition() { var _rerenderState = rerenderState(), booleanOrThenable = _rerenderState[0]; var hook = updateWorkInProgressHook(); var start = hook.memoizedState; var isPending = typeof booleanOrThenable === "boolean" ? booleanOrThenable // This will suspend until the async action scope has finished. : useThenable(booleanOrThenable); return [isPending, start]; } 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, revertLane: NoLane, 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) { scheduleUpdateOnFiber(root, fiber, lane); 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, revertLane: NoLane, 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); 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) { scheduleUpdateOnFiber(root, fiber, lane); 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, use: _use, 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, useSyncExternalStore: throwInvalidHookError, useId: throwInvalidHookError }; 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://reactjs.org/link/rules-of-hooks"); }; HooksDispatcherOnMountInDEV = { readContext: function readContext(context) { return _readContext(context); }, use: _use, 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, initialValue) { currentHookNameInDev = "useDeferredValue"; mountHookTypesDev(); return mountDeferredValue(value, initialValue); }, useTransition: function useTransition() { currentHookNameInDev = "useTransition"; mountHookTypesDev(); return mountTransition(); }, useSyncExternalStore: function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) { currentHookNameInDev = "useSyncExternalStore"; mountHookTypesDev(); return mountSyncExternalStore(subscribe, getSnapshot); }, useId: function useId() { currentHookNameInDev = "useId"; mountHookTypesDev(); return mountId(); } }; HooksDispatcherOnMountWithHookTypesInDEV = { readContext: function readContext(context) { return _readContext(context); }, use: _use, 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, initialValue) { currentHookNameInDev = "useDeferredValue"; updateHookTypesDev(); return mountDeferredValue(value, initialValue); }, useTransition: function useTransition() { currentHookNameInDev = "useTransition"; updateHookTypesDev(); return mountTransition(); }, useSyncExternalStore: function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) { currentHookNameInDev = "useSyncExternalStore"; updateHookTypesDev(); return mountSyncExternalStore(subscribe, getSnapshot); }, useId: function useId() { currentHookNameInDev = "useId"; updateHookTypesDev(); return mountId(); } }; HooksDispatcherOnUpdateInDEV = { readContext: function readContext(context) { return _readContext(context); }, use: _use, 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, initialValue) { currentHookNameInDev = "useDeferredValue"; updateHookTypesDev(); return updateDeferredValue(value, initialValue); }, useTransition: function useTransition() { currentHookNameInDev = "useTransition"; updateHookTypesDev(); return updateTransition(); }, useSyncExternalStore: function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) { currentHookNameInDev = "useSyncExternalStore"; updateHookTypesDev(); return updateSyncExternalStore(subscribe, getSnapshot); }, useId: function useId() { currentHookNameInDev = "useId"; updateHookTypesDev(); return updateId(); } }; HooksDispatcherOnRerenderInDEV = { readContext: function readContext(context) { return _readContext(context); }, use: _use, 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, initialValue) { currentHookNameInDev = "useDeferredValue"; updateHookTypesDev(); return rerenderDeferredValue(value, initialValue); }, useTransition: function useTransition() { currentHookNameInDev = "useTransition"; updateHookTypesDev(); return rerenderTransition(); }, useSyncExternalStore: function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) { currentHookNameInDev = "useSyncExternalStore"; updateHookTypesDev(); return updateSyncExternalStore(subscribe, getSnapshot); }, useId: function useId() { currentHookNameInDev = "useId"; updateHookTypesDev(); return updateId(); } }; InvalidNestedHooksDispatcherOnMountInDEV = { readContext: function readContext(context) { warnInvalidContextAccess(); return _readContext(context); }, use: function use(usable) { warnInvalidHookAccess(); return _use(usable); }, 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, initialValue) { currentHookNameInDev = "useDeferredValue"; warnInvalidHookAccess(); mountHookTypesDev(); return mountDeferredValue(value, initialValue); }, useTransition: function useTransition() { currentHookNameInDev = "useTransition"; warnInvalidHookAccess(); mountHookTypesDev(); return mountTransition(); }, useSyncExternalStore: function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) { currentHookNameInDev = "useSyncExternalStore"; warnInvalidHookAccess(); mountHookTypesDev(); return mountSyncExternalStore(subscribe, getSnapshot); }, useId: function useId() { currentHookNameInDev = "useId"; warnInvalidHookAccess(); mountHookTypesDev(); return mountId(); } }; InvalidNestedHooksDispatcherOnUpdateInDEV = { readContext: function readContext(context) { warnInvalidContextAccess(); return _readContext(context); }, use: function use(usable) { warnInvalidHookAccess(); return _use(usable); }, 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, initialValue) { currentHookNameInDev = "useDeferredValue"; warnInvalidHookAccess(); updateHookTypesDev(); return updateDeferredValue(value, initialValue); }, useTransition: function useTransition() { currentHookNameInDev = "useTransition"; warnInvalidHookAccess(); updateHookTypesDev(); return updateTransition(); }, useSyncExternalStore: function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) { currentHookNameInDev = "useSyncExternalStore"; warnInvalidHookAccess(); updateHookTypesDev(); return updateSyncExternalStore(subscribe, getSnapshot); }, useId: function useId() { currentHookNameInDev = "useId"; warnInvalidHookAccess(); updateHookTypesDev(); return updateId(); } }; InvalidNestedHooksDispatcherOnRerenderInDEV = { readContext: function readContext(context) { warnInvalidContextAccess(); return _readContext(context); }, use: function use(usable) { warnInvalidHookAccess(); return _use(usable); }, 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, initialValue) { currentHookNameInDev = "useDeferredValue"; warnInvalidHookAccess(); updateHookTypesDev(); return rerenderDeferredValue(value, initialValue); }, useTransition: function useTransition() { currentHookNameInDev = "useTransition"; warnInvalidHookAccess(); updateHookTypesDev(); return rerenderTransition(); }, useSyncExternalStore: function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) { currentHookNameInDev = "useSyncExternalStore"; warnInvalidHookAccess(); updateHookTypesDev(); return updateSyncExternalStore(subscribe, getSnapshot); }, useId: function useId() { currentHookNameInDev = "useId"; warnInvalidHookAccess(); updateHookTypesDev(); return updateId(); } }; } var now = 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(); } function startProfilerTimer(fiber) { profilerStartTime = now(); if (fiber.actualStartTime < 0) { fiber.actualStartTime = now(); } } function stopProfilerTimerIfRunning(fiber) { profilerStartTime = -1; } function stopProfilerTimerIfRunningAndRecordDelta(fiber, overrideBaseTime) { if (profilerStartTime >= 0) { var elapsedTime = now() - profilerStartTime; fiber.actualDuration += elapsedTime; if (overrideBaseTime) { fiber.selfBaseDuration = elapsedTime; } profilerStartTime = -1; } } function recordLayoutEffectDuration(fiber) { if (layoutEffectStartTime >= 0) { var elapsedTime = now() - 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() - 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(); } function startPassiveEffectTimer() { passiveEffectStartTime = now(); } 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) { // $FlowFixMe[unsafe-addition] addition with possible null/undefined value fiber.actualDuration += child.actualDuration; child = child.sibling; } } 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 fakeInternalInstance = {}; var didWarnAboutStateAssignmentForComponent; var didWarnAboutUninitializedState; var didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate; var didWarnAboutLegacyLifecyclesAndDerivedState; var didWarnAboutUndefinedDerivedState; var didWarnAboutDirectlyAssigningPropsToState; var didWarnAboutContextTypeAndContextTypes; var didWarnAboutInvalidateContextType; var didWarnOnInvalidCallback; { didWarnAboutStateAssignmentForComponent = new Set(); didWarnAboutUninitializedState = new Set(); didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate = new Set(); didWarnAboutLegacyLifecyclesAndDerivedState = new Set(); didWarnAboutDirectlyAssigningPropsToState = new Set(); didWarnAboutUndefinedDerivedState = new Set(); didWarnAboutContextTypeAndContextTypes = new Set(); didWarnAboutInvalidateContextType = new Set(); didWarnOnInvalidCallback = new Set(); // 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 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); } } } 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); } } } } function applyDerivedStateFromProps(workInProgress, ctor, getDerivedStateFromProps, nextProps) { var prevState = workInProgress.memoizedState; var partialState = getDerivedStateFromProps(nextProps, prevState); { if (workInProgress.mode & StrictLegacyMode) { setIsStrictModeForDevtools(true); try { // Invoke the function an extra time to help detect side-effects. partialState = getDerivedStateFromProps(nextProps, prevState); } finally { setIsStrictModeForDevtools(false); } } 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, // $FlowFixMe[missing-local-annot] enqueueSetState: function enqueueSetState(inst, payload, callback) { var fiber = get(inst); var lane = requestUpdateLane(fiber); var update = createUpdate(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); entangleTransitions(root, fiber, lane); } }, enqueueReplaceState: function enqueueReplaceState(inst, payload, callback) { var fiber = get(inst); var lane = requestUpdateLane(fiber); var update = createUpdate(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); entangleTransitions(root, fiber, lane); } }, // $FlowFixMe[missing-local-annot] enqueueForceUpdate: function enqueueForceUpdate(inst, callback) { var fiber = get(inst); var lane = requestUpdateLane(fiber); var update = createUpdate(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); 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 (workInProgress.mode & StrictLegacyMode) { setIsStrictModeForDevtools(true); try { // Invoke the function an extra time to help detect side-effects. shouldUpdate = instance.shouldComponentUpdate(newProps, newState, nextContext); } finally { setIsStrictModeForDevtools(false); } } 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. { if (workInProgress.mode & StrictLegacyMode) { setIsStrictModeForDevtools(true); try { instance = new ctor(props, context); // eslint-disable-line no-new } finally { setIsStrictModeForDevtools(false); } } } 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://reactjs.org/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 = {}; 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); suspendIfUpdateReadFromEntangledAsyncAction(); instance.state = workInProgress.memoizedState; } if (typeof instance.componentDidMount === "function") { workInProgress.flags |= Update | LayoutStatic; } if ((workInProgress.mode & StrictEffectsMode) !== NoMode) { workInProgress.flags |= MountLayoutDev; } } 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); suspendIfUpdateReadFromEntangledAsyncAction(); 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") { workInProgress.flags |= Update | LayoutStatic; } if ((workInProgress.mode & StrictEffectsMode) !== NoMode) { workInProgress.flags |= MountLayoutDev; } 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") { workInProgress.flags |= Update | LayoutStatic; } if ((workInProgress.mode & StrictEffectsMode) !== NoMode) { workInProgress.flags |= MountLayoutDev; } } 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") { workInProgress.flags |= Update | LayoutStatic; } if ((workInProgress.mode & StrictEffectsMode) !== NoMode) { workInProgress.flags |= MountLayoutDev; } // 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); suspendIfUpdateReadFromEntangledAsyncAction(); 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; } 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://reactjs.org/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 } } 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; }); } } function createRootErrorUpdate(fiber, errorInfo, lane) { var update = createUpdate(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(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") { // $FlowFixMe[missing-this-annot] 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 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 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(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") { if (typeof value.then === "function") { // This is a wakeable. The component suspended. var wakeable = value; resetSuspendedComponent(sourceFiber); var suspenseBoundary = getSuspenseHandler(); if (suspenseBoundary !== null) { switch (suspenseBoundary.tag) { case SuspenseComponent: { // If this suspense boundary is not already showing a fallback, mark // the in-progress render as suspended. We try to perform this logic // as soon as soon as possible during the render phase, so the work // loop can know things like whether it's OK to switch to other tasks, // or whether it can wait for data to resolve before continuing. // TODO: Most of these checks are already performed when entering a // Suspense boundary. We should track the information on the stack so // we don't have to recompute it on demand. This would also allow us // to unify with `use` which needs to perform this logic even sooner, // before `throwException` is called. if (sourceFiber.mode & ConcurrentMode) { if (getShellBoundary() === null) { // Suspended in the "shell" of the app. This is an undesirable // loading state. We should avoid committing this tree. renderDidSuspendDelayIfPossible(); } else { // If we suspended deeper than the shell, we don't need to delay // the commmit. However, we still call renderDidSuspend if this is // a new boundary, to tell the work loop that a new fallback has // appeared during this render. // TODO: Theoretically we should be able to delete this branch. // It's currently used for two things: 1) to throttle the // appearance of successive loading states, and 2) in // SuspenseList, to determine whether the children include any // pending fallbacks. For 1, we should apply throttling to all // retries, not just ones that render an additional fallback. For // 2, we should check subtreeFlags instead. Then we can delete // this branch. var current = suspenseBoundary.alternate; if (current === null) { renderDidSuspend(); } } } suspenseBoundary.flags &= ~ForceClientRender; markSuspenseBoundaryShouldCapture(suspenseBoundary, returnFiber, sourceFiber, root, rootRenderLanes); // 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"). // Check if this is a Suspensey resource. We do not attach retry // listeners to these, because we don't actually need them for // rendering. Only for committing. Instead, if a fallback commits // and the only thing that suspended was a Suspensey resource, we // retry immediately. // TODO: Refactor throwException so that we don't have to do this type // check. The caller already knows what the cause was. var isSuspenseyResource = wakeable === noopSuspenseyCommitThenable; if (isSuspenseyResource) { suspenseBoundary.flags |= ScheduleRetry; } else { var retryQueue = suspenseBoundary.updateQueue; if (retryQueue === null) { suspenseBoundary.updateQueue = new Set([wakeable]); } else { retryQueue.add(wakeable); } // 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); } } return false; } case OffscreenComponent: { if (suspenseBoundary.mode & ConcurrentMode) { suspenseBoundary.flags |= ShouldCapture; var _isSuspenseyResource = wakeable === noopSuspenseyCommitThenable; if (_isSuspenseyResource) { suspenseBoundary.flags |= ScheduleRetry; } else { var offscreenQueue = suspenseBoundary.updateQueue; if (offscreenQueue === null) { var newOffscreenQueue = { transitions: null, markerInstances: null, retryQueue: new Set([wakeable]) }; suspenseBoundary.updateQueue = newOffscreenQueue; } else { var _retryQueue = offscreenQueue.retryQueue; if (_retryQueue === null) { offscreenQueue.retryQueue = new Set([wakeable]); } else { _retryQueue.add(wakeable); } } attachPingListener(root, wakeable, rootRenderLanes); } return false; } } } throw new Error("Unexpected Suspense handler tag (" + suspenseBoundary.tag + "). This " + "is a bug in React."); } 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 (root.tag === ConcurrentRoot) { // In a concurrent root, suspending without a Suspense boundary is // allowed. It will suspend indefinitely without committing. // // TODO: Should we have different behavior for discrete updates? What // about flushSync? Maybe it should put the tree into an inert state, // and potentially log a warning. Revisit this for a future release. attachPingListener(root, wakeable, rootRenderLanes); renderDidSuspendDelayIfPossible(); return false; } else { // In a legacy root, suspending without a boundary is always an error. 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."); value = uncaughtSuspenseError; } } } } // This is a regular error, not a Suspense wakeable. 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. if (returnFiber === null) { // There's no return fiber, which means the root errored. This should never // happen. Return `true` to trigger a fatal error (panic). return true; } 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 false; } case ClassComponent: // Capture and retry var errorInfo = value; var ctor = workInProgress.type; var instance = workInProgress.stateNode; if ((workInProgress.flags & DidCapture) === NoFlags$1 && (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 false; } break; } // $FlowFixMe[incompatible-type] we bail out when we get a null workInProgress = workInProgress.return; } while (workInProgress !== null); return false; } var ReactCurrentOwner$2 = ReactSharedInternals.ReactCurrentOwner; // A special exception that's used to unwind the stack when an update flows // into a dehydrated boundary. var SelectiveHydrationException = new Error("This is not a real error. It's an implementation detail of React's " + "selective hydration feature. If this leaks into userspace, it's a bug in " + "React. Please file an issue."); var didReceiveUpdate = false; var didWarnAboutBadClass; var didWarnAboutModulePatternComponent; var didWarnAboutContextTypeOnFunctionComponent; var didWarnAboutGetDerivedStateOnFunctionComponent; var didWarnAboutFunctionRefs; var didWarnAboutReassigningProps; var didWarnAboutRevealOrder; var didWarnAboutTailOptions; var didWarnAboutDefaultPropsOnFunctionComponent; { didWarnAboutBadClass = {}; didWarnAboutModulePatternComponent = {}; didWarnAboutContextTypeOnFunctionComponent = {}; didWarnAboutGetDerivedStateOnFunctionComponent = {}; didWarnAboutFunctionRefs = {}; didWarnAboutReassigningProps = false; didWarnAboutRevealOrder = {}; didWarnAboutTailOptions = {}; didWarnAboutDefaultPropsOnFunctionComponent = {}; } 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$2.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)); } if (Component.defaultProps !== undefined) { var componentName = getComponentNameFromType(type) || "Unknown"; if (!didWarnAboutDefaultPropsOnFunctionComponent[componentName]) { error("%s: Support for defaultProps will be removed from memo components " + "in a future major release. Use JavaScript default parameters instead.", componentName); didWarnAboutDefaultPropsOnFunctionComponent[componentName] = true; } } } 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$1) { // 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 nextIsDetached = (workInProgress.stateNode._pendingVisibility & OffscreenDetached) !== 0; var prevState = current !== null ? current.memoizedState : null; markRef$1(current, workInProgress); if (nextProps.mode === "hidden" || enableLegacyHidden || nextIsDetached) { // Rendering a hidden tree. var didSuspend = (workInProgress.flags & DidCapture) !== NoFlags$1; if (didSuspend) { // Something suspended inside a hidden tree // Include the base lanes from the last render var nextBaseLanes = prevState !== null ? mergeLanes(prevState.baseLanes, renderLanes) : renderLanes; if (current !== null) { // Reset to the current children var currentChild = workInProgress.child = current.child; // The current render suspended, but there may be other lanes with // pending work. We can't read `childLanes` from the current Offscreen // fiber because we reset it when it was deferred; however, we can read // the pending lanes from the child fibers. var currentChildLanes = NoLanes; while (currentChild !== null) { currentChildLanes = mergeLanes(mergeLanes(currentChildLanes, currentChild.lanes), currentChild.childLanes); currentChild = currentChild.sibling; } var lanesWeJustAttempted = nextBaseLanes; var remainingChildLanes = removeLanes(currentChildLanes, lanesWeJustAttempted); workInProgress.childLanes = remainingChildLanes; } else { workInProgress.childLanes = NoLanes; workInProgress.child = null; } return deferHiddenOffscreenComponent(current, workInProgress, nextBaseLanes); } 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 }; workInProgress.memoizedState = nextState; reuseHiddenContextOnStack(workInProgress); pushOffscreenSuspenseHandler(workInProgress); } else if (!includesSomeLane(renderLanes, OffscreenLane)) { // We're hidden, and we're not rendering at Offscreen. We will bail out // and resume this tree later. // Schedule this fiber to re-render at Offscreen priority workInProgress.lanes = workInProgress.childLanes = laneToLanes(OffscreenLane); // Include the base lanes from the last render var _nextBaseLanes = prevState !== null ? mergeLanes(prevState.baseLanes, renderLanes) : renderLanes; return deferHiddenOffscreenComponent(current, workInProgress, _nextBaseLanes); } 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 _nextState = { baseLanes: NoLanes, cachePool: null }; workInProgress.memoizedState = _nextState; if (prevState !== null) { pushHiddenContext(workInProgress, prevState); } else { reuseHiddenContextOnStack(workInProgress); } pushOffscreenSuspenseHandler(workInProgress); } } else { // Rendering a visible tree. if (prevState !== null) { pushHiddenContext(workInProgress, prevState); reuseSuspenseHandlerOnStack(workInProgress); // Since we're not hidden anymore, reset the state workInProgress.memoizedState = null; } else { // to avoid a push/pop misalignment. reuseHiddenContextOnStack(workInProgress); reuseSuspenseHandlerOnStack(workInProgress); } } reconcileChildren(current, workInProgress, nextChildren, renderLanes); return workInProgress.child; } function deferHiddenOffscreenComponent(current, workInProgress, nextBaseLanes, renderLanes) { var nextState = { baseLanes: nextBaseLanes, // Save the cache pool so we can resume later. cachePool: null }; workInProgress.memoizedState = nextState; // to avoid a push/pop misalignment. reuseHiddenContextOnStack(workInProgress); pushOffscreenSuspenseHandler(workInProgress); return null; } // 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$1(current, workInProgress) { var ref = workInProgress.ref; if (current === null && ref !== null || current !== null && current.ref !== ref) { // Schedule a Ref effect workInProgress.flags |= Ref; workInProgress.flags |= RefStatic; } } 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$2.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 replayFunctionComponent(current, workInProgress, nextProps, Component, secondArg, renderLanes) { // This function is used to replay a component that previously suspended, // after its data resolves. It's a simplified version of // updateFunctionComponent that reuses the hooks from the previous attempt. prepareToReadContext(workInProgress, renderLanes); var nextChildren = replaySuspendedComponentWithHooks(current, workInProgress, Component, nextProps, secondArg); 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$1(current, workInProgress); var didCaptureError = (workInProgress.flags & DidCapture) !== NoFlags$1; 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$2.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(); if (workInProgress.mode & StrictLegacyMode) { setIsStrictModeForDevtools(true); try { instance.render(); } finally { setIsStrictModeForDevtools(false); } } 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; // it needs to happen after the `pushCacheProvider` call above to avoid a // context stack mismatch. A bit unfortunate. suspendIfUpdateReadFromEntangledAsyncAction(); // Caution: React DevTools currently depends on this property // 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$1(current, workInProgress, renderLanes) { pushHostContext(workInProgress); 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$1(current, workInProgress); reconcileChildren(current, workInProgress, nextChildren, renderLanes); return workInProgress.child; } function updateHostText$1(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$2.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 componentName = getComponentNameFromType(Component) || "Unknown"; var ownerName = getCurrentFiberOwnerNameInDevOrNull(); if (ownerName) { info += "\n\nCheck the render method of `" + ownerName + "`."; } var warningKey = componentName + "|" + (ownerName || ""); 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 (Component.defaultProps !== undefined) { var _componentName3 = getComponentNameFromType(Component) || "Unknown"; if (!didWarnAboutDefaultPropsOnFunctionComponent[_componentName3]) { error("%s: Support for defaultProps will be removed from function components " + "in a future major release. Use JavaScript default parameters instead.", _componentName3); didWarnAboutDefaultPropsOnFunctionComponent[_componentName3] = true; } } if (typeof Component.getDerivedStateFromProps === "function") { var _componentName4 = getComponentNameFromType(Component) || "Unknown"; if (!didWarnAboutGetDerivedStateOnFunctionComponent[_componentName4]) { error("%s: Function components do not support getDerivedStateFromProps.", _componentName4); didWarnAboutGetDerivedStateOnFunctionComponent[_componentName4] = true; } } if (typeof Component.contextType === "object" && Component.contextType !== null) { var _componentName5 = getComponentNameFromType(Component) || "Unknown"; if (!didWarnAboutContextTypeOnFunctionComponent[_componentName5]) { error("%s: Function components do not support contextType.", _componentName5); didWarnAboutContextTypeOnFunctionComponent[_componentName5] = true; } } } } var SUSPENDED_MARKER = { dehydrated: null, treeContext: null, retryLane: NoLane }; function mountSuspenseOffscreenState(renderLanes) { return { baseLanes: renderLanes, cachePool: getSuspendedCache() }; } function updateSuspenseOffscreenState(prevOffscreenState, renderLanes) { var cachePool = null; return { baseLanes: mergeLanes(prevOffscreenState.baseLanes, renderLanes), cachePool: cachePool }; } // TODO: Probably should inline this back function shouldRemainOnFallback(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. // TODO: For compatibility with offscreen prerendering, this should also check // whether the current fiber (if it exists) was visible in the previous tree. 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. var suspenseContext = suspenseStackCursor.current; return hasSuspenseListContext(suspenseContext, ForceSuspenseFallback); } function getRemainingWorkInPrimaryTree(current, primaryTreeDidDefer, renderLanes) { var remainingLanes = current !== null ? removeLanes(current.childLanes, renderLanes) : NoLanes; if (primaryTreeDidDefer) { // A useDeferredValue hook spawned a deferred task inside the primary tree. // Ensure that we retry this component at the deferred priority. // TODO: We could make this a per-subtree value instead of a global one. // Would need to track it on the context stack somehow, similar to what // we'd have to do for resumable contexts. remainingLanes = mergeLanes(remainingLanes, peekDeferredLane()); } return remainingLanes; } 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 showFallback = false; var didSuspend = (workInProgress.flags & DidCapture) !== NoFlags$1; if (didSuspend || shouldRemainOnFallback(current)) { // Something in this boundary's subtree already suspended. Switch to // rendering the fallback children. showFallback = true; workInProgress.flags &= ~DidCapture; } // Check if the primary children spawned a deferred task (useDeferredValue) // during the first pass. var didPrimaryChildrenDefer = (workInProgress.flags & DidDefer) !== NoFlags$1; workInProgress.flags &= ~DidDefer; // 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 nextPrimaryChildren = nextProps.children; var nextFallbackChildren = nextProps.fallback; if (showFallback) { pushFallbackTreeSuspenseHandler(workInProgress); var fallbackFragment = mountSuspenseFallbackChildren(workInProgress, nextPrimaryChildren, nextFallbackChildren, renderLanes); var primaryChildFragment = workInProgress.child; primaryChildFragment.memoizedState = mountSuspenseOffscreenState(renderLanes); primaryChildFragment.childLanes = getRemainingWorkInPrimaryTree(current, didPrimaryChildrenDefer, renderLanes); workInProgress.memoizedState = SUSPENDED_MARKER; return fallbackFragment; } else { pushPrimaryTreeSuspenseHandler(workInProgress); 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, didPrimaryChildrenDefer, nextProps, _dehydrated, prevState, renderLanes); } } if (showFallback) { pushFallbackTreeSuspenseHandler(workInProgress); 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, didPrimaryChildrenDefer, renderLanes); workInProgress.memoizedState = SUSPENDED_MARKER; return fallbackChildFragment; } else { pushPrimaryTreeSuspenseHandler(workInProgress); 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 updateDehydratedSuspenseComponent(current, workInProgress, didSuspend, didPrimaryChildrenDefer, nextProps, suspenseInstance, suspenseState, renderLanes) { if (!didSuspend) { // This is the first render pass. Attempt to hydrate. pushPrimaryTreeSuspenseHandler(workInProgress); // We should never be hydrating at this point because it is the first pass, if ((workInProgress.mode & ConcurrentMode) === NoMode) { return retrySuspenseComponentWithoutHydrating(current, workInProgress, renderLanes, 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; var message, stack; { var _getSuspenseInstanceF = getSuspenseInstanceFallbackErrorDetails(); digest = _getSuspenseInstanceF.digest; message = _getSuspenseInstanceF.message; stack = _getSuspenseInstanceF.stack; } var capturedValue = null; // TODO: Figure out a better signal than encoding a magic digest value. { 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."); } error.digest = digest; 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; enqueueConcurrentRenderForLane(current, attemptHydrationAtLane); scheduleUpdateOnFiber(root, current, attemptHydrationAtLane); // Throw a special object that signals to the work loop that it should // interrupt the current render. // // Because we're inside a React-only execution stack, we don't // strictly need to throw here — we could instead modify some internal // work loop state. But using an exception means we don't need to // check for this case on every iteration of the work loop. So doing // it this way moves the check out of the fast path. throw SelectiveHydrationException; } } // If we did not selectively hydrate, we'll continue rendering without // hydrating. Mark this tree as suspended to prevent it from committing // outside a transition. // // This path should only happen if the hydration lane already suspended. // Currently, it also happens during sync updates because there is no // hydration lane for sync updates. // TODO: We should ideally have a sync hydration lane that we can apply to do // a pass where we hydrate this subtree in place using the previous Context and then // reapply the update afterwards. if (isSuspenseInstancePending()) ;else { renderDidSuspendDelayIfPossible(); } return retrySuspenseComponentWithoutHydrating(current, workInProgress, renderLanes, null); } 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. retryDehydratedSuspenseBoundary.bind(null, current); registerSuspenseInstanceRetry(); return null; } else { 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. pushPrimaryTreeSuspenseHandler(workInProgress); workInProgress.flags &= ~ForceClientRender; var _capturedValue = createCapturedValue(new Error("There was an error while hydrating this Suspense boundary. " + "Switched to client rendering.")); return retrySuspenseComponentWithoutHydrating(current, workInProgress, renderLanes, _capturedValue); } else if (workInProgress.memoizedState !== null) { // Something suspended and we should still be in dehydrated mode. // Leave the existing child in place. // Push to avoid a mismatch pushFallbackTreeSuspenseHandler(workInProgress); 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. pushFallbackTreeSuspenseHandler(workInProgress); var nextPrimaryChildren = nextProps.children; var nextFallbackChildren = nextProps.fallback; var fallbackChildFragment = mountSuspenseFallbackAfterRetryWithoutHydrating(current, workInProgress, nextPrimaryChildren, nextFallbackChildren, renderLanes); var _primaryChildFragment4 = workInProgress.child; _primaryChildFragment4.memoizedState = mountSuspenseOffscreenState(renderLanes); _primaryChildFragment4.childLanes = getRemainingWorkInPrimaryTree(current, didPrimaryChildrenDefer, 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; } // $FlowFixMe[incompatible-use] found when upgrading Flow while (node.sibling === null) { // $FlowFixMe[incompatible-use] found when upgrading Flow if (node.return === null || node.return === workInProgress) { return; } node = node.return; } // $FlowFixMe[incompatible-use] found when upgrading Flow 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 = hasSuspenseListContext(suspenseContext, ForceSuspenseFallback); if (shouldForceFallback) { suspenseContext = setShallowSuspenseListContext(suspenseContext, ForceSuspenseFallback); workInProgress.flags |= DidCapture; } else { var didSuspendBefore = current !== null && (current.flags & DidCapture) !== NoFlags$1; 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 = setDefaultShallowSuspenseListContext(suspenseContext); } pushSuspenseListContext(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$2.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."); } // $FlowFixMe[incompatible-use] found when upgrading Flow while (prevSibling.sibling !== oldWorkInProgress) { // $FlowFixMe[incompatible-use] found when upgrading Flow prevSibling = prevSibling.sibling; if (prevSibling === null) { // eslint-disable-next-line react-internal/prod-error-codes throw new Error("Expected to find the previous sibling."); } } // $FlowFixMe[incompatible-use] found when upgrading Flow 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); break; case HostSingleton: 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) { // We're not going to render the children, so this is just to maintain // push/pop symmetry pushPrimaryTreeSuspenseHandler(workInProgress); // 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 pushPrimaryTreeSuspenseHandler(workInProgress); // 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 { pushPrimaryTreeSuspenseHandler(workInProgress); } break; } case SuspenseListComponent: { var didSuspendBefore = (current.flags & DidCapture) !== NoFlags$1; 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; } pushSuspenseListContext(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$1(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$1) { // No pending updates or context. Bail out now. didReceiveUpdate = false; return attemptEarlyBailoutIfNoScheduledUpdate(current, workInProgress, renderLanes); } if ((current.flags & ForceUpdateForLegacySuspense) !== NoFlags$1) { // 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 HostHoistable: // Fall through case HostSingleton: // Fall through case HostComponent: return updateHostComponent$1(current, workInProgress, renderLanes); case HostText: return updateHostText$1(); 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."); } var valueCursor = createCursor(null); var renderer2CursorDEV; { renderer2CursorDEV = 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; { push(renderer2CursorDEV, context._currentRenderer2, providerFiber); 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; { context._currentValue2 = currentValue; { var currentRenderer2 = renderer2CursorDEV.current; pop(renderer2CursorDEV, providerFiber); context._currentRenderer2 = currentRenderer2; } } pop(valueCursor, providerFiber); } 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); } else ; 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(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()."); } } return readContextForConsumer(currentlyRenderingFiber, context); } function readContextDuringReconcilation(consumer, context, renderLanes) { if (currentlyRenderingFiber === null) { prepareToReadContext(consumer, renderLanes); } return readContextForConsumer(consumer, context); } function readContextForConsumer(consumer, context) { var value = context._currentValue2; if (lastFullyObservedContext === context) ;else { var contextItem = { context: context, memoizedValue: value, next: null }; if (lastContextDependency === null) { if (consumer === 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; consumer.dependencies = { lanes: NoLanes, firstContext: contextItem }; } else { // Append a new context item. lastContextDependency = lastContextDependency.next = contextItem; } } return value; } var ReactCurrentBatchConfig$1 = ReactSharedInternals.ReactCurrentBatchConfig; function requestCurrentTransition() { var transition = ReactCurrentBatchConfig$1.transition; if (transition !== null) { // Whenever a transition update is scheduled, register a callback on the // transition object so we can get the return value of the scope function. transition._callbacks.add(handleAsyncAction); } return transition; } function handleAsyncAction(transition, thenable) {} function notifyTransitionCallbacks(transition, returnValue) { var callbacks = transition._callbacks; callbacks.forEach(function (callback) { return callback(transition, returnValue); }); } // When retrying a Suspense/Offscreen boundary, we restore the cache that was function getSuspendedCache() { { return null; } // This function is called when a Suspense boundary suspends. It returns the } /** * Tag the fiber with an update effect. This turns a Placement into * a PlacementAndUpdate. */ function markUpdate(workInProgress) { workInProgress.flags |= Update; } function markRef(workInProgress) { workInProgress.flags |= Ref | RefStatic; } /** * In persistent mode, return whether this update needs to clone the subtree. */ function doesRequireClone(current, completedWork) { var didBailout = current !== null && current.child === completedWork.child; if (didBailout) { return false; } if ((completedWork.flags & ChildDeletion) !== NoFlags$1) { return true; } // TODO: If we move the `doesRequireClone` call after `bubbleProperties` // then we only have to check the `completedWork.subtreeFlags`. var child = completedWork.child; while (child !== null) { if ((child.flags & MutationMask) !== NoFlags$1 || (child.subtreeFlags & MutationMask) !== NoFlags$1) { return true; } child = child.sibling; } return false; } 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) { if (_node.tag === HostComponent) { var instance = _node.stateNode; if (needsVisibilityToggle && isHidden) { instance = cloneHiddenInstance(instance); } appendInitialChild(parent, instance); } else if (_node.tag === HostText) { var _instance = _node.stateNode; if (needsVisibilityToggle && isHidden) { _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, /* needsVisibilityToggle */ true, /* isHidden */ true); } else if (_node.child !== null) { _node.child.return = _node; _node = _node.child; continue; } if (_node === workInProgress) { return; } // $FlowFixMe[incompatible-use] found when upgrading Flow while (_node.sibling === null) { // $FlowFixMe[incompatible-use] found when upgrading Flow if (_node.return === null || _node.return === workInProgress) { return; } _node = _node.return; } // $FlowFixMe[incompatible-use] found when upgrading Flow _node.sibling.return = _node.return; _node = _node.sibling; } } } // An unfortunate fork of appendAllChildren because we have two different parent types. 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) { instance = cloneHiddenInstance(instance); } appendChildToContainerChildSet(containerChildSet, instance); } else if (node.tag === HostText) { var _instance2 = node.stateNode; if (needsVisibilityToggle && isHidden) { _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; } // If Offscreen is not in manual mode, detached tree is hidden from user space. var _needsVisibilityToggle = !isOffscreenManual(node); appendAllChildrenToContainer(containerChildSet, node, /* needsVisibilityToggle */ _needsVisibilityToggle, /* isHidden */ true); } else if (node.child !== null) { node.child.return = node; node = node.child; continue; } node = node; if (node === workInProgress) { return; } // $FlowFixMe[incompatible-use] found when upgrading Flow while (node.sibling === null) { // $FlowFixMe[incompatible-use] found when upgrading Flow if (node.return === null || node.return === workInProgress) { return; } node = node.return; } // $FlowFixMe[incompatible-use] found when upgrading Flow node.sibling.return = node.return; node = node.sibling; } } } function updateHostContainer(current, workInProgress) { { if (doesRequireClone(current, workInProgress)) { var portalOrRoot = workInProgress.stateNode; var container = portalOrRoot.containerInfo; var newChildSet = createContainerChildSet(); // If children might have changed, we have to add them all to the set. appendAllChildrenToContainer(newChildSet, workInProgress, /* needsVisibilityToggle */ false, /* isHidden */ false); portalOrRoot.pendingChildren = newChildSet; // Schedule an update on the container to swap out the container. markUpdate(workInProgress); finalizeContainerChildren(container, newChildSet); } } } function updateHostComponent(current, workInProgress, type, newProps, renderLanes) { { 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 requiresClone = doesRequireClone(current, workInProgress); if (!requiresClone && _oldProps === newProps) { // No changes, just reuse the existing instance. // Note that this might release a previous clone. workInProgress.stateNode = currentInstance; return; } getHostContext(); var newChildSet = null; if (requiresClone && passChildrenWhenCloningPersistedNodes) { newChildSet = createContainerChildSet(); // If children might have changed, we have to add them all to the set. appendAllChildrenToContainer(newChildSet, workInProgress, /* needsVisibilityToggle */ false, /* isHidden */ false); } var newInstance = cloneInstance(currentInstance, type, _oldProps, newProps, !requiresClone, newChildSet); if (newInstance === currentInstance) { // No changes, just reuse the existing instance. // Note that this might release a previous clone. workInProgress.stateNode = currentInstance; return; } // Certain renderers require commit-time effects for initial mount. workInProgress.stateNode = newInstance; if (!requiresClone) { // 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, /* needsVisibilityToggle */ false, /* isHidden */ false); } } } // This function must be called at the very end of the complete phase, because // it might throw to suspend, and if the resource immediately loads, the work // loop will resume rendering as if the work-in-progress completed. So it must // fully complete. // TODO: This should ideally move to begin phase, but currently the instance is // not created until the complete phase. For our existing use cases, host nodes // that suspend don't have children, so it doesn't matter. But that might not // always be true in the future. function preloadInstanceAndSuspendIfNeeded(workInProgress, type, props, renderLanes) { { // If this flag was set previously, we can remove it. The flag // represents whether this particular set of props might ever need to // suspend. The safest thing to do is for maySuspendCommit to always // return true, but if the renderer is reasonably confident that the // underlying resource won't be evicted, it can return false as a // performance optimization. workInProgress.flags &= ~MaySuspendCommit; return; } // Mark this fiber with a flag. This gets set on all host instances } function scheduleRetryEffect(workInProgress, retryQueue) { var wakeables = retryQueue; if (wakeables !== null) { // Schedule an effect to attach a retry listener to the promise. // TODO: Move to passive phase workInProgress.flags |= Update; } else { // This boundary suspended, but no wakeables were added to the retry // queue. Check if the renderer suspended commit. If so, this means // that once the fallback is committed, we can immediately retry // rendering again, because rendering wasn't actually blocked. Only // the commit phase. // TODO: Consider a model where we always schedule an immediate retry, even // for normal Suspense. That way the retry can partially render up to the // first thing that suspends. if (workInProgress.flags & ScheduleRetry) { var retryLane = // TODO: This check should probably be moved into claimNextRetryLane // I also suspect that we need some further consolidation of offscreen // and retry lanes. workInProgress.tag !== OffscreenComponent ? claimNextRetryLane() : OffscreenLane; workInProgress.lanes = mergeLanes(workInProgress.lanes, retryLane); } } } function updateHostText(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$1; 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. // $FlowFixMe[unsafe-addition] addition with possible null/undefined value actualDuration += child.actualDuration; // $FlowFixMe[unsafe-addition] addition with possible null/undefined value 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; // $FlowFixMe[unsafe-addition] addition with possible null/undefined value _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[unsafe-arithmetic] Flow doesn't support type casting in combination with the -= operator workInProgress.treeBaseDuration -= primaryChildFragment.treeBaseDuration; } } } } return false; } else { if ((workInProgress.flags & DidCapture) === NoFlags$1) { // 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[unsafe-arithmetic] 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 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); 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$1) { // 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 HostHoistable: case HostSingleton: case HostComponent: { popHostContext(workInProgress); var _type2 = workInProgress.type; if (current !== null && workInProgress.stateNode != null) { updateHostComponent(current, workInProgress, _type2, newProps); if (current.ref !== workInProgress.ref) { markRef(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 _wasHydrated2 = popHydrationState(); if (_wasHydrated2) { // TODO: Move this and createInstance step into the beginPhase // to consolidate. prepareToHydrateHostInstance(); } else { var _rootContainerInstance = getRootHostContainer(); var _instance3 = createInstance(_type2, newProps, _rootContainerInstance, _currentHostContext, workInProgress); // TODO: For persistent renderers, we should pass children as part // of the initial instance creation appendAllChildren(_instance3, workInProgress, false, false); workInProgress.stateNode = _instance3; // 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(workInProgress); } } bubbleProperties(workInProgress); // This must come at the very end of the complete phase, because it might // throw to suspend, and if the resource immediately loads, the work loop // will resume rendering as if the work-in-progress completed. So it must // fully complete. preloadInstanceAndSuspendIfNeeded(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(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 _rootContainerInstance2 = getRootHostContainer(); var _currentHostContext2 = getHostContext(); var _wasHydrated3 = popHydrationState(); if (_wasHydrated3) { if (prepareToHydrateHostTextInstance()) { markUpdate(workInProgress); } } else { workInProgress.stateNode = createTextInstance(newText, _rootContainerInstance2, _currentHostContext2, workInProgress); } } bubbleProperties(workInProgress); return null; } case SuspenseComponent: { popSuspenseHandler(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 & ForceClientRender) { // 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$1) { // 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; } } var retryQueue = workInProgress.updateQueue; scheduleRetryEffect(workInProgress, retryQueue); 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[unsafe-arithmetic] Flow doesn't support type casting in combination with the -= operator workInProgress.treeBaseDuration -= primaryChildFragment.treeBaseDuration; } } } } return null; } case HostPortal: popHostContainer(workInProgress); updateHostContainer(current, workInProgress); 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: { popSuspenseListContext(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$1; 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$1); 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 _retryQueue = suspended.updateQueue; workInProgress.updateQueue = _retryQueue; scheduleRetryEffect(workInProgress, _retryQueue); // 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$1; resetChildFibers(workInProgress, renderLanes); // Set up the Suspense List Context to force suspense and // immediately rerender the children. pushSuspenseListContext(workInProgress, setShallowSuspenseListContext(suspenseStackCursor.current, ForceSuspenseFallback)); // Don't bubble properties in this case. return workInProgress.child; } row = row.sibling; } } if (renderState.tail !== null && now$1() > 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 _retryQueue2 = _suspended.updateQueue; workInProgress.updateQueue = _retryQueue2; scheduleRetryEffect(workInProgress, _retryQueue2); 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$1() * 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$1(); 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 = setShallowSuspenseListContext(suspenseContext, ForceSuspenseFallback); } else { suspenseContext = setDefaultShallowSuspenseListContext(suspenseContext); } pushSuspenseListContext(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: { popSuspenseHandler(workInProgress); popHiddenContext(workInProgress); var _nextState = workInProgress.memoizedState; var nextIsHidden = _nextState !== null; // Schedule a Visibility effect if the visibility has changed { if (current !== null) { var _prevState = current.memoizedState; var prevIsHidden = _prevState !== null; if (prevIsHidden !== nextIsHidden) { workInProgress.flags |= Visibility; } } else { // On initial mount, we only need a Visibility effect if the tree // is hidden. if (nextIsHidden) { 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(renderLanes, OffscreenLane) && // Also don't bubble if the tree suspended (workInProgress.flags & DidCapture) === NoLanes) { bubbleProperties(workInProgress); // Check if there was an insertion or update in the hidden subtree. // If so, we need to hide those nodes in the commit phase, so // schedule a visibility effect. if (workInProgress.subtreeFlags & (Placement | Update)) { workInProgress.flags |= Visibility; } } } var offscreenQueue = workInProgress.updateQueue; if (offscreenQueue !== null) { var _retryQueue3 = offscreenQueue.retryQueue; scheduleRetryEffect(workInProgress, _retryQueue3); } 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) { 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: { popHostContainer(workInProgress); popTopLevelContextObject(workInProgress); var _flags = workInProgress.flags; if ((_flags & ShouldCapture) !== NoFlags$1 && (_flags & DidCapture) === NoFlags$1) { // 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 HostHoistable: case HostSingleton: case HostComponent: { // TODO: popHydrationState popHostContext(workInProgress); return null; } case SuspenseComponent: { popSuspenseHandler(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: { popSuspenseListContext(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: { popSuspenseHandler(workInProgress); popHiddenContext(workInProgress); var _flags3 = workInProgress.flags; if (_flags3 & ShouldCapture) { workInProgress.flags = _flags3 & ~ShouldCapture | DidCapture; // Captured a suspense effect. Re-render the boundary. if ((workInProgress.mode & ProfileMode) !== NoMode) { transferActualDuration(workInProgress); } return workInProgress; } return null; } case CacheComponent: return null; case TracingMarkerComponent: return null; default: return null; } } function unwindInterruptedWork(current, interruptedWork, renderLanes) { switch (interruptedWork.tag) { case ClassComponent: { var childContextTypes = interruptedWork.type.childContextTypes; if (childContextTypes !== null && childContextTypes !== undefined) { popContext(interruptedWork); } break; } case HostRoot: { popHostContainer(interruptedWork); popTopLevelContextObject(interruptedWork); break; } case HostHoistable: case HostSingleton: case HostComponent: { popHostContext(interruptedWork); break; } case HostPortal: popHostContainer(interruptedWork); break; case SuspenseComponent: popSuspenseHandler(interruptedWork); break; case SuspenseListComponent: popSuspenseListContext(interruptedWork); break; case ContextProvider: var context = interruptedWork.type._context; popProvider(context, interruptedWork); break; case OffscreenComponent: case LegacyHiddenComponent: popSuspenseHandler(interruptedWork); popHiddenContext(interruptedWork); break; } } var didWarnAboutUndefinedSnapshotBeforeUpdate = null; { didWarnAboutUndefinedSnapshotBeforeUpdate = new Set(); } // Used during the commit phase to track the state of the Offscreen component stack. // Allows us to avoid traversing the return path to find the nearest Offscreen ancestor. var offscreenSubtreeIsHidden = false; var offscreenSubtreeWasHidden = false; var PossiblyWeakSet = typeof WeakSet === "function" ? WeakSet : Set; var nextEffect = null; // Used for Profiling builds to track updaters. var inProgressLanes = null; var inProgressRoot = null; function shouldProfile(current) { return (current.mode & ProfileMode) !== NoMode && (getExecutionContext() & CommitContext) !== NoContext; } 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(); } } function callComponentWillUnmountWithTimer(current, instance) { instance.props = current.memoizedProps; instance.state = current.memoizedState; if (shouldProfile(current)) { try { startLayoutEffectTimer(); instance.componentWillUnmount(); } finally { recordLayoutEffectDuration(current); } } else { instance.componentWillUnmount(); } } // Capture errors so they don't interrupt unmounting. function safelyCallComponentWillUnmount(current, nearestMountedAncestor, instance) { try { callComponentWillUnmountWithTimer(current, instance); } catch (error) { captureCommitPhaseError(current, nearestMountedAncestor, error); } } // Capture errors so they don't interrupt mounting. function safelyAttachRef(current, nearestMountedAncestor) { try { commitAttachRef(current); } catch (error) { captureCommitPhaseError(current, nearestMountedAncestor, error); } } function safelyDetachRef(current, nearestMountedAncestor) { var ref = current.ref; var refCleanup = current.refCleanup; if (ref !== null) { if (typeof refCleanup === "function") { try { if (shouldProfile(current)) { try { startLayoutEffectTimer(); refCleanup(); } finally { recordLayoutEffectDuration(current); } } else { refCleanup(); } } catch (error) { captureCommitPhaseError(current, nearestMountedAncestor, error); } finally { // `refCleanup` has been called. Nullify all references to it to prevent double invocation. current.refCleanup = null; var finishedWork = current.alternate; if (finishedWork != null) { finishedWork.refCleanup = null; } } } else if (typeof ref === "function") { var retVal; try { if (shouldProfile(current)) { 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 { // $FlowFixMe[incompatible-use] unable to narrow type to RefObject ref.current = null; } } } function safelyCallDestroy(current, nearestMountedAncestor, destroy) { try { destroy(); } catch (error) { captureCommitPhaseError(current, nearestMountedAncestor, error); } } var shouldFireAfterActiveInstanceBlur = false; function commitBeforeMutationEffects(root, firstChild) { nextEffect = firstChild; commitBeforeMutationEffects_begin(); // We no longer need to track the active instance fiber var shouldFire = shouldFireAfterActiveInstanceBlur; shouldFireAfterActiveInstanceBlur = false; 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$1 && 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$1) { setCurrentFiber(finishedWork); } switch (finishedWork.tag) { case FunctionComponent: { break; } case ForwardRef: case SimpleMemoComponent: { break; } case ClassComponent: { if ((flags & Snapshot) !== NoFlags$1) { 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 HostHoistable: case HostSingleton: case HostText: case HostPortal: case IncompleteClassComponent: // Nothing to do for these component types break; default: { if ((flags & Snapshot) !== NoFlags$1) { 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 ((flags & Snapshot) !== NoFlags$1) { 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 inst = effect.inst; var destroy = inst.destroy; if (destroy !== undefined) { inst.destroy = undefined; { if ((flags & Insertion) !== NoFlags) { setIsRunningInsertionEffect(true); } } safelyCallDestroy(finishedWork, nearestMountedAncestor, destroy); { if ((flags & Insertion) !== NoFlags) { 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) { setIsRunningInsertionEffect(true); } } var inst = effect.inst; var destroy = create(); inst.destroy = destroy; { if ((flags & Insertion) !== NoFlags) { setIsRunningInsertionEffect(false); } } { if (destroy !== undefined && typeof destroy !== "function") { var hookName = void 0; if ((effect.tag & Layout) !== NoFlags$1) { hookName = "useLayoutEffect"; } else if ((effect.tag & Insertion) !== NoFlags$1) { 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://reactjs.org/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) { if (getExecutionContext() & CommitContext) { // Only Profilers with work in their subtree will have an Update effect scheduled. if ((finishedWork.flags & Update) !== NoFlags$1) { 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 commitHookLayoutEffects(finishedWork, hookFlags) { // 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 (shouldProfile(finishedWork)) { try { startLayoutEffectTimer(); commitHookEffectListMount(hookFlags, finishedWork); } catch (error) { captureCommitPhaseError(finishedWork, finishedWork.return, error); } recordLayoutEffectDuration(finishedWork); } else { try { commitHookEffectListMount(hookFlags, finishedWork); } catch (error) { captureCommitPhaseError(finishedWork, finishedWork.return, error); } } } function commitClassLayoutLifecycles(finishedWork, current) { var instance = finishedWork.stateNode; 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 (shouldProfile(finishedWork)) { try { startLayoutEffectTimer(); instance.componentDidMount(); } catch (error) { captureCommitPhaseError(finishedWork, finishedWork.return, error); } recordLayoutEffectDuration(finishedWork); } else { try { instance.componentDidMount(); } catch (error) { captureCommitPhaseError(finishedWork, finishedWork.return, error); } } } 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 (shouldProfile(finishedWork)) { try { startLayoutEffectTimer(); instance.componentDidUpdate(prevProps, prevState, instance.__reactInternalSnapshotBeforeUpdate); } catch (error) { captureCommitPhaseError(finishedWork, finishedWork.return, error); } recordLayoutEffectDuration(finishedWork); } else { try { instance.componentDidUpdate(prevProps, prevState, instance.__reactInternalSnapshotBeforeUpdate); } catch (error) { captureCommitPhaseError(finishedWork, finishedWork.return, error); } } } } function commitClassCallbacks(finishedWork) { // 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 = finishedWork.stateNode; { 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. try { commitCallbacks(updateQueue, instance); } catch (error) { captureCommitPhaseError(finishedWork, finishedWork.return, error); } } } function commitHostComponentMount(finishedWork) { var type = finishedWork.type; var props = finishedWork.memoizedProps; var instance = finishedWork.stateNode; try { commitMount(instance, type, props, finishedWork); } catch (error) { captureCommitPhaseError(finishedWork, finishedWork.return, error); } } function commitProfilerUpdate(finishedWork, current) { if (getExecutionContext() & CommitContext) { try { 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 (enableProfilerNestedUpdatePhase) { if (isCurrentUpdateNested()) { phase = "nested-update"; } } if (typeof onRender === "function") { onRender(finishedWork.memoizedProps.id, phase, finishedWork.actualDuration, finishedWork.treeBaseDuration, finishedWork.actualStartTime, commitTime); } if (enableProfilerCommitHooks) { 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; } } } catch (error) { captureCommitPhaseError(finishedWork, finishedWork.return, error); } } } function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork, committedLanes) { // When updating this function, also update reappearLayoutEffects, which does // most of the same things when an offscreen tree goes from hidden -> visible. var flags = finishedWork.flags; switch (finishedWork.tag) { case FunctionComponent: case ForwardRef: case SimpleMemoComponent: { recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); if (flags & Update) { commitHookLayoutEffects(finishedWork, Layout | HasEffect); } break; } case ClassComponent: { recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); if (flags & Update) { commitClassLayoutLifecycles(finishedWork, current); } if (flags & Callback) { commitClassCallbacks(finishedWork); } if (flags & Ref) { safelyAttachRef(finishedWork, finishedWork.return); } break; } case HostRoot: { recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); if (flags & Callback) { // 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 HostSingleton: case HostComponent: instance = getPublicInstance(finishedWork.child.stateNode); break; case ClassComponent: instance = finishedWork.child.stateNode; break; } } try { commitCallbacks(updateQueue, instance); } catch (error) { captureCommitPhaseError(finishedWork, finishedWork.return, error); } } } break; } case HostHoistable: case HostSingleton: case HostComponent: { recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); // 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 && flags & Update) { commitHostComponentMount(finishedWork); } if (flags & Ref) { safelyAttachRef(finishedWork, finishedWork.return); } break; } case Profiler: { recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); // TODO: Should this fire inside an offscreen tree? Or should it wait to // fire when the tree becomes visible again. if (flags & Update) { commitProfilerUpdate(finishedWork, current); } break; } case SuspenseComponent: { recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); break; } case OffscreenComponent: { var isModernRoot = (finishedWork.mode & ConcurrentMode) !== NoMode; if (isModernRoot) { var isHidden = finishedWork.memoizedState !== null; var newOffscreenSubtreeIsHidden = isHidden || offscreenSubtreeIsHidden; if (newOffscreenSubtreeIsHidden) ;else { // The Offscreen tree is visible. var wasHidden = current !== null && current.memoizedState !== null; var newOffscreenSubtreeWasHidden = wasHidden || offscreenSubtreeWasHidden; var prevOffscreenSubtreeIsHidden = offscreenSubtreeIsHidden; var prevOffscreenSubtreeWasHidden = offscreenSubtreeWasHidden; offscreenSubtreeIsHidden = newOffscreenSubtreeIsHidden; offscreenSubtreeWasHidden = newOffscreenSubtreeWasHidden; if (offscreenSubtreeWasHidden && !prevOffscreenSubtreeWasHidden) { // This is the root of a reappearing boundary. As we continue // traversing the layout effects, we must also re-mount layout // effects that were unmounted when the Offscreen subtree was // hidden. So this is a superset of the normal commitLayoutEffects. var includeWorkInProgressEffects = (finishedWork.subtreeFlags & LayoutMask) !== NoFlags$1; recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); } else { recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); } offscreenSubtreeIsHidden = prevOffscreenSubtreeIsHidden; offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden; } } else { recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); } if (flags & Ref) { var props = finishedWork.memoizedProps; if (props.mode === "manual") { safelyAttachRef(finishedWork, finishedWork.return); } else { safelyDetachRef(finishedWork, finishedWork.return); } } break; } default: { recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); break; } } } function commitAttachRef(finishedWork) { var ref = finishedWork.ref; if (ref !== null) { var instance = finishedWork.stateNode; var instanceToUse; switch (finishedWork.tag) { case HostHoistable: case HostSingleton: case HostComponent: instanceToUse = getPublicInstance(instance); break; default: instanceToUse = instance; } // Moved outside to ensure DCE works with this flag if (typeof ref === "function") { if (shouldProfile(finishedWork)) { try { startLayoutEffectTimer(); finishedWork.refCleanup = ref(instanceToUse); } finally { recordLayoutEffectDuration(finishedWork); } } else { finishedWork.refCleanup = ref(instanceToUse); } } else { { if (!ref.hasOwnProperty("current")) { error("Unexpected ref object provided for %s. " + "Use either a ref-setter function or React.createRef().", getComponentNameFromFiber(finishedWork)); } } // $FlowFixMe[incompatible-use] unable to narrow type to the non-function case 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); } // 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 fiber.stateNode = null; { 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. 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) { createContainerChildSet(); } function commitPlacement(finishedWork) { { return; } } 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 HostHoistable: case HostSingleton: case HostComponent: { if (!offscreenSubtreeWasHidden) { safelyDetachRef(deletedFiber, nearestMountedAncestor); } // Intentional fallthrough to next branch } 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(); recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); } return; } case FunctionComponent: case ForwardRef: case MemoComponent: case SimpleMemoComponent: { if (!offscreenSubtreeWasHidden) { var updateQueue = deletedFiber.updateQueue; if (updateQueue !== null) { var lastEffect = updateQueue.lastEffect; if (lastEffect !== null) { var firstEffect = lastEffect.next; var effect = firstEffect; do { var tag = effect.tag; var inst = effect.inst; var destroy = inst.destroy; if (destroy !== undefined) { if ((tag & Insertion) !== NoFlags) { inst.destroy = undefined; safelyCallDestroy(deletedFiber, nearestMountedAncestor, destroy); } else if ((tag & Layout) !== NoFlags) { if (shouldProfile(deletedFiber)) { startLayoutEffectTimer(); inst.destroy = undefined; safelyCallDestroy(deletedFiber, nearestMountedAncestor, destroy); recordLayoutEffectDuration(deletedFiber); } else { inst.destroy = undefined; safelyCallDestroy(deletedFiber, nearestMountedAncestor, destroy); } } } effect = effect.next; } while (effect !== firstEffect); } } } recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); return; } case ClassComponent: { if (!offscreenSubtreeWasHidden) { 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: { safelyDetachRef(deletedFiber, nearestMountedAncestor); if (deletedFiber.mode & ConcurrentMode) { // If this offscreen component is hidden, we already unmounted it. Before // deleting the children, track that it's already unmounted so that we // don't attempt to unmount the effects again. // TODO: If the tree is hidden, in most cases we should be able to skip // over the nested children entirely. An exception is we haven't yet found // the topmost host node to delete, which we already track on the stack. // But the other case is portals, which need to be detached no matter how // deeply they are nested. We should use a subtree flag to track whether a // subtree includes a nested portal. var prevOffscreenSubtreeWasHidden = offscreenSubtreeWasHidden; offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden || deletedFiber.memoizedState !== null; recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden; } else { recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); } break; } default: { recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); return; } } } function commitSuspenseCallback(finishedWork) {} function getRetryCache(finishedWork) { // TODO: Unify the interface for the retry cache so we don't have to switch // on the tag like this. switch (finishedWork.tag) { case SuspenseComponent: case SuspenseListComponent: { var retryCache = finishedWork.stateNode; if (retryCache === null) { retryCache = finishedWork.stateNode = new PossiblyWeakSet(); } return retryCache; } case OffscreenComponent: { var instance = finishedWork.stateNode; var _retryCache = instance._retryCache; if (_retryCache === null) { _retryCache = instance._retryCache = new PossiblyWeakSet(); } return _retryCache; } default: { throw new Error("Unexpected Suspense handler tag (" + finishedWork.tag + "). This is a " + "bug in React."); } } } function detachOffscreenInstance(instance) { var fiber = instance._current; if (fiber === null) { throw new Error("Calling Offscreen.detach before instance handle has been set."); } if ((instance._pendingVisibility & OffscreenDetached) !== NoFlags$1) { // The instance is already detached, this is a noop. return; } // TODO: There is an opportunity to optimise this by not entering commit phase // and unmounting effects directly. var root = enqueueConcurrentRenderForLane(fiber, SyncLane); if (root !== null) { instance._pendingVisibility |= OffscreenDetached; scheduleUpdateOnFiber(root, fiber, SyncLane); } } function attachOffscreenInstance(instance) { var fiber = instance._current; if (fiber === null) { throw new Error("Calling Offscreen.detach before instance handle has been set."); } if ((instance._pendingVisibility & OffscreenDetached) === NoFlags$1) { // The instance is already attached, this is a noop. return; } var root = enqueueConcurrentRenderForLane(fiber, SyncLane); if (root !== null) { instance._pendingVisibility &= ~OffscreenDetached; scheduleUpdateOnFiber(root, fiber, SyncLane); } } function attachSuspenseRetryListeners(finishedWork, wakeables) { // 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 retryCache = getRetryCache(finishedWork); 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 reconciliation, 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 (shouldProfile(finishedWork)) { 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); } } if (flags & Callback && offscreenSubtreeIsHidden) { var updateQueue = finishedWork.updateQueue; if (updateQueue !== null) { deferHiddenCallbacks(updateQueue); } } return; } case HostHoistable: case HostSingleton: 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); // TODO: We should mark a flag on the Suspense fiber itself, rather than // relying on the Offscreen fiber having a flag also being marked. The // reason is that this offscreen fiber might not be part of the work-in- // progress tree! It could have been reused from a previous render. This // doesn't lead to incorrect behavior because we don't rely on the flag // check alone; we also compare the states explicitly below. But for // modeling purposes, we _should_ be able to rely on the flag check alone. // So this is a bit fragile. // // Also, all this logic could/should move to the passive phase so it // doesn't block paint. var offscreenFiber = finishedWork.child; if (offscreenFiber.flags & Visibility) { // Throttle the appearance and disappearance of Suspense fallbacks. var isShowingFallback = finishedWork.memoizedState !== null; var wasShowingFallback = current !== null && current.memoizedState !== null; { if (isShowingFallback && !wasShowingFallback) { // Old behavior. Only mark when a fallback appears, not when // it disappears. markCommitTimeOfFallback(); } } } if (flags & Update) { try { commitSuspenseCallback(finishedWork); } catch (error) { captureCommitPhaseError(finishedWork, finishedWork.return, error); } var retryQueue = finishedWork.updateQueue; if (retryQueue !== null) { finishedWork.updateQueue = null; attachSuspenseRetryListeners(finishedWork, retryQueue); } } return; } case OffscreenComponent: { if (flags & Ref) { if (current !== null) { safelyDetachRef(current, current.return); } } var newState = finishedWork.memoizedState; var isHidden = newState !== null; var wasHidden = current !== null && current.memoizedState !== null; if (finishedWork.mode & ConcurrentMode) { // Before committing the children, track on the stack whether this // offscreen subtree was already hidden, so that we don't unmount the // effects again. var prevOffscreenSubtreeIsHidden = offscreenSubtreeIsHidden; var prevOffscreenSubtreeWasHidden = offscreenSubtreeWasHidden; offscreenSubtreeIsHidden = prevOffscreenSubtreeIsHidden || isHidden; offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden || wasHidden; recursivelyTraverseMutationEffects(root, finishedWork); offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden; offscreenSubtreeIsHidden = prevOffscreenSubtreeIsHidden; } else { recursivelyTraverseMutationEffects(root, finishedWork); } commitReconciliationEffects(finishedWork); var offscreenInstance = finishedWork.stateNode; // TODO: Add explicit effect flag to set _current. offscreenInstance._current = finishedWork; // Offscreen stores pending changes to visibility in `_pendingVisibility`. This is // to support batching of `attach` and `detach` calls. offscreenInstance._visibility &= ~OffscreenDetached; offscreenInstance._visibility |= offscreenInstance._pendingVisibility & OffscreenDetached; if (flags & Visibility) { // Track the current state on the Offscreen instance so we can // read it during an event if (isHidden) { offscreenInstance._visibility &= ~OffscreenVisible; } else { offscreenInstance._visibility |= OffscreenVisible; } if (isHidden) { var isUpdate = current !== null; var wasHiddenByAncestorOffscreen = offscreenSubtreeIsHidden || offscreenSubtreeWasHidden; // Only trigger disapper layout effects if: // - This is an update, not first mount. // - This Offscreen was not hidden before. // - Ancestor Offscreen was not hidden in previous commit. if (isUpdate && !wasHidden && !wasHiddenByAncestorOffscreen) { if ((finishedWork.mode & ConcurrentMode) !== NoMode) { // Disappear the layout effects of all the children recursivelyTraverseDisappearLayoutEffects(finishedWork); } } } // Offscreen with manual mode manages visibility manually. } // TODO: Move to passive phase if (flags & Update) { var offscreenQueue = finishedWork.updateQueue; if (offscreenQueue !== null) { var _retryQueue = offscreenQueue.retryQueue; if (_retryQueue !== null) { offscreenQueue.retryQueue = null; attachSuspenseRetryListeners(finishedWork, _retryQueue); } } } return; } case SuspenseListComponent: { recursivelyTraverseMutationEffects(root, finishedWork); commitReconciliationEffects(finishedWork); if (flags & Update) { var _retryQueue2 = finishedWork.updateQueue; if (_retryQueue2 !== null) { finishedWork.updateQueue = null; attachSuspenseRetryListeners(finishedWork, _retryQueue2); } } 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; var current = finishedWork.alternate; commitLayoutEffectOnFiber(root, current, finishedWork); inProgressLanes = null; inProgressRoot = null; } function recursivelyTraverseLayoutEffects(root, parentFiber, lanes) { var prevDebugFiber = getCurrentFiber(); if (parentFiber.subtreeFlags & LayoutMask) { var child = parentFiber.child; while (child !== null) { setCurrentFiber(child); var current = child.alternate; commitLayoutEffectOnFiber(root, current, child); child = child.sibling; } } setCurrentFiber(prevDebugFiber); } function disappearLayoutEffects(finishedWork) { switch (finishedWork.tag) { case FunctionComponent: case ForwardRef: case MemoComponent: case SimpleMemoComponent: { // TODO (Offscreen) Check: flags & LayoutStatic if (shouldProfile(finishedWork)) { try { startLayoutEffectTimer(); commitHookEffectListUnmount(Layout, finishedWork, finishedWork.return); } finally { recordLayoutEffectDuration(finishedWork); } } else { commitHookEffectListUnmount(Layout, finishedWork, finishedWork.return); } recursivelyTraverseDisappearLayoutEffects(finishedWork); break; } case ClassComponent: { // TODO (Offscreen) Check: flags & RefStatic safelyDetachRef(finishedWork, finishedWork.return); var instance = finishedWork.stateNode; if (typeof instance.componentWillUnmount === "function") { safelyCallComponentWillUnmount(finishedWork, finishedWork.return, instance); } recursivelyTraverseDisappearLayoutEffects(finishedWork); break; } case HostHoistable: case HostSingleton: case HostComponent: { // TODO (Offscreen) Check: flags & RefStatic safelyDetachRef(finishedWork, finishedWork.return); recursivelyTraverseDisappearLayoutEffects(finishedWork); break; } case OffscreenComponent: { // TODO (Offscreen) Check: flags & RefStatic safelyDetachRef(finishedWork, finishedWork.return); var isHidden = finishedWork.memoizedState !== null; if (isHidden) ;else { recursivelyTraverseDisappearLayoutEffects(finishedWork); } break; } default: { recursivelyTraverseDisappearLayoutEffects(finishedWork); break; } } } function recursivelyTraverseDisappearLayoutEffects(parentFiber) { // TODO (Offscreen) Check: flags & (RefStatic | LayoutStatic) var child = parentFiber.child; while (child !== null) { disappearLayoutEffects(child); child = child.sibling; } } function reappearLayoutEffects(finishedRoot, current, finishedWork, // This function visits both newly finished work and nodes that were re-used // from a previously committed tree. We cannot check non-static flags if the // node was reused. includeWorkInProgressEffects) { // Turn on layout effects in a tree that previously disappeared. var flags = finishedWork.flags; switch (finishedWork.tag) { case FunctionComponent: case ForwardRef: case SimpleMemoComponent: { recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); // TODO: Check flags & LayoutStatic commitHookLayoutEffects(finishedWork, Layout); break; } case ClassComponent: { recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); // TODO: Check for LayoutStatic flag var instance = finishedWork.stateNode; if (typeof instance.componentDidMount === "function") { try { instance.componentDidMount(); } catch (error) { captureCommitPhaseError(finishedWork, finishedWork.return, error); } } // Commit any callbacks that would have fired while the component // was hidden. var updateQueue = finishedWork.updateQueue; if (updateQueue !== null) { commitHiddenCallbacks(updateQueue, instance); } // If this is newly finished work, check for setState callbacks if (includeWorkInProgressEffects && flags & Callback) { commitClassCallbacks(finishedWork); } // TODO: Check flags & RefStatic safelyAttachRef(finishedWork, finishedWork.return); break; } // Unlike commitLayoutEffectsOnFiber, we don't need to handle HostRoot // because this function only visits nodes that are inside an // Offscreen fiber. // case HostRoot: { // ... // } case HostHoistable: case HostSingleton: case HostComponent: { recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); // 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 (includeWorkInProgressEffects && current === null && flags & Update) { commitHostComponentMount(finishedWork); } // TODO: Check flags & Ref safelyAttachRef(finishedWork, finishedWork.return); break; } case Profiler: { recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); // TODO: Figure out how Profiler updates should work with Offscreen if (includeWorkInProgressEffects && flags & Update) { commitProfilerUpdate(finishedWork, current); } break; } case SuspenseComponent: { recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); // TODO: Figure out how Suspense hydration callbacks should work break; } case OffscreenComponent: { var offscreenState = finishedWork.memoizedState; var isHidden = offscreenState !== null; if (isHidden) ;else { recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); } // TODO: Check flags & Ref safelyAttachRef(finishedWork, finishedWork.return); break; } default: { recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); break; } } } function recursivelyTraverseReappearLayoutEffects(finishedRoot, parentFiber, includeWorkInProgressEffects) { // This function visits both newly finished work and nodes that were re-used // from a previously committed tree. We cannot check non-static flags if the // node was reused. var childShouldIncludeWorkInProgressEffects = includeWorkInProgressEffects && (parentFiber.subtreeFlags & LayoutMask) !== NoFlags$1; // TODO (Offscreen) Check: flags & (RefStatic | LayoutStatic) var prevDebugFiber = getCurrentFiber(); var child = parentFiber.child; while (child !== null) { var current = child.alternate; reappearLayoutEffects(finishedRoot, current, child, childShouldIncludeWorkInProgressEffects); child = child.sibling; } setCurrentFiber(prevDebugFiber); } function commitHookPassiveMountEffects(finishedWork, hookFlags) { if (shouldProfile(finishedWork)) { startPassiveEffectTimer(); try { commitHookEffectListMount(hookFlags, finishedWork); } catch (error) { captureCommitPhaseError(finishedWork, finishedWork.return, error); } recordPassiveEffectDuration(finishedWork); } else { try { commitHookEffectListMount(hookFlags, finishedWork); } catch (error) { captureCommitPhaseError(finishedWork, finishedWork.return, error); } } } function commitPassiveMountEffects(root, finishedWork, committedLanes, committedTransitions) { setCurrentFiber(finishedWork); commitPassiveMountOnFiber(root, finishedWork); resetCurrentFiber(); } function recursivelyTraversePassiveMountEffects(root, parentFiber, committedLanes, committedTransitions) { var prevDebugFiber = getCurrentFiber(); if (parentFiber.subtreeFlags & PassiveMask) { var child = parentFiber.child; while (child !== null) { setCurrentFiber(child); commitPassiveMountOnFiber(root, child); child = child.sibling; } } setCurrentFiber(prevDebugFiber); } function commitPassiveMountOnFiber(finishedRoot, finishedWork, committedLanes, committedTransitions) { // When updating this function, also update reconnectPassiveEffects, which does // most of the same things when an offscreen tree goes from hidden -> visible, // or when toggling effects inside a hidden tree. var flags = finishedWork.flags; switch (finishedWork.tag) { case FunctionComponent: case ForwardRef: case SimpleMemoComponent: { recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork); if (flags & Passive$1) { commitHookPassiveMountEffects(finishedWork, Passive | HasEffect); } break; } case HostRoot: { recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork); break; } case LegacyHiddenComponent: { break; } case OffscreenComponent: { // TODO: Pass `current` as argument to this function var _instance3 = finishedWork.stateNode; var nextState = finishedWork.memoizedState; var isHidden = nextState !== null; if (isHidden) { if (_instance3._visibility & OffscreenPassiveEffectsConnected) { // The effects are currently connected. Update them. recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork); } else { if (finishedWork.mode & ConcurrentMode) ;else { // Legacy Mode: Fire the effects even if the tree is hidden. _instance3._visibility |= OffscreenPassiveEffectsConnected; recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork); } } } else { // Tree is visible if (_instance3._visibility & OffscreenPassiveEffectsConnected) { // The effects are currently connected. Update them. recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork); } else { // The effects are currently disconnected. Reconnect them, while also // firing effects inside newly mounted trees. This also applies to // the initial render. _instance3._visibility |= OffscreenPassiveEffectsConnected; recursivelyTraverseReconnectPassiveEffects(finishedRoot, finishedWork); } } break; } case CacheComponent: { recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork); break; } case TracingMarkerComponent: default: { recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork); break; } } } function recursivelyTraverseReconnectPassiveEffects(finishedRoot, parentFiber, committedLanes, committedTransitions, includeWorkInProgressEffects) { var prevDebugFiber = getCurrentFiber(); var child = parentFiber.child; while (child !== null) { reconnectPassiveEffects(finishedRoot, child); child = child.sibling; } setCurrentFiber(prevDebugFiber); } function reconnectPassiveEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, // This function visits both newly finished work and nodes that were re-used // from a previously committed tree. We cannot check non-static flags if the // node was reused. includeWorkInProgressEffects) { switch (finishedWork.tag) { case FunctionComponent: case ForwardRef: case SimpleMemoComponent: { recursivelyTraverseReconnectPassiveEffects(finishedRoot, finishedWork); // TODO: Check for PassiveStatic flag commitHookPassiveMountEffects(finishedWork, Passive); break; } // Unlike commitPassiveMountOnFiber, we don't need to handle HostRoot // because this function only visits nodes that are inside an // Offscreen fiber. // case HostRoot: { // ... // } case LegacyHiddenComponent: { break; } case OffscreenComponent: { var _instance4 = finishedWork.stateNode; var nextState = finishedWork.memoizedState; var isHidden = nextState !== null; if (isHidden) { if (_instance4._visibility & OffscreenPassiveEffectsConnected) { // The effects are currently connected. Update them. recursivelyTraverseReconnectPassiveEffects(finishedRoot, finishedWork); } else { if (finishedWork.mode & ConcurrentMode) ;else { // Legacy Mode: Fire the effects even if the tree is hidden. _instance4._visibility |= OffscreenPassiveEffectsConnected; recursivelyTraverseReconnectPassiveEffects(finishedRoot, finishedWork); } } } else { // Tree is visible // Since we're already inside a reconnecting tree, it doesn't matter // whether the effects are currently connected. In either case, we'll // continue traversing the tree and firing all the effects. // // We do need to set the "connected" flag on the instance, though. _instance4._visibility |= OffscreenPassiveEffectsConnected; recursivelyTraverseReconnectPassiveEffects(finishedRoot, finishedWork); } break; } case CacheComponent: { recursivelyTraverseReconnectPassiveEffects(finishedRoot, finishedWork); break; } case TracingMarkerComponent: default: { recursivelyTraverseReconnectPassiveEffects(finishedRoot, finishedWork); break; } } } function commitPassiveUnmountEffects(finishedWork) { setCurrentFiber(finishedWork); commitPassiveUnmountOnFiber(finishedWork); resetCurrentFiber(); } // If we're inside a brand new tree, or a tree that was already visible, then we // should only suspend host components that have a ShouldSuspendCommit flag. // Components without it haven't changed since the last commit, so we can skip // over those. // // When we enter a tree that is being revealed (going from hidden -> visible), // we need to suspend _any_ component that _may_ suspend. Even if they're // already in the "current" tree. Because their visibility has changed, the // browser may not have prerendered them yet. So we check the MaySuspendCommit // flag instead. var suspenseyCommitFlag = ShouldSuspendCommit; function accumulateSuspenseyCommit(finishedWork) { accumulateSuspenseyCommitOnFiber(finishedWork); } function recursivelyAccumulateSuspenseyCommit(parentFiber) { if (parentFiber.subtreeFlags & suspenseyCommitFlag) { var child = parentFiber.child; while (child !== null) { accumulateSuspenseyCommitOnFiber(child); child = child.sibling; } } } function accumulateSuspenseyCommitOnFiber(fiber) { switch (fiber.tag) { case HostHoistable: { recursivelyAccumulateSuspenseyCommit(fiber); if (fiber.flags & suspenseyCommitFlag) { if (fiber.memoizedState !== null) { suspendResource(); } } break; } case HostComponent: { recursivelyAccumulateSuspenseyCommit(fiber); break; } case HostRoot: case HostPortal: { { recursivelyAccumulateSuspenseyCommit(fiber); } break; } case OffscreenComponent: { var isHidden = fiber.memoizedState !== null; if (isHidden) ;else { var current = fiber.alternate; var wasHidden = current !== null && current.memoizedState !== null; if (wasHidden) { // This tree is being revealed. Visit all newly visible suspensey // instances, even if they're in the current tree. var prevFlags = suspenseyCommitFlag; suspenseyCommitFlag = MaySuspendCommit; recursivelyAccumulateSuspenseyCommit(fiber); suspenseyCommitFlag = prevFlags; } else { recursivelyAccumulateSuspenseyCommit(fiber); } } break; } default: { recursivelyAccumulateSuspenseyCommit(fiber); } } } function detachAlternateSiblings(parentFiber) { // 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 = parentFiber.alternate; if (previousFiber !== null) { var detachedChild = previousFiber.child; if (detachedChild !== null) { previousFiber.child = null; do { // $FlowFixMe[incompatible-use] found when upgrading Flow var detachedSibling = detachedChild.sibling; // $FlowFixMe[incompatible-use] found when upgrading Flow detachedChild.sibling = null; detachedChild = detachedSibling; } while (detachedChild !== null); } } } function commitHookPassiveUnmountEffects(finishedWork, nearestMountedAncestor, hookFlags) { if (shouldProfile(finishedWork)) { startPassiveEffectTimer(); commitHookEffectListUnmount(hookFlags, finishedWork, nearestMountedAncestor); recordPassiveEffectDuration(finishedWork); } else { commitHookEffectListUnmount(hookFlags, finishedWork, nearestMountedAncestor); } } function recursivelyTraversePassiveUnmountEffects(parentFiber) { // Deletions effects can be scheduled on any fiber type. They need to happen // before the children effects have fired. var deletions = parentFiber.deletions; if ((parentFiber.flags & ChildDeletion) !== NoFlags$1) { if (deletions !== null) { for (var i = 0; i < deletions.length; i++) { var childToDelete = deletions[i]; // TODO: Convert this to use recursion nextEffect = childToDelete; commitPassiveUnmountEffectsInsideOfDeletedTree_begin(childToDelete, parentFiber); } } detachAlternateSiblings(parentFiber); } var prevDebugFiber = getCurrentFiber(); // TODO: Split PassiveMask into separate masks for mount and unmount? if (parentFiber.subtreeFlags & PassiveMask) { var child = parentFiber.child; while (child !== null) { setCurrentFiber(child); commitPassiveUnmountOnFiber(child); child = child.sibling; } } setCurrentFiber(prevDebugFiber); } function commitPassiveUnmountOnFiber(finishedWork) { switch (finishedWork.tag) { case FunctionComponent: case ForwardRef: case SimpleMemoComponent: { recursivelyTraversePassiveUnmountEffects(finishedWork); if (finishedWork.flags & Passive$1) { commitHookPassiveUnmountEffects(finishedWork, finishedWork.return, Passive | HasEffect); } break; } case OffscreenComponent: { var instance = finishedWork.stateNode; var nextState = finishedWork.memoizedState; var isHidden = nextState !== null; if (isHidden && instance._visibility & OffscreenPassiveEffectsConnected && ( // For backwards compatibility, don't unmount when a tree suspends. In // the future we may change this to unmount after a delay. finishedWork.return === null || finishedWork.return.tag !== SuspenseComponent)) { // The effects are currently connected. Disconnect them. // TODO: Add option or heuristic to delay before disconnecting the // effects. Then if the tree reappears before the delay has elapsed, we // can skip toggling the effects entirely. instance._visibility &= ~OffscreenPassiveEffectsConnected; recursivelyTraverseDisconnectPassiveEffects(finishedWork); } else { recursivelyTraversePassiveUnmountEffects(finishedWork); } break; } default: { recursivelyTraversePassiveUnmountEffects(finishedWork); break; } } } function recursivelyTraverseDisconnectPassiveEffects(parentFiber) { // Deletions effects can be scheduled on any fiber type. They need to happen // before the children effects have fired. var deletions = parentFiber.deletions; if ((parentFiber.flags & ChildDeletion) !== NoFlags$1) { if (deletions !== null) { for (var i = 0; i < deletions.length; i++) { var childToDelete = deletions[i]; // TODO: Convert this to use recursion nextEffect = childToDelete; commitPassiveUnmountEffectsInsideOfDeletedTree_begin(childToDelete, parentFiber); } } detachAlternateSiblings(parentFiber); } var prevDebugFiber = getCurrentFiber(); // TODO: Check PassiveStatic flag var child = parentFiber.child; while (child !== null) { setCurrentFiber(child); disconnectPassiveEffect(child); child = child.sibling; } setCurrentFiber(prevDebugFiber); } function disconnectPassiveEffect(finishedWork) { switch (finishedWork.tag) { case FunctionComponent: case ForwardRef: case SimpleMemoComponent: { // TODO: Check PassiveStatic flag commitHookPassiveUnmountEffects(finishedWork, finishedWork.return, Passive); // When disconnecting passive effects, we fire the effects in the same // order as during a deletiong: parent before child recursivelyTraverseDisconnectPassiveEffects(finishedWork); break; } case OffscreenComponent: { var instance = finishedWork.stateNode; if (instance._visibility & OffscreenPassiveEffectsConnected) { instance._visibility &= ~OffscreenPassiveEffectsConnected; recursivelyTraverseDisconnectPassiveEffects(finishedWork); } break; } default: { recursivelyTraverseDisconnectPassiveEffects(finishedWork); 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. 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: { commitHookPassiveUnmountEffects(current, nearestMountedAncestor, Passive); break; } } } function invokeLayoutEffectMountInDEV(fiber) { { // We don't need to re-check StrictEffectsMode here. // This function is only called if that check has already passed. switch (fiber.tag) { case FunctionComponent: case ForwardRef: case SimpleMemoComponent: { try { commitHookEffectListMount(Layout | HasEffect, fiber); } catch (error) { captureCommitPhaseError(fiber, fiber.return, error); } break; } case ClassComponent: { var instance = fiber.stateNode; if (typeof instance.componentDidMount === "function") { try { instance.componentDidMount(); } catch (error) { captureCommitPhaseError(fiber, fiber.return, error); } } break; } } } } function invokePassiveEffectMountInDEV(fiber) { { // We don't need to re-check StrictEffectsMode here. // This function is only called if that check has already passed. switch (fiber.tag) { case FunctionComponent: case ForwardRef: case SimpleMemoComponent: { try { commitHookEffectListMount(Passive | HasEffect, fiber); } catch (error) { captureCommitPhaseError(fiber, fiber.return, error); } break; } } } } function invokeLayoutEffectUnmountInDEV(fiber) { { // We don't need to re-check StrictEffectsMode here. // This function is only called if that check has already passed. switch (fiber.tag) { case FunctionComponent: case ForwardRef: case SimpleMemoComponent: { try { commitHookEffectListUnmount(Layout | HasEffect, fiber, fiber.return); } catch (error) { captureCommitPhaseError(fiber, fiber.return, error); } break; } case ClassComponent: { var instance = fiber.stateNode; if (typeof instance.componentWillUnmount === "function") { safelyCallComponentWillUnmount(fiber, fiber.return, instance); } break; } } } } function invokePassiveEffectUnmountInDEV(fiber) { { // We don't need to re-check StrictEffectsMode here. // This function is only called if that check has already passed. switch (fiber.tag) { case FunctionComponent: case ForwardRef: case SimpleMemoComponent: { try { commitHookEffectListUnmount(Passive | HasEffect, fiber, fiber.return); } catch (error) { captureCommitPhaseError(fiber, fiber.return, error); } } } } } if (typeof Symbol === "function" && Symbol.for) { var symbolFor = Symbol.for; symbolFor("selector.component"); symbolFor("selector.has_pseudo_class"); symbolFor("selector.role"); symbolFor("selector.test_id"); symbolFor("selector.text"); } var ReactCurrentActQueue$1 = 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. // $FlowFixMe[cannot-resolve-name] Flow doesn't know about IS_REACT_ACT_ENVIRONMENT global typeof IS_REACT_ACT_ENVIRONMENT !== "undefined" // $FlowFixMe[cannot-resolve-name] ? IS_REACT_ACT_ENVIRONMENT : undefined; // $FlowFixMe[cannot-resolve-name] - Flow doesn't know about jest return warnsIfNotActing; } } function isConcurrentActEnvironment() { { var isReactActEnvironmentGlobal = // $FlowFixMe[cannot-resolve-name] Flow doesn't know about IS_REACT_ACT_ENVIRONMENT global typeof IS_REACT_ACT_ENVIRONMENT !== "undefined" // $FlowFixMe[cannot-resolve-name] ? IS_REACT_ACT_ENVIRONMENT : undefined; if (!isReactActEnvironmentGlobal && ReactCurrentActQueue$1.current !== null) { // TODO: Include link to relevant documentation page. error("The current testing environment is not configured to support " + "act(...)"); } return isReactActEnvironmentGlobal; } } var PossiblyWeakMap = typeof WeakMap === "function" ? WeakMap : Map; var ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher, ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner, ReactCurrentBatchConfig = ReactSharedInternals.ReactCurrentBatchConfig, ReactCurrentActQueue = 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; var NotSuspended = 0; var SuspendedOnError = 1; var SuspendedOnData = 2; var SuspendedOnImmediate = 3; var SuspendedOnInstance = 4; var SuspendedOnInstanceAndReadyToContinue = 5; var SuspendedOnDeprecatedThrowPromise = 6; var SuspendedAndReadyToContinue = 7; var SuspendedOnHydration = 8; // When this is true, the work-in-progress fiber just suspended (or errored) and // we've yet to unwind the stack. In some cases, we may yield to the main thread // after this happens. If the fiber is pinged before we resume, we can retry // immediately instead of unwinding the stack. var workInProgressSuspendedReason = NotSuspended; var workInProgressThrownValue = null; // Whether a ping listener was attached during this render. This is slightly // different that whether something suspended, because we don't add multiple // listeners to a promise we've already seen (per root and lane). var workInProgressRootDidAttachPingListener = false; // A contextual version of workInProgressRootRenderLanes. It is a superset of // the lanes that we started working on at the root. When we enter a subtree // that is currently hidden, we add the lanes that would have committed if // the hidden tree hadn't been deferred. This is modified by the // HiddenContext module. // // Most things in the work loop should deal with workInProgressRootRenderLanes. // Most things in begin/complete phases should deal with entangledRenderLanes. var entangledRenderLanes = NoLanes; // Whether to root completed, errored, suspended, etc. var workInProgressRootExitStatus = RootInProgress; // A fatal error, if one is thrown var workInProgressRootFatalError = null; // 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; // If this lane scheduled deferred work, this is the lane of the deferred task. var workInProgressDeferredLane = NoLane; // 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 either committed a fallback, or when a fallback was // filled in with the resolved UI. This lets us throttle the appearance of new // content as it streams in, to minimize jank. // TODO: Think of a better name for this variable? var globalMostRecentFallbackTime = 0; var FALLBACK_THROTTLE_MS = 300; // 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$1() + 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 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; var isRunningInsertionEffect = false; function getWorkInProgressRoot() { return workInProgressRoot; } function getWorkInProgressRootRenderLanes() { return workInProgressRootRenderLanes; } function isWorkLoopSuspendedOnData() { return workInProgressSuspendedReason === SuspendedOnData; } 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 transition = requestCurrentTransition(); if (transition !== null) { { var batchConfigTransition = ReactCurrentBatchConfig.transition; if (!batchConfigTransition._updatedFibers) { batchConfigTransition._updatedFibers = new Set(); } batchConfigTransition._updatedFibers.add(fiber); } var actionScopeLane = peekEntangledActionLane(); return actionScopeLane !== NoLane // We're inside an async action scope. Reuse the same lane. ? actionScopeLane // We may or may not be inside an async action scope. If we are, this : // is the first update in that scope. Either way, we need to get a // fresh transition lane. requestTransitionLane(); } // 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 requestDeferredLane() { if (workInProgressDeferredLane === NoLane) { // If there are multiple useDeferredValue hooks in the same render, the // tasks that they spawn should all be batched together, so they should all // receive the same lane. // Check the priority of the current render to decide the priority of the // deferred task. // OffscreenLane is used for prerendering, but we also use OffscreenLane // for incremental hydration. It's given the lowest priority because the // initial HTML is the same as the final UI. But useDeferredValue during // hydration is an exception — we need to upgrade the UI to the final // value. So if we're currently hydrating, we treat it like a transition. var isPrerendering = includesSomeLane(workInProgressRootRenderLanes, OffscreenLane) && !getIsHydrating(); if (isPrerendering) { // There's only one OffscreenLane, so if it contains deferred work, we // should just reschedule using the same lane. workInProgressDeferredLane = OffscreenLane; } else { // Everything else is spawned as a transition. workInProgressDeferredLane = claimNextTransitionLane(); } } // Mark the parent Suspense boundary so it knows to spawn the deferred lane. var suspenseHandler = getSuspenseHandler(); if (suspenseHandler !== null) { // TODO: As an optimization, we shouldn't entangle the lanes at the root; we // can entangle them using the baseLanes of the Suspense boundary instead. // We only need to do something special if there's no Suspense boundary. suspenseHandler.flags |= DidDefer; } return workInProgressDeferredLane; } function peekDeferredLane() { return workInProgressDeferredLane; } function scheduleUpdateOnFiber(root, fiber, lane) { { if (isRunningInsertionEffect) { error("useInsertionEffect must not schedule updates."); } } { if (isFlushingPassiveEffects) { didScheduleUpdateDuringPassiveEffects = true; } } // Check if the work loop is currently suspended and waiting for data to // finish loading. if ( // Suspended render phase root === workInProgressRoot && workInProgressSuspendedReason === SuspendedOnData || // Suspended commit phase root.cancelPendingCommit !== null) { // The incoming update might unblock the current render. Interrupt the // current attempt and restart from the top. prepareFreshStack(root, NoLanes); markRootSuspended(root, workInProgressRootRenderLanes, workInProgressDeferredLane); } // Mark that the root has a pending update. markRootUpdated(root, lane); 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. 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(root, workInProgressRootRenderLanes, workInProgressDeferredLane); } } ensureRootIsScheduled(root); if (lane === SyncLane && executionContext === NoContext && (fiber.mode & ConcurrentMode) === NoMode) { if (ReactCurrentActQueue.isBatchingLegacy) ;else { // 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(); flushSyncWorkOnLegacyRootsOnly(); } } } } 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 (executionContext & RenderContext) !== NoContext; } // This is the entry point for every concurrent task, i.e. anything that // goes through Scheduler. function performConcurrentWorkOnRoot(root, didTimeout) { { resetNestedUpdateFlag(); } 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. // TODO: This was already computed in the caller. Pass it as an argument. 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) { var renderWasConcurrent = shouldTimeSlice; do { 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. markRootSuspended(root, lanes, NoLane); } 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 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 assume the tree is now consistent because we didn't yield to any // concurrent events. renderWasConcurrent = false; // Need to check the exit status again. continue; } // Check if something threw if (exitStatus === RootErrored) { var originallyAttemptedLanes = lanes; var errorRetryLanes = getLanesToRetrySynchronouslyOnError(root, originallyAttemptedLanes); if (errorRetryLanes !== NoLanes) { lanes = errorRetryLanes; exitStatus = recoverFromConcurrentError(root, originallyAttemptedLanes, errorRetryLanes); renderWasConcurrent = false; } } if (exitStatus === RootFatalErrored) { var fatalError = workInProgressRootFatalError; prepareFreshStack(root, NoLanes); markRootSuspended(root, lanes, NoLane); ensureRootIsScheduled(root); 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, finishedWork, lanes); } break; } while (true); } ensureRootIsScheduled(root); return getContinuationForRoot(root, originalCallbackNode); } function recoverFromConcurrentError(root, originallyAttemptedLanes, 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; var wasRootDehydrated = isRootDehydrated(root); if (wasRootDehydrated) { // 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(); } } var exitStatus = renderRootSync(root, errorRetryLanes); if (exitStatus !== RootErrored) { // Successfully finished rendering on retry if (workInProgressRootDidAttachPingListener && !wasRootDehydrated) { // During the synchronous render, we attached additional ping listeners. // This is highly suggestive of an uncached promise (though it's not the // only reason this would happen). If it was an uncached promise, then // it may have masked a downstream error from ocurring without actually // fixing it. Example: // // use(Promise.resolve('uncached')) // throw new Error('Oops!') // // When this happens, there's a conflict between blocking potential // concurrent data races and unwrapping uncached promise values. We // have to choose one or the other. Because the data race recovery is // a last ditch effort, we'll disable it. root.errorRecoveryDisabledLanes = mergeLanes(root.errorRecoveryDisabledLanes, originallyAttemptedLanes); // Mark the current render as suspended and force it to restart. Once // these lanes finish successfully, we'll re-enable the error recovery // mechanism for subsequent updates. workInProgressRootInterleavedUpdatedLanes |= originallyAttemptedLanes; return RootSuspendedWithDelay; } // 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 { // $FlowFixMe[method-unbinding] workInProgressRootRecoverableErrors.push.apply(workInProgressRootRecoverableErrors, errors); } } function finishConcurrentRender(root, exitStatus, finishedWork, lanes) { // TODO: The fact that most of these branches are identical suggests that some // of the exit statuses are not best modeled as exit statuses and should be // tracked orthogonally. switch (exitStatus) { case RootInProgress: case RootFatalErrored: { throw new Error("Root did not complete. This is a bug in React."); } case RootSuspendedWithDelay: { 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. markRootSuspended(root, lanes, workInProgressDeferredLane); return; } // Commit the placeholder. break; } case RootErrored: case RootSuspended: case RootCompleted: { break; } default: { throw new Error("Unknown root exit status."); } } if (shouldForceFlushFallbacksInDEV()) { // We're inside an `act` scope. Commit immediately. commitRoot(root, workInProgressRootRecoverableErrors, workInProgressTransitions, workInProgressDeferredLane); } else { if (includesOnlyRetries(lanes) && exitStatus === RootSuspended) { // 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$1(); // Don't bother with a very short suspense time. if (msUntilTimeout > 10) { markRootSuspended(root, lanes, workInProgressDeferredLane); var nextLanes = getNextLanes(root, NoLanes); if (nextLanes !== NoLanes) { // There's additional work we can do on this root. We might as well // attempt to work on that while we're suspended. return; } // 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. // TODO: Combine retry throttling with Suspensey commits. Right now they // run one after the other. root.timeoutHandle = scheduleTimeout(commitRootWhenReady.bind(null, root, finishedWork, workInProgressRootRecoverableErrors, workInProgressTransitions, lanes, workInProgressDeferredLane), msUntilTimeout); return; } } commitRootWhenReady(root, finishedWork, workInProgressRootRecoverableErrors, workInProgressTransitions, lanes, workInProgressDeferredLane); } } function commitRootWhenReady(root, finishedWork, recoverableErrors, transitions, lanes, spawnedLane) { // TODO: Combine retry throttling with Suspensey commits. Right now they run // one after the other. if (includesOnlyNonUrgentLanes(lanes)) { // the suspensey resources. The renderer is responsible for accumulating // all the load events. This all happens in a single synchronous // transaction, so it track state in its own module scope. accumulateSuspenseyCommit(finishedWork); // At the end, ask the renderer if it's ready to commit, or if we should // suspend. If it's not ready, it will return a callback to subscribe to // a ready event. var schedulePendingCommit = waitForCommitToBeReady(); if (schedulePendingCommit !== null) { // NOTE: waitForCommitToBeReady returns a subscribe function so that we // only allocate a function if the commit isn't ready yet. The other // pattern would be to always pass a callback to waitForCommitToBeReady. // Not yet ready to commit. Delay the commit until the renderer notifies // us that it's ready. This will be canceled if we start work on the // root again. root.cancelPendingCommit = schedulePendingCommit(commitRoot.bind(null, root, recoverableErrors, transitions)); markRootSuspended(root, lanes, spawnedLane); return; } } // Otherwise, commit immediately. commitRoot(root, recoverableErrors, transitions, spawnedLane); } 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(root, suspendedLanes, spawnedLane) { // 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$1(root, suspendedLanes, spawnedLane); } // This is the entry point for synchronous tasks that don't go // through Scheduler function performSyncWorkOnRoot(root, lanes) { if ((executionContext & (RenderContext | CommitContext)) !== NoContext) { throw new Error("Should not already be working."); } var didFlushPassiveEffects = flushPassiveEffects(); if (didFlushPassiveEffects) { // If passive effects were flushed, exit to the outer work loop in the root // scheduler, so we can recompute the priority. // TODO: We don't actually need this `ensureRootIsScheduled` call because // this path is only reachable if the root is already part of the schedule. // I'm including it only for consistency with the other exit points from // this function. Can address in a subsequent refactor. ensureRootIsScheduled(root); return null; } { syncNestedUpdateFlag(); } 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 originallyAttemptedLanes = lanes; var errorRetryLanes = getLanesToRetrySynchronouslyOnError(root, originallyAttemptedLanes); if (errorRetryLanes !== NoLanes) { lanes = errorRetryLanes; exitStatus = recoverFromConcurrentError(root, originallyAttemptedLanes, errorRetryLanes); } } if (exitStatus === RootFatalErrored) { var fatalError = workInProgressRootFatalError; prepareFreshStack(root, NoLanes); markRootSuspended(root, lanes, NoLane); ensureRootIsScheduled(root); 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. markRootSuspended(root, lanes, workInProgressDeferredLane); ensureRootIsScheduled(root); return null; } // 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, workInProgressDeferredLane); // Before exiting, make sure there's a callback scheduled for the next // pending level. ensureRootIsScheduled(root); return null; } function getExecutionContext() { return executionContext; } function batchedUpdates(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.isBatchingLegacy) { resetRenderTimer(); flushSyncWorkOnLegacyRootsOnly(); } } } // Warning, this opts-out of checking the function body. // eslint-disable-next-line no-unused-vars // eslint-disable-next-line no-redeclare // 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.transition; var previousPriority = getCurrentUpdatePriority(); try { ReactCurrentBatchConfig.transition = null; setCurrentUpdatePriority(DiscreteEventPriority); if (fn) { return fn(); } else { return undefined; } } finally { setCurrentUpdatePriority(previousPriority); ReactCurrentBatchConfig.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) { flushSyncWorkOnAllRoots(); } } } // hidden subtree. The stack logic is managed there because that's the only // place that ever modifies it. Which module it lives in doesn't matter for // performance because this function will get inlined regardless function setEntangledRenderLanes(newEntangledRenderLanes) { entangledRenderLanes = newEntangledRenderLanes; } function getEntangledRenderLanes() { return entangledRenderLanes; } function resetWorkInProgressStack() { if (workInProgress === null) return; var interruptedWork; if (workInProgressSuspendedReason === NotSuspended) { // Normal case. Work-in-progress hasn't started yet. Unwind all // its parents. interruptedWork = workInProgress.return; } else { // Work-in-progress is in suspended state. Reset the work loop and unwind // both the suspended fiber and all its parents. resetSuspendedWorkLoopOnUnwind(workInProgress); interruptedWork = workInProgress; } while (interruptedWork !== null) { var current = interruptedWork.alternate; unwindInterruptedWork(current, interruptedWork); interruptedWork = interruptedWork.return; } workInProgress = null; } 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[incompatible-call] Complains noTimeout is not a TimeoutID, despite the check above cancelTimeout(timeoutHandle); } var cancelPendingCommit = root.cancelPendingCommit; if (cancelPendingCommit !== null) { root.cancelPendingCommit = null; cancelPendingCommit(); } resetWorkInProgressStack(); workInProgressRoot = root; var rootWorkInProgress = createWorkInProgress(root.current, null); workInProgress = rootWorkInProgress; workInProgressRootRenderLanes = lanes; workInProgressSuspendedReason = NotSuspended; workInProgressThrownValue = null; workInProgressRootDidAttachPingListener = false; workInProgressRootExitStatus = RootInProgress; workInProgressRootFatalError = null; workInProgressRootSkippedLanes = NoLanes; workInProgressRootInterleavedUpdatedLanes = NoLanes; workInProgressRootPingedLanes = NoLanes; workInProgressDeferredLane = NoLane; workInProgressRootConcurrentErrors = null; workInProgressRootRecoverableErrors = null; // Get the lanes that are entangled with whatever we're about to render. We // track these separately so we can distinguish the priority of the render // task from the priority of the lanes it is entangled with. For example, a // transition may not be allowed to finish unless it includes the Sync lane, // which is currently suspended. We should be able to render the Transition // and Sync lane in the same batch, but at Transition priority, because the // Sync lane already suspended. entangledRenderLanes = getEntangledLanes(root, lanes); finishQueueingConcurrentUpdates(); { ReactStrictModeWarnings.discardPendingWarnings(); } return rootWorkInProgress; } function resetSuspendedWorkLoopOnUnwind(fiber) { // Reset module-level state that was set during the render phase. resetContextDependencies(); resetHooksOnUnwind(fiber); resetChildReconcilerOnUnwind(); } function handleThrow(root, thrownValue) { // A component threw an exception. Usually this is because it suspended, but // it also includes regular program errors. // // We're either going to unwind the stack to show a Suspense or error // boundary, or we're going to replay the component again. Like after a // promise resolves. // // Until we decide whether we're going to unwind or replay, we should preserve // the current state of the work loop without resetting anything. // // If we do decide to unwind the stack, module-level variables will be reset // in resetSuspendedWorkLoopOnUnwind. // These should be reset immediately because they're only supposed to be set // when React is executing user code. resetHooksAfterThrow(); resetCurrentFiber(); ReactCurrentOwner$1.current = null; if (thrownValue === SuspenseException) { // This is a special type of exception used for Suspense. For historical // reasons, the rest of the Suspense implementation expects the thrown value // to be a thenable, because before `use` existed that was the (unstable) // API for suspending. This implementation detail can change later, once we // deprecate the old API in favor of `use`. thrownValue = getSuspendedThenable(); workInProgressSuspendedReason = shouldRemainOnPreviousScreen() && // Check if there are other pending updates that might possibly unblock this // component from suspending. This mirrors the check in // renderDidSuspendDelayIfPossible. We should attempt to unify them somehow. // TODO: Consider unwinding immediately, using the // SuspendedOnHydration mechanism. !includesNonIdleWork(workInProgressRootSkippedLanes) && !includesNonIdleWork(workInProgressRootInterleavedUpdatedLanes) // Suspend work loop until data resolves ? SuspendedOnData // Don't suspend work loop, except to check if the data has : // immediately resolved (i.e. in a microtask). Otherwise, trigger the // nearest Suspense fallback. SuspendedOnImmediate; } else if (thrownValue === SuspenseyCommitException) { thrownValue = getSuspendedThenable(); workInProgressSuspendedReason = SuspendedOnInstance; } else if (thrownValue === SelectiveHydrationException) { // An update flowed into a dehydrated boundary. Before we can apply the // update, we need to finish hydrating. Interrupt the work-in-progress // render so we can restart at the hydration lane. // // The ideal implementation would be able to switch contexts without // unwinding the current stack. // // We could name this something more general but as of now it's the only // case where we think this should happen. workInProgressSuspendedReason = SuspendedOnHydration; } else { // This is a regular error. var isWakeable = thrownValue !== null && typeof thrownValue === "object" && typeof thrownValue.then === "function"; workInProgressSuspendedReason = isWakeable // A wakeable object was thrown by a legacy Suspense implementation. ? // This has slightly different behavior than suspending with `use`. SuspendedOnDeprecatedThrowPromise // This is a regular error. If something earlier in the component already : // suspended, we must clear the thenable state to unblock the work loop. SuspendedOnError; } workInProgressThrownValue = thrownValue; var erroredWork = workInProgress; if (erroredWork === null) { // This is a fatal error workInProgressRootExitStatus = RootFatalErrored; workInProgressRootFatalError = thrownValue; return; } if (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); } } function shouldRemainOnPreviousScreen() { // This is asking whether it's better to suspend the transition and remain // on the previous screen, versus showing a fallback as soon as possible. It // takes into account both the priority of render and also whether showing a // fallback would produce a desirable user experience. var handler = getSuspenseHandler(); if (handler === null) { // There's no Suspense boundary that can provide a fallback. We have no // choice but to remain on the previous screen. // NOTE: We do this even for sync updates, for lack of any better option. In // the future, we may change how we handle this, like by putting the whole // root into a "detached" mode. return true; } // TODO: Once `use` has fully replaced the `throw promise` pattern, we should // be able to remove the equivalent check in finishConcurrentRender, and rely // just on this one. if (includesOnlyTransitions(workInProgressRootRenderLanes)) { if (getShellBoundary() === null) { // We're rendering inside the "shell" of the app. Activating the nearest // fallback would cause visible content to disappear. It's better to // suspend the transition and remain on the previous screen. return true; } else { // We're rendering content that wasn't part of the previous screen. // Rather than block the transition, it's better to show a fallback as // soon as possible. The appearance of any nested fallbacks will be // throttled to avoid jank. return false; } } if (includesOnlyRetries(workInProgressRootRenderLanes) || // In this context, an OffscreenLane counts as a Retry // TODO: It's become increasingly clear that Retries and Offscreen are // deeply connected. They probably can be unified further. includesSomeLane(workInProgressRootRenderLanes, OffscreenLane)) { // During a retry, we can suspend rendering if the nearest Suspense boundary // is the boundary of the "shell", because we're guaranteed not to block // any new content from appearing. // // The reason we must check if this is a retry is because it guarantees // that suspending the work loop won't block an actual update, because // retries don't "update" anything; they fill in fallbacks that were left // behind by a previous transition. return handler === getShellBoundary(); } // For all other Lanes besides Transitions and Retries, we should not wait // for the data to load. return false; } function pushDispatcher(container) { var prevDispatcher = ReactCurrentDispatcher.current; ReactCurrentDispatcher.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.current = prevDispatcher; } function markCommitTimeOfFallback() { globalMostRecentFallbackTime = now$1(); } function markSkippedUpdateLanes(lane) { workInProgressRootSkippedLanes = mergeLanes(lane, workInProgressRootSkippedLanes); } function renderDidSuspend() { if (workInProgressRootExitStatus === RootInProgress) { workInProgressRootExitStatus = RootSuspended; } } function renderDidSuspendDelayIfPossible() { workInProgressRootExitStatus = RootSuspendedWithDelay; // Check if there are updates that we skipped tree that might have unblocked // this render. if ((includesNonIdleWork(workInProgressRootSkippedLanes) || includesNonIdleWork(workInProgressRootInterleavedUpdatedLanes)) && workInProgressRoot !== null) { // 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. // TODO: Consider unwinding immediately, using the // SuspendedOnHydration mechanism. markRootSuspended(workInProgressRoot, workInProgressRootRenderLanes, workInProgressDeferredLane); } } 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; } // TODO: Over time, this function and renderRootConcurrent have become more // and more similar. Not sure it makes sense to maintain forked paths. Consider // unifying them again. function renderRootSync(root, lanes) { var prevExecutionContext = executionContext; executionContext |= RenderContext; var prevDispatcher = pushDispatcher(); // 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); } var didSuspendInShell = false; outer: do { try { if (workInProgressSuspendedReason !== NotSuspended && workInProgress !== null) { // The work loop is suspended. During a synchronous render, we don't // yield to the main thread. Immediately unwind the stack. This will // trigger either a fallback or an error boundary. // TODO: For discrete and "default" updates (anything that's not // flushSync), we want to wait for the microtasks the flush before // unwinding. Will probably implement this using renderRootConcurrent, // or merge renderRootSync and renderRootConcurrent into the same // function and fork the behavior some other way. var unitOfWork = workInProgress; var thrownValue = workInProgressThrownValue; switch (workInProgressSuspendedReason) { case SuspendedOnHydration: { // Selective hydration. An update flowed into a dehydrated tree. // Interrupt the current render so the work loop can switch to the // hydration lane. resetWorkInProgressStack(); workInProgressRootExitStatus = RootDidNotComplete; break outer; } case SuspendedOnImmediate: case SuspendedOnData: { if (!didSuspendInShell && getSuspenseHandler() === null) { didSuspendInShell = true; } // Intentional fallthrough } default: { // Unwind then continue with the normal work loop. workInProgressSuspendedReason = NotSuspended; workInProgressThrownValue = null; throwAndUnwindWorkLoop(root, unitOfWork, thrownValue); break; } } } workLoopSync(); break; } catch (thrownValue) { handleThrow(root, thrownValue); } } while (true); // Check if something suspended in the shell. We use this to detect an // infinite ping loop caused by an uncached promise. // // Only increment this counter once per synchronous render attempt across the // whole tree. Even if there are many sibling components that suspend, this // counter only gets incremented once. if (didSuspendInShell) { root.shellSuspendCounter++; } 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; // It's safe to process the queue now that the render phase is complete. finishQueueingConcurrentUpdates(); return workInProgressRootExitStatus; } // The work loop is an extremely hot path. Tell Closure not to inline it. /** @noinline */ function workLoopSync() { // Perform work without checking if we need to yield between fiber. while (workInProgress !== null) { performUnitOfWork(workInProgress); } } function renderRootConcurrent(root, lanes) { var prevExecutionContext = executionContext; executionContext |= RenderContext; var prevDispatcher = pushDispatcher(); // 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); } outer: do { try { if (workInProgressSuspendedReason !== NotSuspended && workInProgress !== null) { // The work loop is suspended. We need to either unwind the stack or // replay the suspended component. var unitOfWork = workInProgress; var thrownValue = workInProgressThrownValue; resumeOrUnwind: switch (workInProgressSuspendedReason) { case SuspendedOnError: { // Unwind then continue with the normal work loop. workInProgressSuspendedReason = NotSuspended; workInProgressThrownValue = null; throwAndUnwindWorkLoop(root, unitOfWork, thrownValue); break; } case SuspendedOnData: { var thenable = thrownValue; if (isThenableResolved(thenable)) { // The data resolved. Try rendering the component again. workInProgressSuspendedReason = NotSuspended; workInProgressThrownValue = null; replaySuspendedUnitOfWork(unitOfWork); break; } // The work loop is suspended on data. We should wait for it to // resolve before continuing to render. // TODO: Handle the case where the promise resolves synchronously. // Usually this is handled when we instrument the promise to add a // `status` field, but if the promise already has a status, we won't // have added a listener until right here. var onResolution = function onResolution() { // Check if the root is still suspended on this promise. if (workInProgressSuspendedReason === SuspendedOnData && workInProgressRoot === root) { // Mark the root as ready to continue rendering. workInProgressSuspendedReason = SuspendedAndReadyToContinue; } // Ensure the root is scheduled. We should do this even if we're // currently working on a different root, so that we resume // rendering later. ensureRootIsScheduled(root); }; thenable.then(onResolution, onResolution); break outer; } case SuspendedOnImmediate: { // If this fiber just suspended, it's possible the data is already // cached. Yield to the main thread to give it a chance to ping. If // it does, we can retry immediately without unwinding the stack. workInProgressSuspendedReason = SuspendedAndReadyToContinue; break outer; } case SuspendedOnInstance: { workInProgressSuspendedReason = SuspendedOnInstanceAndReadyToContinue; break outer; } case SuspendedAndReadyToContinue: { var _thenable = thrownValue; if (isThenableResolved(_thenable)) { // The data resolved. Try rendering the component again. workInProgressSuspendedReason = NotSuspended; workInProgressThrownValue = null; replaySuspendedUnitOfWork(unitOfWork); } else { // Otherwise, unwind then continue with the normal work loop. workInProgressSuspendedReason = NotSuspended; workInProgressThrownValue = null; throwAndUnwindWorkLoop(root, unitOfWork, thrownValue); } break; } case SuspendedOnInstanceAndReadyToContinue: { switch (workInProgress.tag) { case HostComponent: case HostHoistable: case HostSingleton: { // Before unwinding the stack, check one more time if the // instance is ready. It may have loaded when React yielded to // the main thread. // Assigning this to a constant so Flow knows the binding won't // be mutated by `preloadInstance`. var hostFiber = workInProgress; var type = hostFiber.type; var props = hostFiber.pendingProps; var isReady = preloadInstance(type, props); if (isReady) { // The data resolved. Resume the work loop as if nothing // suspended. Unlike when a user component suspends, we don't // have to replay anything because the host fiber // already completed. workInProgressSuspendedReason = NotSuspended; workInProgressThrownValue = null; var sibling = hostFiber.sibling; if (sibling !== null) { workInProgress = sibling; } else { var returnFiber = hostFiber.return; if (returnFiber !== null) { workInProgress = returnFiber; completeUnitOfWork(returnFiber); } else { workInProgress = null; } } break resumeOrUnwind; } break; } default: { // This will fail gracefully but it's not correct, so log a // warning in dev. if (true) { error("Unexpected type of fiber triggered a suspensey commit. " + "This is a bug in React."); } break; } } // Otherwise, unwind then continue with the normal work loop. workInProgressSuspendedReason = NotSuspended; workInProgressThrownValue = null; throwAndUnwindWorkLoop(root, unitOfWork, thrownValue); break; } case SuspendedOnDeprecatedThrowPromise: { // Suspended by an old implementation that uses the `throw promise` // pattern. The newer replaying behavior can cause subtle issues // like infinite ping loops. So we maintain the old behavior and // always unwind. workInProgressSuspendedReason = NotSuspended; workInProgressThrownValue = null; throwAndUnwindWorkLoop(root, unitOfWork, thrownValue); break; } case SuspendedOnHydration: { // Selective hydration. An update flowed into a dehydrated tree. // Interrupt the current render so the work loop can switch to the // hydration lane. resetWorkInProgressStack(); workInProgressRootExitStatus = RootDidNotComplete; break outer; } default: { throw new Error("Unexpected SuspendedReason. This is a bug in React."); } } } if (true && ReactCurrentActQueue.current !== null) { // `act` special case: If we're inside an `act` scope, don't consult // `shouldYield`. Always keep working until the render is complete. // This is not just an optimization: in a unit test environment, we // can't trust the result of `shouldYield`, because the host I/O is // likely mocked. workLoopSync(); } else { workLoopConcurrent(); } break; } catch (thrownValue) { handleThrow(root, thrownValue); } } while (true); resetContextDependencies(); popDispatcher(prevDispatcher); executionContext = prevExecutionContext; if (workInProgress !== null) { return RootInProgress; } else { workInProgressRoot = null; workInProgressRootRenderLanes = NoLanes; // It's safe to process the queue now that the render phase is complete. finishQueueingConcurrentUpdates(); // Return the final exit status. return workInProgressRootExitStatus; } } /** @noinline */ function workLoopConcurrent() { // Perform work until Scheduler asks us to yield while (workInProgress !== null && !shouldYield()) { // $FlowFixMe[incompatible-call] found when upgrading Flow 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(current, unitOfWork, entangledRenderLanes); stopProfilerTimerIfRunningAndRecordDelta(unitOfWork, true); } else { next = beginWork(current, unitOfWork, entangledRenderLanes); } 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$1.current = null; } function replaySuspendedUnitOfWork(unitOfWork) { // This is a fork of performUnitOfWork specifcally for replaying a fiber that // just suspended. // var current = unitOfWork.alternate; setCurrentFiber(unitOfWork); var next; setCurrentFiber(unitOfWork); var isProfilingMode = (unitOfWork.mode & ProfileMode) !== NoMode; if (isProfilingMode) { startProfilerTimer(unitOfWork); } switch (unitOfWork.tag) { case IndeterminateComponent: { // Because it suspended with `use`, we can assume it's a // function component. unitOfWork.tag = FunctionComponent; // Fallthrough to the next branch. } case SimpleMemoComponent: case FunctionComponent: { // Resolve `defaultProps`. This logic is copied from `beginWork`. // TODO: Consider moving this switch statement into that module. Also, // could maybe use this as an opportunity to say `use` doesn't work with // `defaultProps` :) var Component = unitOfWork.type; var unresolvedProps = unitOfWork.pendingProps; var resolvedProps = unitOfWork.elementType === Component ? unresolvedProps : resolveDefaultProps(Component, unresolvedProps); var context; { var unmaskedContext = getUnmaskedContext(unitOfWork, Component, true); context = getMaskedContext(unitOfWork, unmaskedContext); } next = replayFunctionComponent(current, unitOfWork, resolvedProps, Component, context, workInProgressRootRenderLanes); break; } case ForwardRef: { // Resolve `defaultProps`. This logic is copied from `beginWork`. // TODO: Consider moving this switch statement into that module. Also, // could maybe use this as an opportunity to say `use` doesn't work with // `defaultProps` :) var _Component = unitOfWork.type.render; var _unresolvedProps = unitOfWork.pendingProps; var _resolvedProps = unitOfWork.elementType === _Component ? _unresolvedProps : resolveDefaultProps(_Component, _unresolvedProps); next = replayFunctionComponent(current, unitOfWork, _resolvedProps, _Component, unitOfWork.ref, workInProgressRootRenderLanes); break; } case HostComponent: { // Some host components are stateful (that's how we implement form // actions) but we don't bother to reuse the memoized state because it's // not worth the extra code. The main reason to reuse the previous hooks // is to reuse uncached promises, but we happen to know that the only // promises that a host component might suspend on are definitely cached // because they are controlled by us. So don't bother. resetHooksOnUnwind(unitOfWork); // Fallthrough to the next branch. } default: { // Other types besides function components are reset completely before // being replayed. Currently this only happens when a Usable type is // reconciled — the reconciler will suspend. // // We reset the fiber back to its original state; however, this isn't // a full "unwind" because we're going to reuse the promises that were // reconciled previously. So it's intentional that we don't call // resetSuspendedWorkLoopOnUnwind here. unwindInterruptedWork(current, unitOfWork); unitOfWork = workInProgress = resetWorkInProgress(unitOfWork, entangledRenderLanes); next = beginWork(current, unitOfWork, entangledRenderLanes); break; } } if (isProfilingMode) { stopProfilerTimerIfRunningAndRecordDelta(unitOfWork, true); } // The begin phase finished successfully without suspending. Return to the // normal work loop. 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$1.current = null; } function throwAndUnwindWorkLoop(root, unitOfWork, thrownValue) { // This is a fork of performUnitOfWork specifcally for unwinding a fiber // that threw an exception. // // Return to the normal work loop. This will unwind the stack, and potentially // result in showing a fallback. resetSuspendedWorkLoopOnUnwind(unitOfWork); var returnFiber = unitOfWork.return; try { // Find and mark the nearest Suspense or error boundary that can handle // this "exception". var didFatal = throwException(root, returnFiber, unitOfWork, thrownValue, workInProgressRootRenderLanes); if (didFatal) { panicOnRootError(thrownValue); return; } } catch (error) { // We had trouble processing the error. An example of this happening is // when accessing the `componentDidCatch` property of an error boundary // throws an error. A weird edge case. There's a regression test for this. // To prevent an infinite loop, bubble the error up to the next parent. if (returnFiber !== null) { workInProgress = returnFiber; throw error; } else { panicOnRootError(thrownValue); return; } } if (unitOfWork.flags & Incomplete) { // Unwind the stack until we reach the nearest boundary. unwindUnitOfWork(unitOfWork); } else { // Although the fiber suspended, we're intentionally going to commit it in // an inconsistent state. We can do this safely in cases where we know the // inconsistent tree will be hidden. // // This currently only applies to Legacy Suspense implementation, but we may // port a version of this to concurrent roots, too, when performing a // synchronous render. Because that will allow us to mutate the tree as we // go instead of buffering mutations until the end. Though it's unclear if // this particular path is how that would be implemented. completeUnitOfWork(unitOfWork); } } function panicOnRootError(error) { // There's no ancestor that can handle this exception. This should never // happen because the root is supposed to capture all errors that weren't // caught by an error boundary. This is a fatal error, or panic condition, // because we've run out of ways to recover. workInProgressRootExitStatus = RootFatalErrored; workInProgressRootFatalError = error; // 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; } 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 { { if ((completedWork.flags & Incomplete) !== NoFlags$1) { // NOTE: If we re-enable sibling prerendering in some cases, this branch // is where we would switch to the unwinding path. error("Internal React error: Expected this fiber to be complete, but " + "it isn't. It should have been unwound. This is a bug in React."); } } // 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; setCurrentFiber(completedWork); var next = void 0; if ((completedWork.mode & ProfileMode) === NoMode) { next = completeWork(current, completedWork, entangledRenderLanes); } else { startProfilerTimer(completedWork); next = completeWork(current, completedWork, entangledRenderLanes); // 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; } 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 // $FlowFixMe[incompatible-type] we bail out when we get a null 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 unwindUnitOfWork(unitOfWork) { var incompleteWork = 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 = incompleteWork.alternate; // 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, incompleteWork); // Because this fiber did not complete, don't reset its lanes. if (next !== null) { // Found a boundary that can handle this exception. Re-renter the // begin phase. This branch will return us to the normal work loop. // // Since we're restarting, remove anything that is not a host effect // from the effect tag. next.flags &= HostEffectMask; workInProgress = next; return; } // Keep unwinding until we reach either a boundary or the root. if ((incompleteWork.mode & ProfileMode) !== NoMode) { // Record the render duration for the fiber that errored. stopProfilerTimerIfRunningAndRecordDelta(incompleteWork, false); // Include the time spent working on failed children before continuing. var actualDuration = incompleteWork.actualDuration; var child = incompleteWork.child; while (child !== null) { // $FlowFixMe[unsafe-addition] addition with possible null/undefined value actualDuration += child.actualDuration; child = child.sibling; } incompleteWork.actualDuration = actualDuration; } // TODO: Once we stop prerendering siblings, instead of resetting the parent // of the node being unwound, we should be able to reset node itself as we // unwind the stack. Saves an additional null check. var returnFiber = incompleteWork.return; if (returnFiber !== null) { // Mark the parent fiber as incomplete and clear its subtree flags. // TODO: Once we stop prerendering siblings, we may be able to get rid of // the Incomplete flag because unwinding to the nearest boundary will // happen synchronously. returnFiber.flags |= Incomplete; returnFiber.subtreeFlags = NoFlags$1; returnFiber.deletions = null; } // NOTE: If we re-enable sibling prerendering in some cases, here we // would switch to the normal completion path: check if a sibling // exists, and if so, begin work on it. // Otherwise, return to the parent // $FlowFixMe[incompatible-type] we bail out when we get a null incompleteWork = returnFiber; // Update the next thing we're working on in case something throws. workInProgress = incompleteWork; } while (incompleteWork !== null); // We've unwound all the way to the root. workInProgressRootExitStatus = RootDidNotComplete; workInProgress = null; } function commitRoot(root, recoverableErrors, transitions, spawnedLane) { // 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.transition; try { ReactCurrentBatchConfig.transition = null; setCurrentUpdatePriority(DiscreteEventPriority); commitRootImpl(root, recoverableErrors, transitions, previousUpdateLanePriority, spawnedLane); } finally { ReactCurrentBatchConfig.transition = prevTransition; setCurrentUpdatePriority(previousUpdateLanePriority); } return null; } function commitRootImpl(root, recoverableErrors, transitions, renderPriorityLevel, spawnedLane) { 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; root.cancelPendingCommit = null; // Check which lanes no longer have any work scheduled on them, and mark // those as finished. var remainingLanes = mergeLanes(finishedWork.lanes, finishedWork.childLanes); // Make sure to account for lanes that were updated by a concurrent event // during the render phase; don't mark them as finished. var concurrentlyUpdatedLanes = getConcurrentlyUpdatedLanes(); remainingLanes = mergeLanes(remainingLanes, concurrentlyUpdatedLanes); markRootFinished(root, remainingLanes, spawnedLane); 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$1 || (finishedWork.flags & PassiveMask) !== NoFlags$1) { if (!rootDoesHavePassiveEffects) { rootDoesHavePassiveEffects = true; scheduleCallback(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$1; var rootHasEffect = (finishedWork.flags & (BeforeMutationMask | MutationMask | LayoutMask | PassiveMask)) !== NoFlags$1; if (subtreeHasEffects || rootHasEffect) { var prevTransition = ReactCurrentBatchConfig.transition; ReactCurrentBatchConfig.transition = null; var previousPriority = getCurrentUpdatePriority(); setCurrentUpdatePriority(DiscreteEventPriority); var prevExecutionContext = executionContext; executionContext |= CommitContext; // Reset this to null before calling lifecycles ReactCurrentOwner$1.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. 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); // 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.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(); } } var rootDidHavePassiveEffects = rootDoesHavePassiveEffects; 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; } { if (!rootDidHavePassiveEffects) { commitDoubleInvokeEffectsInDEV(root, false); } } onCommitRoot(finishedWork.stateNode, renderPriorityLevel); { if (isDevToolsPresent) { root.memoizedUpdaters.clear(); } } // additional work on this root is scheduled. ensureRootIsScheduled(root); 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 errorInfo = makeErrorInfo(recoverableError.digest, recoverableError.stack); onRecoverableError(recoverableError.value, errorInfo); } } 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 (includesSyncLane(pendingPassiveEffectsLanes) && root.tag !== LegacyRoot) { flushPassiveEffects(); } // Read this again, since a passive effect might have updated it remainingLanes = root.pendingLanes; // Check if this render scheduled a cascading synchronous update. This is a // heurstic to detect infinite update loops. We are intentionally excluding // hydration lanes in this check, because render triggered by selective // hydration is conceptually not an update. if ( // Was the finished render the result of an update (not hydration)? includesSomeLane(lanes, UpdateLanes) && // Did it schedule a sync update? includesSomeLane(remainingLanes, SyncUpdateLanes)) { { 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. flushSyncWorkOnAllRoots(); return null; } function makeErrorInfo(digest, componentStack) { { var errorInfo = { componentStack: componentStack, digest: digest }; Object.defineProperty(errorInfo, "digest", { configurable: false, enumerable: true, get: function get() { error('You are accessing "digest" from the errorInfo object passed to onRecoverableError.' + " This property is deprecated and will be removed in a future version of React." + " To access the digest of an Error look for this property on the Error instance itself."); return digest; } }); return errorInfo; } } 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.transition; var previousPriority = getCurrentUpdatePriority(); try { ReactCurrentBatchConfig.transition = null; setCurrentUpdatePriority(priority); return flushPassiveEffectsImpl(); } finally { setCurrentUpdatePriority(previousPriority); ReactCurrentBatchConfig.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(NormalPriority, function () { flushPassiveEffects(); return null; }); } } } function flushPassiveEffectsImpl() { if (rootWithPendingPassiveEffects === null) { return false; } // Cache and clear the transitions flag var root = rootWithPendingPassiveEffects; 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); // TODO: Move to commitPassiveMountEffects { var profilerEffects = pendingPassiveProfilerEffects; pendingPassiveProfilerEffects = []; for (var i = 0; i < profilerEffects.length; i++) { var fiber = profilerEffects[i]; commitPassiveEffectDurations(root, fiber); } } { commitDoubleInvokeEffectsInDEV(root, true); } executionContext = prevExecutionContext; flushSyncWorkOnAllRoots(); { // 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); if (root !== null) { markRootUpdated(root, SyncLane); ensureRootIsScheduled(root); } } 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 = nearestMountedAncestor; 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); if (root !== null) { markRootUpdated(root, SyncLane); ensureRootIsScheduled(root); } return; } } fiber = fiber.return; } { error("Internal React error: Attempted to capture a commit phase error " + "inside a detached tree. This indicates a bug in React. Potential " + "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 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(); 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)) { workInProgressRootDidAttachPingListener = true; // 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 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); } 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$1() - globalMostRecentFallbackTime < FALLBACK_THROTTLE_MS) { // Force a restart from the root by unwinding the stack. Unless this is // being called from the render phase, because that would cause a crash. if ((executionContext & RenderContext) === NoContext) { 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); } 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 root = enqueueConcurrentRenderForLane(boundaryFiber, retryLane); if (root !== null) { markRootUpdated(root, retryLane); ensureRootIsScheduled(root); } } 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; case OffscreenComponent: { var instance = boundaryFiber.stateNode; retryCache = instance._retryCache; 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); } function throwIfInfiniteUpdateLoopDetected() { if (nestedUpdateCount > NESTED_UPDATE_LIMIT) { nestedUpdateCount = 0; nestedPassiveUpdateCount = 0; rootWithNestedUpdates = null; rootWithPassiveNestedUpdates = 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(); } } function commitDoubleInvokeEffectsInDEV(root, hasPassiveEffects) { { { legacyCommitDoubleInvokeEffectsInDEV(root.current, hasPassiveEffects); } } } function legacyCommitDoubleInvokeEffectsInDEV(fiber, hasPassiveEffects) { // TODO (StrictEffects) Should we set a marker on the root if it contains strict effects // so we don't traverse unnecessarily? similar to subtreeFlags but just at the root level. // Maybe not a big deal since this is DEV only behavior. setCurrentFiber(fiber); invokeEffectsInDev(fiber, MountLayoutDev, invokeLayoutEffectUnmountInDEV); if (hasPassiveEffects) { invokeEffectsInDev(fiber, MountPassiveDev, invokePassiveEffectUnmountInDEV); } invokeEffectsInDev(fiber, MountLayoutDev, invokeLayoutEffectMountInDEV); if (hasPassiveEffects) { invokeEffectsInDev(fiber, MountPassiveDev, invokePassiveEffectMountInDEV); } resetCurrentFiber(); } function invokeEffectsInDev(firstChild, fiberFlags, invokeEffectFn) { var current = firstChild; var subtreeRoot = null; while (current != null) { var primarySubtreeFlag = current.subtreeFlags & fiberFlags; if (current !== subtreeRoot && current.child != null && primarySubtreeFlag !== NoFlags$1) { current = current.child; } else { if ((current.flags & fiberFlags) !== NoFlags$1) { invokeEffectFn(current); } if (current.sibling !== null) { current = current.sibling; } else { current = subtreeRoot = current.return; } } } } 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; } // $FlowFixMe[incompatible-use] found when upgrading Flow 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; { var dummyFiber = null; beginWork = function beginWork(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$1(current, unitOfWork, lanes); } catch (originalError) { if (didSuspendOrErrorWhileHydratingDEV() || originalError === SuspenseException || originalError === SelectiveHydrationException || 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; } // Don't reset current debug fiber, since we're about to work on the // same fiber again. // Unwind the failed stack frame resetSuspendedWorkLoopOnUnwind(unitOfWork); 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$1, 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) { 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://reactjs.org/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 = {}; // $FlowFixMe[missing-local-annot] function scheduleCallback(priorityLevel, callback) { { // If we're currently inside an `act` scope, bypass Scheduler and push to // the `act` queue instead. var actQueue = ReactCurrentActQueue.current; if (actQueue !== null) { actQueue.push(callback); return fakeActCallbackNode; } else { return scheduleCallback$2(priorityLevel, callback); } } } function shouldForceFlushFallbacksInDEV() { // Never force flush in production. This function should get stripped out. return ReactCurrentActQueue.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.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://reactjs.org/link/wrap-tests-with-act", getComponentNameFromFiber(fiber)); } finally { if (previousFiber) { setCurrentFiber(fiber); } else { resetCurrentFiber(); } } } } } function warnIfSuspenseResolutionNotWrappedWithActDEV(root) { { if (root.tag !== LegacyRoot && isConcurrentActEnvironment() && ReactCurrentActQueue.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://reactjs.org/link/wrap-tests-with-act"); } } } function setIsRunningInsertionEffect(isRunning) { { isRunningInsertionEffect = isRunning; } } /* eslint-disable react-internal/prod-error-codes */ // Used by React Refresh runtime through DevTools Global Hook. var resolveFamily = null; 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); // $FlowFixMe[not-a-function] found when upgrading Flow 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) || // $FlowFixMe[incompatible-use] found when upgrading Flow 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); } } 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 HostSingleton: 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 || node.tag === HostHoistable || false) { // 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.refCleanup = null; this.pendingProps = pendingProps; this.memoizedProps = null; this.updateQueue = null; this.memoizedState = null; this.dependencies = null; this.mode = mode; // Effects this.flags = NoFlags$1; this.subtreeFlags = NoFlags$1; 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._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. function createFiber(tag, pendingProps, key, mode) { // $FlowFixMe[invalid-constructor]: 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._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$1; // The effects are no longer valid. workInProgress.subtreeFlags = NoFlags$1; 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.refCleanup = current.refCleanup; { 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$1; 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$1; 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 | StrictEffectsMode; } } 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; if ((mode & ConcurrentMode) !== NoMode) { // Strict effects should never run on legacy roots mode |= StrictEffectsMode; } 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: // Fall through case REACT_SCOPE_TYPE: // Fall through case REACT_CACHE_TYPE: // Fall through case REACT_TRACING_MARKER_TYPE: // Fall through case REACT_DEBUG_TRACING_MODE_TYPE: // Fall through 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._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 = { _visibility: OffscreenVisible, _pendingVisibility: OffscreenVisible, _pendingMarkers: null, _retryCache: null, _transitions: null, _current: null, detach: function detach() { return detachOffscreenInstance(primaryChildInstance); }, attach: function attach() { return attachOffscreenInstance(primaryChildInstance); } }; 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.refCleanup = source.refCleanup; 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._debugOwner = source._debugOwner; target._debugNeedsRemount = source._debugNeedsRemount; target._debugHookTypes = source._debugHookTypes; return target; } function FiberRootNode(containerInfo, // $FlowFixMe[missing-local-annot] tag, hydrate, identifierPrefix, onRecoverableError, formState) { this.tag = tag; this.containerInfo = containerInfo; this.pendingChildren = null; this.current = null; this.pingCache = null; this.finishedWork = null; this.timeoutHandle = noTimeout; this.cancelPendingCommit = null; this.context = null; this.pendingContext = null; this.next = null; this.callbackNode = null; this.callbackPriority = NoLane; this.expirationTimes = createLaneMap(NoTimestamp); this.pendingLanes = NoLanes; this.suspendedLanes = NoLanes; this.pingedLanes = NoLanes; this.expiredLanes = NoLanes; this.finishedLanes = NoLanes; this.errorRecoveryDisabledLanes = NoLanes; this.shellSuspendCounter = 0; this.entangledLanes = NoLanes; this.entanglements = createLaneMap(NoLanes); this.hiddenUpdates = createLaneMap(null); this.identifierPrefix = identifierPrefix; this.onRecoverableError = onRecoverableError; this.formState = formState; this.incompleteTransitions = new Map(); { 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, formState) { // $FlowFixMe[invalid-constructor] Flow no longer supports calling new on functions var root = new FiberRootNode(containerInfo, tag, hydrate, identifierPrefix, onRecoverableError, formState); // 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 }; uninitializedFiber.memoizedState = _initialState; } initializeUpdateQueue(uninitializedFiber); return root; } var ReactVersion = "18.3.0-canary-03d6f7cf0-20240209"; function createPortal$1(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 }; } // Might add PROFILE later. 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://reactjs.org/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://reactjs.org/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 getPublicInstance(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, transitionCallbacks, null); } function updateContainer(element, container, parentComponent, callback) { { onScheduleRoot(container, element); } var current$1 = container.current; 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(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); entangleTransitions(root, current$1, lane); } return lane; } function getPublicRootInstance(container) { var containerFiber = container.current; if (!containerFiber.child) { return null; } switch (containerFiber.child.tag) { case HostSingleton: 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[incompatible-use] 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[incompatible-use] number or string is fine here updated[newKey] = updated[oldKey]; if (isArray(updated)) { updated.splice(oldKey, 1); } else { delete updated[oldKey]; } } else { // $FlowFixMe[incompatible-use] number or string is fine here updated[oldKey] = _copyWithRenameImpl( // $FlowFixMe[incompatible-use] 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[incompatible-use] 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); } } }; 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); } } }; 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); } } }; // 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); } }; 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); } }; 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); } }; scheduleUpdate = function scheduleUpdate(fiber) { var root = enqueueConcurrentRenderForLane(fiber, SyncLane); if (root !== null) { scheduleUpdateOnFiber(root, fiber, SyncLane); } }; 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 ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner; function findHostInstance_DEPRECATED(componentOrHandle) { { var owner = ReactCurrentOwner.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; } // For compatibility with Fabric instances if (componentOrHandle.canonical && componentOrHandle.canonical.publicInstance) { // $FlowExpectedError[incompatible-return] Can't refine componentOrHandle as a Fabric instance return componentOrHandle.canonical.publicInstance; } // For compatibility with legacy renderer instances if (componentOrHandle._nativeTag) { // $FlowFixMe[incompatible-exact] Necessary when running Flow on Fabric // $FlowFixMe[incompatible-return] return componentOrHandle; } var hostInstance; { hostInstance = findHostInstanceWithWarning(componentOrHandle, "findHostInstance_DEPRECATED"); } // findHostInstance handles legacy vs. Fabric differences correctly // $FlowFixMe[incompatible-exact] we need to fix the definition of `HostComponent` to use NativeMethods as an interface, not as a type. // $FlowFixMe[incompatible-return] return hostInstance; } function findNodeHandle(componentOrHandle) { { var owner = ReactCurrentOwner.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; } // For compatibility with legacy renderer instances if (componentOrHandle._nativeTag) { return componentOrHandle._nativeTag; } // For compatibility with Fabric instances if (componentOrHandle.canonical != null && componentOrHandle.canonical.nativeTag != null) { return componentOrHandle.canonical.nativeTag; } // For compatibility with Fabric public instances var nativeTag = ReactNativePrivateInterface.getNativeTagFromPublicInstance(componentOrHandle); if (nativeTag) { return nativeTag; } var hostInstance; { hostInstance = findHostInstanceWithWarning(componentOrHandle, "findNodeHandle"); } if (hostInstance == null) { // $FlowFixMe[incompatible-return] Flow limitation in refining an opaque type return hostInstance; } if (hostInstance._nativeTag != null) { // $FlowFixMe[incompatible-return] For compatibility with legacy renderer instances return hostInstance._nativeTag; } // $FlowFixMe[incompatible-call] Necessary when running Flow on the legacy renderer return ReactNativePrivateInterface.getNativeTagFromPublicInstance(hostInstance); } function dispatchCommand(handle, command, args) { var nativeTag = handle._nativeTag != null ? handle._nativeTag : ReactNativePrivateInterface.getNativeTagFromPublicInstance(handle); if (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; } var node = ReactNativePrivateInterface.getNodeFromPublicInstance(handle); if (node != null) { nativeFabricUIManager.dispatchCommand(node, command, args); } else { ReactNativePrivateInterface.UIManager.dispatchViewManagerCommand(nativeTag, command, args); } } function sendAccessibilityEvent(handle, eventType) { var nativeTag = handle._nativeTag != null ? handle._nativeTag : ReactNativePrivateInterface.getNativeTagFromPublicInstance(handle); if (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; } var node = ReactNativePrivateInterface.getNodeFromPublicInstance(handle); if (node != null) { nativeFabricUIManager.sendAccessibilityEvent(node, eventType); } else { ReactNativePrivateInterface.legacySendAccessibilityEvent(nativeTag, eventType); } } function getNodeFromInternalInstanceHandle(internalInstanceHandle) { return ( // $FlowExpectedError[incompatible-return] internalInstanceHandle is opaque but we need to make an exception here. internalInstanceHandle && // $FlowExpectedError[incompatible-return] internalInstanceHandle.stateNode && // $FlowExpectedError[incompatible-use] internalInstanceHandle.stateNode.node ); } // Should have been PublicInstance from ReactFiberConfigFabric // Should have been PublicInstance from ReactFiberConfigNative // Remove this once Paper is no longer supported and DOM Node API are enabled by default in RN. function isChildPublicInstance(parentInstance, childInstance) { { // Paper if ( // $FlowExpectedError[incompatible-type] // $FlowExpectedError[prop-missing] Don't check via `instanceof ReactNativeFiberHostComponent`, so it won't be leaked to Fabric. parentInstance._internalFiberInstanceHandleDEV && // $FlowExpectedError[incompatible-type] // $FlowExpectedError[prop-missing] Don't check via `instanceof ReactNativeFiberHostComponent`, so it won't be leaked to Fabric. childInstance._internalFiberInstanceHandleDEV) { return doesFiberContain( // $FlowExpectedError[incompatible-call] parentInstance._internalFiberInstanceHandleDEV, // $FlowExpectedError[incompatible-call] childInstance._internalFiberInstanceHandleDEV); } var parentInternalInstanceHandle = // $FlowExpectedError[incompatible-call] Type for parentInstance should have been PublicInstance from ReactFiberConfigFabric. ReactNativePrivateInterface.getInternalInstanceHandleFromPublicInstance(parentInstance); var childInternalInstanceHandle = // $FlowExpectedError[incompatible-call] Type for childInstance should have been PublicInstance from ReactFiberConfigFabric. ReactNativePrivateInterface.getInternalInstanceHandleFromPublicInstance(childInstance); // Fabric if (parentInternalInstanceHandle != null && childInternalInstanceHandle != null) { return doesFiberContain(parentInternalInstanceHandle, childInternalInstanceHandle); } // Means that one instance is from Fabric and other is from Paper. return false; } } var emptyObject = {}; { Object.freeze(emptyObject); } // $FlowFixMe[missing-local-annot] function createHierarchy(fiberHierarchy) { return fiberHierarchy.map(function (fiber) { return { name: getComponentNameFromType(fiber.type), getInspectorData: function getInspectorData(findNodeHandle) { return { props: getHostProps(fiber), measure: function measure(callback) { // If this is Fabric, we'll find a shadow node and use that to measure. var hostFiber = findCurrentHostFiber(fiber); var node = hostFiber != null && hostFiber.stateNode !== null && hostFiber.stateNode.node; if (node) { nativeFabricUIManager.measure(node, callback); } else { return ReactNativePrivateInterface.UIManager.measure(getHostNode(fiber, findNodeHandle), callback); } } }; } }; }); } // $FlowFixMe[missing-local-annot] 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; } } // $FlowFixMe[missing-local-annot] function getHostProps(fiber) { var host = findCurrentHostFiber(fiber); if (host) { return host.memoizedProps || emptyObject; } return emptyObject; } function getInspectorDataForInstance(closestInstance) { { // Handle case where user clicks outside of ReactNative if (!closestInstance) { return { hierarchy: [], props: emptyObject, selectedIndex: null, componentStack: "" }; } var fiber = findCurrentFiberUsingSlowPath(closestInstance); var fiberHierarchy = getOwnerHierarchy(fiber); var instance = lastNonHostInstance(fiberHierarchy); var hierarchy = createHierarchy(fiberHierarchy); var props = getHostProps(instance); var selectedIndex = fiberHierarchy.indexOf(instance); var componentStack = fiber !== null ? getStackByFiberInDevAndProd(fiber) : ""; return { closestInstance: instance, hierarchy: hierarchy, props: props, selectedIndex: selectedIndex, componentStack: componentStack }; } } function getOwnerHierarchy(instance) { var hierarchy = []; traverseOwnerTreeUp(hierarchy, instance); return hierarchy; } // $FlowFixMe[missing-local-annot] 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]; } // $FlowFixMe[missing-local-annot] function traverseOwnerTreeUp(hierarchy, instance) { { if (instance) { hierarchy.unshift(instance); traverseOwnerTreeUp(hierarchy, instance._debugOwner); } } } function getInspectorDataForViewTag(viewTag) { { var closestInstance = getInstanceFromTag(viewTag); return getInspectorDataForInstance(closestInstance); } } function getInspectorDataForViewAtPoint(findNodeHandle, inspectedView, locationX, locationY, callback) { { var closestInstance = null; var fabricNode = ReactNativePrivateInterface.getNodeFromPublicInstance(inspectedView); if (fabricNode) { // For Fabric we can look up the instance handle directly and measure it. nativeFabricUIManager.findNodeAtPoint(fabricNode, locationX, locationY, function (internalInstanceHandle) { var node = internalInstanceHandle != null ? getNodeFromInternalInstanceHandle(internalInstanceHandle) : null; if (internalInstanceHandle == null || node == null) { callback(assign({ pointerY: locationY, frame: { left: 0, top: 0, width: 0, height: 0 } }, getInspectorDataForInstance(closestInstance))); return; } 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(node, function (x, y, width, height, pageX, pageY) { var inspectorData = 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 = 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; } } } 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, null); roots.set(containerTag, root); } updateContainer(element, root, null, callback); return getPublicRootInstance(root); } // $FlowFixMe[missing-this-annot] 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(children, containerTag) { var key = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null; return createPortal$1(children, containerTag, null, key); } setBatchingImplementation(batchedUpdates); var roots = new Map(); injectIntoDevTools({ // $FlowExpectedError[incompatible-call] The type of `Instance` in `getClosestInstanceFromNode` does not match in Fabric and the legacy renderer, so it fails to typecheck here. findFiberByHostInstance: getInstanceFromNode, bundleType: 1, version: ReactVersion, rendererPackageName: "react-native-renderer", rendererConfig: { getInspectorDataForInstance: getInspectorDataForInstance, getInspectorDataForViewTag: getInspectorDataForViewTag, getInspectorDataForViewAtPoint: getInspectorDataForViewAtPoint.bind(null, findNodeHandle) } }); exports.createPortal = createPortal; exports.dispatchCommand = dispatchCommand; exports.findHostInstance_DEPRECATED = findHostInstance_DEPRECATED; exports.findNodeHandle = findNodeHandle; exports.getInspectorDataForInstance = getInspectorDataForInstance; exports.getNodeFromInternalInstanceHandle = getNodeFromInternalInstanceHandle; exports.getPublicInstanceFromInternalInstanceHandle = getPublicInstanceFromInternalInstanceHandle; exports.isChildPublicInstance = isChildPublicInstance; 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()); } })(); } },157,[74,158,38,464],"node_modules/react-native/Libraries/Renderer/implementations/ReactFabric-dev.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { _$$_REQUIRE(_dependencyMap[0], "../Core/InitializeCore"); },158,[159],"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], "../../src/private/core/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"); var GlobalPerformanceLogger = _$$_REQUIRE(_dependencyMap[16], "../Utilities/GlobalPerformanceLogger"); // 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. GlobalPerformanceLogger.markPoint('initializeCore_start', GlobalPerformanceLogger.currentTimestamp() - (Date.now() - start)); GlobalPerformanceLogger.markPoint('initializeCore_end'); },159,[160,161,162,174,175,202,205,211,242,249,250,274,277,280,47,299,219],"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'; } },160,[],"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], "../webapis/dom/geometry/DOMRect")); var _DOMRectReadOnly = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "../webapis/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; },161,[1,147,148],"node_modules/react-native/src/private/core/setUpDOM.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], "../../src/private/webapis/performance/NativePerformance")); var _Performance = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "../../src/private/webapis/performance/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(); } }; } } },162,[1,163,164],"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], "../../../../Libraries/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'); },163,[51],"node_modules/react-native/src/private/webapis/performance/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], "../../../../Libraries/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 _PerformanceEntry3 = _$$_REQUIRE(_dependencyMap[12], "./PerformanceEntry"); var _PerformanceObserver = _$$_REQUIRE(_dependencyMap[13], "./PerformanceObserver"); var _RawPerformanceEntry = _$$_REQUIRE(_dependencyMap[14], "./RawPerformanceEntry"); var _ReactNativeStartupTiming = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[15], "./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(_PerformanceEntry3.ALWAYS_LOGGED_ENTRY_TYPES.map(_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); }(_PerformanceEntry3.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); }(_PerformanceEntry3.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: "rnStartupTiming", 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, _PerformanceObserver.warnNoNativePerformanceObserver)(); return; } _NativePerformanceObserver.default == null ? void 0 : _NativePerformanceObserver.default.clearEntries(_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, _PerformanceObserver.warnNoNativePerformanceObserver)(); return; } _NativePerformanceObserver.default == null ? void 0 : _NativePerformanceObserver.default.clearEntries(_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, _PerformanceObserver.warnNoNativePerformanceObserver)(); return []; } return _NativePerformanceObserver.default.getEntries().map(_RawPerformanceEntry.rawToPerformanceEntry); } }, { key: "getEntriesByType", value: function getEntriesByType(entryType) { if (!_PerformanceEntry3.ALWAYS_LOGGED_ENTRY_TYPES.includes(entryType)) { console.warn(`Performance.getEntriesByType: Only valid for ${JSON.stringify(_PerformanceEntry3.ALWAYS_LOGGED_ENTRY_TYPES)} entry types, got ${entryType}`); return []; } if (!(_NativePerformanceObserver.default != null && _NativePerformanceObserver.default.getEntries)) { (0, _PerformanceObserver.warnNoNativePerformanceObserver)(); return []; } return _NativePerformanceObserver.default.getEntries((0, _RawPerformanceEntry.performanceEntryTypeToRaw)(entryType)).map(_RawPerformanceEntry.rawToPerformanceEntry); } }, { key: "getEntriesByName", value: function getEntriesByName(entryName, entryType) { if (entryType !== undefined && !_PerformanceEntry3.ALWAYS_LOGGED_ENTRY_TYPES.includes(entryType)) { console.warn(`Performance.getEntriesByName: Only valid for ${JSON.stringify(_PerformanceEntry3.ALWAYS_LOGGED_ENTRY_TYPES)} entry types, got ${entryType}`); return []; } if (!(_NativePerformanceObserver.default != null && _NativePerformanceObserver.default.getEntries)) { (0, _PerformanceObserver.warnNoNativePerformanceObserver)(); return []; } return _NativePerformanceObserver.default.getEntries(entryType != null ? (0, _RawPerformanceEntry.performanceEntryTypeToRaw)(entryType) : undefined, entryName).map(_RawPerformanceEntry.rawToPerformanceEntry); } }]); }(); },164,[1,165,15,14,25,27,30,3,166,172,163,167,169,168,171,173],"node_modules/react-native/src/private/webapis/performance/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; },165,[],"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")); var _PerformanceObserver = _$$_REQUIRE(_dependencyMap[4], "./PerformanceObserver"); /** * 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, _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(); } }]); }(); },166,[1,14,15,167,168],"node_modules/react-native/src/private/webapis/performance/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], "../../../../Libraries/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'); },167,[51],"node_modules/react-native/src/private/webapis/performance/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 }); Object.defineProperty(exports, "PerformanceEventTiming", { enumerable: true, get: function get() { return _PerformanceEventTiming.default; } }); 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], "../../../../Libraries/Utilities/warnOnce")); var _NativePerformanceObserver = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "./NativePerformanceObserver")); var _PerformanceEntry = _$$_REQUIRE(_dependencyMap[7], "./PerformanceEntry"); var _PerformanceEventTiming = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[8], "./PerformanceEventTiming")); var _RawPerformanceEntry = _$$_REQUIRE(_dependencyMap[9], "./RawPerformanceEntry"); /** * 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(_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, _RawPerformanceEntry.performanceEntryTypeToRaw)(entryType), durationThreshold != null ? durationThreshold : 0); } } function getSupportedPerformanceEntryTypes() { if (!_NativePerformanceObserver.default) { return Object.freeze([]); } if (!_NativePerformanceObserver.default.getSupportedPerformanceEntryTypes) { // fallback if getSupportedPerformanceEntryTypes is not defined on native side return Object.freeze(['mark', 'measure', 'event']); } return Object.freeze(_NativePerformanceObserver.default.getSupportedPerformanceEntryTypes().map(_RawPerformanceEntry.rawToPerformanceEntryType)); } /** * 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, _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, _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 = getSupportedPerformanceEntryTypes(); 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); })); } },168,[1,8,53,14,15,3,167,169,170,171],"node_modules/react-native/src/private/webapis/performance/PerformanceObserver.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 }; } }]); }(); },169,[1,14,15],"node_modules/react-native/src/private/webapis/performance/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")); 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 _PerformanceEntry2 = _$$_REQUIRE(_dependencyMap[7], "./PerformanceEntry"); 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, e, r, o) { var p = (0, _get2.default)((0, _getPrototypeOf2.default)(1 & o ? t.prototype : t), e, r); return 2 & o ? function (t) { return p.apply(r, 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.default = /*#__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 }); } }]); }(_PerformanceEntry2.PerformanceEntry); },170,[1,14,15,25,27,28,30,169],"node_modules/react-native/src/private/webapis/performance/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.RawPerformanceEntryTypeValues = void 0; exports.performanceEntryTypeToRaw = performanceEntryTypeToRaw; exports.rawToPerformanceEntry = rawToPerformanceEntry; exports.rawToPerformanceEntryType = rawToPerformanceEntryType; var _PerformanceEntry = _$$_REQUIRE(_dependencyMap[1], "./PerformanceEntry"); var _PerformanceEventTiming = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "./PerformanceEventTiming")); /** * 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 _PerformanceEventTiming.default({ name: entry.name, startTime: entry.startTime, duration: entry.duration, processingStart: entry.processingStart, processingEnd: entry.processingEnd, interactionId: entry.interactionId }); } else { return new _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}`); } } },171,[1,169,170],"node_modules/react-native/src/private/webapis/performance/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.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; } }]); }(); },172,[1,14,15],"node_modules/react-native/src/private/webapis/performance/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; } }]); }(); },173,[1,14,15],"node_modules/react-native/src/private/webapis/performance/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. */ var ExceptionsManager = _$$_REQUIRE(_dependencyMap[0], "./ExceptionsManager"); ExceptionsManager.installConsoleErrorReporter(); // Set up error handler if (!global.__fbDisableExceptionsManager) { var handleError = function handleError(e, isFatal) { try { 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); } },174,[39,22],"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 _global, _global$HermesInterna; var _require = _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions"), polyfillGlobal = _require.polyfillGlobal; /** * 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[1], "../promiseRejectionTrackingOptions").default); } } else { polyfillGlobal('Promise', function () { return _$$_REQUIRE(_dependencyMap[2], "../Promise"); }); } },175,[176,177,197],"node_modules/react-native/Libraries/Core/polyfillPromise.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 defineLazyObjectProperty = _$$_REQUIRE(_dependencyMap[0], "./defineLazyObjectProperty"); /** * 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; } 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 }; },176,[57],"node_modules/react-native/Libraries/Utilities/PolyfillFunctions.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; },177,[1,47,178],"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 _collections = _$$_REQUIRE(_dependencyMap[7], "./collections"); var _AsymmetricMatcher = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[8], "./plugins/AsymmetricMatcher")); var _ConvertAnsi = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[9], "./plugins/ConvertAnsi")); var _DOMCollection = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[10], "./plugins/DOMCollection")); var _DOMElement = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[11], "./plugins/DOMElement")); var _Immutable = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[12], "./plugins/Immutable")); var _ReactElement = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[13], "./plugins/ReactElement")); var _ReactTestComponent = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[14], "./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, _collections.printListItems)(val, config, indentation, depth, refs, printer) + ']'; } if (isToStringedArrayType(toStringed)) { return hitMaxDepth ? '[' + val.constructor.name + ']' : (min ? '' : val.constructor.name + ' ') + '[' + (0, _collections.printListItems)(val, config, indentation, depth, refs, printer) + ']'; } if (toStringed === '[object Map]') { return hitMaxDepth ? '[Map]' : 'Map {' + (0, _collections.printIteratorEntries)(val.entries(), config, indentation, depth, refs, printer, ' => ') + '}'; } if (toStringed === '[object Set]') { return hitMaxDepth ? '[Set]' : 'Set {' + (0, _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, _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; },178,[15,14,25,27,30,40,179,184,185,186,187,188,191,192,196],"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 }); },179,[53,180],"node_modules/ansi-styles/index.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var conversions = _$$_REQUIRE(_dependencyMap[0], "./conversions"); var route = _$$_REQUIRE(_dependencyMap[1], "./route"); var convert = {}; var models = Object.keys(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: conversions[fromModel].channels }); Object.defineProperty(convert[fromModel], 'labels', { value: conversions[fromModel].labels }); var routes = 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; },180,[181,183],"node_modules/ansi-styles/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 */ var cssKeywords = _$$_REQUIRE(_dependencyMap[1], "color-name"); // 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(cssKeywords)) { reverseKeywords[cssKeywords[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(cssKeywords)) { var value = cssKeywords[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 cssKeywords[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]; }; },181,[53,182],"node_modules/ansi-styles/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] }; },182,[],"node_modules/ansi-styles/node_modules/color-name/index.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var conversions = _$$_REQUIRE(_dependencyMap[0], "./conversions"); /* 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(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(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 = conversions[graph[toModel].parent][toModel]; var cur = graph[toModel].parent; while (graph[cur].parent) { path.unshift(graph[cur].parent); fn = link(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; }; },183,[181],"node_modules/ansi-styles/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.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; } },184,[],"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.test = exports.serialize = void 0; var _collections = _$$_REQUIRE(_dependencyMap[0], "../collections"); 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, _collections.printListItems)(val.sample, config, indentation, depth, refs, printer) + ']'; } if (stringedValue === 'ObjectContaining' || stringedValue === 'ObjectNotContaining') { if (++depth > config.maxDepth) { return '[' + stringedValue + ']'; } return stringedValue + SPACE + '{' + (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; },185,[184],"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.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; },186,[73,179],"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; var _collections = _$$_REQUIRE(_dependencyMap[0], "../collections"); /** * 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, _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, _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; },187,[184],"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; var _markup = _$$_REQUIRE(_dependencyMap[0], "./lib/markup"); /** * 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, _markup.printText)(node.data, config); } if (nodeIsComment(node)) { return (0, _markup.printComment)(node.data, config); } var type = nodeIsFragment(node) ? `DocumentFragment` : node.tagName.toLowerCase(); if (++depth > config.maxDepth) { return (0, _markup.printElementAsLeaf)(type, config); } return (0, _markup.printElement)(type, (0, _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, _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; },188,[189],"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 + '' + 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; },189,[190],"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, '>'); } },190,[],"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; var _collections = _$$_REQUIRE(_dependencyMap[0], "../collections"); /** * 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, _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, _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, _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, _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, _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; },191,[184],"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")); var _markup = _$$_REQUIRE(_dependencyMap[1], "./lib/markup"); 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, _markup.printElementAsLeaf)(getType(element), config) : (0, _markup.printElement)(getType(element), (0, _markup.printProps)(getPropKeys(element), element.props, config, indentation + config.indent, depth, refs, printer), (0, _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; },192,[193,189],"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"); } },193,[194,195],"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; },194,[],"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; })(); } },195,[],"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 _markup = _$$_REQUIRE(_dependencyMap[0], "./lib/markup"); 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, _markup.printElementAsLeaf)(object.type, config) : (0, _markup.printElement)(object.type, object.props ? (0, _markup.printProps)(getPropKeys(object), object.props, config, indentation + config.indent, depth, refs, printer) : '', object.children ? (0, _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; },196,[189],"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'; var Promise = _$$_REQUIRE(_dependencyMap[0], "promise/setimmediate/es6-extensions"); _$$_REQUIRE(_dependencyMap[1], "promise/setimmediate/finally"); if (__DEV__) { _$$_REQUIRE(_dependencyMap[2], "promise/setimmediate/rejection-tracking").enable(_$$_REQUIRE(_dependencyMap[3], "./promiseRejectionTrackingOptions").default); } module.exports = Promise; },197,[198,200,201,177],"node_modules/react-native/Libraries/Promise.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 var Promise = _$$_REQUIRE(_dependencyMap[0], "./core.js"); module.exports = Promise; /* 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 Promise(Promise._D); p._y = 1; p._z = value; return p; } Promise.resolve = function (value) { if (value instanceof Promise) 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 Promise(then.bind(value)); } } catch (ex) { return new Promise(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); }; Promise.all = function (arr) { var args = _iterableToArray(arr); return new Promise(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 Promise && val.then === Promise.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 Promise(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 Promise && item.then === Promise.prototype.then) { return item.then(onSettledFulfill, onSettledReject); } var then = item.then; if (typeof then === 'function') { return new Promise(then.bind(item)).then(onSettledFulfill, onSettledReject); } } return onSettledFulfill(item); } Promise.allSettled = function (iterable) { return Promise.all(_iterableToArray(iterable).map(mapAllSettled)); }; Promise.reject = function (value) { return new Promise(function (resolve, reject) { reject(value); }); }; Promise.race = function (values) { return new Promise(function (resolve, reject) { _iterableToArray(values).forEach(function (value) { Promise.resolve(value).then(resolve, reject); }); }); }; /* Prototype Methods */ Promise.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; } Promise.any = function promiseAny(values) { return new Promise(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) { Promise.resolve(value).then(resolveOnce, rejectionCheck); }); } }); }; },198,[199],"node_modules/promise/setimmediate/es6-extensions.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); } } },199,[],"node_modules/promise/setimmediate/core.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { 'use strict'; var Promise = _$$_REQUIRE(_dependencyMap[0], "./core.js"); module.exports = Promise; Promise.prototype.finally = function (f) { return this.then(function (value) { return Promise.resolve(f()).then(function () { return value; }); }, function (err) { return Promise.resolve(f()).then(function () { throw err; }); }); }; },200,[199],"node_modules/promise/setimmediate/finally.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { 'use strict'; var Promise = _$$_REQUIRE(_dependencyMap[0], "./core"); var DEFAULT_WHITELIST = [ReferenceError, TypeError, RangeError]; var enabled = false; exports.disable = disable; function disable() { enabled = false; Promise._B = null; Promise._C = null; } exports.enable = enable; function enable(options) { options = options || {}; if (enabled) disable(); enabled = true; var id = 0; var displayId = 0; var rejections = {}; Promise._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]; } }; Promise._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; }); } },201,[199],"node_modules/promise/setimmediate/rejection-tracking.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 _require = _$$_REQUIRE(_dependencyMap[0], "../Utilities/FeatureDetection"), hasNativeConstructor = _require.hasNativeConstructor; var _require2 = _$$_REQUIRE(_dependencyMap[1], "../Utilities/PolyfillFunctions"), polyfillGlobal = _require2.polyfillGlobal; /** * 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 = 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) { 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 }); } },202,[203,176,204],"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 }; },203,[],"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); } } },204,[],"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; var _require = _$$_REQUIRE(_dependencyMap[0], "../Utilities/FeatureDetection"), isNativeFunction = _require.isNativeFunction; var _require2 = _$$_REQUIRE(_dependencyMap[1], "../Utilities/PolyfillFunctions"), polyfillGlobal = _require2.polyfillGlobal; 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 = 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) { 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. polyfillGlobal('setImmediate', function () { return _$$_REQUIRE(_dependencyMap[3], "./Timers/immediateShim").setImmediate; }); 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) { polyfillGlobal('setImmediate', function () { return _$$_REQUIRE(_dependencyMap[2], "./Timers/JSTimers").queueReactNativeMicrotask; }); 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. 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. polyfillGlobal('queueMicrotask', function () { return _$$_REQUIRE(_dependencyMap[4], "./Timers/queueMicrotask.js").default; }); } },205,[203,176,206,209,210],"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 * */ var BatchedBridge = _$$_REQUIRE(_dependencyMap[2], "../../BatchedBridge/BatchedBridge"); var Systrace = _$$_REQUIRE(_dependencyMap[3], "../../Performance/Systrace"); var invariant = _$$_REQUIRE(_dependencyMap[4], "invariant"); /** * 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__) { 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__) { 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__) { 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__) { 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) { 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) { invariant(_NativeTiming.default, 'NativeTiming is available'); _NativeTiming.default.createTimer(callbackID, duration, jsSchedulingTime, repeats); } function deleteTimer(timerID) { invariant(_NativeTiming.default, 'NativeTiming is available'); _NativeTiming.default.deleteTimer(timerID); } function setSendIdleEvents(sendIdleEvents) { 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; } BatchedBridge.setReactNativeMicrotasksCallback(JSTimers.callReactNativeMicrotasks); module.exports = ExportedJSTimers; },206,[1,207,6,19,4],"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 }); var _exportNames = {}; exports.default = void 0; var _NativeTiming = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../../src/private/specs/modules/NativeTiming")); Object.keys(_NativeTiming).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeTiming[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeTiming[key]; } }); }); 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 = _NativeTiming.default; },207,[208],"node_modules/react-native/Libraries/Core/Timers/NativeTiming.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], "../../../../Libraries/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'); },208,[51],"node_modules/react-native/src/private/specs/modules/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; },209,[],"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) ); }); } },210,[],"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'; var _require = _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions"), polyfillGlobal = _require.polyfillGlobal; /** * 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. */ polyfillGlobal('XMLHttpRequest', function () { return _$$_REQUIRE(_dependencyMap[1], "../Network/XMLHttpRequest"); }); polyfillGlobal('FormData', function () { return _$$_REQUIRE(_dependencyMap[2], "../Network/FormData"); }); polyfillGlobal('fetch', function () { return _$$_REQUIRE(_dependencyMap[3], "../Network/fetch").fetch; }); polyfillGlobal('Headers', function () { return _$$_REQUIRE(_dependencyMap[3], "../Network/fetch").Headers; }); polyfillGlobal('Request', function () { return _$$_REQUIRE(_dependencyMap[3], "../Network/fetch").Request; }); polyfillGlobal('Response', function () { return _$$_REQUIRE(_dependencyMap[3], "../Network/fetch").Response; }); polyfillGlobal('WebSocket', function () { return _$$_REQUIRE(_dependencyMap[4], "../WebSocket/WebSocket"); }); polyfillGlobal('Blob', function () { return _$$_REQUIRE(_dependencyMap[5], "../Blob/Blob"); }); polyfillGlobal('File', function () { return _$$_REQUIRE(_dependencyMap[6], "../Blob/File"); }); polyfillGlobal('FileReader', function () { return _$$_REQUIRE(_dependencyMap[7], "../Blob/FileReader"); }); polyfillGlobal('URL', function () { return _$$_REQUIRE(_dependencyMap[8], "../Blob/URL").URL; }); // flowlint-line untyped-import:off polyfillGlobal('URLSearchParams', function () { return _$$_REQUIRE(_dependencyMap[8], "../Blob/URL").URLSearchParams; }); // flowlint-line untyped-import:off polyfillGlobal('AbortController', function () { return _$$_REQUIRE(_dependencyMap[9], "abort-controller/dist/abort-controller").AbortController; } // flowlint-line untyped-import:off ); polyfillGlobal('AbortSignal', function () { return _$$_REQUIRE(_dependencyMap[9], "abort-controller/dist/abort-controller").AbortSignal; } // flowlint-line untyped-import:off ); },211,[176,212,226,69,229,217,236,237,240,241],"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, e, r, o) { var p = (0, _get2.default)((0, _getPrototypeOf2.default)(1 & o ? t.prototype : t), e, r); return 2 & o ? function (t) { return p.apply(r, 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 BlobManager = _$$_REQUIRE(_dependencyMap[9], "../Blob/BlobManager"); var GlobalPerformanceLogger = _$$_REQUIRE(_dependencyMap[10], "../Utilities/GlobalPerformanceLogger"); var RCTNetworking = _$$_REQUIRE(_dependencyMap[11], "./RCTNetworking").default; var base64 = _$$_REQUIRE(_dependencyMap[12], "base64-js"); var invariant = _$$_REQUIRE(_dependencyMap[13], "invariant"); 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 (BlobManager.isAvailable) { 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 = 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 invariant(SUPPORTED_RESPONSE_TYPES[responseType] || responseType === 'document', `The provided value '${responseType}' is unsupported in this environment.`); if (responseType === 'blob') { invariant(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 = base64.toByteArray(this._response).buffer; break; case 'blob': if (typeof this._response === 'object' && this._response) { this._cachedResponse = BlobManager.createFromOptions(this._response); } else if (this._response === '') { this._cachedResponse = 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(RCTNetworking.addListener('didSendNetworkData', function (args) { return _this2.__didUploadProgress.apply(_this2, (0, _toConsumableArray2.default)(args)); })); this._subscriptions.push(RCTNetworking.addListener('didReceiveNetworkResponse', function (args) { return _this2.__didReceiveResponse.apply(_this2, (0, _toConsumableArray2.default)(args)); })); this._subscriptions.push(RCTNetworking.addListener('didReceiveNetworkData', function (args) { return _this2.__didReceiveData.apply(_this2, (0, _toConsumableArray2.default)(args)); })); this._subscriptions.push(RCTNetworking.addListener('didReceiveNetworkIncrementalData', function (args) { return _this2.__didReceiveIncrementalData.apply(_this2, (0, _toConsumableArray2.default)(args)); })); this._subscriptions.push(RCTNetworking.addListener('didReceiveNetworkDataProgress', function (args) { return _this2.__didReceiveDataProgress.apply(_this2, (0, _toConsumableArray2.default)(args)); })); this._subscriptions.push(RCTNetworking.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); invariant(_this2._method, 'XMLHttpRequest method needs to be defined (%s).', friendlyName); invariant(_this2._url, 'XMLHttpRequest URL needs to be defined (%s).', friendlyName); RCTNetworking.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) { RCTNetworking.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; },212,[1,8,28,15,14,25,27,30,213,214,219,222,225,4],"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} * @private */ var wrappers = new WeakMap(); /** * Get private data. * @param {Event} event The event object to get private data. * @returns {PrivateData} The private data of the event. * @private */ function pd(event) { var retv = privateData.get(event); console.assert(retv != null, "'this' is expected an Event object, but got", event); return retv; } /** * https://dom.spec.whatwg.org/#set-the-canceled-flag * @param data {PrivateData} private data. */ function setCancelFlag(data) { if (data.passiveListener != null) { if (typeof console !== "undefined" && typeof console.error === "function") { console.error("Unable to preventDefault inside passive event listener invocation.", data.passiveListener); } return; } if (!data.event.cancelable) { return; } data.canceled = true; if (typeof data.event.preventDefault === "function") { data.event.preventDefault(); } } /** * @see https://dom.spec.whatwg.org/#interface-event * @private */ /** * The event wrapper. * @constructor * @param {EventTarget} eventTarget The event target of this dispatching. * @param {Event|{type:string}} event The original event to wrap. */ function Event(eventTarget, event) { privateData.set(this, { eventTarget: eventTarget, event: event, eventPhase: 2, currentTarget: eventTarget, canceled: false, stopped: false, immediateStopped: false, passiveListener: null, timeStamp: event.timeStamp || Date.now() }); // https://heycam.github.io/webidl/#Unforgeable Object.defineProperty(this, "isTrusted", { value: false, enumerable: true }); // Define accessors var keys = Object.keys(event); for (var i = 0; i < keys.length; ++i) { var key = keys[i]; if (!(key in this)) { Object.defineProperty(this, key, defineRedirectDescriptor(key)); } } } // Should be enumerable, but class methods are not enumerable. Event.prototype = { /** * The type of this event. * @type {string} */ get type() { return pd(this).event.type; }, /** * The target of this event. * @type {EventTarget} */ get target() { return pd(this).eventTarget; }, /** * The target of this event. * @type {EventTarget} */ get currentTarget() { return pd(this).currentTarget; }, /** * @returns {EventTarget[]} The composed path of this event. */ composedPath: function composedPath() { var currentTarget = pd(this).currentTarget; if (currentTarget == null) { return []; } return [currentTarget]; }, /** * Constant of NONE. * @type {number} */ get NONE() { return 0; }, /** * Constant of CAPTURING_PHASE. * @type {number} */ get CAPTURING_PHASE() { return 1; }, /** * Constant of AT_TARGET. * @type {number} */ get AT_TARGET() { return 2; }, /** * Constant of BUBBLING_PHASE. * @type {number} */ get BUBBLING_PHASE() { return 3; }, /** * The target of this event. * @type {number} */ get eventPhase() { return pd(this).eventPhase; }, /** * Stop event bubbling. * @returns {void} */ stopPropagation: function stopPropagation() { var data = pd(this); data.stopped = true; if (typeof data.event.stopPropagation === "function") { data.event.stopPropagation(); } }, /** * Stop event bubbling. * @returns {void} */ stopImmediatePropagation: function stopImmediatePropagation() { var data = pd(this); data.stopped = true; data.immediateStopped = true; if (typeof data.event.stopImmediatePropagation === "function") { data.event.stopImmediatePropagation(); } }, /** * The flag to be bubbling. * @type {boolean} */ get bubbles() { return Boolean(pd(this).event.bubbles); }, /** * The flag to be cancelable. * @type {boolean} */ get cancelable() { return Boolean(pd(this).event.cancelable); }, /** * Cancel this event. * @returns {void} */ preventDefault: function preventDefault() { setCancelFlag(pd(this)); }, /** * The flag to indicate cancellation state. * @type {boolean} */ get defaultPrevented() { return pd(this).canceled; }, /** * The flag to be composed. * @type {boolean} */ get composed() { return Boolean(pd(this).event.composed); }, /** * The unix time of this event. * @type {number} */ get timeStamp() { return pd(this).timeStamp; }, /** * The target of this event. * @type {EventTarget} * @deprecated */ get srcElement() { return pd(this).eventTarget; }, /** * The flag to stop event bubbling. * @type {boolean} * @deprecated */ get cancelBubble() { return pd(this).stopped; }, set cancelBubble(value) { if (!value) { return; } var data = pd(this); data.stopped = true; if (typeof data.event.cancelBubble === "boolean") { data.event.cancelBubble = true; } }, /** * The flag to indicate cancellation state. * @type {boolean} * @deprecated */ get returnValue() { return !pd(this).canceled; }, set returnValue(value) { if (!value) { setCancelFlag(pd(this)); } }, /** * Initialize this event object. But do nothing under event dispatching. * @param {string} type The event type. * @param {boolean} [bubbles=false] The flag to be possible to bubble up. * @param {boolean} [cancelable=false] The flag to be possible to cancel. * @deprecated */ initEvent: function initEvent() { // Do nothing. } }; // `constructor` is not enumerable. Object.defineProperty(Event.prototype, "constructor", { value: Event, configurable: true, writable: true }); // Ensure `event instanceof window.Event` is `true`. if (typeof window !== "undefined" && typeof window.Event !== "undefined") { Object.setPrototypeOf(Event.prototype, window.Event.prototype); // Make association for wrappers. wrappers.set(window.Event.prototype, Event); } /** * Get the property descriptor to redirect a given property. * @param {string} key Property name to define property descriptor. * @returns {PropertyDescriptor} The property descriptor to redirect the property. * @private */ function defineRedirectDescriptor(key) { return { get: function get() { return pd(this).event[key]; }, set: function set(value) { pd(this).event[key] = value; }, configurable: true, enumerable: true }; } /** * Get the property descriptor to call a given method property. * @param {string} key Property name to define property descriptor. * @returns {PropertyDescriptor} The property descriptor to call the method property. * @private */ function defineCallDescriptor(key) { return { value: function value() { var event = pd(this).event; return event[key].apply(event, arguments); }, configurable: true, enumerable: true }; } /** * Define new wrapper class. * @param {Function} BaseEvent The base wrapper class. * @param {Object} proto The prototype of the original event. * @returns {Function} The defined wrapper class. * @private */ function defineWrapper(BaseEvent, proto) { var keys = Object.keys(proto); if (keys.length === 0) { return BaseEvent; } /** CustomEvent */ function CustomEvent(eventTarget, event) { BaseEvent.call(this, eventTarget, event); } CustomEvent.prototype = Object.create(BaseEvent.prototype, { constructor: { value: CustomEvent, configurable: true, writable: true } }); // Define accessors. for (var i = 0; i < keys.length; ++i) { var key = keys[i]; if (!(key in BaseEvent.prototype)) { var descriptor = Object.getOwnPropertyDescriptor(proto, key); var isFunc = typeof descriptor.value === "function"; Object.defineProperty(CustomEvent.prototype, key, isFunc ? defineCallDescriptor(key) : defineRedirectDescriptor(key)); } } return CustomEvent; } /** * Get the wrapper class of a given prototype. * @param {Object} proto The prototype of the original event to get its wrapper. * @returns {Function} The wrapper class. * @private */ function getWrapper(proto) { if (proto == null || proto === Object.prototype) { return Event; } var wrapper = wrappers.get(proto); if (wrapper == null) { wrapper = defineWrapper(getWrapper(Object.getPrototypeOf(proto)), proto); wrappers.set(proto, wrapper); } return wrapper; } /** * Wrap a given event to management a dispatching. * @param {EventTarget} eventTarget The event target of this dispatching. * @param {Object} event The event to wrap. * @returns {Event} The wrapper instance. * @private */ function wrapEvent(eventTarget, event) { var Wrapper = getWrapper(Object.getPrototypeOf(event)); return new Wrapper(eventTarget, event); } /** * Get the immediateStopped flag of a given event. * @param {Event} event The event to get. * @returns {boolean} The flag to stop propagation immediately. * @private */ function isStopped(event) { return pd(event).immediateStopped; } /** * Set the current event phase of a given event. * @param {Event} event The event to set current target. * @param {number} eventPhase New event phase. * @returns {void} * @private */ function setEventPhase(event, eventPhase) { pd(event).eventPhase = eventPhase; } /** * Set the current target of a given event. * @param {Event} event The event to set current target. * @param {EventTarget|null} currentTarget New current target. * @returns {void} * @private */ function setCurrentTarget(event, currentTarget) { pd(event).currentTarget = currentTarget; } /** * Set a passive listener of a given event. * @param {Event} event The event to set current target. * @param {Function|null} passiveListener New passive listener. * @returns {void} * @private */ function setPassiveListener(event, passiveListener) { pd(event).passiveListener = passiveListener; } /** * @typedef {object} ListenerNode * @property {Function} listener * @property {1|2|3} listenerType * @property {boolean} passive * @property {boolean} once * @property {ListenerNode|null} next * @private */ /** * @type {WeakMap>} * @private */ var listenersMap = new WeakMap(); // Listener types var CAPTURE = 1; var BUBBLE = 2; var ATTRIBUTE = 3; /** * Check whether a given value is an object or not. * @param {any} x The value to check. * @returns {boolean} `true` if the value is an object. */ function isObject(x) { return x !== null && typeof x === "object"; //eslint-disable-line no-restricted-syntax } /** * Get listeners. * @param {EventTarget} eventTarget The event target to get. * @returns {Map} The listeners. * @private */ function getListeners(eventTarget) { var listeners = listenersMap.get(eventTarget); if (listeners == null) { throw new TypeError("'this' is expected an EventTarget object, but got another value."); } return listeners; } /** * Get the property descriptor for the event attribute of a given event. * @param {string} eventName The event name to get property descriptor. * @returns {PropertyDescriptor} The property descriptor. * @private */ function defineEventAttributeDescriptor(eventName) { return { get: function get() { var listeners = getListeners(this); var node = listeners.get(eventName); while (node != null) { if (node.listenerType === ATTRIBUTE) { return node.listener; } node = node.next; } return null; }, set: function set(listener) { if (typeof listener !== "function" && !isObject(listener)) { listener = null; // eslint-disable-line no-param-reassign } var listeners = getListeners(this); // Traverse to the tail while removing old value. var prev = null; var node = listeners.get(eventName); while (node != null) { if (node.listenerType === ATTRIBUTE) { // Remove old value. if (prev !== null) { prev.next = node.next; } else if (node.next !== null) { listeners.set(eventName, node.next); } else { listeners.delete(eventName); } } else { prev = node; } node = node.next; } // Add new value. if (listener !== null) { var newNode = { listener: listener, listenerType: ATTRIBUTE, passive: false, once: false, next: null }; if (prev === null) { listeners.set(eventName, newNode); } else { prev.next = newNode; } } }, configurable: true, enumerable: true }; } /** * Define an event attribute (e.g. `eventTarget.onclick`). * @param {Object} eventTargetPrototype The event target prototype to define an event attrbite. * @param {string} eventName The event name to define. * @returns {void} */ function defineEventAttribute(eventTargetPrototype, eventName) { Object.defineProperty(eventTargetPrototype, `on${eventName}`, defineEventAttributeDescriptor(eventName)); } /** * Define a custom EventTarget with event attributes. * @param {string[]} eventNames Event names for event attributes. * @returns {EventTarget} The custom EventTarget. * @private */ function defineCustomEventTarget(eventNames) { /** CustomEventTarget */ function CustomEventTarget() { EventTarget.call(this); } CustomEventTarget.prototype = Object.create(EventTarget.prototype, { constructor: { value: CustomEventTarget, configurable: true, writable: true } }); for (var i = 0; i < eventNames.length; ++i) { defineEventAttribute(CustomEventTarget.prototype, eventNames[i]); } return CustomEventTarget; } /** * EventTarget. * * - This is constructor if no arguments. * - This is a function which returns a CustomEventTarget constructor if there are arguments. * * For example: * * class A extends EventTarget {} * class B extends EventTarget("message") {} * class C extends EventTarget("message", "error") {} * class D extends EventTarget(["message", "error"]) {} */ function EventTarget() { /*eslint-disable consistent-return */ if (this instanceof EventTarget) { listenersMap.set(this, new Map()); return; } if (arguments.length === 1 && Array.isArray(arguments[0])) { return defineCustomEventTarget(arguments[0]); } if (arguments.length > 0) { var types = new Array(arguments.length); for (var i = 0; i < arguments.length; ++i) { types[i] = arguments[i]; } return defineCustomEventTarget(types); } throw new TypeError("Cannot call a class as a function"); /*eslint-enable consistent-return */ } // Should be enumerable, but class methods are not enumerable. EventTarget.prototype = { /** * Add a given listener to this event target. * @param {string} eventName The event name to add. * @param {Function} listener The listener to add. * @param {boolean|{capture?:boolean,passive?:boolean,once?:boolean}} [options] The options for this listener. * @returns {void} */ addEventListener: function addEventListener(eventName, listener, options) { if (listener == null) { return; } if (typeof listener !== "function" && !isObject(listener)) { throw new TypeError("'listener' should be a function or an object."); } var listeners = getListeners(this); var optionsIsObj = isObject(options); var capture = optionsIsObj ? Boolean(options.capture) : Boolean(options); var listenerType = capture ? CAPTURE : BUBBLE; var newNode = { listener: listener, listenerType: listenerType, passive: optionsIsObj && Boolean(options.passive), once: optionsIsObj && Boolean(options.once), next: null }; // Set it as the first node if the first node is null. var node = listeners.get(eventName); if (node === undefined) { listeners.set(eventName, newNode); return; } // Traverse to the tail while checking duplication.. var prev = null; while (node != null) { if (node.listener === listener && node.listenerType === listenerType) { // Should ignore duplication. return; } prev = node; node = node.next; } // Add it. prev.next = newNode; }, /** * Remove a given listener from this event target. * @param {string} eventName The event name to remove. * @param {Function} listener The listener to remove. * @param {boolean|{capture?:boolean,passive?:boolean,once?:boolean}} [options] The options for this listener. * @returns {void} */ removeEventListener: function removeEventListener(eventName, listener, options) { if (listener == null) { return; } var listeners = getListeners(this); var capture = isObject(options) ? Boolean(options.capture) : Boolean(options); var listenerType = capture ? CAPTURE : BUBBLE; var prev = null; var node = listeners.get(eventName); while (node != null) { if (node.listener === listener && node.listenerType === listenerType) { if (prev !== null) { prev.next = node.next; } else if (node.next !== null) { listeners.set(eventName, node.next); } else { listeners.delete(eventName); } return; } prev = node; node = node.next; } }, /** * Dispatch a given event. * @param {Event|{type:string}} event The event to dispatch. * @returns {boolean} `false` if canceled. */ dispatchEvent: function dispatchEvent(event) { if (event == null || typeof event.type !== "string") { throw new TypeError('"event.type" should be a string.'); } // If listeners aren't registered, terminate. var listeners = getListeners(this); var eventName = event.type; var node = listeners.get(eventName); if (node == null) { return true; } // Since we cannot rewrite several properties, so wrap object. var wrappedEvent = wrapEvent(this, event); // This doesn't process capturing phase and bubbling phase. // This isn't participating in a tree. var prev = null; while (node != null) { // Remove this listener if it's once if (node.once) { if (prev !== null) { prev.next = node.next; } else if (node.next !== null) { listeners.set(eventName, node.next); } else { listeners.delete(eventName); } } else { prev = node; } // Call this listener setPassiveListener(wrappedEvent, node.passive ? node.listener : null); if (typeof node.listener === "function") { try { node.listener.call(this, wrappedEvent); } catch (err) { if (typeof console !== "undefined" && typeof console.error === "function") { console.error(err); } } } else if (node.listenerType !== ATTRIBUTE && typeof node.listener.handleEvent === "function") { node.listener.handleEvent(wrappedEvent); } // Break if `event.stopImmediatePropagation` was called. if (isStopped(wrappedEvent)) { break; } node = node.next; } setPassiveListener(wrappedEvent, null); setEventPhase(wrappedEvent, 0); setCurrentTarget(wrappedEvent, null); return !wrappedEvent.defaultPrevented; } }; // `constructor` is not enumerable. Object.defineProperty(EventTarget.prototype, "constructor", { value: EventTarget, configurable: true, writable: true }); // Ensure `eventTarget instanceof window.EventTarget` is `true`. if (typeof window !== "undefined" && typeof window.EventTarget !== "undefined") { Object.setPrototypeOf(EventTarget.prototype, window.EventTarget.prototype); } exports.defineEventAttribute = defineEventAttribute; exports.EventTarget = EventTarget; exports.default = EventTarget; module.exports = EventTarget; module.exports.EventTarget = module.exports["default"] = EventTarget; module.exports.defineEventAttribute = defineEventAttribute; },213,[],"node_modules/event-target-shim/dist/event-target-shim.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck")); var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass")); var _NativeBlobModule = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "./NativeBlobModule")); var _invariant = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "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 Blob = _$$_REQUIRE(_dependencyMap[5], "./Blob"); var BlobRegistry = _$$_REQUIRE(_dependencyMap[6], "./BlobRegistry"); /*eslint-disable no-bitwise */ /*eslint-disable eqeqeq */ /** * Based on the rfc4122-compliant solution posted at * http://stackoverflow.com/questions/105034 */ function uuidv4() { return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) { var r = Math.random() * 16 | 0, v = c == 'x' ? r : r & 0x3 | 0x8; return v.toString(16); }); } // **Temporary workaround** // TODO(#24654): Use turbomodules for the Blob module. // Blob collector is a jsi::HostObject that is used by native to know // when the a Blob instance is deallocated. This allows to free the // underlying native resources. This is a hack to workaround the fact // that the current bridge infra doesn't allow to track js objects // deallocation. Ideally the whole Blob object should be a jsi::HostObject. function createBlobCollector(blobId) { if (global.__blobCollectorProvider == null) { return null; } else { return global.__blobCollectorProvider(blobId); } } /** * Module to manage blobs. Wrapper around the native blob module. */ var BlobManager = /*#__PURE__*/function () { function BlobManager() { (0, _classCallCheck2.default)(this, BlobManager); } return (0, _createClass2.default)(BlobManager, null, [{ key: "createFromParts", value: /** * Create blob from existing array of blobs. */ function createFromParts(parts, options) { (0, _invariant.default)(_NativeBlobModule.default, 'NativeBlobModule is available.'); var blobId = uuidv4(); var items = parts.map(function (part) { if (part instanceof ArrayBuffer || ArrayBuffer.isView(part)) { throw new Error("Creating blobs from 'ArrayBuffer' and 'ArrayBufferView' are not supported"); } if (part instanceof Blob) { return { data: part.data, type: 'blob' }; } else { return { data: String(part), type: 'string' }; } }); var size = items.reduce(function (acc, curr) { if (curr.type === 'string') { return acc + global.unescape(encodeURI(curr.data)).length; } else { return acc + curr.data.size; } }, 0); _NativeBlobModule.default.createFromParts(items, blobId); return BlobManager.createFromOptions({ blobId: blobId, offset: 0, size: size, type: options ? options.type : '', lastModified: options ? options.lastModified : Date.now() }); } /** * Create blob instance from blob data from native. * Used internally by modules like XHR, WebSocket, etc. */ }, { key: "createFromOptions", value: function createFromOptions(options) { BlobRegistry.register(options.blobId); // $FlowFixMe[prop-missing] return Object.assign(Object.create(Blob.prototype), { data: // Reuse the collector instance when creating from an existing blob. // This will make sure that the underlying resource is only deallocated // when all blobs that refer to it are deallocated. options.__collector == null ? Object.assign({}, options, { __collector: createBlobCollector(options.blobId) }) : options }); } /** * Deallocate resources for a blob. */ }, { key: "release", value: function release(blobId) { (0, _invariant.default)(_NativeBlobModule.default, 'NativeBlobModule is available.'); BlobRegistry.unregister(blobId); if (BlobRegistry.has(blobId)) { return; } _NativeBlobModule.default.release(blobId); } /** * Inject the blob content handler in the networking module to support blob * requests and responses. */ }, { key: "addNetworkingHandler", value: function addNetworkingHandler() { (0, _invariant.default)(_NativeBlobModule.default, 'NativeBlobModule is available.'); _NativeBlobModule.default.addNetworkingHandler(); } /** * Indicate the websocket should return a blob for incoming binary * messages. */ }, { key: "addWebSocketHandler", value: function addWebSocketHandler(socketId) { (0, _invariant.default)(_NativeBlobModule.default, 'NativeBlobModule is available.'); _NativeBlobModule.default.addWebSocketHandler(socketId); } /** * Indicate the websocket should no longer return a blob for incoming * binary messages. */ }, { key: "removeWebSocketHandler", value: function removeWebSocketHandler(socketId) { (0, _invariant.default)(_NativeBlobModule.default, 'NativeBlobModule is available.'); _NativeBlobModule.default.removeWebSocketHandler(socketId); } /** * Send a blob message to a websocket. */ }, { key: "sendOverSocket", value: function sendOverSocket(blob, socketId) { (0, _invariant.default)(_NativeBlobModule.default, 'NativeBlobModule is available.'); _NativeBlobModule.default.sendOverSocket(blob.data, socketId); } }]); }(); /** * If the native blob module is available. */ BlobManager.isAvailable = !!_NativeBlobModule.default; module.exports = BlobManager; },214,[1,14,15,215,4,217,218],"node_modules/react-native/Libraries/Blob/BlobManager.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativeBlobModule = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../src/private/specs/modules/NativeBlobModule")); Object.keys(_NativeBlobModule).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeBlobModule[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeBlobModule[key]; } }); }); 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 = _NativeBlobModule.default; },215,[216],"node_modules/react-native/Libraries/Blob/NativeBlobModule.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], "../../../../Libraries/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.get('BlobModule'); var constants = null; var NativeBlobModule = null; if (NativeModule != null) { NativeBlobModule = { getConstants: function getConstants() { if (constants == null) { constants = NativeModule.getConstants(); } return constants; }, addNetworkingHandler: function addNetworkingHandler() { NativeModule.addNetworkingHandler(); }, addWebSocketHandler: function addWebSocketHandler(id) { NativeModule.addWebSocketHandler(id); }, removeWebSocketHandler: function removeWebSocketHandler(id) { NativeModule.removeWebSocketHandler(id); }, sendOverSocket: function sendOverSocket(blob, socketID) { NativeModule.sendOverSocket(blob, socketID); }, createFromParts: function createFromParts(parts, withId) { NativeModule.createFromParts(parts, withId); }, release: function release(blobId) { NativeModule.release(blobId); } }; } var _default = exports.default = NativeBlobModule; },216,[51],"node_modules/react-native/src/private/specs/modules/NativeBlobModule.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 _classCallCheck = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/classCallCheck"); var _createClass = _$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/createClass"); /** * Opaque JS representation of some binary data in native. * * The API is modeled after the W3C Blob API, with one caveat * regarding explicit deallocation. Refer to the `close()` * method for further details. * * Example usage in a React component: * * class WebSocketImage extends React.Component { * state = {blob: null}; * componentDidMount() { * let ws = this.ws = new WebSocket(...); * ws.binaryType = 'blob'; * ws.onmessage = (event) => { * if (this.state.blob) { * this.state.blob.close(); * } * this.setState({blob: event.data}); * }; * } * componentUnmount() { * if (this.state.blob) { * this.state.blob.close(); * } * this.ws.close(); * } * render() { * if (!this.state.blob) { * return ; * } * return ; * } * } * * Reference: https://developer.mozilla.org/en-US/docs/Web/API/Blob */ var Blob = /*#__PURE__*/function () { /** * Constructor for JS consumers. * Currently we only support creating Blobs from other Blobs. * Reference: https://developer.mozilla.org/en-US/docs/Web/API/Blob/Blob */ function Blob() { var parts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; var options = arguments.length > 1 ? arguments[1] : undefined; _classCallCheck(this, Blob); var BlobManager = _$$_REQUIRE(_dependencyMap[2], "./BlobManager"); this.data = BlobManager.createFromParts(parts, options).data; } /* * This method is used to create a new Blob object containing * the data in the specified range of bytes of the source Blob. * Reference: https://developer.mozilla.org/en-US/docs/Web/API/Blob/slice */ // $FlowFixMe[unsafe-getters-setters] return _createClass(Blob, [{ key: "data", get: // $FlowFixMe[unsafe-getters-setters] function get() { if (!this._data) { throw new Error('Blob has been closed and is no longer available'); } return this._data; }, set: function set(data) { this._data = data; } }, { key: "slice", value: function slice(start, end) { var contentType = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : ''; var BlobManager = _$$_REQUIRE(_dependencyMap[2], "./BlobManager"); var _this$data = this.data, offset = _this$data.offset, size = _this$data.size; if (typeof start === 'number') { if (start > size) { // $FlowFixMe[reassign-const] start = size; } offset += start; size -= start; if (typeof end === 'number') { if (end < 0) { // $FlowFixMe[reassign-const] end = this.size + end; } if (end > this.size) { // $FlowFixMe[reassign-const] end = this.size; } size = end - start; } } return BlobManager.createFromOptions({ blobId: this.data.blobId, offset: offset, size: size, type: contentType, /* Since `blob.slice()` creates a new view onto the same binary * data as the original blob, we should re-use the same collector * object so that the underlying resource gets deallocated when * the last view into the data is released, not the first. */ __collector: this.data.__collector }); } /** * This method is in the standard, but not actually implemented by * any browsers at this point. It's important for how Blobs work in * React Native, however, since we cannot de-allocate resources automatically, * so consumers need to explicitly de-allocate them. * * Note that the semantics around Blobs created via `blob.slice()` * and `new Blob([blob])` are different. `blob.slice()` creates a * new *view* onto the same binary data, so calling `close()` on any * of those views is enough to deallocate the data, whereas * `new Blob([blob, ...])` actually copies the data in memory. */ }, { key: "close", value: function close() { var BlobManager = _$$_REQUIRE(_dependencyMap[2], "./BlobManager"); BlobManager.release(this.data.blobId); this.data = null; } /** * Size of the data contained in the Blob object, in bytes. */ // $FlowFixMe[unsafe-getters-setters] }, { key: "size", get: function get() { return this.data.size; } /* * String indicating the MIME type of the data contained in the Blob. * If the type is unknown, this string is empty. */ // $FlowFixMe[unsafe-getters-setters] }, { key: "type", get: function get() { return this.data.type || ''; } }]); }(); module.exports = Blob; },217,[14,15,214],"node_modules/react-native/Libraries/Blob/Blob.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 */ var registry = new Map(); var register = function register(id) { var used = registry.get(id); if (used != null) { registry.set(id, used + 1); } else { registry.set(id, 1); } }; var unregister = function unregister(id) { var used = registry.get(id); if (used != null) { if (used <= 1) { registry.delete(id); } else { registry.set(id, used - 1); } } }; var has = function has(id) { return registry.get(id) || false; }; module.exports = { register: register, unregister: unregister, has: has }; },218,[],"node_modules/react-native/Libraries/Blob/BlobRegistry.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _createPerformanceLogger = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./createPerformanceLogger")); /** * 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 global shared instance of IPerformanceLogger that is created with * createPerformanceLogger(). * This logger should be used only for global performance metrics like the ones * that are logged during loading bundle. If you want to log something from your * React component you should use PerformanceLoggerContext instead. */ var GlobalPerformanceLogger = (0, _createPerformanceLogger.default)(); module.exports = GlobalPerformanceLogger; },219,[1,220],"node_modules/react-native/Libraries/Utilities/GlobalPerformanceLogger.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 = createPerformanceLogger; exports.getCurrentTimestamp = void 0; var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck")); var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass")); var Systrace = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[3], "../Performance/Systrace")); var _infoLog = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "./infoLog")); var _global$nativeQPLTime; /** * 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 _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; } var _cookies = {}; var PRINT_TO_CONSOLE = false; // Type as false to prevent accidentally committing `true`; var getCurrentTimestamp = exports.getCurrentTimestamp = (_global$nativeQPLTime = global.nativeQPLTimestamp) != null ? _global$nativeQPLTime : function () { return global.performance.now(); }; var PerformanceLogger = /*#__PURE__*/function () { function PerformanceLogger() { (0, _classCallCheck2.default)(this, PerformanceLogger); this._timespans = {}; this._extras = {}; this._points = {}; this._pointExtras = {}; this._closed = false; } return (0, _createClass2.default)(PerformanceLogger, [{ key: "addTimespan", value: function addTimespan(key, startTime, endTime, startExtras, endExtras) { if (this._closed) { if (PRINT_TO_CONSOLE && __DEV__) { (0, _infoLog.default)('PerformanceLogger: addTimespan - has closed ignoring: ', key); } return; } if (this._timespans[key]) { if (PRINT_TO_CONSOLE && __DEV__) { (0, _infoLog.default)('PerformanceLogger: Attempting to add a timespan that already exists ', key); } return; } this._timespans[key] = { startTime: startTime, endTime: endTime, totalTime: endTime - (startTime || 0), startExtras: startExtras, endExtras: endExtras }; } }, { key: "append", value: function append(performanceLogger) { this._timespans = Object.assign({}, performanceLogger.getTimespans(), this._timespans); this._extras = Object.assign({}, performanceLogger.getExtras(), this._extras); this._points = Object.assign({}, performanceLogger.getPoints(), this._points); this._pointExtras = Object.assign({}, performanceLogger.getPointExtras(), this._pointExtras); } }, { key: "clear", value: function clear() { this._timespans = {}; this._extras = {}; this._points = {}; if (PRINT_TO_CONSOLE) { (0, _infoLog.default)('PerformanceLogger.js', 'clear'); } } }, { key: "clearCompleted", value: function clearCompleted() { for (var _key in this._timespans) { var _this$_timespans$_key; if (((_this$_timespans$_key = this._timespans[_key]) == null ? void 0 : _this$_timespans$_key.totalTime) != null) { delete this._timespans[_key]; } } this._extras = {}; this._points = {}; if (PRINT_TO_CONSOLE) { (0, _infoLog.default)('PerformanceLogger.js', 'clearCompleted'); } } }, { key: "close", value: function close() { this._closed = true; } }, { key: "currentTimestamp", value: function currentTimestamp() { return getCurrentTimestamp(); } }, { key: "getExtras", value: function getExtras() { return this._extras; } }, { key: "getPoints", value: function getPoints() { return this._points; } }, { key: "getPointExtras", value: function getPointExtras() { return this._pointExtras; } }, { key: "getTimespans", value: function getTimespans() { return this._timespans; } }, { key: "hasTimespan", value: function hasTimespan(key) { return !!this._timespans[key]; } }, { key: "isClosed", value: function isClosed() { return this._closed; } }, { key: "logEverything", value: function logEverything() { if (PRINT_TO_CONSOLE) { // log timespans for (var _key2 in this._timespans) { var _this$_timespans$_key2; if (((_this$_timespans$_key2 = this._timespans[_key2]) == null ? void 0 : _this$_timespans$_key2.totalTime) != null) { (0, _infoLog.default)(_key2 + ': ' + this._timespans[_key2].totalTime + 'ms'); } } // log extras (0, _infoLog.default)(this._extras); // log points for (var _key3 in this._points) { if (this._points[_key3] != null) { (0, _infoLog.default)(_key3 + ': ' + this._points[_key3] + 'ms'); } } } } }, { key: "markPoint", value: function markPoint(key) { var timestamp = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : getCurrentTimestamp(); var extras = arguments.length > 2 ? arguments[2] : undefined; if (this._closed) { if (PRINT_TO_CONSOLE && __DEV__) { (0, _infoLog.default)('PerformanceLogger: markPoint - has closed ignoring: ', key); } return; } if (this._points[key] != null) { if (PRINT_TO_CONSOLE && __DEV__) { (0, _infoLog.default)('PerformanceLogger: Attempting to mark a point that has been already logged ', key); } return; } this._points[key] = timestamp; if (extras) { this._pointExtras[key] = extras; } } }, { key: "removeExtra", value: function removeExtra(key) { var value = this._extras[key]; delete this._extras[key]; return value; } }, { key: "setExtra", value: function setExtra(key, value) { if (this._closed) { if (PRINT_TO_CONSOLE && __DEV__) { (0, _infoLog.default)('PerformanceLogger: setExtra - has closed ignoring: ', key); } return; } if (this._extras.hasOwnProperty(key)) { if (PRINT_TO_CONSOLE && __DEV__) { (0, _infoLog.default)('PerformanceLogger: Attempting to set an extra that already exists ', { key: key, currentValue: this._extras[key], attemptedValue: value }); } return; } this._extras[key] = value; } }, { key: "startTimespan", value: function startTimespan(key) { var timestamp = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : getCurrentTimestamp(); var extras = arguments.length > 2 ? arguments[2] : undefined; if (this._closed) { if (PRINT_TO_CONSOLE && __DEV__) { (0, _infoLog.default)('PerformanceLogger: startTimespan - has closed ignoring: ', key); } return; } if (this._timespans[key]) { if (PRINT_TO_CONSOLE && __DEV__) { (0, _infoLog.default)('PerformanceLogger: Attempting to start a timespan that already exists ', key); } return; } this._timespans[key] = { startTime: timestamp, startExtras: extras }; _cookies[key] = Systrace.beginAsyncEvent(key); if (PRINT_TO_CONSOLE) { (0, _infoLog.default)('PerformanceLogger.js', 'start: ' + key); } } }, { key: "stopTimespan", value: function stopTimespan(key) { var timestamp = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : getCurrentTimestamp(); var extras = arguments.length > 2 ? arguments[2] : undefined; if (this._closed) { if (PRINT_TO_CONSOLE && __DEV__) { (0, _infoLog.default)('PerformanceLogger: stopTimespan - has closed ignoring: ', key); } return; } var timespan = this._timespans[key]; if (!timespan || timespan.startTime == null) { if (PRINT_TO_CONSOLE && __DEV__) { (0, _infoLog.default)('PerformanceLogger: Attempting to end a timespan that has not started ', key); } return; } if (timespan.endTime != null) { if (PRINT_TO_CONSOLE && __DEV__) { (0, _infoLog.default)('PerformanceLogger: Attempting to end a timespan that has already ended ', key); } return; } timespan.endExtras = extras; timespan.endTime = timestamp; timespan.totalTime = timespan.endTime - (timespan.startTime || 0); if (PRINT_TO_CONSOLE) { (0, _infoLog.default)('PerformanceLogger.js', 'end: ' + key); } if (_cookies[key] != null) { Systrace.endAsyncEvent(key, _cookies[key]); delete _cookies[key]; } } }]); }(); // Re-exporting for backwards compatibility with all the clients that // may still import it from this module. /** * This function creates performance loggers that can be used to collect and log * various performance data such as timespans, points and extras. * The loggers need to have minimal overhead since they're used in production. */ function createPerformanceLogger() { return new PerformanceLogger(); } },220,[1,14,15,19,221],"node_modules/react-native/Libraries/Utilities/createPerformanceLogger.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'; /** * Intentional info-level logging for clear separation from ad-hoc console debug logging. */ function infoLog() { var _console; return (_console = console).log.apply(_console, arguments); } module.exports = infoLog; },221,[],"node_modules/react-native/Libraries/Utilities/infoLog.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.default = void 0; var _RCTDeviceEventEmitter = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../EventEmitter/RCTDeviceEventEmitter")); var _convertRequestBody = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "./convertRequestBody")); var _NativeNetworkingIOS = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "./NativeNetworkingIOS")); var RCTNetworking = { addListener: function addListener(eventType, listener, context) { // $FlowFixMe[incompatible-call] return _RCTDeviceEventEmitter.default.addListener(eventType, listener, context); }, sendRequest: function sendRequest(method, trackingName, url, headers, data, responseType, incrementalUpdates, timeout, callback, withCredentials) { var body = (0, _convertRequestBody.default)(data); _NativeNetworkingIOS.default.sendRequest({ method: method, url: url, data: Object.assign({}, body, { trackingName: trackingName }), headers: headers, responseType: responseType, incrementalUpdates: incrementalUpdates, timeout: timeout, withCredentials: withCredentials }, callback); }, abortRequest: function abortRequest(requestId) { _NativeNetworkingIOS.default.abortRequest(requestId); }, clearCookies: function clearCookies(callback) { _NativeNetworkingIOS.default.clearCookies(callback); } }; var _default = exports.default = RCTNetworking; },222,[1,24,223,227],"node_modules/react-native/Libraries/Network/RCTNetworking.ios.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 Blob = _$$_REQUIRE(_dependencyMap[0], "../Blob/Blob"); var binaryToBase64 = _$$_REQUIRE(_dependencyMap[1], "../Utilities/binaryToBase64"); var FormData = _$$_REQUIRE(_dependencyMap[2], "./FormData"); function convertRequestBody(body) { if (typeof body === 'string') { return { string: body }; } if (body instanceof Blob) { return { blob: body.data }; } if (body instanceof FormData) { return { formData: body.getParts() }; } if (body instanceof ArrayBuffer || ArrayBuffer.isView(body)) { /* $FlowFixMe[incompatible-call] : no way to assert that 'body' is indeed * an ArrayBufferView */ return { base64: binaryToBase64(body) }; } return body; } module.exports = convertRequestBody; },223,[217,224,226],"node_modules/react-native/Libraries/Network/convertRequestBody.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 base64 = _$$_REQUIRE(_dependencyMap[0], "base64-js"); function binaryToBase64(data) { if (data instanceof ArrayBuffer) { // $FlowFixMe[reassign-const] data = new Uint8Array(data); } if (data instanceof Uint8Array) { return base64.fromByteArray(data); } if (!ArrayBuffer.isView(data)) { throw new Error('data must be ArrayBuffer or typed array'); } // Already checked that `data` is `DataView` in `ArrayBuffer.isView(data)` var _ref = data, buffer = _ref.buffer, byteOffset = _ref.byteOffset, byteLength = _ref.byteLength; return base64.fromByteArray(new Uint8Array(buffer, byteOffset, byteLength)); } module.exports = binaryToBase64; },224,[225],"node_modules/react-native/Libraries/Utilities/binaryToBase64.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(''); } },225,[],"node_modules/base64-js/index.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"); var _classCallCheck = _$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck"); var _createClass = _$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass"); /** * Polyfill for XMLHttpRequest2 FormData API, allowing multipart POST requests * with mixed data (string, native files) to be submitted via XMLHttpRequest. * * Example: * * var photo = { * uri: uriFromCameraRoll, * type: 'image/jpeg', * name: 'photo.jpg', * }; * * var body = new FormData(); * body.append('authToken', 'secret'); * body.append('photo', photo); * body.append('title', 'A beautiful photo!'); * * xhr.open('POST', serverURL); * xhr.send(body); */ var FormData = /*#__PURE__*/function () { function FormData() { _classCallCheck(this, FormData); this._parts = []; } return _createClass(FormData, [{ key: "append", value: function append(key, value) { // The XMLHttpRequest spec doesn't specify if duplicate keys are allowed. // MDN says that any new values should be appended to existing values. // In any case, major browsers allow duplicate keys, so that's what we'll do // too. They'll simply get appended as additional form data parts in the // request body, leaving the server to deal with them. this._parts.push([key, value]); } }, { key: "getAll", value: function getAll(key) { return this._parts.filter(function (_ref) { var _ref2 = _slicedToArray(_ref, 1), name = _ref2[0]; return name === key; }).map(function (_ref3) { var _ref4 = _slicedToArray(_ref3, 2), value = _ref4[1]; return value; }); } }, { key: "getParts", value: function getParts() { return this._parts.map(function (_ref5) { var _ref6 = _slicedToArray(_ref5, 2), name = _ref6[0], value = _ref6[1]; var contentDisposition = 'form-data; name="' + name + '"'; var headers = { 'content-disposition': contentDisposition }; // The body part is a "blob", which in React Native just means // an object with a `uri` attribute. Optionally, it can also // have a `name` and `type` attribute to specify filename and // content type (cf. web Blob interface.) if (typeof value === 'object' && !Array.isArray(value) && value) { if (typeof value.name === 'string') { headers['content-disposition'] += `; filename="${value.name}"; filename*=utf-8''${encodeURI(value.name)}`; } if (typeof value.type === 'string') { headers['content-type'] = value.type; } return Object.assign({}, value, { headers: headers, fieldName: name }); } // Convert non-object values to strings as per FormData.append() spec return { string: String(value), headers: headers, fieldName: name }; }); } }]); }(); module.exports = FormData; },226,[53,14,15],"node_modules/react-native/Libraries/Network/FormData.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativeNetworkingIOS = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../src/private/specs/modules/NativeNetworkingIOS")); Object.keys(_NativeNetworkingIOS).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeNetworkingIOS[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeNetworkingIOS[key]; } }); }); 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 = _NativeNetworkingIOS.default; },227,[228],"node_modules/react-native/Libraries/Network/NativeNetworkingIOS.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], "../../../../Libraries/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('Networking'); },228,[51],"node_modules/react-native/src/private/specs/modules/NativeNetworkingIOS.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _objectWithoutProperties2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/objectWithoutProperties")); var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/classCallCheck")); var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "@babel/runtime/helpers/createClass")); 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 _Blob = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[7], "../Blob/Blob")); var _BlobManager = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[8], "../Blob/BlobManager")); var _NativeEventEmitter = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[9], "../EventEmitter/NativeEventEmitter")); var _binaryToBase = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[10], "../Utilities/binaryToBase64")); var _Platform = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[11], "../Utilities/Platform")); var _NativeWebSocketModule = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[12], "./NativeWebSocketModule")); var _WebSocketEvent = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[13], "./WebSocketEvent")); var _base64Js = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[14], "base64-js")); var _eventTargetShim = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[15], "event-target-shim")); var _invariant = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[16], "invariant")); var _excluded = ["headers"]; 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 * */ var CONNECTING = 0; var OPEN = 1; var CLOSING = 2; var CLOSED = 3; var CLOSE_NORMAL = 1000; // Abnormal closure where no code is provided in a control frame // https://www.rfc-editor.org/rfc/rfc6455.html#section-7.1.5 var CLOSE_ABNORMAL = 1006; var WEBSOCKET_EVENTS = ['close', 'error', 'message', 'open']; var nextWebSocketId = 0; /** * Browser-compatible WebSockets implementation. * * See https://developer.mozilla.org/en-US/docs/Web/API/WebSocket * See https://github.com/websockets/ws */ var WebSocket = /*#__PURE__*/function (_ref) { function WebSocket(url, protocols, options) { var _this; (0, _classCallCheck2.default)(this, WebSocket); _this = _callSuper(this, WebSocket); _this.CONNECTING = CONNECTING; _this.OPEN = OPEN; _this.CLOSING = CLOSING; _this.CLOSED = CLOSED; _this.readyState = CONNECTING; _this.url = url; if (typeof protocols === 'string') { protocols = [protocols]; } var _ref2 = options || {}, _ref2$headers = _ref2.headers, headers = _ref2$headers === void 0 ? {} : _ref2$headers, unrecognized = (0, _objectWithoutProperties2.default)(_ref2, _excluded); // Preserve deprecated backwards compatibility for the 'origin' option // $FlowFixMe[prop-missing] if (unrecognized && typeof unrecognized.origin === 'string') { console.warn('Specifying `origin` as a WebSocket connection option is deprecated. Include it under `headers` instead.'); /* $FlowFixMe[prop-missing] (>=0.54.0 site=react_native_fb,react_native_ * oss) This comment suppresses an error found when Flow v0.54 was * deployed. To see the error delete this comment and run Flow. */ headers.origin = unrecognized.origin; /* $FlowFixMe[prop-missing] (>=0.54.0 site=react_native_fb,react_native_ * oss) This comment suppresses an error found when Flow v0.54 was * deployed. To see the error delete this comment and run Flow. */ delete unrecognized.origin; } // Warn about and discard anything else if (Object.keys(unrecognized).length > 0) { console.warn('Unrecognized WebSocket connection option(s) `' + Object.keys(unrecognized).join('`, `') + '`. ' + 'Did you mean to put these under `headers`?'); } if (!Array.isArray(protocols)) { protocols = null; } _this._eventEmitter = new _NativeEventEmitter.default( // T88715063: NativeEventEmitter only used this parameter on iOS. Now it uses it on all platforms, so this code was modified automatically to preserve its behavior // If you want to use the native module on other platforms, please remove this condition and test its behavior _Platform.default.OS !== 'ios' ? null : _NativeWebSocketModule.default); _this._socketId = nextWebSocketId++; _this._registerEvents(); _NativeWebSocketModule.default.connect(url, protocols, { headers: headers }, _this._socketId); return _this; } (0, _inherits2.default)(WebSocket, _ref); return (0, _createClass2.default)(WebSocket, [{ key: "binaryType", get: function get() { return this._binaryType; }, set: function set(binaryType) { if (binaryType !== 'blob' && binaryType !== 'arraybuffer') { throw new Error("binaryType must be either 'blob' or 'arraybuffer'"); } if (this._binaryType === 'blob' || binaryType === 'blob') { (0, _invariant.default)(_BlobManager.default.isAvailable, 'Native module BlobModule is required for blob support'); if (binaryType === 'blob') { _BlobManager.default.addWebSocketHandler(this._socketId); } else { _BlobManager.default.removeWebSocketHandler(this._socketId); } } this._binaryType = binaryType; } }, { key: "close", value: function close(code, reason) { if (this.readyState === this.CLOSING || this.readyState === this.CLOSED) { return; } this.readyState = this.CLOSING; this._close(code, reason); } }, { key: "send", value: function send(data) { if (this.readyState === this.CONNECTING) { throw new Error('INVALID_STATE_ERR'); } if (data instanceof _Blob.default) { (0, _invariant.default)(_BlobManager.default.isAvailable, 'Native module BlobModule is required for blob support'); _BlobManager.default.sendOverSocket(data, this._socketId); return; } if (typeof data === 'string') { _NativeWebSocketModule.default.send(data, this._socketId); return; } if (data instanceof ArrayBuffer || ArrayBuffer.isView(data)) { _NativeWebSocketModule.default.sendBinary((0, _binaryToBase.default)(data), this._socketId); return; } throw new Error('Unsupported data type'); } }, { key: "ping", value: function ping() { if (this.readyState === this.CONNECTING) { throw new Error('INVALID_STATE_ERR'); } _NativeWebSocketModule.default.ping(this._socketId); } }, { key: "_close", value: function _close(code, reason) { // See https://developer.mozilla.org/en-US/docs/Web/API/CloseEvent var statusCode = typeof code === 'number' ? code : CLOSE_NORMAL; var closeReason = typeof reason === 'string' ? reason : ''; _NativeWebSocketModule.default.close(statusCode, closeReason, this._socketId); if (_BlobManager.default.isAvailable && this._binaryType === 'blob') { _BlobManager.default.removeWebSocketHandler(this._socketId); } } }, { key: "_unregisterEvents", value: function _unregisterEvents() { this._subscriptions.forEach(function (e) { return e.remove(); }); this._subscriptions = []; } }, { key: "_registerEvents", value: function _registerEvents() { var _this2 = this; this._subscriptions = [this._eventEmitter.addListener('websocketMessage', function (ev) { if (ev.id !== _this2._socketId) { return; } var data = ev.data; switch (ev.type) { case 'binary': data = _base64Js.default.toByteArray(ev.data).buffer; break; case 'blob': data = _BlobManager.default.createFromOptions(ev.data); break; } _this2.dispatchEvent(new _WebSocketEvent.default('message', { data: data })); }), this._eventEmitter.addListener('websocketOpen', function (ev) { if (ev.id !== _this2._socketId) { return; } _this2.readyState = _this2.OPEN; _this2.protocol = ev.protocol; _this2.dispatchEvent(new _WebSocketEvent.default('open')); }), this._eventEmitter.addListener('websocketClosed', function (ev) { if (ev.id !== _this2._socketId) { return; } _this2.readyState = _this2.CLOSED; _this2.dispatchEvent(new _WebSocketEvent.default('close', { code: ev.code, reason: ev.reason // TODO: missing `wasClean` (exposed on iOS as `clean` but missing on Android) })); _this2._unregisterEvents(); _this2.close(); }), this._eventEmitter.addListener('websocketFailed', function (ev) { if (ev.id !== _this2._socketId) { return; } _this2.readyState = _this2.CLOSED; _this2.dispatchEvent(new _WebSocketEvent.default('error', { message: ev.message })); _this2.dispatchEvent(new _WebSocketEvent.default('close', { code: CLOSE_ABNORMAL, reason: ev.message // TODO: Expose `wasClean` })); _this2._unregisterEvents(); _this2.close(); })]; } }]); }(_eventTargetShim.default.apply(void 0, WEBSOCKET_EVENTS)); WebSocket.CONNECTING = CONNECTING; WebSocket.OPEN = OPEN; WebSocket.CLOSING = CLOSING; WebSocket.CLOSED = CLOSED; module.exports = WebSocket; },229,[1,230,14,15,25,27,30,217,214,232,224,48,233,235,225,213,4],"node_modules/react-native/Libraries/WebSocket/WebSocket.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var objectWithoutPropertiesLoose = _$$_REQUIRE(_dependencyMap[0], "./objectWithoutPropertiesLoose.js"); function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; } module.exports = _objectWithoutProperties, module.exports.__esModule = true, module.exports["default"] = module.exports; },230,[231],"node_modules/@babel/runtime/helpers/objectWithoutProperties.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; } module.exports = _objectWithoutPropertiesLoose, module.exports.__esModule = true, module.exports["default"] = module.exports; },231,[],"node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.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.default = void 0; var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck")); var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass")); var _Platform = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "../Utilities/Platform")); var _RCTDeviceEventEmitter = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "./RCTDeviceEventEmitter")); var _invariant = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[5], "invariant")); /** * `NativeEventEmitter` is intended for use by Native Modules to emit events to * JavaScript listeners. If a `NativeModule` is supplied to the constructor, it * will be notified (via `addListener` and `removeListeners`) when the listener * count changes to manage "native memory". * * Currently, all native events are fired via a global `RCTDeviceEventEmitter`. * This means event names must be globally unique, and it means that call sites * can theoretically listen to `RCTDeviceEventEmitter` (although discouraged). */ var NativeEventEmitter = exports.default = /*#__PURE__*/function () { function NativeEventEmitter(nativeModule) { (0, _classCallCheck2.default)(this, NativeEventEmitter); if (_Platform.default.OS === 'ios') { (0, _invariant.default)(nativeModule != null, '`new NativeEventEmitter()` requires a non-null argument.'); } var hasAddListener = // $FlowFixMe[method-unbinding] added when improving typing for this parameters !!nativeModule && typeof nativeModule.addListener === 'function'; var hasRemoveListeners = // $FlowFixMe[method-unbinding] added when improving typing for this parameters !!nativeModule && typeof nativeModule.removeListeners === 'function'; if (nativeModule && hasAddListener && hasRemoveListeners) { this._nativeModule = nativeModule; } else if (nativeModule != null) { if (!hasAddListener) { console.warn('`new NativeEventEmitter()` was called with a non-null argument without the required `addListener` method.'); } if (!hasRemoveListeners) { console.warn('`new NativeEventEmitter()` was called with a non-null argument without the required `removeListeners` method.'); } } } return (0, _createClass2.default)(NativeEventEmitter, [{ key: "addListener", value: function addListener(eventType, listener, context) { var _this$_nativeModule, _this = this; (_this$_nativeModule = this._nativeModule) == null ? void 0 : _this$_nativeModule.addListener(eventType); var subscription = _RCTDeviceEventEmitter.default.addListener(eventType, listener, context); return { remove: function remove() { if (subscription != null) { var _this$_nativeModule2; (_this$_nativeModule2 = _this._nativeModule) == null ? void 0 : _this$_nativeModule2.removeListeners(1); // $FlowFixMe[incompatible-use] subscription.remove(); subscription = null; } } }; } }, { key: "emit", value: function 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]; } // Generally, `RCTDeviceEventEmitter` is directly invoked. But this is // included for completeness. _RCTDeviceEventEmitter.default.emit.apply(_RCTDeviceEventEmitter.default, [eventType].concat(args)); } }, { key: "removeAllListeners", value: function removeAllListeners(eventType) { var _this$_nativeModule3; (0, _invariant.default)(eventType != null, '`NativeEventEmitter.removeAllListener()` requires a non-null argument.'); (_this$_nativeModule3 = this._nativeModule) == null ? void 0 : _this$_nativeModule3.removeListeners(this.listenerCount(eventType)); _RCTDeviceEventEmitter.default.removeAllListeners(eventType); } }, { key: "listenerCount", value: function listenerCount(eventType) { return _RCTDeviceEventEmitter.default.listenerCount(eventType); } }]); }(); },232,[1,14,15,48,24,4],"node_modules/react-native/Libraries/EventEmitter/NativeEventEmitter.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativeWebSocketModule = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../src/private/specs/modules/NativeWebSocketModule")); Object.keys(_NativeWebSocketModule).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeWebSocketModule[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeWebSocketModule[key]; } }); }); 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 = _NativeWebSocketModule.default; },233,[234],"node_modules/react-native/Libraries/WebSocket/NativeWebSocketModule.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], "../../../../Libraries/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('WebSocketModule'); },234,[51],"node_modules/react-native/src/private/specs/modules/NativeWebSocketModule.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'; /** * Event object passed to the `onopen`, `onclose`, `onmessage`, `onerror` * callbacks of `WebSocket`. * * The `type` property is "open", "close", "message", "error" respectively. * * In case of "message", the `data` property contains the incoming data. */ var _createClass = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/createClass"); var _classCallCheck = _$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck"); var WebSocketEvent = /*#__PURE__*/_createClass(function WebSocketEvent(type, eventInitDict) { _classCallCheck(this, WebSocketEvent); this.type = type.toString(); Object.assign(this, eventInitDict); }); module.exports = WebSocketEvent; },235,[15,14],"node_modules/react-native/Libraries/WebSocket/WebSocketEvent.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 _classCallCheck = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/classCallCheck"); var _createClass = _$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/createClass"); 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"); 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 Blob = _$$_REQUIRE(_dependencyMap[5], "./Blob"); var invariant = _$$_REQUIRE(_dependencyMap[6], "invariant"); /** * The File interface provides information about files. */ var File = /*#__PURE__*/function (_Blob) { /** * Constructor for JS consumers. */ function File(parts, name, options) { var _this; _classCallCheck(this, File); invariant(parts != null && name != null, 'Failed to construct `File`: Must pass both `parts` and `name` arguments.'); _this = _callSuper(this, File, [parts, options]); _this.data.name = name; return _this; } /** * Name of the file. */ _inherits(File, _Blob); return _createClass(File, [{ key: "name", get: function get() { invariant(this.data.name != null, 'Files must have a name set.'); return this.data.name; } /* * Last modified time of the file. */ }, { key: "lastModified", get: function get() { return this.data.lastModified || 0; } }]); }(Blob); module.exports = File; },236,[14,15,25,27,30,217,4],"node_modules/react-native/Libraries/Blob/File.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); 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 _NativeFileReaderModule = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "./NativeFileReaderModule")); var _base64Js = _$$_REQUIRE(_dependencyMap[7], "base64-js"); var _eventTargetShim = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[8], "event-target-shim")); 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 */ // DONE var READER_EVENTS = ['abort', 'error', 'load', 'loadstart', 'loadend', 'progress']; var EMPTY = 0; var LOADING = 1; var DONE = 2; var FileReader = /*#__PURE__*/function (_ref) { function FileReader() { var _this; (0, _classCallCheck2.default)(this, FileReader); _this = _callSuper(this, FileReader); _this.EMPTY = EMPTY; _this.LOADING = LOADING; _this.DONE = DONE; _this._aborted = false; _this._reset(); return _this; } (0, _inherits2.default)(FileReader, _ref); return (0, _createClass2.default)(FileReader, [{ key: "_reset", value: function _reset() { this._readyState = EMPTY; this._error = null; this._result = null; } }, { key: "_setReadyState", value: function _setReadyState(newState) { this._readyState = newState; this.dispatchEvent({ type: 'readystatechange' }); if (newState === DONE) { if (this._aborted) { this.dispatchEvent({ type: 'abort' }); } else if (this._error) { this.dispatchEvent({ type: 'error' }); } else { this.dispatchEvent({ type: 'load' }); } this.dispatchEvent({ type: 'loadend' }); } } }, { key: "readAsArrayBuffer", value: function readAsArrayBuffer(blob) { var _this2 = this; this._aborted = false; if (blob == null) { throw new TypeError("Failed to execute 'readAsArrayBuffer' on 'FileReader': parameter 1 is not of type 'Blob'"); } _NativeFileReaderModule.default.readAsDataURL(blob.data).then(function (text) { if (_this2._aborted) { return; } var base64 = text.split(',')[1]; var typedArray = (0, _base64Js.toByteArray)(base64); _this2._result = typedArray.buffer; _this2._setReadyState(DONE); }, function (error) { if (_this2._aborted) { return; } _this2._error = error; _this2._setReadyState(DONE); }); } }, { key: "readAsDataURL", value: function readAsDataURL(blob) { var _this3 = this; this._aborted = false; if (blob == null) { throw new TypeError("Failed to execute 'readAsDataURL' on 'FileReader': parameter 1 is not of type 'Blob'"); } _NativeFileReaderModule.default.readAsDataURL(blob.data).then(function (text) { if (_this3._aborted) { return; } _this3._result = text; _this3._setReadyState(DONE); }, function (error) { if (_this3._aborted) { return; } _this3._error = error; _this3._setReadyState(DONE); }); } }, { key: "readAsText", value: function readAsText(blob) { var _this4 = this; var encoding = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'UTF-8'; this._aborted = false; if (blob == null) { throw new TypeError("Failed to execute 'readAsText' on 'FileReader': parameter 1 is not of type 'Blob'"); } _NativeFileReaderModule.default.readAsText(blob.data, encoding).then(function (text) { if (_this4._aborted) { return; } _this4._result = text; _this4._setReadyState(DONE); }, function (error) { if (_this4._aborted) { return; } _this4._error = error; _this4._setReadyState(DONE); }); } }, { key: "abort", value: function abort() { this._aborted = true; // only call onreadystatechange if there is something to abort, as per spec if (this._readyState !== EMPTY && this._readyState !== DONE) { this._reset(); this._setReadyState(DONE); } // Reset again after, in case modified in handler this._reset(); } }, { key: "readyState", get: function get() { return this._readyState; } }, { key: "error", get: function get() { return this._error; } }, { key: "result", get: function get() { return this._result; } }]); }(_eventTargetShim.default.apply(void 0, READER_EVENTS)); FileReader.EMPTY = EMPTY; FileReader.LOADING = LOADING; FileReader.DONE = DONE; module.exports = FileReader; },237,[1,14,15,25,27,30,238,225,213],"node_modules/react-native/Libraries/Blob/FileReader.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativeFileReaderModule = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../src/private/specs/modules/NativeFileReaderModule")); Object.keys(_NativeFileReaderModule).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeFileReaderModule[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeFileReaderModule[key]; } }); }); 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 = _NativeFileReaderModule.default; },238,[239],"node_modules/react-native/Libraries/Blob/NativeFileReaderModule.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], "../../../../Libraries/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('FileReaderModule'); },239,[51],"node_modules/react-native/src/private/specs/modules/NativeFileReaderModule.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.URLSearchParams = exports.URL = void 0; var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck")); var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass")); var _NativeBlobModule = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "./NativeBlobModule")); /** * 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 BLOB_URL_PREFIX = null; if (_NativeBlobModule.default && typeof _NativeBlobModule.default.getConstants().BLOB_URI_SCHEME === 'string') { var constants = _NativeBlobModule.default.getConstants(); // $FlowFixMe[incompatible-type] asserted above // $FlowFixMe[unsafe-addition] BLOB_URL_PREFIX = constants.BLOB_URI_SCHEME + ':'; if (typeof constants.BLOB_URI_HOST === 'string') { BLOB_URL_PREFIX += `//${constants.BLOB_URI_HOST}/`; } } /** * To allow Blobs be accessed via `content://` URIs, * you need to register `BlobProvider` as a ContentProvider in your app's `AndroidManifest.xml`: * * ```xml * * * * * * ``` * And then define the `blob_provider_authority` string in `res/values/strings.xml`. * Use a dotted name that's entirely unique to your app: * * ```xml * * your.app.package.blobs * * ``` */ // Small subset from whatwg-url: https://github.com/jsdom/whatwg-url/tree/master/src // The reference code bloat comes from Unicode issues with URLs, so those won't work here. var URLSearchParams = exports.URLSearchParams = /*#__PURE__*/function () { function URLSearchParams(params) { var _this = this; (0, _classCallCheck2.default)(this, URLSearchParams); this._searchParams = []; if (typeof params === 'object') { Object.keys(params).forEach(function (key) { return _this.append(key, params[key]); }); } } return (0, _createClass2.default)(URLSearchParams, [{ key: "append", value: function append(key, value) { this._searchParams.push([key, value]); } }, { key: "delete", value: function _delete(name) { throw new Error('URLSearchParams.delete is not implemented'); } }, { key: "get", value: function get(name) { throw new Error('URLSearchParams.get is not implemented'); } }, { key: "getAll", value: function getAll(name) { throw new Error('URLSearchParams.getAll is not implemented'); } }, { key: "has", value: function has(name) { throw new Error('URLSearchParams.has is not implemented'); } }, { key: "set", value: function set(name, value) { throw new Error('URLSearchParams.set is not implemented'); } }, { key: "sort", value: function sort() { throw new Error('URLSearchParams.sort is not implemented'); } // $FlowFixMe[unsupported-syntax] // $FlowFixMe[missing-local-annot] }, { key: Symbol.iterator, value: function value() { return this._searchParams[Symbol.iterator](); } }, { key: "toString", value: function toString() { if (this._searchParams.length === 0) { return ''; } var last = this._searchParams.length - 1; return this._searchParams.reduce(function (acc, curr, index) { return acc + encodeURIComponent(curr[0]) + '=' + encodeURIComponent(curr[1]) + (index === last ? '' : '&'); }, ''); } }]); }(); function validateBaseUrl(url) { // from this MIT-licensed gist: https://gist.github.com/dperini/729294 return /^(?:(?:(?:https?|ftp):)?\/\/)(?:(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z0-9\u00a1-\uffff][a-z0-9\u00a1-\uffff_-]{0,62})?[a-z0-9\u00a1-\uffff]\.)*(?:[a-z\u00a1-\uffff]{2,}\.?))(?::\d{2,5})?(?:[/?#]\S*)?$/.test(url); } var URL = exports.URL = /*#__PURE__*/function () { // $FlowFixMe[missing-local-annot] function URL(url, base) { (0, _classCallCheck2.default)(this, URL); this._searchParamsInstance = null; var baseUrl = null; if (!base || validateBaseUrl(url)) { this._url = url; if (!this._url.endsWith('/')) { this._url += '/'; } } else { if (typeof base === 'string') { baseUrl = base; if (!validateBaseUrl(baseUrl)) { throw new TypeError(`Invalid base URL: ${baseUrl}`); } } else { baseUrl = base.toString(); } if (baseUrl.endsWith('/')) { baseUrl = baseUrl.slice(0, baseUrl.length - 1); } if (!url.startsWith('/')) { url = `/${url}`; } if (baseUrl.endsWith(url)) { url = ''; } this._url = `${baseUrl}${url}`; } } return (0, _createClass2.default)(URL, [{ key: "hash", get: function get() { throw new Error('URL.hash is not implemented'); } }, { key: "host", get: function get() { throw new Error('URL.host is not implemented'); } }, { key: "hostname", get: function get() { throw new Error('URL.hostname is not implemented'); } }, { key: "href", get: function get() { return this.toString(); } }, { key: "origin", get: function get() { throw new Error('URL.origin is not implemented'); } }, { key: "password", get: function get() { throw new Error('URL.password is not implemented'); } }, { key: "pathname", get: function get() { throw new Error('URL.pathname not implemented'); } }, { key: "port", get: function get() { throw new Error('URL.port is not implemented'); } }, { key: "protocol", get: function get() { throw new Error('URL.protocol is not implemented'); } }, { key: "search", get: function get() { throw new Error('URL.search is not implemented'); } }, { key: "searchParams", get: function get() { if (this._searchParamsInstance == null) { this._searchParamsInstance = new URLSearchParams(); } return this._searchParamsInstance; } }, { key: "toJSON", value: function toJSON() { return this.toString(); } }, { key: "toString", value: function toString() { if (this._searchParamsInstance === null) { return this._url; } // $FlowFixMe[incompatible-use] var instanceString = this._searchParamsInstance.toString(); var separator = this._url.indexOf('?') > -1 ? '&' : '?'; return this._url + separator + instanceString; } }, { key: "username", get: function get() { throw new Error('URL.username is not implemented'); } }], [{ key: "createObjectURL", value: function createObjectURL(blob) { if (BLOB_URL_PREFIX === null) { throw new Error('Cannot create URL for blob!'); } return `${BLOB_URL_PREFIX}${blob.data.blobId}?offset=${blob.data.offset}&size=${blob.size}`; } }, { key: "revokeObjectURL", value: function revokeObjectURL(url) { // Do nothing. } }]); }(); },240,[1,14,15,215],"node_modules/react-native/Libraries/Blob/URL.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { /** * @author Toru Nagashima * See LICENSE file in root directory for full license. */ 'use strict'; var _classCallCheck = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/classCallCheck"); var _createClass = _$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/createClass"); 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"); 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; })(); } Object.defineProperty(exports, '__esModule', { value: true }); var eventTargetShim = _$$_REQUIRE(_dependencyMap[5], "event-target-shim"); /** * The signal class. * @see https://dom.spec.whatwg.org/#abortsignal */ var AbortSignal = /*#__PURE__*/function (_eventTargetShim$Even) { /** * AbortSignal cannot be constructed directly. */ function AbortSignal() { var _this; _classCallCheck(this, AbortSignal); _this = _callSuper(this, AbortSignal); throw new TypeError("AbortSignal cannot be constructed directly"); return _this; } /** * Returns `true` if this `AbortSignal`'s `AbortController` has signaled to abort, and `false` otherwise. */ _inherits(AbortSignal, _eventTargetShim$Even); return _createClass(AbortSignal, [{ key: "aborted", get: function get() { var aborted = abortedFlags.get(this); if (typeof aborted !== "boolean") { throw new TypeError(`Expected 'this' to be an 'AbortSignal' object, but got ${this === null ? "null" : typeof this}`); } return aborted; } }]); }(eventTargetShim.EventTarget); eventTargetShim.defineEventAttribute(AbortSignal.prototype, "abort"); /** * Create an AbortSignal object. */ function createAbortSignal() { var signal = Object.create(AbortSignal.prototype); eventTargetShim.EventTarget.call(signal); abortedFlags.set(signal, false); return signal; } /** * Abort a given signal. */ function abortSignal(signal) { if (abortedFlags.get(signal) !== false) { return; } abortedFlags.set(signal, true); signal.dispatchEvent({ type: "abort" }); } /** * Aborted flag for each instances. */ var abortedFlags = new WeakMap(); // Properties should be enumerable. Object.defineProperties(AbortSignal.prototype, { aborted: { enumerable: true } }); // `toString()` should return `"[object AbortSignal]"` if (typeof Symbol === "function" && typeof Symbol.toStringTag === "symbol") { Object.defineProperty(AbortSignal.prototype, Symbol.toStringTag, { configurable: true, value: "AbortSignal" }); } /** * The AbortController. * @see https://dom.spec.whatwg.org/#abortcontroller */ var AbortController = /*#__PURE__*/function () { /** * Initialize this controller. */ function AbortController() { _classCallCheck(this, AbortController); signals.set(this, createAbortSignal()); } /** * Returns the `AbortSignal` object associated with this object. */ return _createClass(AbortController, [{ key: "signal", get: function get() { return getSignal(this); } /** * Abort and signal to any observers that the associated activity is to be aborted. */ }, { key: "abort", value: function abort() { abortSignal(getSignal(this)); } }]); }(); /** * Associated signals. */ var signals = new WeakMap(); /** * Get the associated signal of a given controller. */ function getSignal(controller) { var signal = signals.get(controller); if (signal == null) { throw new TypeError(`Expected 'this' to be an 'AbortController' object, but got ${controller === null ? "null" : typeof controller}`); } return signal; } // Properties should be enumerable. Object.defineProperties(AbortController.prototype, { signal: { enumerable: true }, abort: { enumerable: true } }); if (typeof Symbol === "function" && typeof Symbol.toStringTag === "symbol") { Object.defineProperty(AbortController.prototype, Symbol.toStringTag, { configurable: true, value: "AbortController" }); } exports.AbortController = AbortController; exports.AbortSignal = AbortSignal; exports.default = AbortController; module.exports = AbortController; module.exports.AbortController = module.exports["default"] = AbortController; module.exports.AbortSignal = AbortSignal; },241,[14,15,25,27,30,213],"node_modules/abort-controller/dist/abort-controller.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 alert(). * You can use this module directly, or just require InitializeCore. */ if (!global.alert) { global.alert = function (text) { // Require Alert on demand. Requiring it too early can lead to issues // with things like Platform not being fully initialized. _$$_REQUIRE(_dependencyMap[0], "../Alert/Alert").alert('Alert', '' + text); }; } },242,[243],"node_modules/react-native/Libraries/Core/setUpAlert.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _classCallCheck2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/classCallCheck")); var _createClass2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "@babel/runtime/helpers/createClass")); var _Platform = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "../Utilities/Platform")); var _RCTAlertManager = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "./RCTAlertManager")); /** * 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 * */ /** * Launches an alert dialog with the specified title and message. * * See https://reactnative.dev/docs/alert */ var Alert = /*#__PURE__*/function () { function Alert() { (0, _classCallCheck2.default)(this, Alert); } return (0, _createClass2.default)(Alert, null, [{ key: "alert", value: function alert(title, message, buttons, options) { if (_Platform.default.OS === 'ios') { Alert.prompt(title, message, buttons, 'default', undefined, undefined, options); } else if (_Platform.default.OS === 'android') { var NativeDialogManagerAndroid = _$$_REQUIRE(_dependencyMap[5], "../NativeModules/specs/NativeDialogManagerAndroid").default; if (!NativeDialogManagerAndroid) { return; } var constants = NativeDialogManagerAndroid.getConstants(); var config = { title: title || '', message: message || '', cancelable: false }; if (options && options.cancelable) { config.cancelable = options.cancelable; } // At most three buttons (neutral, negative, positive). Ignore rest. // The text 'OK' should be probably localized. iOS Alert does that in native. var defaultPositiveText = 'OK'; var validButtons = buttons ? buttons.slice(0, 3) : [{ text: defaultPositiveText }]; var buttonPositive = validButtons.pop(); var buttonNegative = validButtons.pop(); var buttonNeutral = validButtons.pop(); if (buttonNeutral) { config.buttonNeutral = buttonNeutral.text || ''; } if (buttonNegative) { config.buttonNegative = buttonNegative.text || ''; } if (buttonPositive) { config.buttonPositive = buttonPositive.text || defaultPositiveText; } /* $FlowFixMe[missing-local-annot] The type annotation(s) required by * Flow's LTI update could not be added via codemod */ var onAction = function onAction(action, buttonKey) { if (action === constants.buttonClicked) { if (buttonKey === constants.buttonNeutral) { buttonNeutral.onPress && buttonNeutral.onPress(); } else if (buttonKey === constants.buttonNegative) { buttonNegative.onPress && buttonNegative.onPress(); } else if (buttonKey === constants.buttonPositive) { buttonPositive.onPress && buttonPositive.onPress(); } } else if (action === constants.dismissed) { options && options.onDismiss && options.onDismiss(); } }; var onError = function onError(errorMessage) { return console.warn(errorMessage); }; NativeDialogManagerAndroid.showAlert(config, onError, onAction); } } }, { key: "prompt", value: function prompt(title, message, callbackOrButtons) { var type = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 'plain-text'; var defaultValue = arguments.length > 4 ? arguments[4] : undefined; var keyboardType = arguments.length > 5 ? arguments[5] : undefined; var options = arguments.length > 6 ? arguments[6] : undefined; if (_Platform.default.OS === 'ios') { var callbacks = []; var buttons = []; var cancelButtonKey; var destructiveButtonKey; var preferredButtonKey; if (typeof callbackOrButtons === 'function') { callbacks = [callbackOrButtons]; } else if (Array.isArray(callbackOrButtons)) { callbackOrButtons.forEach(function (btn, index) { callbacks[index] = btn.onPress; if (btn.style === 'cancel') { cancelButtonKey = String(index); } else if (btn.style === 'destructive') { destructiveButtonKey = String(index); } if (btn.isPreferred) { preferredButtonKey = String(index); } if (btn.text || index < (callbackOrButtons || []).length - 1) { var btnDef = {}; btnDef[index] = btn.text || ''; buttons.push(btnDef); } }); } _RCTAlertManager.default.alertWithArgs({ title: title || '', message: message || undefined, buttons: buttons, type: type || undefined, defaultValue: defaultValue, cancelButtonKey: cancelButtonKey, destructiveButtonKey: destructiveButtonKey, preferredButtonKey: preferredButtonKey, keyboardType: keyboardType, userInterfaceStyle: (options == null ? void 0 : options.userInterfaceStyle) || undefined }, function (id, value) { var cb = callbacks[id]; cb && cb(value); }); } } }]); }(); module.exports = Alert; },243,[1,14,15,48,244,247],"node_modules/react-native/Libraries/Alert/Alert.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _NativeAlertManager = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./NativeAlertManager")); /** * 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 * */ module.exports = { alertWithArgs: function alertWithArgs(args, callback) { if (_NativeAlertManager.default == null) { return; } _NativeAlertManager.default.alertWithArgs(args, callback); } }; },244,[1,245],"node_modules/react-native/Libraries/Alert/RCTAlertManager.ios.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativeAlertManager = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../src/private/specs/modules/NativeAlertManager")); Object.keys(_NativeAlertManager).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeAlertManager[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeAlertManager[key]; } }); }); 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 = _NativeAlertManager.default; },245,[246],"node_modules/react-native/Libraries/Alert/NativeAlertManager.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], "../../../../Libraries/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('AlertManager'); },246,[51],"node_modules/react-native/src/private/specs/modules/NativeAlertManager.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativeDialogManagerAndroid = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../../src/private/specs/modules/NativeDialogManagerAndroid")); Object.keys(_NativeDialogManagerAndroid).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeDialogManagerAndroid[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeDialogManagerAndroid[key]; } }); }); 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 = _NativeDialogManagerAndroid.default; },247,[248],"node_modules/react-native/Libraries/NativeModules/specs/NativeDialogManagerAndroid.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], "../../../../Libraries/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 */ /* 'buttonClicked' | 'dismissed' */ /* buttonPositive = -1, buttonNegative = -2, buttonNeutral = -3 */ var _default = exports.default = TurboModuleRegistry.get('DialogManagerAndroid'); },248,[51],"node_modules/react-native/src/private/specs/modules/NativeDialogManagerAndroid.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 _require = _$$_REQUIRE(_dependencyMap[0], "../Utilities/PolyfillFunctions"), polyfillObjectProperty = _require.polyfillObjectProperty; var navigator = global.navigator; if (navigator === undefined) { // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it. global.navigator = { product: 'ReactNative' }; } else { // see https://github.com/facebook/react-native/issues/10881 polyfillObjectProperty(navigator, 'product', function () { return 'ReactNative'; }); } },249,[176],"node_modules/react-native/Libraries/Core/setUpNavigator.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 registerModule; if (global.RN$Bridgeless === true && global.RN$registerCallableModule) { registerModule = global.RN$registerCallableModule; } else { var BatchedBridge = _$$_REQUIRE(_dependencyMap[0], "../BatchedBridge/BatchedBridge"); registerModule = function registerModule(moduleName, /* $FlowFixMe[missing-local-annot] The type annotation(s) required by * Flow's LTI update could not be added via codemod */ factory) { return BatchedBridge.registerLazyCallableModule(moduleName, factory); }; } registerModule('Systrace', function () { return _$$_REQUIRE(_dependencyMap[1], "../Performance/Systrace"); }); if (!(global.RN$Bridgeless === true)) { registerModule('JSTimers', function () { return _$$_REQUIRE(_dependencyMap[2], "./Timers/JSTimers"); }); } registerModule('HeapCapture', function () { return _$$_REQUIRE(_dependencyMap[3], "../HeapCapture/HeapCapture"); }); registerModule('SamplingProfiler', function () { return _$$_REQUIRE(_dependencyMap[4], "../Performance/SamplingProfiler"); }); registerModule('RCTLog', function () { return _$$_REQUIRE(_dependencyMap[5], "../Utilities/RCTLog"); }); registerModule('RCTDeviceEventEmitter', function () { return _$$_REQUIRE(_dependencyMap[6], "../EventEmitter/RCTDeviceEventEmitter").default; }); registerModule('RCTNativeAppEventEmitter', function () { return _$$_REQUIRE(_dependencyMap[7], "../EventEmitter/RCTNativeAppEventEmitter"); }); registerModule('GlobalPerformanceLogger', function () { return _$$_REQUIRE(_dependencyMap[8], "../Utilities/GlobalPerformanceLogger"); }); if (__DEV__) { registerModule('HMRClient', function () { return _$$_REQUIRE(_dependencyMap[9], "../Utilities/HMRClient"); }); } else { registerModule('HMRClient', function () { return _$$_REQUIRE(_dependencyMap[10], "../Utilities/HMRClientProdShim"); }); } },250,[6,19,206,251,254,58,24,257,219,258,273],"node_modules/react-native/Libraries/Core/setUpBatchedBridge.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _NativeJSCHeapCapture = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./NativeJSCHeapCapture")); /** * 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 HeapCapture = { captureHeap: function captureHeap(path) { var error = null; try { global.nativeCaptureHeap(path); console.log('HeapCapture.captureHeap succeeded: ' + path); } catch (e) { console.log('HeapCapture.captureHeap error: ' + e.toString()); error = e.toString(); } if (_NativeJSCHeapCapture.default) { _NativeJSCHeapCapture.default.captureComplete(path, error); } } }; module.exports = HeapCapture; },251,[1,252],"node_modules/react-native/Libraries/HeapCapture/HeapCapture.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativeJSCHeapCapture = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../src/private/specs/modules/NativeJSCHeapCapture")); Object.keys(_NativeJSCHeapCapture).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeJSCHeapCapture[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeJSCHeapCapture[key]; } }); }); 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 = _NativeJSCHeapCapture.default; },252,[253],"node_modules/react-native/Libraries/HeapCapture/NativeJSCHeapCapture.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], "../../../../Libraries/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('JSCHeapCapture'); },253,[51],"node_modules/react-native/src/private/specs/modules/NativeJSCHeapCapture.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 SamplingProfiler = { poke: function poke(token) { var error = null; var result = null; try { result = global.pokeSamplingProfiler(); if (result === null) { console.log('The JSC Sampling Profiler has started'); } else { console.log('The JSC Sampling Profiler has stopped'); } } catch (e) { console.log('Error occurred when restarting Sampling Profiler: ' + e.toString()); error = e.toString(); } var NativeJSCSamplingProfiler = _$$_REQUIRE(_dependencyMap[0], "./NativeJSCSamplingProfiler").default; if (NativeJSCSamplingProfiler) { NativeJSCSamplingProfiler.operationComplete(token, result, error); } } }; module.exports = SamplingProfiler; },254,[255],"node_modules/react-native/Libraries/Performance/SamplingProfiler.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativeJSCSamplingProfiler = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../src/private/specs/modules/NativeJSCSamplingProfiler")); Object.keys(_NativeJSCSamplingProfiler).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeJSCSamplingProfiler[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeJSCSamplingProfiler[key]; } }); }); 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 = _NativeJSCSamplingProfiler.default; },255,[256],"node_modules/react-native/Libraries/Performance/NativeJSCSamplingProfiler.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], "../../../../Libraries/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('JSCSamplingProfiler'); },256,[51],"node_modules/react-native/src/private/specs/modules/NativeJSCSamplingProfiler.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _RCTDeviceEventEmitter = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./RCTDeviceEventEmitter")); /** * 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 * */ /** * Deprecated - subclass NativeEventEmitter to create granular event modules instead of * adding all event listeners directly to RCTNativeAppEventEmitter. */ var RCTNativeAppEventEmitter = _RCTDeviceEventEmitter.default; module.exports = RCTNativeAppEventEmitter; },257,[1,24],"node_modules/react-native/Libraries/EventEmitter/RCTNativeAppEventEmitter.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 _getDevServer2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "../Core/Devtools/getDevServer")); var _LogBox = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "../LogBox/LogBox")); var _NativeRedBox = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[4], "../NativeModules/specs/NativeRedBox")); /** * 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 DevSettings = _$$_REQUIRE(_dependencyMap[5], "./DevSettings"); var Platform = _$$_REQUIRE(_dependencyMap[6], "./Platform"); var invariant = _$$_REQUIRE(_dependencyMap[7], "invariant"); var MetroHMRClient = _$$_REQUIRE(_dependencyMap[8], "metro-runtime/src/modules/HMRClient"); var prettyFormat = _$$_REQUIRE(_dependencyMap[9], "pretty-format"); var pendingEntryPoints = []; var hmrClient = null; var hmrUnavailableReason = null; var currentCompileErrorMessage = null; var didConnect = false; var pendingLogs = []; /** * HMR Client that receives from the server HMR updates and propagates them * runtime to reflects those changes. */ var HMRClient = { enable: function enable() { if (hmrUnavailableReason !== null) { // If HMR became unavailable while you weren't using it, // explain why when you try to turn it on. // This is an error (and not a warning) because it is shown // in response to a direct user action. throw new Error(hmrUnavailableReason); } invariant(hmrClient, 'Expected HMRClient.setup() call at startup.'); var LoadingView = _$$_REQUIRE(_dependencyMap[10], "./LoadingView"); // We use this for internal logging only. // It doesn't affect the logic. hmrClient.send(JSON.stringify({ type: 'log-opt-in' })); // When toggling Fast Refresh on, we might already have some stashed updates. // Since they'll get applied now, we'll show a banner. var hasUpdates = hmrClient.hasPendingUpdates(); if (hasUpdates) { LoadingView.showMessage('Refreshing...', 'refresh'); } try { hmrClient.enable(); } finally { if (hasUpdates) { LoadingView.hide(); } } // There could be a compile error while Fast Refresh was off, // but we ignored it at the time. Show it now. showCompileError(); }, disable: function disable() { invariant(hmrClient, 'Expected HMRClient.setup() call at startup.'); hmrClient.disable(); }, registerBundle: function registerBundle(requestUrl) { invariant(hmrClient, 'Expected HMRClient.setup() call at startup.'); pendingEntryPoints.push(requestUrl); registerBundleEntryPoints(hmrClient); }, log: function log(level, data) { if (!hmrClient) { // Catch a reasonable number of early logs // in case hmrClient gets initialized later. pendingLogs.push([level, data]); if (pendingLogs.length > 100) { pendingLogs.shift(); } return; } try { hmrClient.send(JSON.stringify({ type: 'log', level: level, mode: global.RN$Bridgeless === true ? 'NOBRIDGE' : 'BRIDGE', data: data.map(function (item) { return typeof item === 'string' ? item : prettyFormat(item, { escapeString: true, highlight: true, maxDepth: 3, min: true, plugins: [prettyFormat.plugins.ReactElement] }); }) })); } catch (error) { // If sending logs causes any failures we want to silently ignore them // to ensure we do not cause infinite-logging loops. } }, // Called once by the bridge on startup, even if Fast Refresh is off. // It creates the HMR client but doesn't actually set up the socket yet. setup: function setup(platform, bundleEntry, host, port, isEnabled) { var scheme = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 'http'; invariant(platform, 'Missing required parameter `platform`'); invariant(bundleEntry, 'Missing required parameter `bundleEntry`'); invariant(host, 'Missing required parameter `host`'); invariant(!hmrClient, 'Cannot initialize hmrClient twice'); // Moving to top gives errors due to NativeModules not being initialized var LoadingView = _$$_REQUIRE(_dependencyMap[10], "./LoadingView"); var serverHost = port !== null && port !== '' ? `${host}:${port}` : host; var serverScheme = scheme; var client = new MetroHMRClient(`${serverScheme}://${serverHost}/hot`); hmrClient = client; var _getDevServer = (0, _getDevServer2.default)(), fullBundleUrl = _getDevServer.fullBundleUrl; pendingEntryPoints.push( // HMRServer understands regular bundle URLs, so prefer that in case // there are any important URL parameters we can't reconstruct from // `setup()`'s arguments. fullBundleUrl != null ? fullBundleUrl : `${serverScheme}://${serverHost}/hot?bundleEntry=${bundleEntry}&platform=${platform}`); client.on('connection-error', function (e) { var error = `Cannot connect to Metro. Try the following to fix the issue: - Ensure that Metro is running and available on the same network`; if ("ios" === 'ios') { error += ` - Ensure that the Metro URL is correctly set in AppDelegate`; } else { error += ` - Ensure that your device/emulator is connected to your machine and has USB debugging enabled - run 'adb devices' to see a list of connected devices - If you're on a physical device connected to the same machine, run 'adb reverse tcp:8081 tcp:8081' to forward requests from your device - If your device is on the same Wi-Fi network, set 'Debug server host & port for device' in 'Dev settings' to your machine's IP address and the port of the local dev server - e.g. 10.0.1.1:8081`; } error += ` URL: ${host}:${port} Error: ${e.message}`; setHMRUnavailableReason(error); }); client.on('update-start', function (_ref) { var isInitialUpdate = _ref.isInitialUpdate; currentCompileErrorMessage = null; didConnect = true; if (client.isEnabled() && !isInitialUpdate) { LoadingView.showMessage('Refreshing...', 'refresh'); } }); client.on('update', function (_ref2) { var isInitialUpdate = _ref2.isInitialUpdate; if (client.isEnabled() && !isInitialUpdate) { dismissRedbox(); _LogBox.default.clearAllLogs(); } }); client.on('update-done', function () { LoadingView.hide(); }); client.on('error', function (data) { LoadingView.hide(); if (data.type === 'GraphNotFoundError') { client.close(); setHMRUnavailableReason('Metro has restarted since the last edit. Reload to reconnect.'); } else if (data.type === 'RevisionNotFoundError') { client.close(); setHMRUnavailableReason('Metro and the client are out of sync. Reload to reconnect.'); } else { currentCompileErrorMessage = `${data.type} ${data.message}`; if (client.isEnabled()) { showCompileError(); } } }); client.on('close', function (closeEvent) { LoadingView.hide(); // https://www.rfc-editor.org/rfc/rfc6455.html#section-7.4.1 // https://www.rfc-editor.org/rfc/rfc6455.html#section-7.1.5 var isNormalOrUnsetCloseReason = closeEvent == null || closeEvent.code === 1000 || closeEvent.code === 1005 || closeEvent.code == null; setHMRUnavailableReason(`${isNormalOrUnsetCloseReason ? 'Disconnected from Metro.' : `Disconnected from Metro (${closeEvent.code}: "${closeEvent.reason}").`} To reconnect: - Ensure that Metro is running and available on the same network - Reload this app (will trigger further help if Metro cannot be connected to) `); }); if (isEnabled) { HMRClient.enable(); } else { HMRClient.disable(); } registerBundleEntryPoints(hmrClient); flushEarlyLogs(hmrClient); } }; function setHMRUnavailableReason(reason) { invariant(hmrClient, 'Expected HMRClient.setup() call at startup.'); if (hmrUnavailableReason !== null) { // Don't show more than one warning. return; } hmrUnavailableReason = reason; // We only want to show a warning if Fast Refresh is on *and* if we ever // previously managed to connect successfully. We don't want to show // the warning to native engineers who use cached bundles without Metro. if (hmrClient.isEnabled() && didConnect) { console.warn(reason); // (Not using the `warning` module to prevent a Buck cycle.) } } function registerBundleEntryPoints(client) { if (hmrUnavailableReason != null) { DevSettings.reload('Bundle Splitting – Metro disconnected'); return; } if (pendingEntryPoints.length > 0) { client.send(JSON.stringify({ type: 'register-entrypoints', entryPoints: pendingEntryPoints })); pendingEntryPoints.length = 0; } } function flushEarlyLogs(client) { try { pendingLogs.forEach(function (_ref3) { var _ref4 = (0, _slicedToArray2.default)(_ref3, 2), level = _ref4[0], data = _ref4[1]; HMRClient.log(level, data); }); } finally { pendingLogs.length = 0; } } function dismissRedbox() { if ("ios" === 'ios' && _NativeRedBox.default != null && _NativeRedBox.default.dismiss != null) { _NativeRedBox.default.dismiss(); } else { var NativeExceptionsManager = _$$_REQUIRE(_dependencyMap[11], "../Core/NativeExceptionsManager").default; NativeExceptionsManager && NativeExceptionsManager.dismissRedbox && NativeExceptionsManager.dismissRedbox(); } } function showCompileError() { if (currentCompileErrorMessage === null) { return; } // Even if there is already a redbox, syntax errors are more important. // Otherwise you risk seeing a stale runtime error while a syntax error is more recent. dismissRedbox(); var message = currentCompileErrorMessage; currentCompileErrorMessage = null; /* $FlowFixMe[class-object-subtyping] added when improving typing for this * parameters */ var error = new Error(message); // Symbolicating compile errors is wasted effort // because the stack trace is meaningless: error.preventSymbolication = true; throw error; } module.exports = HMRClient; },258,[1,53,66,47,259,261,48,4,264,178,266,80],"node_modules/react-native/Libraries/Utilities/HMRClient.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativeRedBox = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../../src/private/specs/modules/NativeRedBox")); Object.keys(_NativeRedBox).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeRedBox[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeRedBox[key]; } }); }); 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 = _NativeRedBox.default; },259,[260],"node_modules/react-native/Libraries/NativeModules/specs/NativeRedBox.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], "../../../../Libraries/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('RedBox'); },260,[51],"node_modules/react-native/src/private/specs/modules/NativeRedBox.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _NativeEventEmitter = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../EventEmitter/NativeEventEmitter")); var _NativeDevSettings = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "../NativeModules/specs/NativeDevSettings")); var _Platform = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "../Utilities/Platform")); /** * 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 DevSettings = { addMenuItem: function addMenuItem(title, handler) {}, reload: function reload(reason) {}, onFastRefresh: function onFastRefresh() {} }; if (__DEV__) { var emitter = new _NativeEventEmitter.default( // T88715063: NativeEventEmitter only used this parameter on iOS. Now it uses it on all platforms, so this code was modified automatically to preserve its behavior // If you want to use the native module on other platforms, please remove this condition and test its behavior _Platform.default.OS !== 'ios' ? null : _NativeDevSettings.default); var subscriptions = new Map(); DevSettings = { addMenuItem: function addMenuItem(title, handler) { // Make sure items are not added multiple times. This can // happen when hot reloading the module that registers the // menu items. The title is used as the id which means we // don't support multiple items with the same name. var subscription = subscriptions.get(title); if (subscription != null) { subscription.remove(); } else { _NativeDevSettings.default.addMenuItem(title); } subscription = emitter.addListener('didPressMenuItem', function (event) { if (event.title === title) { handler(); } }); subscriptions.set(title, subscription); }, reload: function reload(reason) { if (_NativeDevSettings.default.reloadWithReason != null) { _NativeDevSettings.default.reloadWithReason(reason != null ? reason : 'Uncategorized from JS'); } else { _NativeDevSettings.default.reload(); } }, onFastRefresh: function onFastRefresh() { _NativeDevSettings.default.onFastRefresh == null ? void 0 : _NativeDevSettings.default.onFastRefresh(); } }; } module.exports = DevSettings; },261,[1,232,262,48],"node_modules/react-native/Libraries/Utilities/DevSettings.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativeDevSettings = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../../src/private/specs/modules/NativeDevSettings")); Object.keys(_NativeDevSettings).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeDevSettings[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeDevSettings[key]; } }); }); 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 = _NativeDevSettings.default; },262,[263],"node_modules/react-native/Libraries/NativeModules/specs/NativeDevSettings.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], "../../../../Libraries/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('DevSettings'); },263,[51],"node_modules/react-native/src/private/specs/modules/NativeDevSettings.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { "use strict"; var _classCallCheck = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/classCallCheck"); var _createClass = _$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/createClass"); 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 _slicedToArray = _$$_REQUIRE(_dependencyMap[5], "@babel/runtime/helpers/slicedToArray"); 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 EventEmitter = _$$_REQUIRE(_dependencyMap[6], "./vendor/eventemitter3"); var inject = function inject(_ref) { var _ref$module = _slicedToArray(_ref.module, 2), id = _ref$module[0], code = _ref$module[1], sourceURL = _ref.sourceURL; if (global.globalEvalWithSourceUrl) { global.globalEvalWithSourceUrl(code, sourceURL); } else { eval(code); } }; var injectUpdate = function injectUpdate(update) { update.added.forEach(inject); update.modified.forEach(inject); }; var HMRClient = /*#__PURE__*/function (_EventEmitter) { function HMRClient(url) { var _this; _classCallCheck(this, HMRClient); _this = _callSuper(this, HMRClient); _this._isEnabled = false; _this._pendingUpdate = null; _this._queue = []; _this._state = "opening"; _this._ws = new global.WebSocket(url); _this._ws.onopen = function () { _this._state = "open"; _this.emit("open"); _this._flushQueue(); }; _this._ws.onerror = function (error) { _this.emit("connection-error", error); }; _this._ws.onclose = function (closeEvent) { _this._state = "closed"; _this.emit("close", closeEvent); }; _this._ws.onmessage = function (message) { var data = JSON.parse(String(message.data)); switch (data.type) { case "bundle-registered": _this.emit("bundle-registered"); break; case "update-start": _this.emit("update-start", data.body); break; case "update": _this.emit("update", data.body); break; case "update-done": _this.emit("update-done"); break; case "error": _this.emit("error", data.body); break; default: _this.emit("error", { type: "unknown-message", message: data }); } }; _this.on("update", function (update) { if (_this._isEnabled) { injectUpdate(update); } else if (_this._pendingUpdate == null) { _this._pendingUpdate = update; } else { _this._pendingUpdate = mergeUpdates(_this._pendingUpdate, update); } }); return _this; } _inherits(HMRClient, _EventEmitter); return _createClass(HMRClient, [{ key: "close", value: function close() { this._ws.close(); } }, { key: "send", value: function send(message) { switch (this._state) { case "opening": this._queue.push(message); break; case "open": this._ws.send(message); break; case "closed": break; default: throw new Error("[WebSocketHMRClient] Unknown state: " + this._state); } } }, { key: "_flushQueue", value: function _flushQueue() { var _this2 = this; this._queue.forEach(function (message) { return _this2.send(message); }); this._queue.length = 0; } }, { key: "enable", value: function enable() { this._isEnabled = true; var update = this._pendingUpdate; this._pendingUpdate = null; if (update != null) { injectUpdate(update); } } }, { key: "disable", value: function disable() { this._isEnabled = false; } }, { key: "isEnabled", value: function isEnabled() { return this._isEnabled; } }, { key: "hasPendingUpdates", value: function hasPendingUpdates() { return this._pendingUpdate != null; } }]); }(EventEmitter); function mergeUpdates(base, next) { var addedIDs = new Set(); var deletedIDs = new Set(); var moduleMap = new Map(); applyUpdateLocally(base); applyUpdateLocally(next); function applyUpdateLocally(update) { update.deleted.forEach(function (id) { if (addedIDs.has(id)) { addedIDs.delete(id); } else { deletedIDs.add(id); } moduleMap.delete(id); }); update.added.forEach(function (item) { var id = item.module[0]; if (deletedIDs.has(id)) { deletedIDs.delete(id); } else { addedIDs.add(id); } moduleMap.set(id, item); }); update.modified.forEach(function (item) { var id = item.module[0]; moduleMap.set(id, item); }); } var result = { isInitialUpdate: next.isInitialUpdate, revisionId: next.revisionId, added: [], modified: [], deleted: [] }; deletedIDs.forEach(function (id) { result.deleted.push(id); }); moduleMap.forEach(function (item, id) { if (deletedIDs.has(id)) { return; } if (addedIDs.has(id)) { result.added.push(item); } else { result.modified.push(item); } }); return result; } module.exports = HMRClient; },264,[14,15,25,27,30,53,265],"node_modules/metro-runtime/src/modules/HMRClient.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { "use strict"; var has = Object.prototype.hasOwnProperty, prefix = "~"; function Events() {} if (Object.create) { Events.prototype = Object.create(null); if (!new Events().__proto__) prefix = false; } function EE(fn, context, once) { this.fn = fn; this.context = context; this.once = once || false; } function addListener(emitter, event, fn, context, once) { if (typeof fn !== "function") { throw new TypeError("The listener must be a function"); } var listener = new EE(fn, context || emitter, once), evt = prefix ? prefix + event : event; if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);else emitter._events[evt] = [emitter._events[evt], listener]; return emitter; } function clearEvent(emitter, evt) { if (--emitter._eventsCount === 0) emitter._events = new Events();else delete emitter._events[evt]; } function EventEmitter() { this._events = new Events(); this._eventsCount = 0; } EventEmitter.prototype.eventNames = function eventNames() { var names = [], events, name; if (this._eventsCount === 0) return names; for (name in events = this._events) { if (has.call(events, name)) names.push(prefix ? name.slice(1) : name); } if (Object.getOwnPropertySymbols) { return names.concat(Object.getOwnPropertySymbols(events)); } return names; }; EventEmitter.prototype.listeners = function listeners(event) { var evt = prefix ? prefix + event : event, handlers = this._events[evt]; if (!handlers) return []; if (handlers.fn) return [handlers.fn]; for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) { ee[i] = handlers[i].fn; } return ee; }; EventEmitter.prototype.listenerCount = function listenerCount(event) { var evt = prefix ? prefix + event : event, listeners = this._events[evt]; if (!listeners) return 0; if (listeners.fn) return 1; return listeners.length; }; EventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) { var evt = prefix ? prefix + event : event; if (!this._events[evt]) return false; var listeners = this._events[evt], len = arguments.length, args, i; if (listeners.fn) { if (listeners.once) this.removeListener(event, listeners.fn, undefined, true); switch (len) { case 1: return listeners.fn.call(listeners.context), true; case 2: return listeners.fn.call(listeners.context, a1), true; case 3: return listeners.fn.call(listeners.context, a1, a2), true; case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true; case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true; case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true; } for (i = 1, args = new Array(len - 1); i < len; i++) { args[i - 1] = arguments[i]; } listeners.fn.apply(listeners.context, args); } else { var length = listeners.length, j; for (i = 0; i < length; i++) { if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true); switch (len) { case 1: listeners[i].fn.call(listeners[i].context); break; case 2: listeners[i].fn.call(listeners[i].context, a1); break; case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break; case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break; default: if (!args) for (j = 1, args = new Array(len - 1); j < len; j++) { args[j - 1] = arguments[j]; } listeners[i].fn.apply(listeners[i].context, args); } } } return true; }; EventEmitter.prototype.on = function on(event, fn, context) { return addListener(this, event, fn, context, false); }; EventEmitter.prototype.once = function once(event, fn, context) { return addListener(this, event, fn, context, true); }; EventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) { var evt = prefix ? prefix + event : event; if (!this._events[evt]) return this; if (!fn) { clearEvent(this, evt); return this; } var listeners = this._events[evt]; if (listeners.fn) { if (listeners.fn === fn && (!once || listeners.once) && (!context || listeners.context === context)) { clearEvent(this, evt); } } else { for (var i = 0, events = [], length = listeners.length; i < length; i++) { if (listeners[i].fn !== fn || once && !listeners[i].once || context && listeners[i].context !== context) { events.push(listeners[i]); } } if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;else clearEvent(this, evt); } return this; }; EventEmitter.prototype.removeAllListeners = function removeAllListeners(event) { var evt; if (event) { evt = prefix ? prefix + event : event; if (this._events[evt]) clearEvent(this, evt); } else { this._events = new Events(); this._eventsCount = 0; } return this; }; EventEmitter.prototype.off = EventEmitter.prototype.removeListener; EventEmitter.prototype.addListener = EventEmitter.prototype.on; EventEmitter.prefixed = prefix; EventEmitter.EventEmitter = EventEmitter; if ("undefined" !== typeof module) { module.exports = EventEmitter; } },265,[],"node_modules/metro-runtime/src/modules/vendor/eventemitter3.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _processColor = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../StyleSheet/processColor")); var _Appearance = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "./Appearance")); var _NativeDevLoadingView = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "./NativeDevLoadingView")); /** * 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 * */ module.exports = { showMessage: function showMessage(message, type) { if (_NativeDevLoadingView.default) { if (type === 'refresh') { var backgroundColor = (0, _processColor.default)('#2584e8'); var textColor = (0, _processColor.default)('#ffffff'); _NativeDevLoadingView.default.showMessage(message, typeof textColor === 'number' ? textColor : null, typeof backgroundColor === 'number' ? backgroundColor : null); } else if (type === 'load') { var _backgroundColor; var _textColor; if (_Appearance.default.getColorScheme() === 'dark') { _backgroundColor = (0, _processColor.default)('#fafafa'); _textColor = (0, _processColor.default)('#242526'); } else { _backgroundColor = (0, _processColor.default)('#404040'); _textColor = (0, _processColor.default)('#ffffff'); } _NativeDevLoadingView.default.showMessage(message, typeof _textColor === 'number' ? _textColor : null, typeof _backgroundColor === 'number' ? _backgroundColor : null); } } }, hide: function hide() { _NativeDevLoadingView.default && _NativeDevLoadingView.default.hide(); } }; },266,[1,90,267,271],"node_modules/react-native/Libraries/Utilities/LoadingView.ios.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _NativeEventEmitter = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../EventEmitter/NativeEventEmitter")); var _Platform = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[2], "../Utilities/Platform")); var _EventEmitter = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[3], "../vendor/emitter/EventEmitter")); var _DebugEnvironment = _$$_REQUIRE(_dependencyMap[4], "./DebugEnvironment"); var _NativeAppearance = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[5], "./NativeAppearance")); var _invariant = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[6], "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 eventEmitter = new _EventEmitter.default(); if (_NativeAppearance.default) { var nativeEventEmitter = new _NativeEventEmitter.default( // T88715063: NativeEventEmitter only used this parameter on iOS. Now it uses it on all platforms, so this code was modified automatically to preserve its behavior // If you want to use the native module on other platforms, please remove this condition and test its behavior _Platform.default.OS !== 'ios' ? null : _NativeAppearance.default); nativeEventEmitter.addListener('appearanceChanged', function (newAppearance) { var colorScheme = newAppearance.colorScheme; (0, _invariant.default)(colorScheme === 'dark' || colorScheme === 'light' || colorScheme == null, "Unrecognized color scheme. Did you mean 'dark' or 'light'?"); eventEmitter.emit('change', { colorScheme: colorScheme }); }); } module.exports = { /** * Note: Although color scheme is available immediately, it may change at any * time. Any rendering logic or styles that depend on this should try to call * this function on every render, rather than caching the value (for example, * using inline styles rather than setting a value in a `StyleSheet`). * * Example: `const colorScheme = Appearance.getColorScheme();` * * @returns {?ColorSchemeName} Value for the color scheme preference. */ getColorScheme: function getColorScheme() { if (__DEV__) { if (_DebugEnvironment.isAsyncDebugging) { // Hard code light theme when using the async debugger as // sync calls aren't supported return 'light'; } } // TODO: (hramos) T52919652 Use ?ColorSchemeName once codegen supports union var nativeColorScheme = _NativeAppearance.default == null ? null : _NativeAppearance.default.getColorScheme() || null; (0, _invariant.default)(nativeColorScheme === 'dark' || nativeColorScheme === 'light' || nativeColorScheme == null, "Unrecognized color scheme. Did you mean 'dark' or 'light'?"); return nativeColorScheme; }, setColorScheme: function setColorScheme(colorScheme) { var nativeColorScheme = colorScheme == null ? 'unspecified' : colorScheme; (0, _invariant.default)(colorScheme === 'dark' || colorScheme === 'light' || colorScheme == null, "Unrecognized color scheme. Did you mean 'dark', 'light' or null?"); if (_NativeAppearance.default != null && _NativeAppearance.default.setColorScheme != null) { _NativeAppearance.default.setColorScheme(nativeColorScheme); } }, /** * Add an event handler that is fired when appearance preferences change. */ addChangeListener: function addChangeListener(listener) { return eventEmitter.addListener('change', listener); } }; },267,[1,232,48,32,268,269,4],"node_modules/react-native/Libraries/Utilities/Appearance.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); exports.isAsyncDebugging = void 0; /** * 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 isAsyncDebugging = exports.isAsyncDebugging = false; if (__DEV__) { // These native interfaces don't exist in asynchronous debugging environments. exports.isAsyncDebugging = isAsyncDebugging = !global.nativeCallSyncHook && !global.RN$Bridgeless; } },268,[],"node_modules/react-native/Libraries/Utilities/DebugEnvironment.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 _NativeAppearance = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../../src/private/specs/modules/NativeAppearance")); /** * 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 = _NativeAppearance.default; },269,[1,270],"node_modules/react-native/Libraries/Utilities/NativeAppearance.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], "../../../../Libraries/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('Appearance'); },270,[51],"node_modules/react-native/src/private/specs/modules/NativeAppearance.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativeDevLoadingView = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../src/private/specs/modules/NativeDevLoadingView")); Object.keys(_NativeDevLoadingView).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeDevLoadingView[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeDevLoadingView[key]; } }); }); 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 = _NativeDevLoadingView.default; },271,[272],"node_modules/react-native/Libraries/Utilities/NativeDevLoadingView.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], "../../../../Libraries/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('DevLoadingView'); },272,[51],"node_modules/react-native/src/private/specs/modules/NativeDevLoadingView.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'; // This shim ensures DEV binary builds don't crash in JS // when they're combined with a PROD JavaScript build. var HMRClientProdShim = { setup: function setup() {}, enable: function enable() { console.error('Fast Refresh is disabled in JavaScript bundles built in production mode. ' + 'Did you forget to run Metro?'); }, disable: function disable() {}, registerBundle: function registerBundle() {}, log: function log() {} }; module.exports = HMRClientProdShim; },273,[],"node_modules/react-native/Libraries/Utilities/HMRClientProdShim.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 SegmentFetcher. * You can use this module directly, or just require InitializeCore. */ function __fetchSegment(segmentId, options, callback) { var SegmentFetcher = _$$_REQUIRE(_dependencyMap[0], "./SegmentFetcher/NativeSegmentFetcher").default; SegmentFetcher.fetchSegment(segmentId, options, function (errorObject) { if (errorObject) { var error = new Error(errorObject.message); error.code = errorObject.code; // flowlint-line unclear-type: off callback(error); } callback(null); }); } global.__fetchSegment = __fetchSegment; },274,[275],"node_modules/react-native/Libraries/Core/setUpSegmentFetcher.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = {}; exports.default = void 0; var _NativeSegmentFetcher = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[0], "../../../src/private/specs/modules/NativeSegmentFetcher")); Object.keys(_NativeSegmentFetcher).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _NativeSegmentFetcher[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { return _NativeSegmentFetcher[key]; } }); }); 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 = _NativeSegmentFetcher.default; },275,[276],"node_modules/react-native/Libraries/Core/SegmentFetcher/NativeSegmentFetcher.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], "../../../../Libraries/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('SegmentFetcher'); },276,[51],"node_modules/react-native/src/private/specs/modules/NativeSegmentFetcher.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'; /** * Check for compatibility between the JS and native code. * You can use this module directly, or just require InitializeCore. */ var ReactNativeVersionCheck = _$$_REQUIRE(_dependencyMap[0], "./ReactNativeVersionCheck"); ReactNativeVersionCheck.checkVersions(); },277,[278],"node_modules/react-native/Libraries/Core/checkNativeVersion.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _Platform = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../Utilities/Platform")); /** * 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 ReactNativeVersion = _$$_REQUIRE(_dependencyMap[2], "./ReactNativeVersion"); /** * Checks that the version of this React Native JS is compatible with the native * code, throwing an error if it isn't. * * The existence of this module is part of the public interface of React Native * even though it is used only internally within React Native. React Native * implementations for other platforms (ex: Windows) may override this module * and rely on its existence as a separate module. */ var checkVersions = function checkVersions() { var nativeVersion = _Platform.default.constants.reactNativeVersion; if (ReactNativeVersion.version.major !== nativeVersion.major || ReactNativeVersion.version.minor !== nativeVersion.minor) { console.error(`React Native version mismatch.\n\nJavaScript version: ${_formatVersion(ReactNativeVersion.version)}\n` + `Native version: ${_formatVersion(nativeVersion)}\n\n` + 'Make sure that you have rebuilt the native code. If the problem ' + 'persists try clearing the Watchman and packager caches with ' + '`watchman watch-del-all && npx react-native start --reset-cache`.'); } }; function _formatVersion(version) { return `${version.major}.${version.minor}.${version.patch}` + ( // eslint-disable-next-line eqeqeq version.prerelease != undefined ? `-${version.prerelease}` : ''); } module.exports = { checkVersions: checkVersions }; },278,[1,48,279],"node_modules/react-native/Libraries/Core/ReactNativeVersionCheck.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. * * * @generated by scripts/releases/set-rn-version.js */ var version = { major: 0, minor: 74, patch: 3, prerelease: null }; module.exports = { version: version }; },279,[],"node_modules/react-native/Libraries/Core/ReactNativeVersion.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault"); var _Platform = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "../Utilities/Platform")); /** * 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 developer tools for React Native. * You can use this module directly, or just require InitializeCore. */ if (__DEV__) { var _global$__METRO_GLOBA; _$$_REQUIRE(_dependencyMap[2], "./setUpReactDevTools"); // Set up inspector var JSInspector = _$$_REQUIRE(_dependencyMap[3], "../JSInspector/JSInspector"); JSInspector.registerAgent(_$$_REQUIRE(_dependencyMap[4], "../JSInspector/NetworkAgent")); // Note we can't check if console is "native" because it would appear "native" in JSC and Hermes. // We also can't check any properties that don't exist in the Chrome worker environment. // So we check a navigator property that's set to a particular value ("Netscape") in all real browsers. var isLikelyARealBrowser = global.navigator != null && /* _ * | | * _ __ ___| |_ ___ ___ __ _ _ __ ___ * | '_ \ / _ \ __/ __|/ __/ _` | '_ \ / _ \ * | | | | __/ |_\__ \ (_| (_| | |_) | __/ * |_| |_|\___|\__|___/\___\__,_| .__/ \___| * | | * |_| */ global.navigator.appName === 'Netscape'; // Any real browser if (!_Platform.default.isTesting) { var HMRClient = _$$_REQUIRE(_dependencyMap[5], "../Utilities/HMRClient"); if (console._isPolyfilled) { // We assume full control over the console and send JavaScript logs to Metro. ['trace', 'info', 'warn', 'error', 'log', 'group', 'groupCollapsed', 'groupEnd', 'debug'].forEach(function (level) { var originalFunction = console[level]; console[level] = function () { for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } HMRClient.log(level, args); originalFunction.apply(console, args); }; }); } else { // We assume the environment has a real rich console (like Chrome), and don't hijack it to log to Metro. // It's likely the developer is using rich console to debug anyway, and hijacking it would // lose the filenames in console.log calls: https://github.com/facebook/react-native/issues/26788. HMRClient.log('log', [`JavaScript logs will appear in your ${isLikelyARealBrowser ? 'browser' : 'environment'} console`]); } } _$$_REQUIRE(_dependencyMap[6], "./setUpReactRefresh"); global[`${(_global$__METRO_GLOBA = global.__METRO_GLOBAL_PREFIX__) != null ? _global$__METRO_GLOBA : ''}__loadBundleAsync`] = _$$_REQUIRE(_dependencyMap[7], "./Devtools/loadBundleFromServer"); } },280,[1,48,281,291,292,258,294,298],"node_modules/react-native/Libraries/Core/setUpDeveloperTools.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 (__DEV__) { var isWebSocketOpen = false; var ws = null; var reactDevTools = _$$_REQUIRE(_dependencyMap[0], "react-devtools-core"); var connectToDevTools = function connectToDevTools() { if (ws !== null && isWebSocketOpen) { // If the DevTools backend is already connected, don't recreate the WebSocket. // This would break the connection. // If there isn't an active connection, a backend may be waiting to connect, // in which case it's okay to make a new one. return; } // not when debugging in chrome // TODO(t12832058) This check is broken if (!window.document) { var AppState = _$$_REQUIRE(_dependencyMap[1], "../AppState/AppState"); var getDevServer = _$$_REQUIRE(_dependencyMap[2], "./Devtools/getDevServer"); // Don't steal the DevTools from currently active app. // Note: if you add any AppState subscriptions to this file, // you will also need to guard against `AppState.isAvailable`, // or the code will throw for bundles that don't have it. var isAppActive = function isAppActive() { return AppState.currentState !== 'background'; }; // Get hostname from development server (packager) var devServer = getDevServer(); var host = devServer.bundleLoadedFromServer ? devServer.url.replace(/https?:\/\//, '').replace(/\/$/, '').split(':')[0] : 'localhost'; // Read the optional global variable for backward compatibility. // It was added in https://github.com/facebook/react-native/commit/bf2b435322e89d0aeee8792b1c6e04656c2719a0. var port = window.__REACT_DEVTOOLS_PORT__ != null ? window.__REACT_DEVTOOLS_PORT__ : 8097; var WebSocket = _$$_REQUIRE(_dependencyMap[3], "../WebSocket/WebSocket"); ws = new WebSocket('ws://' + host + ':' + port); ws.addEventListener('close', function (event) { isWebSocketOpen = false; }); ws.addEventListener('open', function (event) { isWebSocketOpen = true; }); var ReactNativeStyleAttributes = _$$_REQUIRE(_dependencyMap[4], "../Components/View/ReactNativeStyleAttributes"); var devToolsSettingsManager = _$$_REQUIRE(_dependencyMap[5], "../DevToolsSettings/DevToolsSettingsManager"); reactDevTools.connectToDevTools({ isAppActive: isAppActive, resolveRNStyle: _$$_REQUIRE(_dependencyMap[6], "../StyleSheet/flattenStyle"), nativeStyleEditorValidAttributes: Object.keys(ReactNativeStyleAttributes), websocket: ws, devToolsSettingsManager: devToolsSettingsManager }); } }; var RCTNativeAppEventEmitter = _$$_REQUIRE(_dependencyMap[7], "../EventEmitter/RCTNativeAppEventEmitter"); RCTNativeAppEventEmitter.addListener('RCTDevMenuShown', connectToDevTools); connectToDevTools(); // Try connecting once on load } },281,[282,283,66,229,88,287,131,257],"node_modules/react-native/Libraries/Core/setUpReactDevTools.js"); __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) { (function webpackUniversalModuleDefinition(root, factory) { if (typeof exports === 'object' && typeof module === 'object') module.exports = factory();else if (typeof define === 'function' && define.amd) define([], factory);else if (typeof exports === 'object') exports["ReactDevToolsBackend"] = factory();else root["ReactDevToolsBackend"] = factory(); })(self, function () { return /******/function () { // webpackBootstrap /******/ var __webpack_modules__ = { /***/786: ( /***/function _(__unused_webpack_module, exports, __webpack_require__) { "use strict"; var __webpack_unused_export__; /** * @license React * react-debug-tools.production.js * * 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. */ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } var ErrorStackParser = __webpack_require__(206), React = __webpack_require__(189), assign = Object.assign, ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"), hasOwnProperty = Object.prototype.hasOwnProperty, hookLog = [], primitiveStackCache = null; function getPrimitiveStackCache() { if (null === primitiveStackCache) { var cache = new Map(); try { Dispatcher.useContext({ _currentValue: null }); Dispatcher.useState(null); Dispatcher.useReducer(function (s) { return s; }, null); Dispatcher.useRef(null); "function" === typeof Dispatcher.useCacheRefresh && Dispatcher.useCacheRefresh(); Dispatcher.useLayoutEffect(function () {}); Dispatcher.useInsertionEffect(function () {}); Dispatcher.useEffect(function () {}); Dispatcher.useImperativeHandle(void 0, function () { return null; }); Dispatcher.useDebugValue(null); Dispatcher.useCallback(function () {}); Dispatcher.useTransition(); Dispatcher.useSyncExternalStore(function () { return function () {}; }, function () { return null; }, function () { return null; }); Dispatcher.useDeferredValue(null); Dispatcher.useMemo(function () { return null; }); "function" === typeof Dispatcher.useMemoCache && Dispatcher.useMemoCache(0); "function" === typeof Dispatcher.useOptimistic && Dispatcher.useOptimistic(null, function (s) { return s; }); "function" === typeof Dispatcher.useFormState && Dispatcher.useFormState(function (s) { return s; }, null); "function" === typeof Dispatcher.useActionState && Dispatcher.useActionState(function (s) { return s; }, null); if ("function" === typeof Dispatcher.use) { Dispatcher.use({ $$typeof: REACT_CONTEXT_TYPE, _currentValue: null }); Dispatcher.use({ then: function then() {}, status: "fulfilled", value: null }); try { Dispatcher.use({ then: function then() {} }); } catch (x) {} } Dispatcher.useId(); "function" === typeof Dispatcher.useHostTransitionStatus && Dispatcher.useHostTransitionStatus(); } finally { var readHookLog = hookLog; hookLog = []; } for (var i = 0; i < readHookLog.length; i++) { var hook = readHookLog[i]; cache.set(hook.primitive, ErrorStackParser.parse(hook.stackError)); } primitiveStackCache = cache; } return primitiveStackCache; } var currentFiber = null, currentHook = null, currentContextDependency = null; function nextHook() { var hook = currentHook; null !== hook && (currentHook = hook.next); return hook; } function readContext(context) { if (null === currentFiber) return context._currentValue; if (null === currentContextDependency) throw Error("Context reads do not line up with context dependencies. This is a bug in React Debug Tools."); hasOwnProperty.call(currentContextDependency, "memoizedValue") ? (context = currentContextDependency.memoizedValue, currentContextDependency = currentContextDependency.next) : context = context._currentValue; return context; } var SuspenseException = Error("Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`"), Dispatcher = { use: function use(usable) { if (null !== usable && "object" === _typeof(usable)) { if ("function" === typeof usable.then) { switch (usable.status) { case "fulfilled": var fulfilledValue = usable.value; hookLog.push({ displayName: null, primitive: "Promise", stackError: Error(), value: fulfilledValue, debugInfo: void 0 === usable._debugInfo ? null : usable._debugInfo, dispatcherHookName: "Use" }); return fulfilledValue; case "rejected": throw usable.reason; } hookLog.push({ displayName: null, primitive: "Unresolved", stackError: Error(), value: usable, debugInfo: void 0 === usable._debugInfo ? null : usable._debugInfo, dispatcherHookName: "Use" }); throw SuspenseException; } if (usable.$$typeof === REACT_CONTEXT_TYPE) return fulfilledValue = readContext(usable), hookLog.push({ displayName: usable.displayName || "Context", primitive: "Context (use)", stackError: Error(), value: fulfilledValue, debugInfo: null, dispatcherHookName: "Use" }), fulfilledValue; } throw Error("An unsupported type was passed to use(): " + String(usable)); }, readContext: readContext, useCacheRefresh: function useCacheRefresh() { var hook = nextHook(); hookLog.push({ displayName: null, primitive: "CacheRefresh", stackError: Error(), value: null !== hook ? hook.memoizedState : function () {}, debugInfo: null, dispatcherHookName: "CacheRefresh" }); return function () {}; }, useCallback: function useCallback(callback) { var hook = nextHook(); hookLog.push({ displayName: null, primitive: "Callback", stackError: Error(), value: null !== hook ? hook.memoizedState[0] : callback, debugInfo: null, dispatcherHookName: "Callback" }); return callback; }, useContext: function useContext(context) { var value = readContext(context); hookLog.push({ displayName: context.displayName || null, primitive: "Context", stackError: Error(), value: value, debugInfo: null, dispatcherHookName: "Context" }); return value; }, useEffect: function useEffect(create) { nextHook(); hookLog.push({ displayName: null, primitive: "Effect", stackError: Error(), value: create, debugInfo: null, dispatcherHookName: "Effect" }); }, useImperativeHandle: function useImperativeHandle(ref) { nextHook(); var instance = void 0; null !== ref && "object" === _typeof(ref) && (instance = ref.current); hookLog.push({ displayName: null, primitive: "ImperativeHandle", stackError: Error(), value: instance, debugInfo: null, dispatcherHookName: "ImperativeHandle" }); }, useDebugValue: function useDebugValue(value, formatterFn) { hookLog.push({ displayName: null, primitive: "DebugValue", stackError: Error(), value: "function" === typeof formatterFn ? formatterFn(value) : value, debugInfo: null, dispatcherHookName: "DebugValue" }); }, useLayoutEffect: function useLayoutEffect(create) { nextHook(); hookLog.push({ displayName: null, primitive: "LayoutEffect", stackError: Error(), value: create, debugInfo: null, dispatcherHookName: "LayoutEffect" }); }, useInsertionEffect: function useInsertionEffect(create) { nextHook(); hookLog.push({ displayName: null, primitive: "InsertionEffect", stackError: Error(), value: create, debugInfo: null, dispatcherHookName: "InsertionEffect" }); }, useMemo: function useMemo(nextCreate) { var hook = nextHook(); nextCreate = null !== hook ? hook.memoizedState[0] : nextCreate(); hookLog.push({ displayName: null, primitive: "Memo", stackError: Error(), value: nextCreate, debugInfo: null, dispatcherHookName: "Memo" }); return nextCreate; }, useMemoCache: function useMemoCache(size) { var fiber = currentFiber; if (null == fiber) return []; var $jscomp$optchain$tmp1432063890$0; fiber = null == ($jscomp$optchain$tmp1432063890$0 = fiber.updateQueue) ? void 0 : $jscomp$optchain$tmp1432063890$0.memoCache; if (null == fiber) return []; $jscomp$optchain$tmp1432063890$0 = fiber.data[fiber.index]; if (void 0 === $jscomp$optchain$tmp1432063890$0) { $jscomp$optchain$tmp1432063890$0 = fiber.data[fiber.index] = Array(size); for (var i = 0; i < size; i++) { $jscomp$optchain$tmp1432063890$0[i] = REACT_MEMO_CACHE_SENTINEL; } } fiber.index++; return $jscomp$optchain$tmp1432063890$0; }, useOptimistic: function useOptimistic(passthrough) { var hook = nextHook(); passthrough = null !== hook ? hook.memoizedState : passthrough; hookLog.push({ displayName: null, primitive: "Optimistic", stackError: Error(), value: passthrough, debugInfo: null, dispatcherHookName: "Optimistic" }); return [passthrough, function () {}]; }, useReducer: function useReducer(reducer, initialArg, init) { reducer = nextHook(); initialArg = null !== reducer ? reducer.memoizedState : void 0 !== init ? init(initialArg) : initialArg; hookLog.push({ displayName: null, primitive: "Reducer", stackError: Error(), value: initialArg, debugInfo: null, dispatcherHookName: "Reducer" }); return [initialArg, function () {}]; }, useRef: function useRef(initialValue) { var hook = nextHook(); initialValue = null !== hook ? hook.memoizedState : { current: initialValue }; hookLog.push({ displayName: null, primitive: "Ref", stackError: Error(), value: initialValue.current, debugInfo: null, dispatcherHookName: "Ref" }); return initialValue; }, useState: function useState(initialState) { var hook = nextHook(); initialState = null !== hook ? hook.memoizedState : "function" === typeof initialState ? initialState() : initialState; hookLog.push({ displayName: null, primitive: "State", stackError: Error(), value: initialState, debugInfo: null, dispatcherHookName: "State" }); return [initialState, function () {}]; }, useTransition: function useTransition() { var stateHook = nextHook(); nextHook(); stateHook = null !== stateHook ? stateHook.memoizedState : !1; hookLog.push({ displayName: null, primitive: "Transition", stackError: Error(), value: stateHook, debugInfo: null, dispatcherHookName: "Transition" }); return [stateHook, function () {}]; }, useSyncExternalStore: function useSyncExternalStore(subscribe, getSnapshot) { nextHook(); nextHook(); subscribe = getSnapshot(); hookLog.push({ displayName: null, primitive: "SyncExternalStore", stackError: Error(), value: subscribe, debugInfo: null, dispatcherHookName: "SyncExternalStore" }); return subscribe; }, useDeferredValue: function useDeferredValue(value) { var hook = nextHook(); value = null !== hook ? hook.memoizedState : value; hookLog.push({ displayName: null, primitive: "DeferredValue", stackError: Error(), value: value, debugInfo: null, dispatcherHookName: "DeferredValue" }); return value; }, useId: function useId() { var hook = nextHook(); hook = null !== hook ? hook.memoizedState : ""; hookLog.push({ displayName: null, primitive: "Id", stackError: Error(), value: hook, debugInfo: null, dispatcherHookName: "Id" }); return hook; }, useFormState: function useFormState(action, initialState) { var hook = nextHook(); nextHook(); nextHook(); action = Error(); var debugInfo = null, error = null; if (null !== hook) { if (initialState = hook.memoizedState, "object" === _typeof(initialState) && null !== initialState && "function" === typeof initialState.then) switch (initialState.status) { case "fulfilled": var value = initialState.value; debugInfo = void 0 === initialState._debugInfo ? null : initialState._debugInfo; break; case "rejected": error = initialState.reason; break; default: error = SuspenseException, debugInfo = void 0 === initialState._debugInfo ? null : initialState._debugInfo, value = initialState; } else value = initialState; } else value = initialState; hookLog.push({ displayName: null, primitive: "FormState", stackError: action, value: value, debugInfo: debugInfo, dispatcherHookName: "FormState" }); if (null !== error) throw error; return [value, function () {}, !1]; }, useActionState: function useActionState(action, initialState) { var hook = nextHook(); nextHook(); nextHook(); action = Error(); var debugInfo = null, error = null; if (null !== hook) { if (initialState = hook.memoizedState, "object" === _typeof(initialState) && null !== initialState && "function" === typeof initialState.then) switch (initialState.status) { case "fulfilled": var value = initialState.value; debugInfo = void 0 === initialState._debugInfo ? null : initialState._debugInfo; break; case "rejected": error = initialState.reason; break; default: error = SuspenseException, debugInfo = void 0 === initialState._debugInfo ? null : initialState._debugInfo, value = initialState; } else value = initialState; } else value = initialState; hookLog.push({ displayName: null, primitive: "ActionState", stackError: action, value: value, debugInfo: debugInfo, dispatcherHookName: "ActionState" }); if (null !== error) throw error; return [value, function () {}, !1]; }, useHostTransitionStatus: function useHostTransitionStatus() { var status = readContext({ _currentValue: null }); hookLog.push({ displayName: null, primitive: "HostTransitionStatus", stackError: Error(), value: status, debugInfo: null, dispatcherHookName: "HostTransitionStatus" }); return status; } }, DispatcherProxyHandler = { get: function get(target, prop) { if (target.hasOwnProperty(prop)) return target[prop]; target = Error("Missing method in Dispatcher: " + prop); target.name = "ReactDebugToolsUnsupportedHookError"; throw target; } }, DispatcherProxy = "undefined" === typeof Proxy ? Dispatcher : new Proxy(Dispatcher, DispatcherProxyHandler), mostLikelyAncestorIndex = 0; function findSharedIndex(hookStack, rootStack, rootIndex) { var source = rootStack[rootIndex].source, i = 0; a: for (; i < hookStack.length; i++) { if (hookStack[i].source === source) { for (var a = rootIndex + 1, b = i + 1; a < rootStack.length && b < hookStack.length; a++, b++) { if (hookStack[b].source !== rootStack[a].source) continue a; } return i; } } return -1; } function isReactWrapper(functionName, wrapperName) { functionName = parseHookName(functionName); return "HostTransitionStatus" === wrapperName ? functionName === wrapperName || "FormStatus" === functionName : functionName === wrapperName; } function parseHookName(functionName) { if (!functionName) return ""; var startIndex = functionName.lastIndexOf("[as "); if (-1 !== startIndex) return parseHookName(functionName.slice(startIndex + 4, -1)); startIndex = functionName.lastIndexOf("."); startIndex = -1 === startIndex ? 0 : startIndex + 1; if ("use" === functionName.slice(startIndex, startIndex + 3)) { if (3 === functionName.length - startIndex) return "Use"; startIndex += 3; } return functionName.slice(startIndex); } function buildTree(rootStack$jscomp$0, readHookLog) { for (var rootChildren = [], prevStack = null, levelChildren = rootChildren, nativeHookID = 0, stackOfChildren = [], i = 0; i < readHookLog.length; i++) { var hook = readHookLog[i]; var rootStack = rootStack$jscomp$0; var JSCompiler_inline_result = ErrorStackParser.parse(hook.stackError); b: { var hookStack = JSCompiler_inline_result, rootIndex = findSharedIndex(hookStack, rootStack, mostLikelyAncestorIndex); if (-1 !== rootIndex) rootStack = rootIndex;else { for (var i$jscomp$0 = 0; i$jscomp$0 < rootStack.length && 5 > i$jscomp$0; i$jscomp$0++) { if (rootIndex = findSharedIndex(hookStack, rootStack, i$jscomp$0), -1 !== rootIndex) { mostLikelyAncestorIndex = i$jscomp$0; rootStack = rootIndex; break b; } } rootStack = -1; } } b: { hookStack = JSCompiler_inline_result; rootIndex = getPrimitiveStackCache().get(hook.primitive); if (void 0 !== rootIndex) for (i$jscomp$0 = 0; i$jscomp$0 < rootIndex.length && i$jscomp$0 < hookStack.length; i$jscomp$0++) { if (rootIndex[i$jscomp$0].source !== hookStack[i$jscomp$0].source) { i$jscomp$0 < hookStack.length - 1 && isReactWrapper(hookStack[i$jscomp$0].functionName, hook.dispatcherHookName) && i$jscomp$0++; i$jscomp$0 < hookStack.length - 1 && isReactWrapper(hookStack[i$jscomp$0].functionName, hook.dispatcherHookName) && i$jscomp$0++; hookStack = i$jscomp$0; break b; } } hookStack = -1; } JSCompiler_inline_result = -1 === rootStack || -1 === hookStack || 2 > rootStack - hookStack ? -1 === hookStack ? [null, null] : [JSCompiler_inline_result[hookStack - 1], null] : [JSCompiler_inline_result[hookStack - 1], JSCompiler_inline_result.slice(hookStack, rootStack - 1)]; hookStack = JSCompiler_inline_result[0]; JSCompiler_inline_result = JSCompiler_inline_result[1]; rootStack = hook.displayName; null === rootStack && null !== hookStack && (rootStack = parseHookName(hookStack.functionName) || parseHookName(hook.dispatcherHookName)); if (null !== JSCompiler_inline_result) { hookStack = 0; if (null !== prevStack) { for (; hookStack < JSCompiler_inline_result.length && hookStack < prevStack.length && JSCompiler_inline_result[JSCompiler_inline_result.length - hookStack - 1].source === prevStack[prevStack.length - hookStack - 1].source;) { hookStack++; } for (prevStack = prevStack.length - 1; prevStack > hookStack; prevStack--) { levelChildren = stackOfChildren.pop(); } } for (prevStack = JSCompiler_inline_result.length - hookStack - 1; 1 <= prevStack; prevStack--) { hookStack = [], rootIndex = JSCompiler_inline_result[prevStack], rootIndex = { id: null, isStateEditable: !1, name: parseHookName(JSCompiler_inline_result[prevStack - 1].functionName), value: void 0, subHooks: hookStack, debugInfo: null, hookSource: { lineNumber: rootIndex.lineNumber, columnNumber: rootIndex.columnNumber, functionName: rootIndex.functionName, fileName: rootIndex.fileName } }, levelChildren.push(rootIndex), stackOfChildren.push(levelChildren), levelChildren = hookStack; } prevStack = JSCompiler_inline_result; } hookStack = hook.primitive; rootIndex = hook.debugInfo; hook = { id: "Context" === hookStack || "Context (use)" === hookStack || "DebugValue" === hookStack || "Promise" === hookStack || "Unresolved" === hookStack || "HostTransitionStatus" === hookStack ? null : nativeHookID++, isStateEditable: "Reducer" === hookStack || "State" === hookStack, name: rootStack || hookStack, value: hook.value, subHooks: [], debugInfo: rootIndex, hookSource: null }; rootStack = { lineNumber: null, functionName: null, fileName: null, columnNumber: null }; JSCompiler_inline_result && 1 <= JSCompiler_inline_result.length && (JSCompiler_inline_result = JSCompiler_inline_result[0], rootStack.lineNumber = JSCompiler_inline_result.lineNumber, rootStack.functionName = JSCompiler_inline_result.functionName, rootStack.fileName = JSCompiler_inline_result.fileName, rootStack.columnNumber = JSCompiler_inline_result.columnNumber); hook.hookSource = rootStack; levelChildren.push(hook); } processDebugValues(rootChildren, null); return rootChildren; } function processDebugValues(hooksTree, parentHooksNode) { for (var debugValueHooksNodes = [], i = 0; i < hooksTree.length; i++) { var hooksNode = hooksTree[i]; "DebugValue" === hooksNode.name && 0 === hooksNode.subHooks.length ? (hooksTree.splice(i, 1), i--, debugValueHooksNodes.push(hooksNode)) : processDebugValues(hooksNode.subHooks, hooksNode); } null !== parentHooksNode && (1 === debugValueHooksNodes.length ? parentHooksNode.value = debugValueHooksNodes[0].value : 1 < debugValueHooksNodes.length && (parentHooksNode.value = debugValueHooksNodes.map(function (_ref) { return _ref.value; }))); } function handleRenderFunctionError(error) { if (error !== SuspenseException) { if (error instanceof Error && "ReactDebugToolsUnsupportedHookError" === error.name) throw error; var wrapperError = Error("Error rendering inspected component", { cause: error }); wrapperError.name = "ReactDebugToolsRenderError"; wrapperError.cause = error; throw wrapperError; } } function inspectHooks(renderFunction, props, currentDispatcher) { null == currentDispatcher && (currentDispatcher = ReactSharedInternals); var previousDispatcher = currentDispatcher.H; currentDispatcher.H = DispatcherProxy; try { var ancestorStackError = Error(); renderFunction(props); } catch (error) { handleRenderFunctionError(error); } finally { renderFunction = hookLog, hookLog = [], currentDispatcher.H = previousDispatcher; } currentDispatcher = ErrorStackParser.parse(ancestorStackError); return buildTree(currentDispatcher, renderFunction); } function restoreContexts(contextMap) { contextMap.forEach(function (value, context) { return context._currentValue = value; }); } __webpack_unused_export__ = inspectHooks; exports.inspectHooksOfFiber = function (fiber, currentDispatcher) { null == currentDispatcher && (currentDispatcher = ReactSharedInternals); if (0 !== fiber.tag && 15 !== fiber.tag && 11 !== fiber.tag) throw Error("Unknown Fiber. Needs to be a function component to inspect hooks."); getPrimitiveStackCache(); currentHook = fiber.memoizedState; currentFiber = fiber; if (hasOwnProperty.call(currentFiber, "dependencies")) { var dependencies = currentFiber.dependencies; currentContextDependency = null !== dependencies ? dependencies.firstContext : null; } else if (hasOwnProperty.call(currentFiber, "dependencies_old")) dependencies = currentFiber.dependencies_old, currentContextDependency = null !== dependencies ? dependencies.firstContext : null;else if (hasOwnProperty.call(currentFiber, "dependencies_new")) dependencies = currentFiber.dependencies_new, currentContextDependency = null !== dependencies ? dependencies.firstContext : null;else if (hasOwnProperty.call(currentFiber, "contextDependencies")) dependencies = currentFiber.contextDependencies, currentContextDependency = null !== dependencies ? dependencies.first : null;else throw Error("Unsupported React version. This is a bug in React Debug Tools."); dependencies = fiber.type; var props = fiber.memoizedProps; if (dependencies !== fiber.elementType && dependencies && dependencies.defaultProps) { props = assign({}, props); var defaultProps = dependencies.defaultProps; for (propName in defaultProps) { void 0 === props[propName] && (props[propName] = defaultProps[propName]); } } var propName = new Map(); try { if (null !== currentContextDependency && !hasOwnProperty.call(currentContextDependency, "memoizedValue")) for (defaultProps = fiber; defaultProps;) { if (10 === defaultProps.tag) { var context = defaultProps.type; void 0 !== context._context && (context = context._context); propName.has(context) || (propName.set(context, context._currentValue), context._currentValue = defaultProps.memoizedProps.value); } defaultProps = defaultProps.return; } if (11 === fiber.tag) { var renderFunction = dependencies.render; context = props; var ref = fiber.ref; fiber = currentDispatcher; var previousDispatcher = fiber.H; fiber.H = DispatcherProxy; try { var ancestorStackError = Error(); renderFunction(context, ref); } catch (error) { handleRenderFunctionError(error); } finally { var readHookLog = hookLog; hookLog = []; fiber.H = previousDispatcher; } var rootStack = ErrorStackParser.parse(ancestorStackError); return buildTree(rootStack, readHookLog); } return inspectHooks(dependencies, props, currentDispatcher); } finally { currentContextDependency = currentHook = currentFiber = null, restoreContexts(propName); } }; /***/ }), /***/987: ( /***/function _(module, __unused_webpack_exports, __webpack_require__) { "use strict"; if (true) { module.exports = __webpack_require__(786); } else {} /***/ }), /***/890: ( /***/function _(__unused_webpack_module, exports) { "use strict"; var __webpack_unused_export__; /** * @license React * react-is.production.js * * 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. */ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"); Symbol.for("react.provider"); var REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"), REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"); function typeOf(object) { if ("object" === _typeof(object) && null !== object) { var $$typeof = object.$$typeof; switch ($$typeof) { case REACT_ELEMENT_TYPE: switch (object = object.type, object) { case REACT_FRAGMENT_TYPE: case REACT_PROFILER_TYPE: case REACT_STRICT_MODE_TYPE: case REACT_SUSPENSE_TYPE: case REACT_SUSPENSE_LIST_TYPE: return object; default: switch (object = object && object.$$typeof, object) { case REACT_CONTEXT_TYPE: case REACT_FORWARD_REF_TYPE: case REACT_LAZY_TYPE: case REACT_MEMO_TYPE: return object; case REACT_CONSUMER_TYPE: return object; default: return $$typeof; } } case REACT_PORTAL_TYPE: return $$typeof; } } } exports.AI = REACT_CONSUMER_TYPE; exports.HQ = REACT_CONTEXT_TYPE; __webpack_unused_export__ = REACT_ELEMENT_TYPE; exports.A4 = REACT_FORWARD_REF_TYPE; exports.HY = REACT_FRAGMENT_TYPE; exports.oM = REACT_LAZY_TYPE; exports._Y = REACT_MEMO_TYPE; exports.h_ = REACT_PORTAL_TYPE; exports.Q1 = REACT_PROFILER_TYPE; exports.nF = REACT_STRICT_MODE_TYPE; exports.n4 = REACT_SUSPENSE_TYPE; __webpack_unused_export__ = REACT_SUSPENSE_LIST_TYPE; __webpack_unused_export__ = function __webpack_unused_export__(object) { return typeOf(object) === REACT_CONSUMER_TYPE; }; __webpack_unused_export__ = function __webpack_unused_export__(object) { return typeOf(object) === REACT_CONTEXT_TYPE; }; exports.kK = function (object) { return "object" === _typeof(object) && null !== object && object.$$typeof === REACT_ELEMENT_TYPE; }; __webpack_unused_export__ = function __webpack_unused_export__(object) { return typeOf(object) === REACT_FORWARD_REF_TYPE; }; __webpack_unused_export__ = function __webpack_unused_export__(object) { return typeOf(object) === REACT_FRAGMENT_TYPE; }; __webpack_unused_export__ = function __webpack_unused_export__(object) { return typeOf(object) === REACT_LAZY_TYPE; }; __webpack_unused_export__ = function __webpack_unused_export__(object) { return typeOf(object) === REACT_MEMO_TYPE; }; __webpack_unused_export__ = function __webpack_unused_export__(object) { return typeOf(object) === REACT_PORTAL_TYPE; }; __webpack_unused_export__ = function __webpack_unused_export__(object) { return typeOf(object) === REACT_PROFILER_TYPE; }; __webpack_unused_export__ = function __webpack_unused_export__(object) { return typeOf(object) === REACT_STRICT_MODE_TYPE; }; __webpack_unused_export__ = function __webpack_unused_export__(object) { return typeOf(object) === REACT_SUSPENSE_TYPE; }; __webpack_unused_export__ = function __webpack_unused_export__(object) { return typeOf(object) === REACT_SUSPENSE_LIST_TYPE; }; __webpack_unused_export__ = function __webpack_unused_export__(type) { return "string" === typeof type || "function" === typeof type || type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_OFFSCREEN_TYPE || "object" === _typeof(type) && null !== type && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_CONSUMER_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_CLIENT_REFERENCE || void 0 !== type.getModuleId) ? !0 : !1; }; exports.kM = typeOf; /***/ }), /***/126: ( /***/function _(__unused_webpack_module, exports, __webpack_require__) { "use strict"; /* provided dependency */ var process = __webpack_require__(169); /** * @license React * react.production.js * * 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. */ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_DEBUG_TRACING_MODE_TYPE = Symbol.for("react.debug_trace_mode"), REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"), REACT_POSTPONE_TYPE = Symbol.for("react.postpone"), MAYBE_ITERATOR_SYMBOL = Symbol.iterator; function getIteratorFn(maybeIterable) { if (null === maybeIterable || "object" !== _typeof(maybeIterable)) return null; maybeIterable = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable["@@iterator"]; return "function" === typeof maybeIterable ? maybeIterable : null; } var ReactNoopUpdateQueue = { isMounted: function isMounted() { return !1; }, enqueueForceUpdate: function enqueueForceUpdate() {}, enqueueReplaceState: function enqueueReplaceState() {}, enqueueSetState: function enqueueSetState() {} }, assign = Object.assign, emptyObject = {}; function Component(props, context, updater) { this.props = props; this.context = context; this.refs = emptyObject; this.updater = updater || ReactNoopUpdateQueue; } Component.prototype.isReactComponent = {}; Component.prototype.setState = function (partialState, callback) { if ("object" !== _typeof(partialState) && "function" !== typeof partialState && null != partialState) throw Error("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"); }; Component.prototype.forceUpdate = function (callback) { this.updater.enqueueForceUpdate(this, callback, "forceUpdate"); }; function ComponentDummy() {} ComponentDummy.prototype = Component.prototype; function PureComponent(props, context, updater) { this.props = props; this.context = context; this.refs = emptyObject; this.updater = updater || ReactNoopUpdateQueue; } var pureComponentPrototype = PureComponent.prototype = new ComponentDummy(); pureComponentPrototype.constructor = PureComponent; assign(pureComponentPrototype, Component.prototype); pureComponentPrototype.isPureReactComponent = !0; var isArrayImpl = Array.isArray, ReactSharedInternals = { H: null, A: null, T: null, S: null }, hasOwnProperty = Object.prototype.hasOwnProperty; function ReactElement(type, key, _ref, self, source, owner, props) { _ref = props.ref; return { $$typeof: REACT_ELEMENT_TYPE, type: type, key: key, ref: void 0 !== _ref ? _ref : null, props: props }; } function cloneAndReplaceKey(oldElement, newKey) { return ReactElement(oldElement.type, newKey, null, void 0, void 0, void 0, oldElement.props); } function isValidElement(object) { return "object" === _typeof(object) && null !== object && object.$$typeof === REACT_ELEMENT_TYPE; } function escape(key) { var escaperLookup = { "=": "=0", ":": "=2" }; return "$" + key.replace(/[=:]/g, function (match) { return escaperLookup[match]; }); } var userProvidedKeyEscapeRegex = /\/+/g; function getElementKey(element, index) { return "object" === _typeof(element) && null !== element && null != element.key ? escape("" + element.key) : index.toString(36); } function noop$1() {} function resolveThenable(thenable) { switch (thenable.status) { case "fulfilled": return thenable.value; case "rejected": throw thenable.reason; default: switch ("string" === typeof thenable.status ? thenable.then(noop$1, noop$1) : (thenable.status = "pending", thenable.then(function (fulfilledValue) { "pending" === thenable.status && (thenable.status = "fulfilled", thenable.value = fulfilledValue); }, function (error) { "pending" === thenable.status && (thenable.status = "rejected", thenable.reason = error); })), thenable.status) { case "fulfilled": return thenable.value; case "rejected": throw thenable.reason; } } throw thenable; } function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) { var type = _typeof(children); if ("undefined" === type || "boolean" === type) children = null; var invokeCallback = !1; if (null === children) invokeCallback = !0;else switch (type) { case "bigint": case "string": case "number": invokeCallback = !0; break; case "object": switch (children.$$typeof) { case REACT_ELEMENT_TYPE: case REACT_PORTAL_TYPE: invokeCallback = !0; break; case REACT_LAZY_TYPE: return invokeCallback = children._init, mapIntoArray(invokeCallback(children._payload), array, escapedPrefix, nameSoFar, callback); } } if (invokeCallback) return callback = callback(children), invokeCallback = "" === nameSoFar ? "." + getElementKey(children, 0) : nameSoFar, isArrayImpl(callback) ? (escapedPrefix = "", null != invokeCallback && (escapedPrefix = invokeCallback.replace(userProvidedKeyEscapeRegex, "$&/") + "/"), mapIntoArray(callback, array, escapedPrefix, "", function (c) { return c; })) : null != callback && (isValidElement(callback) && (callback = cloneAndReplaceKey(callback, escapedPrefix + (null == callback.key || children && children.key === callback.key ? "" : ("" + callback.key).replace(userProvidedKeyEscapeRegex, "$&/") + "/") + invokeCallback)), array.push(callback)), 1; invokeCallback = 0; var nextNamePrefix = "" === nameSoFar ? "." : nameSoFar + ":"; if (isArrayImpl(children)) for (var i = 0; i < children.length; i++) { nameSoFar = children[i], type = nextNamePrefix + getElementKey(nameSoFar, i), invokeCallback += mapIntoArray(nameSoFar, array, escapedPrefix, type, callback); } else if (i = getIteratorFn(children), "function" === typeof i) for (children = i.call(children), i = 0; !(nameSoFar = children.next()).done;) { nameSoFar = nameSoFar.value, type = nextNamePrefix + getElementKey(nameSoFar, i++), invokeCallback += mapIntoArray(nameSoFar, array, escapedPrefix, type, callback); } else if ("object" === type) { if ("function" === typeof children.then) return mapIntoArray(resolveThenable(children), array, escapedPrefix, nameSoFar, callback); array = String(children); throw Error("Objects are not valid as a React child (found: " + ("[object Object]" === array ? "object with keys {" + Object.keys(children).join(", ") + "}" : array) + "). If you meant to render a collection of children, use an array instead."); } return invokeCallback; } function mapChildren(children, func, context) { if (null == children) return children; var result = [], count = 0; mapIntoArray(children, result, "", "", function (child) { return func.call(context, child, count++); }); return result; } function lazyInitializer(payload) { if (-1 === payload._status) { var ctor = payload._result; ctor = ctor(); ctor.then(function (moduleObject) { if (0 === payload._status || -1 === payload._status) payload._status = 1, payload._result = moduleObject; }, function (error) { if (0 === payload._status || -1 === payload._status) payload._status = 2, payload._result = error; }); -1 === payload._status && (payload._status = 0, payload._result = ctor); } if (1 === payload._status) return payload._result.default; throw payload._result; } function useOptimistic(passthrough, reducer) { return ReactSharedInternals.H.useOptimistic(passthrough, reducer); } var reportGlobalError = "function" === typeof reportError ? reportError : function (error) { if ("object" === (typeof window === "undefined" ? "undefined" : _typeof(window)) && "function" === typeof window.ErrorEvent) { var event = new window.ErrorEvent("error", { bubbles: !0, cancelable: !0, message: "object" === _typeof(error) && null !== error && "string" === typeof error.message ? String(error.message) : String(error), error: error }); if (!window.dispatchEvent(event)) return; } else if ("object" === (typeof process === "undefined" ? "undefined" : _typeof(process)) && "function" === typeof process.emit) { process.emit("uncaughtException", error); return; } console.error(error); }; function noop() {} exports.Children = { map: mapChildren, forEach: function forEach(children, forEachFunc, forEachContext) { mapChildren(children, function () { forEachFunc.apply(this, arguments); }, forEachContext); }, count: function count(children) { var n = 0; mapChildren(children, function () { n++; }); return n; }, toArray: function toArray(children) { return mapChildren(children, function (child) { return child; }) || []; }, only: function only(children) { if (!isValidElement(children)) throw Error("React.Children.only expected to receive a single React element child."); return 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.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = ReactSharedInternals; exports.act = function () { throw Error("act(...) is not supported in production builds of React."); }; exports.cache = function (fn) { return function () { return fn.apply(null, arguments); }; }; exports.captureOwnerStack = function () { return null; }; exports.cloneElement = function (element, config, children) { if (null === element || void 0 === element) throw Error("The argument must be a React element, but you passed " + element + "."); var props = assign({}, element.props), key = element.key, owner = void 0; if (null != config) for (propName in void 0 !== config.ref && (owner = void 0), void 0 !== config.key && (key = "" + config.key), config) { !hasOwnProperty.call(config, propName) || "key" === propName || "__self" === propName || "__source" === propName || "ref" === propName && void 0 === config.ref || (props[propName] = config[propName]); } var propName = arguments.length - 2; if (1 === propName) props.children = children;else if (1 < propName) { for (var childArray = Array(propName), i = 0; i < propName; i++) { childArray[i] = arguments[i + 2]; } props.children = childArray; } return ReactElement(element.type, key, null, void 0, void 0, owner, props); }; exports.createContext = function (defaultValue) { defaultValue = { $$typeof: REACT_CONTEXT_TYPE, _currentValue: defaultValue, _currentValue2: defaultValue, _threadCount: 0, Provider: null, Consumer: null }; defaultValue.Provider = defaultValue; defaultValue.Consumer = { $$typeof: REACT_CONSUMER_TYPE, _context: defaultValue }; return defaultValue; }; exports.createElement = function (type, config, children) { var propName, props = {}, key = null; if (null != config) for (propName in void 0 !== config.key && (key = "" + config.key), config) { hasOwnProperty.call(config, propName) && "key" !== propName && "__self" !== propName && "__source" !== propName && (props[propName] = config[propName]); } var childrenLength = arguments.length - 2; if (1 === childrenLength) props.children = children;else if (1 < childrenLength) { for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++) { childArray[i] = arguments[i + 2]; } props.children = childArray; } if (type && type.defaultProps) for (propName in childrenLength = type.defaultProps, childrenLength) { void 0 === props[propName] && (props[propName] = childrenLength[propName]); } return ReactElement(type, key, null, void 0, void 0, null, props); }; exports.createRef = function () { return { current: null }; }; exports.experimental_useEffectEvent = function (callback) { return ReactSharedInternals.H.useEffectEvent(callback); }; exports.experimental_useOptimistic = function (passthrough, reducer) { return useOptimistic(passthrough, reducer); }; exports.forwardRef = function (render) { return { $$typeof: REACT_FORWARD_REF_TYPE, render: render }; }; exports.isValidElement = isValidElement; exports.lazy = function (ctor) { return { $$typeof: REACT_LAZY_TYPE, _payload: { _status: -1, _result: ctor }, _init: lazyInitializer }; }; exports.memo = function (type, compare) { return { $$typeof: REACT_MEMO_TYPE, type: type, compare: void 0 === compare ? null : compare }; }; exports.startTransition = function (scope) { var prevTransition = ReactSharedInternals.T, transition = {}; ReactSharedInternals.T = transition; try { var returnValue = scope(), onStartTransitionFinish = ReactSharedInternals.S; null !== onStartTransitionFinish && onStartTransitionFinish(transition, returnValue); "object" === _typeof(returnValue) && null !== returnValue && "function" === typeof returnValue.then && returnValue.then(noop, reportGlobalError); } catch (error) { reportGlobalError(error); } finally { ReactSharedInternals.T = prevTransition; } }; exports.unstable_Activity = REACT_OFFSCREEN_TYPE; exports.unstable_DebugTracingMode = REACT_DEBUG_TRACING_MODE_TYPE; exports.unstable_SuspenseList = REACT_SUSPENSE_LIST_TYPE; exports.unstable_getCacheForType = function (resourceType) { var dispatcher = ReactSharedInternals.A; return dispatcher ? dispatcher.getCacheForType(resourceType) : resourceType(); }; exports.unstable_postpone = function (reason) { reason = Error(reason); reason.$$typeof = REACT_POSTPONE_TYPE; throw reason; }; exports.unstable_useCacheRefresh = function () { return ReactSharedInternals.H.useCacheRefresh(); }; exports.use = function (usable) { return ReactSharedInternals.H.use(usable); }; exports.useActionState = function (action, initialState, permalink) { return ReactSharedInternals.H.useActionState(action, initialState, permalink); }; exports.useCallback = function (callback, deps) { return ReactSharedInternals.H.useCallback(callback, deps); }; exports.useContext = function (Context) { return ReactSharedInternals.H.useContext(Context); }; exports.useDebugValue = function () {}; exports.useDeferredValue = function (value, initialValue) { return ReactSharedInternals.H.useDeferredValue(value, initialValue); }; exports.useEffect = function (create, deps) { return ReactSharedInternals.H.useEffect(create, deps); }; exports.useId = function () { return ReactSharedInternals.H.useId(); }; exports.useImperativeHandle = function (ref, create, deps) { return ReactSharedInternals.H.useImperativeHandle(ref, create, deps); }; exports.useInsertionEffect = function (create, deps) { return ReactSharedInternals.H.useInsertionEffect(create, deps); }; exports.useLayoutEffect = function (create, deps) { return ReactSharedInternals.H.useLayoutEffect(create, deps); }; exports.useMemo = function (create, deps) { return ReactSharedInternals.H.useMemo(create, deps); }; exports.useOptimistic = useOptimistic; exports.useReducer = function (reducer, initialArg, init) { return ReactSharedInternals.H.useReducer(reducer, initialArg, init); }; exports.useRef = function (initialValue) { return ReactSharedInternals.H.useRef(initialValue); }; exports.useState = function (initialState) { return ReactSharedInternals.H.useState(initialState); }; exports.useSyncExternalStore = function (subscribe, getSnapshot, getServerSnapshot) { return ReactSharedInternals.H.useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot); }; exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; exports.version = "19.0.0-experimental-572ded3762-20240703"; /***/ }), /***/189: ( /***/function _(module, __unused_webpack_exports, __webpack_require__) { "use strict"; if (true) { module.exports = __webpack_require__(126); } else {} /***/ }), /***/206: ( /***/function _(module, exports, __webpack_require__) { var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__; function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } (function (root, factory) { 'use strict'; // Universal Module Definition (UMD) to support AMD, CommonJS/Node.js, Rhino, and browsers. /* istanbul ignore next */ if (true) { !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(430)], __WEBPACK_AMD_DEFINE_FACTORY__ = factory, __WEBPACK_AMD_DEFINE_RESULT__ = typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); } else {} })(this, function ErrorStackParser(StackFrame) { 'use strict'; var FIREFOX_SAFARI_STACK_REGEXP = /(^|@)\S+:\d+/; var CHROME_IE_STACK_REGEXP = /^\s*at .*(\S+:\d+|\(native\))/m; var SAFARI_NATIVE_CODE_REGEXP = /^(eval@)?(\[native code])?$/; return { /** * Given an Error object, extract the most information from it. * * @param {Error} error object * @return {Array} of StackFrames */ parse: function ErrorStackParser$$parse(error) { if (typeof error.stacktrace !== 'undefined' || typeof error['opera#sourceloc'] !== 'undefined') { return this.parseOpera(error); } else if (error.stack && error.stack.match(CHROME_IE_STACK_REGEXP)) { return this.parseV8OrIE(error); } else if (error.stack) { return this.parseFFOrSafari(error); } else { throw new Error('Cannot parse given Error object'); } }, // Separate line and column numbers from a string of the form: (URI:Line:Column) extractLocation: function ErrorStackParser$$extractLocation(urlLike) { // Fail-fast but return locations like "(native)" if (urlLike.indexOf(':') === -1) { return [urlLike]; } var regExp = /(.+?)(?::(\d+))?(?::(\d+))?$/; var parts = regExp.exec(urlLike.replace(/[()]/g, '')); return [parts[1], parts[2] || undefined, parts[3] || undefined]; }, parseV8OrIE: function ErrorStackParser$$parseV8OrIE(error) { var filtered = error.stack.split('\n').filter(function (line) { return !!line.match(CHROME_IE_STACK_REGEXP); }, this); return filtered.map(function (line) { if (line.indexOf('(eval ') > -1) { // Throw away eval information until we implement stacktrace.js/stackframe#8 line = line.replace(/eval code/g, 'eval').replace(/(\(eval at [^()]*)|(\),.*$)/g, ''); } var sanitizedLine = line.replace(/^\s+/, '').replace(/\(eval code/g, '('); // capture and preseve the parenthesized location "(/foo/my bar.js:12:87)" in // case it has spaces in it, as the string is split on \s+ later on var location = sanitizedLine.match(/ (\((.+):(\d+):(\d+)\)$)/); // remove the parenthesized location from the line, if it was matched sanitizedLine = location ? sanitizedLine.replace(location[0], '') : sanitizedLine; var tokens = sanitizedLine.split(/\s+/).slice(1); // if a location was matched, pass it to extractLocation() otherwise pop the last token var locationParts = this.extractLocation(location ? location[1] : tokens.pop()); var functionName = tokens.join(' ') || undefined; var fileName = ['eval', ''].indexOf(locationParts[0]) > -1 ? undefined : locationParts[0]; return new StackFrame({ functionName: functionName, fileName: fileName, lineNumber: locationParts[1], columnNumber: locationParts[2], source: line }); }, this); }, parseFFOrSafari: function ErrorStackParser$$parseFFOrSafari(error) { var filtered = error.stack.split('\n').filter(function (line) { return !line.match(SAFARI_NATIVE_CODE_REGEXP); }, this); return filtered.map(function (line) { // Throw away eval information until we implement stacktrace.js/stackframe#8 if (line.indexOf(' > eval') > -1) { line = line.replace(/ line (\d+)(?: > eval line \d+)* > eval:\d+:\d+/g, ':$1'); } if (line.indexOf('@') === -1 && line.indexOf(':') === -1) { // Safari eval frames only have function names and nothing else return new StackFrame({ functionName: line }); } else { var functionNameRegex = /((.*".+"[^@]*)?[^@]*)(?:@)/; var matches = line.match(functionNameRegex); var functionName = matches && matches[1] ? matches[1] : undefined; var locationParts = this.extractLocation(line.replace(functionNameRegex, '')); return new StackFrame({ functionName: functionName, fileName: locationParts[0], lineNumber: locationParts[1], columnNumber: locationParts[2], source: line }); } }, this); }, parseOpera: function ErrorStackParser$$parseOpera(e) { if (!e.stacktrace || e.message.indexOf('\n') > -1 && e.message.split('\n').length > e.stacktrace.split('\n').length) { return this.parseOpera9(e); } else if (!e.stack) { return this.parseOpera10(e); } else { return this.parseOpera11(e); } }, parseOpera9: function ErrorStackParser$$parseOpera9(e) { var lineRE = /Line (\d+).*script (?:in )?(\S+)/i; var lines = e.message.split('\n'); var result = []; for (var i = 2, len = lines.length; i < len; i += 2) { var match = lineRE.exec(lines[i]); if (match) { result.push(new StackFrame({ fileName: match[2], lineNumber: match[1], source: lines[i] })); } } return result; }, parseOpera10: function ErrorStackParser$$parseOpera10(e) { var lineRE = /Line (\d+).*script (?:in )?(\S+)(?:: In function (\S+))?$/i; var lines = e.stacktrace.split('\n'); var result = []; for (var i = 0, len = lines.length; i < len; i += 2) { var match = lineRE.exec(lines[i]); if (match) { result.push(new StackFrame({ functionName: match[3] || undefined, fileName: match[2], lineNumber: match[1], source: lines[i] })); } } return result; }, // Opera 10.65+ Error.stack very similar to FF/Safari parseOpera11: function ErrorStackParser$$parseOpera11(error) { var filtered = error.stack.split('\n').filter(function (line) { return !!line.match(FIREFOX_SAFARI_STACK_REGEXP) && !line.match(/^Error created at/); }, this); return filtered.map(function (line) { var tokens = line.split('@'); var locationParts = this.extractLocation(tokens.pop()); var functionCall = tokens.shift() || ''; var functionName = functionCall.replace(//, '$2').replace(/\([^)]*\)/g, '') || undefined; var argsRaw; if (functionCall.match(/\(([^)]*)\)/)) { argsRaw = functionCall.replace(/^[^(]+\(([^)]*)\)$/, '$1'); } var args = argsRaw === undefined || argsRaw === '[arguments not available]' ? undefined : argsRaw.split(','); return new StackFrame({ functionName: functionName, args: args, fileName: locationParts[0], lineNumber: locationParts[1], columnNumber: locationParts[2], source: line }); }, this); } }; }); /***/ }), /***/172: ( /***/function _(module) { function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } /** * lodash (Custom Build) * Build: `lodash modularize exports="npm" -o ./` * Copyright jQuery Foundation and other contributors * Released under MIT license * Based on Underscore.js 1.8.3 * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors */ /** Used as the `TypeError` message for "Functions" methods. */ var FUNC_ERROR_TEXT = 'Expected a function'; /** Used as references for various `Number` constants. */ var NAN = 0 / 0; /** `Object#toString` result references. */ var symbolTag = '[object Symbol]'; /** Used to match leading and trailing whitespace. */ var reTrim = /^\s+|\s+$/g; /** Used to detect bad signed hexadecimal string values. */ var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; /** Used to detect binary string values. */ var reIsBinary = /^0b[01]+$/i; /** Used to detect octal string values. */ var reIsOctal = /^0o[0-7]+$/i; /** Built-in method references without a dependency on `root`. */ var freeParseInt = parseInt; /** Detect free variable `global` from Node.js. */ var freeGlobal = (typeof global === "undefined" ? "undefined" : _typeof(global)) == 'object' && global && global.Object === Object && global; /** Detect free variable `self`. */ var freeSelf = (typeof self === "undefined" ? "undefined" : _typeof(self)) == 'object' && self && self.Object === Object && self; /** Used as a reference to the global object. */ var root = freeGlobal || freeSelf || Function('return this')(); /** Used for built-in method references. */ var objectProto = Object.prototype; /** * Used to resolve the * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) * of values. */ var objectToString = objectProto.toString; /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max, nativeMin = Math.min; /** * Gets the timestamp of the number of milliseconds that have elapsed since * the Unix epoch (1 January 1970 00:00:00 UTC). * * @static * @memberOf _ * @since 2.4.0 * @category Date * @returns {number} Returns the timestamp. * @example * * _.defer(function(stamp) { * console.log(_.now() - stamp); * }, _.now()); * // => Logs the number of milliseconds it took for the deferred invocation. */ var now = function now() { return root.Date.now(); }; /** * Creates a debounced function that delays invoking `func` until after `wait` * milliseconds have elapsed since the last time the debounced function was * invoked. The debounced function comes with a `cancel` method to cancel * delayed `func` invocations and a `flush` method to immediately invoke them. * Provide `options` to indicate whether `func` should be invoked on the * leading and/or trailing edge of the `wait` timeout. The `func` is invoked * with the last arguments provided to the debounced function. Subsequent * calls to the debounced function return the result of the last `func` * invocation. * * **Note:** If `leading` and `trailing` options are `true`, `func` is * invoked on the trailing edge of the timeout only if the debounced function * is invoked more than once during the `wait` timeout. * * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred * until to the next tick, similar to `setTimeout` with a timeout of `0`. * * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) * for details over the differences between `_.debounce` and `_.throttle`. * * @static * @memberOf _ * @since 0.1.0 * @category Function * @param {Function} func The function to debounce. * @param {number} [wait=0] The number of milliseconds to delay. * @param {Object} [options={}] The options object. * @param {boolean} [options.leading=false] * Specify invoking on the leading edge of the timeout. * @param {number} [options.maxWait] * The maximum time `func` is allowed to be delayed before it's invoked. * @param {boolean} [options.trailing=true] * Specify invoking on the trailing edge of the timeout. * @returns {Function} Returns the new debounced function. * @example * * // Avoid costly calculations while the window size is in flux. * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); * * // Invoke `sendMail` when clicked, debouncing subsequent calls. * jQuery(element).on('click', _.debounce(sendMail, 300, { * 'leading': true, * 'trailing': false * })); * * // Ensure `batchLog` is invoked once after 1 second of debounced calls. * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 }); * var source = new EventSource('/stream'); * jQuery(source).on('message', debounced); * * // Cancel the trailing debounced invocation. * jQuery(window).on('popstate', debounced.cancel); */ function debounce(func, wait, options) { var lastArgs, lastThis, maxWait, result, timerId, lastCallTime, lastInvokeTime = 0, leading = false, maxing = false, trailing = true; if (typeof func != 'function') { throw new TypeError(FUNC_ERROR_TEXT); } wait = toNumber(wait) || 0; if (isObject(options)) { leading = !!options.leading; maxing = 'maxWait' in options; maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait; trailing = 'trailing' in options ? !!options.trailing : trailing; } function invokeFunc(time) { var args = lastArgs, thisArg = lastThis; lastArgs = lastThis = undefined; lastInvokeTime = time; result = func.apply(thisArg, args); return result; } function leadingEdge(time) { // Reset any `maxWait` timer. lastInvokeTime = time; // Start the timer for the trailing edge. timerId = setTimeout(timerExpired, wait); // Invoke the leading edge. return leading ? invokeFunc(time) : result; } function remainingWait(time) { var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime, result = wait - timeSinceLastCall; return maxing ? nativeMin(result, maxWait - timeSinceLastInvoke) : result; } function shouldInvoke(time) { var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime; // Either this is the first call, activity has stopped and we're at the // trailing edge, the system time has gone backwards and we're treating // it as the trailing edge, or we've hit the `maxWait` limit. return lastCallTime === undefined || timeSinceLastCall >= wait || timeSinceLastCall < 0 || maxing && timeSinceLastInvoke >= maxWait; } function timerExpired() { var time = now(); if (shouldInvoke(time)) { return trailingEdge(time); } // Restart the timer. timerId = setTimeout(timerExpired, remainingWait(time)); } function trailingEdge(time) { timerId = undefined; // Only invoke if we have `lastArgs` which means `func` has been // debounced at least once. if (trailing && lastArgs) { return invokeFunc(time); } lastArgs = lastThis = undefined; return result; } function cancel() { if (timerId !== undefined) { clearTimeout(timerId); } lastInvokeTime = 0; lastArgs = lastCallTime = lastThis = timerId = undefined; } function flush() { return timerId === undefined ? result : trailingEdge(now()); } function debounced() { var time = now(), isInvoking = shouldInvoke(time); lastArgs = arguments; lastThis = this; lastCallTime = time; if (isInvoking) { if (timerId === undefined) { return leadingEdge(lastCallTime); } if (maxing) { // Handle invocations in a tight loop. timerId = setTimeout(timerExpired, wait); return invokeFunc(lastCallTime); } } if (timerId === undefined) { timerId = setTimeout(timerExpired, wait); } return result; } debounced.cancel = cancel; debounced.flush = flush; return debounced; } /** * Creates a throttled function that only invokes `func` at most once per * every `wait` milliseconds. The throttled function comes with a `cancel` * method to cancel delayed `func` invocations and a `flush` method to * immediately invoke them. Provide `options` to indicate whether `func` * should be invoked on the leading and/or trailing edge of the `wait` * timeout. The `func` is invoked with the last arguments provided to the * throttled function. Subsequent calls to the throttled function return the * result of the last `func` invocation. * * **Note:** If `leading` and `trailing` options are `true`, `func` is * invoked on the trailing edge of the timeout only if the throttled function * is invoked more than once during the `wait` timeout. * * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred * until to the next tick, similar to `setTimeout` with a timeout of `0`. * * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) * for details over the differences between `_.throttle` and `_.debounce`. * * @static * @memberOf _ * @since 0.1.0 * @category Function * @param {Function} func The function to throttle. * @param {number} [wait=0] The number of milliseconds to throttle invocations to. * @param {Object} [options={}] The options object. * @param {boolean} [options.leading=true] * Specify invoking on the leading edge of the timeout. * @param {boolean} [options.trailing=true] * Specify invoking on the trailing edge of the timeout. * @returns {Function} Returns the new throttled function. * @example * * // Avoid excessively updating the position while scrolling. * jQuery(window).on('scroll', _.throttle(updatePosition, 100)); * * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes. * var throttled = _.throttle(renewToken, 300000, { 'trailing': false }); * jQuery(element).on('click', throttled); * * // Cancel the trailing throttled invocation. * jQuery(window).on('popstate', throttled.cancel); */ function throttle(func, wait, options) { var leading = true, trailing = true; if (typeof func != 'function') { throw new TypeError(FUNC_ERROR_TEXT); } if (isObject(options)) { leading = 'leading' in options ? !!options.leading : leading; trailing = 'trailing' in options ? !!options.trailing : trailing; } return debounce(func, wait, { 'leading': leading, 'maxWait': wait, 'trailing': trailing }); } /** * Checks if `value` is the * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an object, else `false`. * @example * * _.isObject({}); * // => true * * _.isObject([1, 2, 3]); * // => true * * _.isObject(_.noop); * // => true * * _.isObject(null); * // => false */ function isObject(value) { var type = _typeof(value); return !!value && (type == 'object' || type == 'function'); } /** * Checks if `value` is object-like. A value is object-like if it's not `null` * and has a `typeof` result of "object". * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is object-like, else `false`. * @example * * _.isObjectLike({}); * // => true * * _.isObjectLike([1, 2, 3]); * // => true * * _.isObjectLike(_.noop); * // => false * * _.isObjectLike(null); * // => false */ function isObjectLike(value) { return !!value && _typeof(value) == 'object'; } /** * Checks if `value` is classified as a `Symbol` primitive or object. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. * @example * * _.isSymbol(Symbol.iterator); * // => true * * _.isSymbol('abc'); * // => false */ function isSymbol(value) { return _typeof(value) == 'symbol' || isObjectLike(value) && objectToString.call(value) == symbolTag; } /** * Converts `value` to a number. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to process. * @returns {number} Returns the number. * @example * * _.toNumber(3.2); * // => 3.2 * * _.toNumber(Number.MIN_VALUE); * // => 5e-324 * * _.toNumber(Infinity); * // => Infinity * * _.toNumber('3.2'); * // => 3.2 */ function toNumber(value) { if (typeof value == 'number') { return value; } if (isSymbol(value)) { return NAN; } if (isObject(value)) { var other = typeof value.valueOf == 'function' ? value.valueOf() : value; value = isObject(other) ? other + '' : other; } if (typeof value != 'string') { return value === 0 ? value : +value; } value = value.replace(reTrim, ''); var isBinary = reIsBinary.test(value); return isBinary || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value; } module.exports = throttle; /***/ }), /***/730: ( /***/function _(module, __unused_webpack_exports, __webpack_require__) { "use strict"; /* provided dependency */ var process = __webpack_require__(169); module.exports = LRUCache; // This will be a proper iterable 'Map' in engines that support it, // or a fakey-fake PseudoMap in older versions. var Map = __webpack_require__(307); var util = __webpack_require__(82); // A linked list to keep track of recently-used-ness var Yallist = __webpack_require__(695); // use symbols if possible, otherwise just _props var hasSymbol = typeof Symbol === 'function' && process.env._nodeLRUCacheForceNoSymbol !== '1'; var makeSymbol; if (hasSymbol) { makeSymbol = function makeSymbol(key) { return Symbol(key); }; } else { makeSymbol = function makeSymbol(key) { return '_' + key; }; } var MAX = makeSymbol('max'); var LENGTH = makeSymbol('length'); var LENGTH_CALCULATOR = makeSymbol('lengthCalculator'); var ALLOW_STALE = makeSymbol('allowStale'); var MAX_AGE = makeSymbol('maxAge'); var DISPOSE = makeSymbol('dispose'); var NO_DISPOSE_ON_SET = makeSymbol('noDisposeOnSet'); var LRU_LIST = makeSymbol('lruList'); var CACHE = makeSymbol('cache'); function naiveLength() { return 1; } // lruList is a yallist where the head is the youngest // item, and the tail is the oldest. the list contains the Hit // objects as the entries. // Each Hit object has a reference to its Yallist.Node. This // never changes. // // cache is a Map (or PseudoMap) that matches the keys to // the Yallist.Node object. function LRUCache(options) { if (!(this instanceof LRUCache)) { return new LRUCache(options); } if (typeof options === 'number') { options = { max: options }; } if (!options) { options = {}; } var max = this[MAX] = options.max; // Kind of weird to have a default max of Infinity, but oh well. if (!max || !(typeof max === 'number') || max <= 0) { this[MAX] = Infinity; } var lc = options.length || naiveLength; if (typeof lc !== 'function') { lc = naiveLength; } this[LENGTH_CALCULATOR] = lc; this[ALLOW_STALE] = options.stale || false; this[MAX_AGE] = options.maxAge || 0; this[DISPOSE] = options.dispose; this[NO_DISPOSE_ON_SET] = options.noDisposeOnSet || false; this.reset(); } // resize the cache when the max changes. Object.defineProperty(LRUCache.prototype, 'max', { set: function set(mL) { if (!mL || !(typeof mL === 'number') || mL <= 0) { mL = Infinity; } this[MAX] = mL; trim(this); }, get: function get() { return this[MAX]; }, enumerable: true }); Object.defineProperty(LRUCache.prototype, 'allowStale', { set: function set(allowStale) { this[ALLOW_STALE] = !!allowStale; }, get: function get() { return this[ALLOW_STALE]; }, enumerable: true }); Object.defineProperty(LRUCache.prototype, 'maxAge', { set: function set(mA) { if (!mA || !(typeof mA === 'number') || mA < 0) { mA = 0; } this[MAX_AGE] = mA; trim(this); }, get: function get() { return this[MAX_AGE]; }, enumerable: true }); // resize the cache when the lengthCalculator changes. Object.defineProperty(LRUCache.prototype, 'lengthCalculator', { set: function set(lC) { if (typeof lC !== 'function') { lC = naiveLength; } if (lC !== this[LENGTH_CALCULATOR]) { this[LENGTH_CALCULATOR] = lC; this[LENGTH] = 0; this[LRU_LIST].forEach(function (hit) { hit.length = this[LENGTH_CALCULATOR](hit.value, hit.key); this[LENGTH] += hit.length; }, this); } trim(this); }, get: function get() { return this[LENGTH_CALCULATOR]; }, enumerable: true }); Object.defineProperty(LRUCache.prototype, 'length', { get: function get() { return this[LENGTH]; }, enumerable: true }); Object.defineProperty(LRUCache.prototype, 'itemCount', { get: function get() { return this[LRU_LIST].length; }, enumerable: true }); LRUCache.prototype.rforEach = function (fn, thisp) { thisp = thisp || this; for (var walker = this[LRU_LIST].tail; walker !== null;) { var prev = walker.prev; forEachStep(this, fn, walker, thisp); walker = prev; } }; function forEachStep(self, fn, node, thisp) { var hit = node.value; if (isStale(self, hit)) { del(self, node); if (!self[ALLOW_STALE]) { hit = undefined; } } if (hit) { fn.call(thisp, hit.value, hit.key, self); } } LRUCache.prototype.forEach = function (fn, thisp) { thisp = thisp || this; for (var walker = this[LRU_LIST].head; walker !== null;) { var next = walker.next; forEachStep(this, fn, walker, thisp); walker = next; } }; LRUCache.prototype.keys = function () { return this[LRU_LIST].toArray().map(function (k) { return k.key; }, this); }; LRUCache.prototype.values = function () { return this[LRU_LIST].toArray().map(function (k) { return k.value; }, this); }; LRUCache.prototype.reset = function () { if (this[DISPOSE] && this[LRU_LIST] && this[LRU_LIST].length) { this[LRU_LIST].forEach(function (hit) { this[DISPOSE](hit.key, hit.value); }, this); } this[CACHE] = new Map(); // hash of items by key this[LRU_LIST] = new Yallist(); // list of items in order of use recency this[LENGTH] = 0; // length of items in the list }; LRUCache.prototype.dump = function () { return this[LRU_LIST].map(function (hit) { if (!isStale(this, hit)) { return { k: hit.key, v: hit.value, e: hit.now + (hit.maxAge || 0) }; } }, this).toArray().filter(function (h) { return h; }); }; LRUCache.prototype.dumpLru = function () { return this[LRU_LIST]; }; /* istanbul ignore next */ LRUCache.prototype.inspect = function (n, opts) { var str = 'LRUCache {'; var extras = false; var as = this[ALLOW_STALE]; if (as) { str += '\n allowStale: true'; extras = true; } var max = this[MAX]; if (max && max !== Infinity) { if (extras) { str += ','; } str += '\n max: ' + util.inspect(max, opts); extras = true; } var maxAge = this[MAX_AGE]; if (maxAge) { if (extras) { str += ','; } str += '\n maxAge: ' + util.inspect(maxAge, opts); extras = true; } var lc = this[LENGTH_CALCULATOR]; if (lc && lc !== naiveLength) { if (extras) { str += ','; } str += '\n length: ' + util.inspect(this[LENGTH], opts); extras = true; } var didFirst = false; this[LRU_LIST].forEach(function (item) { if (didFirst) { str += ',\n '; } else { if (extras) { str += ',\n'; } didFirst = true; str += '\n '; } var key = util.inspect(item.key).split('\n').join('\n '); var val = { value: item.value }; if (item.maxAge !== maxAge) { val.maxAge = item.maxAge; } if (lc !== naiveLength) { val.length = item.length; } if (isStale(this, item)) { val.stale = true; } val = util.inspect(val, opts).split('\n').join('\n '); str += key + ' => ' + val; }); if (didFirst || extras) { str += '\n'; } str += '}'; return str; }; LRUCache.prototype.set = function (key, value, maxAge) { maxAge = maxAge || this[MAX_AGE]; var now = maxAge ? Date.now() : 0; var len = this[LENGTH_CALCULATOR](value, key); if (this[CACHE].has(key)) { if (len > this[MAX]) { del(this, this[CACHE].get(key)); return false; } var node = this[CACHE].get(key); var item = node.value; // dispose of the old one before overwriting // split out into 2 ifs for better coverage tracking if (this[DISPOSE]) { if (!this[NO_DISPOSE_ON_SET]) { this[DISPOSE](key, item.value); } } item.now = now; item.maxAge = maxAge; item.value = value; this[LENGTH] += len - item.length; item.length = len; this.get(key); trim(this); return true; } var hit = new Entry(key, value, len, now, maxAge); // oversized objects fall out of cache automatically. if (hit.length > this[MAX]) { if (this[DISPOSE]) { this[DISPOSE](key, value); } return false; } this[LENGTH] += hit.length; this[LRU_LIST].unshift(hit); this[CACHE].set(key, this[LRU_LIST].head); trim(this); return true; }; LRUCache.prototype.has = function (key) { if (!this[CACHE].has(key)) return false; var hit = this[CACHE].get(key).value; if (isStale(this, hit)) { return false; } return true; }; LRUCache.prototype.get = function (key) { return get(this, key, true); }; LRUCache.prototype.peek = function (key) { return get(this, key, false); }; LRUCache.prototype.pop = function () { var node = this[LRU_LIST].tail; if (!node) return null; del(this, node); return node.value; }; LRUCache.prototype.del = function (key) { del(this, this[CACHE].get(key)); }; LRUCache.prototype.load = function (arr) { // reset the cache this.reset(); var now = Date.now(); // A previous serialized cache has the most recent items first for (var l = arr.length - 1; l >= 0; l--) { var hit = arr[l]; var expiresAt = hit.e || 0; if (expiresAt === 0) { // the item was created without expiration in a non aged cache this.set(hit.k, hit.v); } else { var maxAge = expiresAt - now; // dont add already expired items if (maxAge > 0) { this.set(hit.k, hit.v, maxAge); } } } }; LRUCache.prototype.prune = function () { var self = this; this[CACHE].forEach(function (value, key) { get(self, key, false); }); }; function get(self, key, doUse) { var node = self[CACHE].get(key); if (node) { var hit = node.value; if (isStale(self, hit)) { del(self, node); if (!self[ALLOW_STALE]) hit = undefined; } else { if (doUse) { self[LRU_LIST].unshiftNode(node); } } if (hit) hit = hit.value; } return hit; } function isStale(self, hit) { if (!hit || !hit.maxAge && !self[MAX_AGE]) { return false; } var stale = false; var diff = Date.now() - hit.now; if (hit.maxAge) { stale = diff > hit.maxAge; } else { stale = self[MAX_AGE] && diff > self[MAX_AGE]; } return stale; } function trim(self) { if (self[LENGTH] > self[MAX]) { for (var walker = self[LRU_LIST].tail; self[LENGTH] > self[MAX] && walker !== null;) { // We know that we're about to delete this one, and also // what the next least recently used key will be, so just // go ahead and set it now. var prev = walker.prev; del(self, walker); walker = prev; } } } function del(self, node) { if (node) { var hit = node.value; if (self[DISPOSE]) { self[DISPOSE](hit.key, hit.value); } self[LENGTH] -= hit.length; self[CACHE].delete(hit.key); self[LRU_LIST].removeNode(node); } } // classy, since V8 prefers predictable objects. function Entry(key, value, length, now, maxAge) { this.key = key; this.value = value; this.length = length; this.now = now; this.maxAge = maxAge || 0; } /***/ }), /***/169: ( /***/function _(module) { // shim for using process in browser var process = module.exports = {}; // cached from whatever global is present so that test runners that stub it // don't break things. But we need to wrap it in a try catch in case it is // wrapped in strict mode code which doesn't define any globals. It's inside a // function because try/catches deoptimize in certain engines. var cachedSetTimeout; var cachedClearTimeout; function defaultSetTimout() { throw new Error('setTimeout has not been defined'); } function defaultClearTimeout() { throw new Error('clearTimeout has not been defined'); } (function () { try { if (typeof setTimeout === 'function') { cachedSetTimeout = setTimeout; } else { cachedSetTimeout = defaultSetTimout; } } catch (e) { cachedSetTimeout = defaultSetTimout; } try { if (typeof clearTimeout === 'function') { cachedClearTimeout = clearTimeout; } else { cachedClearTimeout = defaultClearTimeout; } } catch (e) { cachedClearTimeout = defaultClearTimeout; } })(); function runTimeout(fun) { if (cachedSetTimeout === setTimeout) { //normal enviroments in sane situations return setTimeout(fun, 0); } // if setTimeout wasn't available but was latter defined if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) { cachedSetTimeout = setTimeout; return setTimeout(fun, 0); } try { // when when somebody has screwed with setTimeout but no I.E. maddness return cachedSetTimeout(fun, 0); } catch (e) { try { // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally return cachedSetTimeout.call(null, fun, 0); } catch (e) { // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error return cachedSetTimeout.call(this, fun, 0); } } } function runClearTimeout(marker) { if (cachedClearTimeout === clearTimeout) { //normal enviroments in sane situations return clearTimeout(marker); } // if clearTimeout wasn't available but was latter defined if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) { cachedClearTimeout = clearTimeout; return clearTimeout(marker); } try { // when when somebody has screwed with setTimeout but no I.E. maddness return cachedClearTimeout(marker); } catch (e) { try { // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally return cachedClearTimeout.call(null, marker); } catch (e) { // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error. // Some versions of I.E. have different rules for clearTimeout vs setTimeout return cachedClearTimeout.call(this, marker); } } } var queue = []; var draining = false; var currentQueue; var queueIndex = -1; function cleanUpNextTick() { if (!draining || !currentQueue) { return; } draining = false; if (currentQueue.length) { queue = currentQueue.concat(queue); } else { queueIndex = -1; } if (queue.length) { drainQueue(); } } function drainQueue() { if (draining) { return; } var timeout = runTimeout(cleanUpNextTick); draining = true; var len = queue.length; while (len) { currentQueue = queue; queue = []; while (++queueIndex < len) { if (currentQueue) { currentQueue[queueIndex].run(); } } queueIndex = -1; len = queue.length; } currentQueue = null; draining = false; runClearTimeout(timeout); } process.nextTick = function (fun) { var args = new Array(arguments.length - 1); if (arguments.length > 1) { for (var i = 1; i < arguments.length; i++) { args[i - 1] = arguments[i]; } } queue.push(new Item(fun, args)); if (queue.length === 1 && !draining) { runTimeout(drainQueue); } }; // v8 likes predictible objects function Item(fun, array) { this.fun = fun; this.array = array; } Item.prototype.run = function () { this.fun.apply(null, this.array); }; process.title = 'browser'; process.browser = true; process.env = {}; process.argv = []; process.version = ''; // empty string to avoid regexp issues process.versions = {}; function noop() {} process.on = noop; process.addListener = noop; process.once = noop; process.off = noop; process.removeListener = noop; process.removeAllListeners = noop; process.emit = noop; process.prependListener = noop; process.prependOnceListener = noop; process.listeners = function (name) { return []; }; process.binding = function (name) { throw new Error('process.binding is not supported'); }; process.cwd = function () { return '/'; }; process.chdir = function (dir) { throw new Error('process.chdir is not supported'); }; process.umask = function () { return 0; }; /***/ }), /***/307: ( /***/function _(module, __unused_webpack_exports, __webpack_require__) { /* provided dependency */var process = __webpack_require__(169); if (process.env.npm_package_name === 'pseudomap' && process.env.npm_lifecycle_script === 'test') process.env.TEST_PSEUDOMAP = 'true'; if (typeof Map === 'function' && !process.env.TEST_PSEUDOMAP) { module.exports = Map; } else { module.exports = __webpack_require__(761); } /***/ }), /***/761: ( /***/function _(module) { var hasOwnProperty = Object.prototype.hasOwnProperty; module.exports = PseudoMap; function PseudoMap(set) { if (!(this instanceof PseudoMap)) // whyyyyyyy throw new TypeError("Constructor PseudoMap requires 'new'"); this.clear(); if (set) { if (set instanceof PseudoMap || typeof Map === 'function' && set instanceof Map) set.forEach(function (value, key) { this.set(key, value); }, this);else if (Array.isArray(set)) set.forEach(function (kv) { this.set(kv[0], kv[1]); }, this);else throw new TypeError('invalid argument'); } } PseudoMap.prototype.forEach = function (fn, thisp) { thisp = thisp || this; Object.keys(this._data).forEach(function (k) { if (k !== 'size') fn.call(thisp, this._data[k].value, this._data[k].key); }, this); }; PseudoMap.prototype.has = function (k) { return !!find(this._data, k); }; PseudoMap.prototype.get = function (k) { var res = find(this._data, k); return res && res.value; }; PseudoMap.prototype.set = function (k, v) { set(this._data, k, v); }; PseudoMap.prototype.delete = function (k) { var res = find(this._data, k); if (res) { delete this._data[res._index]; this._data.size--; } }; PseudoMap.prototype.clear = function () { var data = Object.create(null); data.size = 0; Object.defineProperty(this, '_data', { value: data, enumerable: false, configurable: true, writable: false }); }; Object.defineProperty(PseudoMap.prototype, 'size', { get: function get() { return this._data.size; }, set: function set(n) {}, enumerable: true, configurable: true }); PseudoMap.prototype.values = PseudoMap.prototype.keys = PseudoMap.prototype.entries = function () { throw new Error('iterators are not implemented in this version'); }; // Either identical, or both NaN function same(a, b) { return a === b || a !== a && b !== b; } function Entry(k, v, i) { this.key = k; this.value = v; this._index = i; } function find(data, k) { for (var i = 0, s = '_' + k, key = s; hasOwnProperty.call(data, key); key = s + i++) { if (same(data[key].key, k)) return data[key]; } } function set(data, k, v) { for (var i = 0, s = '_' + k, key = s; hasOwnProperty.call(data, key); key = s + i++) { if (same(data[key].key, k)) { data[key].value = v; return; } } data.size++; data[key] = new Entry(k, v, key); } /***/ }), /***/430: ( /***/function _(module, exports) { var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__; function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } (function (root, factory) { 'use strict'; // Universal Module Definition (UMD) to support AMD, CommonJS/Node.js, Rhino, and browsers. /* istanbul ignore next */ if (true) { !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = factory, __WEBPACK_AMD_DEFINE_RESULT__ = typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); } else {} })(this, function () { 'use strict'; function _isNumber(n) { return !isNaN(parseFloat(n)) && isFinite(n); } function _capitalize(str) { return str.charAt(0).toUpperCase() + str.substring(1); } function _getter(p) { return function () { return this[p]; }; } var booleanProps = ['isConstructor', 'isEval', 'isNative', 'isToplevel']; var numericProps = ['columnNumber', 'lineNumber']; var stringProps = ['fileName', 'functionName', 'source']; var arrayProps = ['args']; var props = booleanProps.concat(numericProps, stringProps, arrayProps); function StackFrame(obj) { if (!obj) return; for (var i = 0; i < props.length; i++) { if (obj[props[i]] !== undefined) { this['set' + _capitalize(props[i])](obj[props[i]]); } } } StackFrame.prototype = { getArgs: function getArgs() { return this.args; }, setArgs: function setArgs(v) { if (Object.prototype.toString.call(v) !== '[object Array]') { throw new TypeError('Args must be an Array'); } this.args = v; }, getEvalOrigin: function getEvalOrigin() { return this.evalOrigin; }, setEvalOrigin: function setEvalOrigin(v) { if (v instanceof StackFrame) { this.evalOrigin = v; } else if (v instanceof Object) { this.evalOrigin = new StackFrame(v); } else { throw new TypeError('Eval Origin must be an Object or StackFrame'); } }, toString: function toString() { var fileName = this.getFileName() || ''; var lineNumber = this.getLineNumber() || ''; var columnNumber = this.getColumnNumber() || ''; var functionName = this.getFunctionName() || ''; if (this.getIsEval()) { if (fileName) { return '[eval] (' + fileName + ':' + lineNumber + ':' + columnNumber + ')'; } return '[eval]:' + lineNumber + ':' + columnNumber; } if (functionName) { return functionName + ' (' + fileName + ':' + lineNumber + ':' + columnNumber + ')'; } return fileName + ':' + lineNumber + ':' + columnNumber; } }; StackFrame.fromString = function StackFrame$$fromString(str) { var argsStartIndex = str.indexOf('('); var argsEndIndex = str.lastIndexOf(')'); var functionName = str.substring(0, argsStartIndex); var args = str.substring(argsStartIndex + 1, argsEndIndex).split(','); var locationString = str.substring(argsEndIndex + 1); if (locationString.indexOf('@') === 0) { var parts = /@(.+?)(?::(\d+))?(?::(\d+))?$/.exec(locationString, ''); var fileName = parts[1]; var lineNumber = parts[2]; var columnNumber = parts[3]; } return new StackFrame({ functionName: functionName, args: args || undefined, fileName: fileName, lineNumber: lineNumber || undefined, columnNumber: columnNumber || undefined }); }; for (var i = 0; i < booleanProps.length; i++) { StackFrame.prototype['get' + _capitalize(booleanProps[i])] = _getter(booleanProps[i]); StackFrame.prototype['set' + _capitalize(booleanProps[i])] = function (p) { return function (v) { this[p] = Boolean(v); }; }(booleanProps[i]); } for (var j = 0; j < numericProps.length; j++) { StackFrame.prototype['get' + _capitalize(numericProps[j])] = _getter(numericProps[j]); StackFrame.prototype['set' + _capitalize(numericProps[j])] = function (p) { return function (v) { if (!_isNumber(v)) { throw new TypeError(p + ' must be a Number'); } this[p] = Number(v); }; }(numericProps[j]); } for (var k = 0; k < stringProps.length; k++) { StackFrame.prototype['get' + _capitalize(stringProps[k])] = _getter(stringProps[k]); StackFrame.prototype['set' + _capitalize(stringProps[k])] = function (p) { return function (v) { this[p] = String(v); }; }(stringProps[k]); } return StackFrame; }); /***/ }), /***/718: ( /***/function _(module) { if (typeof Object.create === 'function') { // implementation from standard node.js 'util' module module.exports = function inherits(ctor, superCtor) { ctor.super_ = superCtor; ctor.prototype = Object.create(superCtor.prototype, { constructor: { value: ctor, enumerable: false, writable: true, configurable: true } }); }; } else { // old school shim for old browsers module.exports = function inherits(ctor, superCtor) { ctor.super_ = superCtor; var TempCtor = function TempCtor() {}; TempCtor.prototype = superCtor.prototype; ctor.prototype = new TempCtor(); ctor.prototype.constructor = ctor; }; } /***/ }), /***/715: ( /***/function _(module) { function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } module.exports = function isBuffer(arg) { return arg && _typeof(arg) === 'object' && typeof arg.copy === 'function' && typeof arg.fill === 'function' && typeof arg.readUInt8 === 'function'; }; /***/ }), /***/82: ( /***/function _(__unused_webpack_module, exports, __webpack_require__) { /* provided dependency */var process = __webpack_require__(169); function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } // 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. var formatRegExp = /%[sdj%]/g; exports.format = function (f) { if (!isString(f)) { var objects = []; for (var i = 0; i < arguments.length; i++) { objects.push(inspect(arguments[i])); } return objects.join(' '); } var i = 1; var args = arguments; var len = args.length; var str = String(f).replace(formatRegExp, function (x) { if (x === '%%') return '%'; if (i >= len) return x; switch (x) { case '%s': return String(args[i++]); case '%d': return Number(args[i++]); case '%j': try { return JSON.stringify(args[i++]); } catch (_) { return '[Circular]'; } default: return x; } }); for (var x = args[i]; i < len; x = args[++i]) { if (isNull(x) || !isObject(x)) { str += ' ' + x; } else { str += ' ' + inspect(x); } } return str; }; // Mark that a method should not be used. // Returns a modified function which warns once by default. // If --no-deprecation is set, then it is a no-op. exports.deprecate = function (fn, msg) { // Allow for deprecating things in the process of starting up. if (isUndefined(global.process)) { return function () { return exports.deprecate(fn, msg).apply(this, arguments); }; } if (process.noDeprecation === true) { return fn; } var warned = false; function deprecated() { if (!warned) { if (process.throwDeprecation) { throw new Error(msg); } else if (process.traceDeprecation) { console.trace(msg); } else { console.error(msg); } warned = true; } return fn.apply(this, arguments); } return deprecated; }; var debugs = {}; var debugEnviron; exports.debuglog = function (set) { if (isUndefined(debugEnviron)) debugEnviron = process.env.NODE_DEBUG || ''; set = set.toUpperCase(); if (!debugs[set]) { if (new RegExp('\\b' + set + '\\b', 'i').test(debugEnviron)) { var pid = process.pid; debugs[set] = function () { var msg = exports.format.apply(exports, arguments); console.error('%s %d: %s', set, pid, msg); }; } else { debugs[set] = function () {}; } } return debugs[set]; }; /** * Echos the value of a value. Trys to print the value out * in the best way possible given the different types. * * @param {Object} obj The object to print out. * @param {Object} opts Optional options object that alters the output. */ /* legacy: obj, showHidden, depth, colors*/ function inspect(obj, opts) { // default options var ctx = { seen: [], stylize: stylizeNoColor }; // legacy... if (arguments.length >= 3) ctx.depth = arguments[2]; if (arguments.length >= 4) ctx.colors = arguments[3]; if (isBoolean(opts)) { // legacy... ctx.showHidden = opts; } else if (opts) { // got an "options" object exports._extend(ctx, opts); } // set default options if (isUndefined(ctx.showHidden)) ctx.showHidden = false; if (isUndefined(ctx.depth)) ctx.depth = 2; if (isUndefined(ctx.colors)) ctx.colors = false; if (isUndefined(ctx.customInspect)) ctx.customInspect = true; if (ctx.colors) ctx.stylize = stylizeWithColor; return formatValue(ctx, obj, ctx.depth); } exports.inspect = inspect; // http://en.wikipedia.org/wiki/ANSI_escape_code#graphics inspect.colors = { 'bold': [1, 22], 'italic': [3, 23], 'underline': [4, 24], 'inverse': [7, 27], 'white': [37, 39], 'grey': [90, 39], 'black': [30, 39], 'blue': [34, 39], 'cyan': [36, 39], 'green': [32, 39], 'magenta': [35, 39], 'red': [31, 39], 'yellow': [33, 39] }; // Don't use 'blue' not visible on cmd.exe inspect.styles = { 'special': 'cyan', 'number': 'yellow', 'boolean': 'yellow', 'undefined': 'grey', 'null': 'bold', 'string': 'green', 'date': 'magenta', // "name": intentionally not styling 'regexp': 'red' }; function stylizeWithColor(str, styleType) { var style = inspect.styles[styleType]; if (style) { return "\x1B[" + inspect.colors[style][0] + 'm' + str + "\x1B[" + inspect.colors[style][1] + 'm'; } else { return str; } } 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) { // Provide a hook for user-specified inspect functions. // Check that value is an object with an inspect function on it if (ctx.customInspect && value && isFunction(value.inspect) && // Filter out the util module, it's inspect function is special value.inspect !== exports.inspect && // Also filter out any prototype objects using the circular check. !(value.constructor && value.constructor.prototype === value)) { var ret = value.inspect(recurseTimes, ctx); if (!isString(ret)) { ret = formatValue(ctx, ret, recurseTimes); } return ret; } // 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); if (ctx.showHidden) { keys = Object.getOwnPropertyNames(value); } // 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').substr(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.substr(1, name.length - 2); 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); } exports.isArray = isArray; function isBoolean(arg) { return typeof arg === 'boolean'; } exports.isBoolean = isBoolean; function isNull(arg) { return arg === null; } exports.isNull = isNull; function isNullOrUndefined(arg) { return arg == null; } exports.isNullOrUndefined = isNullOrUndefined; function isNumber(arg) { return typeof arg === 'number'; } exports.isNumber = isNumber; function isString(arg) { return typeof arg === 'string'; } exports.isString = isString; function isSymbol(arg) { return _typeof(arg) === 'symbol'; } exports.isSymbol = isSymbol; function isUndefined(arg) { return arg === void 0; } exports.isUndefined = isUndefined; function isRegExp(re) { return isObject(re) && objectToString(re) === '[object RegExp]'; } exports.isRegExp = isRegExp; function isObject(arg) { return _typeof(arg) === 'object' && arg !== null; } exports.isObject = isObject; function isDate(d) { return isObject(d) && objectToString(d) === '[object Date]'; } exports.isDate = isDate; function isError(e) { return isObject(e) && (objectToString(e) === '[object Error]' || e instanceof Error); } exports.isError = isError; function isFunction(arg) { return typeof arg === 'function'; } exports.isFunction = isFunction; function isPrimitive(arg) { return arg === null || typeof arg === 'boolean' || typeof arg === 'number' || typeof arg === 'string' || _typeof(arg) === 'symbol' || // ES6 symbol typeof arg === 'undefined'; } exports.isPrimitive = isPrimitive; exports.isBuffer = __webpack_require__(715); function objectToString(o) { return Object.prototype.toString.call(o); } function pad(n) { return n < 10 ? '0' + n.toString(10) : n.toString(10); } var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; // 26 Feb 16:19:34 function timestamp() { var d = new Date(); var time = [pad(d.getHours()), pad(d.getMinutes()), pad(d.getSeconds())].join(':'); return [d.getDate(), months[d.getMonth()], time].join(' '); } // log is just a thin wrapper to console.log that prepends a timestamp exports.log = function () { console.log('%s - %s', timestamp(), exports.format.apply(exports, arguments)); }; /** * Inherit the prototype methods from one constructor into another. * * The Function.prototype.inherits from lang.js rewritten as a standalone * function (not on Function.prototype). NOTE: If this file is to be loaded * during bootstrapping this function needs to be rewritten using some native * functions as prototype setup using normal JavaScript does not work as * expected during bootstrapping (see mirror.js in r114903). * * @param {function} ctor Constructor function which needs to inherit the * prototype. * @param {function} superCtor Constructor function to inherit prototype from. */ exports.inherits = __webpack_require__(718); exports._extend = function (origin, add) { // Don't do anything if add isn't an object if (!add || !isObject(add)) return origin; var keys = Object.keys(add); var i = keys.length; while (i--) { origin[keys[i]] = add[keys[i]]; } return origin; }; function hasOwnProperty(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); } /***/ }), /***/695: ( /***/function _(module) { module.exports = Yallist; Yallist.Node = Node; Yallist.create = Yallist; function Yallist(list) { var self = this; if (!(self instanceof Yallist)) { self = new Yallist(); } self.tail = null; self.head = null; self.length = 0; if (list && typeof list.forEach === 'function') { list.forEach(function (item) { self.push(item); }); } else if (arguments.length > 0) { for (var i = 0, l = arguments.length; i < l; i++) { self.push(arguments[i]); } } return self; } Yallist.prototype.removeNode = function (node) { if (node.list !== this) { throw new Error('removing node which does not belong to this list'); } var next = node.next; var prev = node.prev; if (next) { next.prev = prev; } if (prev) { prev.next = next; } if (node === this.head) { this.head = next; } if (node === this.tail) { this.tail = prev; } node.list.length--; node.next = null; node.prev = null; node.list = null; }; Yallist.prototype.unshiftNode = function (node) { if (node === this.head) { return; } if (node.list) { node.list.removeNode(node); } var head = this.head; node.list = this; node.next = head; if (head) { head.prev = node; } this.head = node; if (!this.tail) { this.tail = node; } this.length++; }; Yallist.prototype.pushNode = function (node) { if (node === this.tail) { return; } if (node.list) { node.list.removeNode(node); } var tail = this.tail; node.list = this; node.prev = tail; if (tail) { tail.next = node; } this.tail = node; if (!this.head) { this.head = node; } this.length++; }; Yallist.prototype.push = function () { for (var i = 0, l = arguments.length; i < l; i++) { push(this, arguments[i]); } return this.length; }; Yallist.prototype.unshift = function () { for (var i = 0, l = arguments.length; i < l; i++) { unshift(this, arguments[i]); } return this.length; }; Yallist.prototype.pop = function () { if (!this.tail) { return undefined; } var res = this.tail.value; this.tail = this.tail.prev; if (this.tail) { this.tail.next = null; } else { this.head = null; } this.length--; return res; }; Yallist.prototype.shift = function () { if (!this.head) { return undefined; } var res = this.head.value; this.head = this.head.next; if (this.head) { this.head.prev = null; } else { this.tail = null; } this.length--; return res; }; Yallist.prototype.forEach = function (fn, thisp) { thisp = thisp || this; for (var walker = this.head, i = 0; walker !== null; i++) { fn.call(thisp, walker.value, i, this); walker = walker.next; } }; Yallist.prototype.forEachReverse = function (fn, thisp) { thisp = thisp || this; for (var walker = this.tail, i = this.length - 1; walker !== null; i--) { fn.call(thisp, walker.value, i, this); walker = walker.prev; } }; Yallist.prototype.get = function (n) { for (var i = 0, walker = this.head; walker !== null && i < n; i++) { // abort out of the list early if we hit a cycle walker = walker.next; } if (i === n && walker !== null) { return walker.value; } }; Yallist.prototype.getReverse = function (n) { for (var i = 0, walker = this.tail; walker !== null && i < n; i++) { // abort out of the list early if we hit a cycle walker = walker.prev; } if (i === n && walker !== null) { return walker.value; } }; Yallist.prototype.map = function (fn, thisp) { thisp = thisp || this; var res = new Yallist(); for (var walker = this.head; walker !== null;) { res.push(fn.call(thisp, walker.value, this)); walker = walker.next; } return res; }; Yallist.prototype.mapReverse = function (fn, thisp) { thisp = thisp || this; var res = new Yallist(); for (var walker = this.tail; walker !== null;) { res.push(fn.call(thisp, walker.value, this)); walker = walker.prev; } return res; }; Yallist.prototype.reduce = function (fn, initial) { var acc; var walker = this.head; if (arguments.length > 1) { acc = initial; } else if (this.head) { walker = this.head.next; acc = this.head.value; } else { throw new TypeError('Reduce of empty list with no initial value'); } for (var i = 0; walker !== null; i++) { acc = fn(acc, walker.value, i); walker = walker.next; } return acc; }; Yallist.prototype.reduceReverse = function (fn, initial) { var acc; var walker = this.tail; if (arguments.length > 1) { acc = initial; } else if (this.tail) { walker = this.tail.prev; acc = this.tail.value; } else { throw new TypeError('Reduce of empty list with no initial value'); } for (var i = this.length - 1; walker !== null; i--) { acc = fn(acc, walker.value, i); walker = walker.prev; } return acc; }; Yallist.prototype.toArray = function () { var arr = new Array(this.length); for (var i = 0, walker = this.head; walker !== null; i++) { arr[i] = walker.value; walker = walker.next; } return arr; }; Yallist.prototype.toArrayReverse = function () { var arr = new Array(this.length); for (var i = 0, walker = this.tail; walker !== null; i++) { arr[i] = walker.value; walker = walker.prev; } return arr; }; Yallist.prototype.slice = function (from, to) { to = to || this.length; if (to < 0) { to += this.length; } from = from || 0; if (from < 0) { from += this.length; } var ret = new Yallist(); if (to < from || to < 0) { return ret; } if (from < 0) { from = 0; } if (to > this.length) { to = this.length; } for (var i = 0, walker = this.head; walker !== null && i < from; i++) { walker = walker.next; } for (; walker !== null && i < to; i++, walker = walker.next) { ret.push(walker.value); } return ret; }; Yallist.prototype.sliceReverse = function (from, to) { to = to || this.length; if (to < 0) { to += this.length; } from = from || 0; if (from < 0) { from += this.length; } var ret = new Yallist(); if (to < from || to < 0) { return ret; } if (from < 0) { from = 0; } if (to > this.length) { to = this.length; } for (var i = this.length, walker = this.tail; walker !== null && i > to; i--) { walker = walker.prev; } for (; walker !== null && i > from; i--, walker = walker.prev) { ret.push(walker.value); } return ret; }; Yallist.prototype.reverse = function () { var head = this.head; var tail = this.tail; for (var walker = head; walker !== null; walker = walker.prev) { var p = walker.prev; walker.prev = walker.next; walker.next = p; } this.head = tail; this.tail = head; return this; }; function push(self, item) { self.tail = new Node(item, self.tail, null, self); if (!self.head) { self.head = self.tail; } self.length++; } function unshift(self, item) { self.head = new Node(item, null, self.head, self); if (!self.tail) { self.tail = self.head; } self.length++; } function Node(value, prev, next, list) { if (!(this instanceof Node)) { return new Node(value, prev, next, list); } this.list = list; this.value = value; if (prev) { prev.next = this; this.prev = prev; } else { this.prev = null; } if (next) { next.prev = this; this.next = next; } else { this.next = null; } } /***/ }) /******/ }; /************************************************************************/ /******/ // The module cache /******/ var __webpack_module_cache__ = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ // Check if module is in cache /******/var cachedModule = __webpack_module_cache__[moduleId]; /******/ if (cachedModule !== undefined) { /******/return cachedModule.exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = __webpack_module_cache__[moduleId] = { /******/ // no module.id needed /******/ // no module.loaded needed /******/exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /************************************************************************/ /******/ /* webpack/runtime/compat get default export */ /******/ (function () { /******/ // getDefaultExport function for compatibility with non-harmony modules /******/__webpack_require__.n = function (module) { /******/var getter = module && module.__esModule ? /******/function () { return module['default']; } : /******/function () { return module; }; /******/ __webpack_require__.d(getter, { a: getter }); /******/ return getter; /******/ }; /******/ })(); /******/ /******/ /* webpack/runtime/define property getters */ /******/ (function () { /******/ // define getter functions for harmony exports /******/__webpack_require__.d = function (exports, definition) { /******/for (var key in definition) { /******/if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) { /******/Object.defineProperty(exports, key, { enumerable: true, get: definition[key] }); /******/ } /******/ } /******/ }; /******/ })(); /******/ /******/ /* webpack/runtime/hasOwnProperty shorthand */ /******/ (function () { /******/__webpack_require__.o = function (obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }; /******/ })(); /******/ /******/ /* webpack/runtime/make namespace object */ /******/ (function () { /******/ // define __esModule on exports /******/__webpack_require__.r = function (exports) { /******/if (typeof Symbol !== 'undefined' && Symbol.toStringTag) { /******/Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); /******/ } /******/ Object.defineProperty(exports, '__esModule', { value: true }); /******/ }; /******/ })(); /******/ /************************************************************************/ var __webpack_exports__ = {}; // This entry need to be wrapped in an IIFE because it need to be in strict mode. (function () { "use strict"; // ESM COMPAT FLAG __webpack_require__.r(__webpack_exports__); // EXPORTS __webpack_require__.d(__webpack_exports__, { "connectToDevTools": function connectToDevTools() { return /* binding */_connectToDevTools; }, "connectWithCustomMessagingProtocol": function connectWithCustomMessagingProtocol() { return /* binding */_connectWithCustomMessagingProtocol; } }); ; // CONCATENATED MODULE: ../react-devtools-shared/src/events.js function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } /** * 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. * * */ var EventEmitter = /*#__PURE__*/function () { function EventEmitter() { _classCallCheck(this, EventEmitter); _defineProperty(this, "listenersMap", new Map()); } _createClass(EventEmitter, [{ key: "addListener", value: function addListener(event, listener) { var listeners = this.listenersMap.get(event); if (listeners === undefined) { this.listenersMap.set(event, [listener]); } else { var index = listeners.indexOf(listener); if (index < 0) { listeners.push(listener); } } } }, { key: "emit", value: function emit(event) { var listeners = this.listenersMap.get(event); if (listeners !== undefined) { for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { args[_key - 1] = arguments[_key]; } if (listeners.length === 1) { // No need to clone or try/catch var listener = listeners[0]; listener.apply(null, args); } else { var didThrow = false; var caughtError = null; var clonedListeners = Array.from(listeners); for (var i = 0; i < clonedListeners.length; i++) { var _listener = clonedListeners[i]; try { _listener.apply(null, args); } catch (error) { if (caughtError === null) { didThrow = true; caughtError = error; } } } if (didThrow) { throw caughtError; } } } } }, { key: "removeAllListeners", value: function removeAllListeners() { this.listenersMap.clear(); } }, { key: "removeListener", value: function removeListener(event, listener) { var listeners = this.listenersMap.get(event); if (listeners !== undefined) { var index = listeners.indexOf(listener); if (index >= 0) { listeners.splice(index, 1); } } } }]); return EventEmitter; }(); // EXTERNAL MODULE: ../../node_modules/lodash.throttle/index.js var lodash_throttle = __webpack_require__(172); var lodash_throttle_default = /*#__PURE__*/__webpack_require__.n(lodash_throttle); ; // CONCATENATED MODULE: ../react-devtools-shared/src/constants.js /** * 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. * * */ var CHROME_WEBSTORE_EXTENSION_ID = 'fmkadmapgofadopljbjfkapdkoienihi'; var INTERNAL_EXTENSION_ID = 'dnjnjgbfilfphmojnmhliehogmojhclc'; var LOCAL_EXTENSION_ID = 'ikiahnapldjmdmpkmfhjdjilojjhgcbf'; // Flip this flag to true to enable verbose console debug logging. var __DEBUG__ = false; // Flip this flag to true to enable performance.mark() and performance.measure() timings. var __PERFORMANCE_PROFILE__ = false; var TREE_OPERATION_ADD = 1; var TREE_OPERATION_REMOVE = 2; var TREE_OPERATION_REORDER_CHILDREN = 3; var TREE_OPERATION_UPDATE_TREE_BASE_DURATION = 4; var TREE_OPERATION_UPDATE_ERRORS_OR_WARNINGS = 5; var TREE_OPERATION_REMOVE_ROOT = 6; var TREE_OPERATION_SET_SUBTREE_MODE = 7; var PROFILING_FLAG_BASIC_SUPPORT = 1; var PROFILING_FLAG_TIMELINE_SUPPORT = 2; var LOCAL_STORAGE_DEFAULT_TAB_KEY = 'React::DevTools::defaultTab'; var constants_LOCAL_STORAGE_COMPONENT_FILTER_PREFERENCES_KEY = 'React::DevTools::componentFilters'; var SESSION_STORAGE_LAST_SELECTION_KEY = 'React::DevTools::lastSelection'; var constants_LOCAL_STORAGE_OPEN_IN_EDITOR_URL = 'React::DevTools::openInEditorUrl'; var LOCAL_STORAGE_OPEN_IN_EDITOR_URL_PRESET = 'React::DevTools::openInEditorUrlPreset'; var LOCAL_STORAGE_PARSE_HOOK_NAMES_KEY = 'React::DevTools::parseHookNames'; var SESSION_STORAGE_RECORD_CHANGE_DESCRIPTIONS_KEY = 'React::DevTools::recordChangeDescriptions'; var SESSION_STORAGE_RELOAD_AND_PROFILE_KEY = 'React::DevTools::reloadAndProfile'; var constants_LOCAL_STORAGE_SHOULD_BREAK_ON_CONSOLE_ERRORS = 'React::DevTools::breakOnConsoleErrors'; var LOCAL_STORAGE_BROWSER_THEME = 'React::DevTools::theme'; var constants_LOCAL_STORAGE_SHOULD_APPEND_COMPONENT_STACK_KEY = 'React::DevTools::appendComponentStack'; var constants_LOCAL_STORAGE_SHOW_INLINE_WARNINGS_AND_ERRORS_KEY = 'React::DevTools::showInlineWarningsAndErrors'; var LOCAL_STORAGE_TRACE_UPDATES_ENABLED_KEY = 'React::DevTools::traceUpdatesEnabled'; var constants_LOCAL_STORAGE_HIDE_CONSOLE_LOGS_IN_STRICT_MODE = 'React::DevTools::hideConsoleLogsInStrictMode'; var LOCAL_STORAGE_SUPPORTS_PROFILING_KEY = 'React::DevTools::supportsProfiling'; var PROFILER_EXPORT_VERSION = 5; var FIREFOX_CONSOLE_DIMMING_COLOR = 'color: rgba(124, 124, 124, 0.75)'; var ANSI_STYLE_DIMMING_TEMPLATE = '\x1b[2;38;2;124;124;124m%s\x1b[0m'; var ANSI_STYLE_DIMMING_TEMPLATE_WITH_COMPONENT_STACK = '\x1b[2;38;2;124;124;124m%s %s\x1b[0m'; ; // CONCATENATED MODULE: ../react-devtools-shared/src/storage.js /** * 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. * * */ function storage_localStorageGetItem(key) { try { return localStorage.getItem(key); } catch (error) { return null; } } function localStorageRemoveItem(key) { try { localStorage.removeItem(key); } catch (error) {} } function storage_localStorageSetItem(key, value) { try { return localStorage.setItem(key, value); } catch (error) {} } function sessionStorageGetItem(key) { try { return sessionStorage.getItem(key); } catch (error) { return null; } } function sessionStorageRemoveItem(key) { try { sessionStorage.removeItem(key); } catch (error) {} } function sessionStorageSetItem(key, value) { try { return sessionStorage.setItem(key, value); } catch (error) {} } ; // CONCATENATED MODULE: ../../node_modules/memoize-one/esm/index.js var simpleIsEqual = function simpleIsEqual(a, b) { return a === b; }; /* harmony default export */ function esm(resultFn) { var isEqual = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : simpleIsEqual; var lastThis = void 0; var lastArgs = []; var lastResult = void 0; var calledOnce = false; var isNewArgEqualToLast = function isNewArgEqualToLast(newArg, index) { return isEqual(newArg, lastArgs[index]); }; var result = function result() { for (var _len = arguments.length, newArgs = Array(_len), _key = 0; _key < _len; _key++) { newArgs[_key] = arguments[_key]; } if (calledOnce && lastThis === this && newArgs.length === lastArgs.length && newArgs.every(isNewArgEqualToLast)) { return lastResult; } calledOnce = true; lastThis = this; lastArgs = newArgs; lastResult = resultFn.apply(this, newArgs); return lastResult; }; return result; } ; // CONCATENATED MODULE: ../../node_modules/compare-versions/lib/esm/index.js function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } 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."); } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } /** * Compare [semver](https://semver.org/) version strings to find greater, equal or lesser. * This library supports the full semver specification, including comparing versions with different number of digits like `1.0.0`, `1.0`, `1`, and pre-release versions like `1.0.0-alpha`. * @param v1 - First version to compare * @param v2 - Second version to compare * @returns Numeric value compatible with the [Array.sort(fn) interface](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#Parameters). */ var compareVersions = function compareVersions(v1, v2) { // validate input and split into segments var n1 = validateAndParse(v1); var n2 = validateAndParse(v2); // pop off the patch var p1 = n1.pop(); var p2 = n2.pop(); // validate numbers var r = compareSegments(n1, n2); if (r !== 0) return r; // validate pre-release if (p1 && p2) { return compareSegments(p1.split('.'), p2.split('.')); } else if (p1 || p2) { return p1 ? -1 : 1; } return 0; }; /** * Validate [semver](https://semver.org/) version strings. * * @param version Version number to validate * @returns `true` if the version number is a valid semver version number, `false` otherwise. * * @example * ``` * validate('1.0.0-rc.1'); // return true * validate('1.0-rc.1'); // return false * validate('foo'); // return false * ``` */ var validate = function validate(version) { return typeof version === 'string' && /^[v\d]/.test(version) && semver.test(version); }; /** * Compare [semver](https://semver.org/) version strings using the specified operator. * * @param v1 First version to compare * @param v2 Second version to compare * @param operator Allowed arithmetic operator to use * @returns `true` if the comparison between the firstVersion and the secondVersion satisfies the operator, `false` otherwise. * * @example * ``` * compare('10.1.8', '10.0.4', '>'); // return true * compare('10.0.1', '10.0.1', '='); // return true * compare('10.1.1', '10.2.2', '<'); // return true * compare('10.1.1', '10.2.2', '<='); // return true * compare('10.1.1', '10.2.2', '>='); // return false * ``` */ var compare = function compare(v1, v2, operator) { // validate input operator assertValidOperator(operator); // since result of compareVersions can only be -1 or 0 or 1 // a simple map can be used to replace switch var res = compareVersions(v1, v2); return operatorResMap[operator].includes(res); }; /** * Match [npm semver](https://docs.npmjs.com/cli/v6/using-npm/semver) version range. * * @param version Version number to match * @param range Range pattern for version * @returns `true` if the version number is within the range, `false` otherwise. * * @example * ``` * satisfies('1.1.0', '^1.0.0'); // return true * satisfies('1.1.0', '~1.0.0'); // return false * ``` */ var satisfies = function satisfies(version, range) { // if no range operator then "=" var m = range.match(/^([<>=~^]+)/); var op = m ? m[1] : '='; // if gt/lt/eq then operator compare if (op !== '^' && op !== '~') return compare(version, range, op); // else range of either "~" or "^" is assumed var _validateAndParse = validateAndParse(version), _validateAndParse2 = _slicedToArray(_validateAndParse, 5), v1 = _validateAndParse2[0], v2 = _validateAndParse2[1], v3 = _validateAndParse2[2], vp = _validateAndParse2[4]; var _validateAndParse3 = validateAndParse(range), _validateAndParse4 = _slicedToArray(_validateAndParse3, 5), r1 = _validateAndParse4[0], r2 = _validateAndParse4[1], r3 = _validateAndParse4[2], rp = _validateAndParse4[4]; var v = [v1, v2, v3]; var r = [r1, r2 !== null && r2 !== void 0 ? r2 : 'x', r3 !== null && r3 !== void 0 ? r3 : 'x']; // validate pre-release if (rp) { if (!vp) return false; if (compareSegments(v, r) !== 0) return false; if (compareSegments(vp.split('.'), rp.split('.')) === -1) return false; } // first non-zero number var nonZero = r.findIndex(function (v) { return v !== '0'; }) + 1; // pointer to where segments can be >= var i = op === '~' ? 2 : nonZero > 1 ? nonZero : 1; // before pointer must be equal if (compareSegments(v.slice(0, i), r.slice(0, i)) !== 0) return false; // after pointer must be >= if (compareSegments(v.slice(i), r.slice(i)) === -1) return false; return true; }; var semver = /^[v^~<>=]*?(\d+)(?:\.([x*]|\d+)(?:\.([x*]|\d+)(?:\.([x*]|\d+))?(?:-([\da-z\-]+(?:\.[\da-z\-]+)*))?(?:\+[\da-z\-]+(?:\.[\da-z\-]+)*)?)?)?$/i; var validateAndParse = function validateAndParse(version) { if (typeof version !== 'string') { throw new TypeError('Invalid argument expected string'); } var match = version.match(semver); if (!match) { throw new Error("Invalid argument not valid semver ('".concat(version, "' received)")); } match.shift(); return match; }; var isWildcard = function isWildcard(s) { return s === '*' || s === 'x' || s === 'X'; }; var tryParse = function tryParse(v) { var n = parseInt(v, 10); return isNaN(n) ? v : n; }; var forceType = function forceType(a, b) { return _typeof(a) !== _typeof(b) ? [String(a), String(b)] : [a, b]; }; var compareStrings = function compareStrings(a, b) { if (isWildcard(a) || isWildcard(b)) return 0; var _forceType = forceType(tryParse(a), tryParse(b)), _forceType2 = _slicedToArray(_forceType, 2), ap = _forceType2[0], bp = _forceType2[1]; if (ap > bp) return 1; if (ap < bp) return -1; return 0; }; var compareSegments = function compareSegments(a, b) { for (var i = 0; i < Math.max(a.length, b.length); i++) { var r = compareStrings(a[i] || '0', b[i] || '0'); if (r !== 0) return r; } return 0; }; var operatorResMap = { '>': [1], '>=': [0, 1], '=': [0], '<=': [-1, 0], '<': [-1] }; var allowedOperators = Object.keys(operatorResMap); var assertValidOperator = function assertValidOperator(op) { if (typeof op !== 'string') { throw new TypeError("Invalid operator type, expected string but got ".concat(_typeof(op))); } if (allowedOperators.indexOf(op) === -1) { throw new Error("Invalid operator, expected one of ".concat(allowedOperators.join('|'))); } }; // EXTERNAL MODULE: ../../node_modules/lru-cache/index.js var lru_cache = __webpack_require__(730); var lru_cache_default = /*#__PURE__*/__webpack_require__.n(lru_cache); // EXTERNAL MODULE: ../../build/oss-experimental/react-is/cjs/react-is.production.js var react_is_production = __webpack_require__(890); ; // CONCATENATED MODULE: ../shared/ReactFeatureFlags.js /** * 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. * * */ // ----------------------------------------------------------------------------- // Land or remove (zero effort) // // Flags that can likely be deleted or landed without consequences // ----------------------------------------------------------------------------- var enableComponentStackLocations = true; // ----------------------------------------------------------------------------- // Killswitch // // Flags that exist solely to turn off a change in case it causes a regression // when it rolls out to prod. We should remove these as soon as possible. // ----------------------------------------------------------------------------- // ----------------------------------------------------------------------------- // Land or remove (moderate effort) // // Flags that can be probably deleted or landed, but might require extra effort // like migrating internal callers or performance testing. // ----------------------------------------------------------------------------- // TODO: Finish rolling out in www var favorSafetyOverHydrationPerf = true; var enableAsyncActions = true; // Need to remove didTimeout argument from Scheduler before landing var disableSchedulerTimeoutInWorkLoop = false; // This will break some internal tests at Meta so we need to gate this until // those can be fixed. var enableDeferRootSchedulingToMicrotask = true; // TODO: Land at Meta before removing. var disableDefaultPropsExceptForClasses = true; // ----------------------------------------------------------------------------- // Slated for removal in the future (significant effort) // // These are experiments that didn't work out, and never shipped, but we can't // delete from the codebase until we migrate internal callers. // ----------------------------------------------------------------------------- // Add a callback property to suspense to notify which promises are currently // in the update queue. This allows reporting and tracing of what is causing // the user to see a loading state. // // Also allows hydration callbacks to fire when a dehydrated boundary gets // hydrated or deleted. // // This will eventually be replaced by the Transition Tracing proposal. var enableSuspenseCallback = false; // Experimental Scope support. var enableScopeAPI = false; // Experimental Create Event Handle API. var enableCreateEventHandleAPI = false; // Support legacy Primer support on internal FB www var enableLegacyFBSupport = false; // ----------------------------------------------------------------------------- // Ongoing experiments // // These are features that we're either actively exploring or are reasonably // likely to include in an upcoming release. // ----------------------------------------------------------------------------- var enableCache = true; var enableLegacyCache = /* unused pure expression or super */null && true; var enableBinaryFlight = true; var enableFlightReadableStream = true; var enableAsyncIterableChildren = /* unused pure expression or super */null && true; var enableTaint = /* unused pure expression or super */null && true; var enablePostpone = /* unused pure expression or super */null && true; var enableTransitionTracing = false; // No known bugs, but needs performance testing var enableLazyContextPropagation = false; // FB-only usage. The new API has different semantics. var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber var enableSuspenseAvoidThisFallback = false; // Enables unstable_avoidThisFallback feature in Fizz var enableSuspenseAvoidThisFallbackFizz = false; var enableCPUSuspense = /* unused pure expression or super */null && true; // Enables useMemoCache hook, intended as a compilation target for // auto-memoization. var enableUseMemoCacheHook = true; // Test this at Meta before enabling. var enableNoCloningMemoCache = false; var enableUseEffectEventHook = /* unused pure expression or super */null && true; // Test in www before enabling in open source. // Enables DOM-server to stream its instruction set as data-attributes // (handled with an MutationObserver) instead of inline-scripts var enableFizzExternalRuntime = /* unused pure expression or super */null && true; var alwaysThrottleRetries = true; var passChildrenWhenCloningPersistedNodes = false; var enableServerComponentLogs = /* unused pure expression or super */null && true; var enableAddPropertiesFastPath = false; var enableOwnerStacks = /* unused pure expression or super */null && true; var enableShallowPropDiffing = false; /** * Enables an expiration time for retry lanes to avoid starvation. */ var enableRetryLaneExpiration = false; var retryLaneExpirationMs = 5000; var syncLaneExpirationMs = 250; var transitionLaneExpirationMs = 5000; // ----------------------------------------------------------------------------- // Ready for next major. // // Alias __NEXT_MAJOR__ to __EXPERIMENTAL__ for easier skimming. // ----------------------------------------------------------------------------- // TODO: Anything that's set to `true` in this section should either be cleaned // up (if it's on everywhere, including Meta and RN builds) or moved to a // different section of this file. // const __NEXT_MAJOR__ = __EXPERIMENTAL__; // Renames the internal symbol for elements since they have changed signature/constructor var renameElementSymbol = true; // Removes legacy style context var disableLegacyContext = true; // Not ready to break experimental yet. // Modern behaviour aligns more with what components // components will encounter in production, especially when used With . // TODO: clean up legacy once tests pass WWW. var useModernStrictMode = true; // Not ready to break experimental yet. // Remove IE and MsApp specific workarounds for innerHTML var disableIEWorkarounds = true; // Filter certain DOM attributes (e.g. src, href) if their values are empty // strings. This prevents e.g. from making an unnecessary HTTP // request for certain browsers. var enableFilterEmptyStringAttributesDOM = true; // Disabled caching behavior of `react/cache` in client runtimes. var disableClientCache = true; /** * Enables a new error detection for infinite render loops from updates caused * by setState or similar outside of the component owning the state. */ var enableInfiniteRenderLoopDetection = true; // Subtle breaking changes to JSX runtime to make it faster, like passing `ref` // as a normal prop instead of stripping it from the props object. // Passes `ref` as a normal prop instead of stripping it from the props object // during element creation. var enableRefAsProp = true; var disableStringRefs = true; var enableFastJSX = true; // Warn on any usage of ReactTestRenderer var enableReactTestRendererWarning = true; // Disables legacy mode // This allows us to land breaking changes to remove legacy mode APIs in experimental builds // before removing them in stable in the next Major var disableLegacyMode = true; // Make equivalent to instead of var enableRenderableContext = true; // Enables the `initialValue` option for `useDeferredValue` var enableUseDeferredValueInitialArg = true; // ----------------------------------------------------------------------------- // Chopping Block // // Planned feature deprecations and breaking changes. Sorted roughly in order of // when we plan to enable them. // ----------------------------------------------------------------------------- // Enables time slicing for updates that aren't wrapped in startTransition. var forceConcurrentByDefaultForTesting = false; // Adds an opt-in to time slicing for updates that aren't wrapped in startTransition. var allowConcurrentByDefault = false; // ----------------------------------------------------------------------------- // React DOM Chopping Block // // Similar to main Chopping Block but only flags related to React DOM. These are // grouped because we will likely batch all of them into a single major release. // ----------------------------------------------------------------------------- // Disable support for comment nodes as React DOM containers. Already disabled // in open source, but www codebase still relies on it. Need to remove. var disableCommentsAsDOMContainers = true; var enableTrustedTypesIntegration = false; // Prevent the value and checked attributes from syncing with their related // DOM properties var disableInputAttributeSyncing = false; // Disables children for