mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 06:31:03 +00:00
1 line
22 KiB
Plaintext
1 line
22 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/objectWithoutPropertiesLoose","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"HFkXuFcBAqfzGtqyPj8g62MKT0M=","exportNames":["*"],"imports":1}},{"name":"@react-navigation/routers","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":15},"end":{"line":3,"column":58,"index":73}}],"key":"TumjUqgKkj40CL5/as2VxzLfO54=","exportNames":["*"],"imports":1}},{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":4,"column":0,"index":74},"end":{"line":4,"column":31,"index":105}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"],"imports":1}},{"name":"./NavigationBuilderContext.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":5,"column":0,"index":106},"end":{"line":5,"column":73,"index":179}}],"key":"vvb+tbs8cGp9hlTxgL5PZCjRz5E=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n const _excluded = [\"emit\"];\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n function _interopNamespace(e) {\n if (e && e.__esModule) return e;\n var n = {};\n if (e) Object.keys(e).forEach(function (k) {\n var d = Object.getOwnPropertyDescriptor(e, k);\n Object.defineProperty(n, k, d.get ? d : {\n enumerable: true,\n get: function () {\n return e[k];\n }\n });\n });\n n.default = e;\n return n;\n }\n exports.useNavigationCache = useNavigationCache;\n var _babelRuntimeHelpersObjectWithoutPropertiesLoose = require(_dependencyMap[0], \"@babel/runtime/helpers/objectWithoutPropertiesLoose\");\n var _objectWithoutPropertiesLoose = _interopDefault(_babelRuntimeHelpersObjectWithoutPropertiesLoose);\n var _reactNavigationRouters = require(_dependencyMap[1], \"@react-navigation/routers\");\n var _react = require(_dependencyMap[2], \"react\");\n var React = _interopNamespace(_react);\n var _NavigationBuilderContextJs = require(_dependencyMap[3], \"./NavigationBuilderContext.js\");\n /**\n * Hook to cache navigation objects for each screen in the navigator.\n * It's important to cache them to make sure navigation objects don't change between renders.\n * This lets us apply optimizations like `React.memo` to minimize re-rendering screens.\n */\n function useNavigationCache({\n state,\n getState,\n navigation,\n setOptions,\n router,\n emitter\n }) {\n const {\n stackRef\n } = React.useContext(_NavigationBuilderContextJs.NavigationBuilderContext);\n const base = React.useMemo(() => {\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n const rest = (0, _objectWithoutPropertiesLoose.default)(navigation, _excluded);\n const actions = Object.assign({}, router.actionCreators, _reactNavigationRouters.CommonActions);\n const dispatch = () => {\n throw new Error('Actions cannot be dispatched from a placeholder screen.');\n };\n const helpers = Object.keys(actions).reduce((acc, name) => {\n acc[name] = dispatch;\n return acc;\n }, {});\n return Object.assign({}, rest, helpers, {\n addListener: () => {\n // Event listeners are not supported for placeholder screens\n\n return () => {\n // Empty function\n };\n },\n removeListener: () => {\n // Event listeners are not supported for placeholder screens\n },\n dispatch,\n getParent: id => {\n if (id !== undefined && id === rest.getId()) {\n return base;\n }\n return rest.getParent(id);\n },\n setOptions: () => {\n throw new Error('Options cannot be set from a placeholder screen.');\n },\n isFocused: () => false\n });\n }, [navigation, router.actionCreators]);\n\n // Cache object which holds navigation objects for each screen\n // We use `React.useMemo` instead of `React.useRef` coz we want to invalidate it when deps change\n // In reality, these deps will rarely change, if ever\n const cache = React.useMemo(() => ({\n current: {}\n }),\n // eslint-disable-next-line react-hooks/exhaustive-deps\n [base, getState, navigation, setOptions, emitter]);\n cache.current = state.routes.reduce((acc, route) => {\n const previous = cache.current[route.key];\n if (previous) {\n // If a cached navigation object already exists, reuse it\n acc[route.key] = previous;\n } else {\n const dispatch = thunk => {\n const action = typeof thunk === 'function' ? thunk(getState()) : thunk;\n if (action != null) {\n navigation.dispatch(Object.assign({\n source: route.key\n }, action));\n }\n };\n const withStack = callback => {\n let isStackSet = false;\n try {\n if (process.env.NODE_ENV !== 'production' && stackRef && !stackRef.current) {\n // Capture the stack trace for devtools\n stackRef.current = new Error().stack;\n isStackSet = true;\n }\n callback();\n } finally {\n if (isStackSet && stackRef) {\n stackRef.current = undefined;\n }\n }\n };\n const actions = Object.assign({}, router.actionCreators, _reactNavigationRouters.CommonActions);\n const helpers = Object.keys(actions).reduce((acc, name) => {\n acc[name] = (...args) => withStack(() =>\n // @ts-expect-error: name is a valid key, but TypeScript is dumb\n dispatch(actions[name](...args)));\n return acc;\n }, {});\n acc[route.key] = Object.assign({}, base, helpers, emitter.create(route.key), {\n dispatch: thunk => withStack(() => dispatch(thunk)),\n getParent: id => {\n if (id !== undefined && id === base.getId()) {\n // If the passed id is the same as the current navigation id,\n // we return the cached navigation object for the relevant route\n return acc[route.key];\n }\n return base.getParent(id);\n },\n setOptions: options => {\n setOptions(o => Object.assign({}, o, {\n [route.key]: Object.assign({}, o[route.key], options)\n }));\n },\n isFocused: () => {\n const state = base.getState();\n if (state.routes[state.index].key !== route.key) {\n return false;\n }\n\n // If the current screen is focused, we also need to check if parent navigator is focused\n // This makes sure that we return the focus state in the whole tree, not just this navigator\n return navigation ? navigation.isFocused() : true;\n }\n });\n }\n return acc;\n }, {});\n return {\n base,\n navigations: cache.current\n };\n }\n});","lineCount":165,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13],[4,8,1,13,"_excluded"],[4,17,1,13],[5,2,1,13,"Object"],[5,8,1,13],[5,9,1,13,"defineProperty"],[5,23,1,13],[5,24,1,13,"exports"],[5,31,1,13],[6,4,1,13,"value"],[6,9,1,13],[7,2,1,13],[8,2,1,13],[8,11,1,13,"_interopDefault"],[8,27,1,13,"e"],[8,28,1,13],[9,4,1,13],[9,11,1,13,"e"],[9,12,1,13],[9,16,1,13,"e"],[9,17,1,13],[9,18,1,13,"__esModule"],[9,28,1,13],[9,31,1,13,"e"],[9,32,1,13],[10,6,1,13,"default"],[10,13,1,13],[10,15,1,13,"e"],[11,4,1,13],[12,2,1,13],[13,2,1,13],[13,11,1,13,"_interopNamespace"],[13,29,1,13,"e"],[13,30,1,13],[14,4,1,13],[14,8,1,13,"e"],[14,9,1,13],[14,13,1,13,"e"],[14,14,1,13],[14,15,1,13,"__esModule"],[14,25,1,13],[14,34,1,13,"e"],[14,35,1,13],[15,4,1,13],[15,8,1,13,"n"],[15,9,1,13],[16,4,1,13],[16,8,1,13,"e"],[16,9,1,13],[16,11,1,13,"Object"],[16,17,1,13],[16,18,1,13,"keys"],[16,22,1,13],[16,23,1,13,"e"],[16,24,1,13],[16,26,1,13,"forEach"],[16,33,1,13],[16,44,1,13,"k"],[16,45,1,13],[17,6,1,13],[17,10,1,13,"d"],[17,11,1,13],[17,14,1,13,"Object"],[17,20,1,13],[17,21,1,13,"getOwnPropertyDescriptor"],[17,45,1,13],[17,46,1,13,"e"],[17,47,1,13],[17,49,1,13,"k"],[17,50,1,13],[18,6,1,13,"Object"],[18,12,1,13],[18,13,1,13,"defineProperty"],[18,27,1,13],[18,28,1,13,"n"],[18,29,1,13],[18,31,1,13,"k"],[18,32,1,13],[18,34,1,13,"d"],[18,35,1,13],[18,36,1,13,"get"],[18,39,1,13],[18,42,1,13,"d"],[18,43,1,13],[19,8,1,13,"enumerable"],[19,18,1,13],[20,8,1,13,"get"],[20,11,1,13],[20,22,1,13,"get"],[20,23,1,13],[21,10,1,13],[21,17,1,13,"e"],[21,18,1,13],[21,19,1,13,"k"],[21,20,1,13],[22,8,1,13],[23,6,1,13],[24,4,1,13],[25,4,1,13,"n"],[25,5,1,13],[25,6,1,13,"default"],[25,13,1,13],[25,16,1,13,"e"],[25,17,1,13],[26,4,1,13],[26,11,1,13,"n"],[26,12,1,13],[27,2,1,13],[28,2,11,0,"exports"],[28,9,11,0],[28,10,11,0,"useNavigationCache"],[28,28,11,0],[28,31,11,0,"useNavigationCache"],[28,49,11,0],[29,2,155,1],[29,6,155,1,"_babelRuntimeHelpersObjectWithoutPropertiesLoose"],[29,54,155,1],[29,57,155,1,"require"],[29,64,155,1],[29,65,155,1,"_dependencyMap"],[29,79,155,1],[30,2,155,1],[30,6,155,1,"_objectWithoutPropertiesLoose"],[30,35,155,1],[30,38,155,1,"_interopDefault"],[30,53,155,1],[30,54,155,1,"_babelRuntimeHelpersObjectWithoutPropertiesLoose"],[30,102,155,1],[31,2,3,0],[31,6,3,0,"_reactNavigationRouters"],[31,29,3,0],[31,32,3,0,"require"],[31,39,3,0],[31,40,3,0,"_dependencyMap"],[31,54,3,0],[32,2,4,0],[32,6,4,0,"_react"],[32,12,4,0],[32,15,4,0,"require"],[32,22,4,0],[32,23,4,0,"_dependencyMap"],[32,37,4,0],[33,2,4,0],[33,6,4,0,"React"],[33,11,4,0],[33,14,4,0,"_interopNamespace"],[33,31,4,0],[33,32,4,0,"_react"],[33,38,4,0],[34,2,5,0],[34,6,5,0,"_NavigationBuilderContextJs"],[34,33,5,0],[34,36,5,0,"require"],[34,43,5,0],[34,44,5,0,"_dependencyMap"],[34,58,5,0],[35,2,6,0],[36,0,7,0],[37,0,8,0],[38,0,9,0],[39,0,10,0],[40,2,11,7],[40,11,11,16,"useNavigationCache"],[40,29,11,34,"useNavigationCache"],[40,30,11,35],[41,4,12,2,"state"],[41,9,12,7],[42,4,13,2,"getState"],[42,12,13,10],[43,4,14,2,"navigation"],[43,14,14,12],[44,4,15,2,"setOptions"],[44,14,15,12],[45,4,16,2,"router"],[45,10,16,8],[46,4,17,2,"emitter"],[47,2,18,0],[47,3,18,1],[47,5,18,3],[48,4,19,2],[48,10,19,8],[49,6,20,4,"stackRef"],[50,4,21,2],[50,5,21,3],[50,8,21,6,"React"],[50,13,21,11],[50,14,21,12,"useContext"],[50,24,21,22],[50,25,21,23,"NavigationBuilderContext"],[50,52,21,47],[50,53,21,47,"NavigationBuilderContext"],[50,77,21,47],[50,78,21,48],[51,4,22,2],[51,10,22,8,"base"],[51,14,22,12],[51,17,22,15,"React"],[51,22,22,20],[51,23,22,21,"useMemo"],[51,30,22,28],[51,31,22,29],[51,37,22,35],[52,6,23,4],[53,6,24,4],[53,12,26,9,"rest"],[53,16,26,13],[53,23,26,13,"_objectWithoutPropertiesLoose"],[53,52,26,13],[53,53,26,13,"default"],[53,60,26,13],[53,62,27,8,"navigation"],[53,72,27,18],[53,74,27,18,"_excluded"],[53,83,27,18],[54,6,28,4],[54,12,28,10,"actions"],[54,19,28,17],[54,22,28,17,"Object"],[54,28,28,17],[54,29,28,17,"assign"],[54,35,28,17],[54,40,29,9,"router"],[54,46,29,15],[54,47,29,16,"actionCreators"],[54,61,29,30],[54,63,30,9,"CommonActions"],[54,86,30,22],[54,87,30,22,"CommonActions"],[54,100,30,22],[54,101,31,5],[55,6,32,4],[55,12,32,10,"dispatch"],[55,20,32,18],[55,23,32,21,"dispatch"],[55,24,32,21],[55,29,32,27],[56,8,33,6],[56,14,33,12],[56,18,33,16,"Error"],[56,23,33,21],[56,24,33,22],[56,81,33,79],[56,82,33,80],[57,6,34,4],[57,7,34,5],[58,6,35,4],[58,12,35,10,"helpers"],[58,19,35,17],[58,22,35,20,"Object"],[58,28,35,26],[58,29,35,27,"keys"],[58,33,35,31],[58,34,35,32,"actions"],[58,41,35,39],[58,42,35,40],[58,43,35,41,"reduce"],[58,49,35,47],[58,50,35,48],[58,51,35,49,"acc"],[58,54,35,52],[58,56,35,54,"name"],[58,60,35,58],[58,65,35,63],[59,8,36,6,"acc"],[59,11,36,9],[59,12,36,10,"name"],[59,16,36,14],[59,17,36,15],[59,20,36,18,"dispatch"],[59,28,36,26],[60,8,37,6],[60,15,37,13,"acc"],[60,18,37,16],[61,6,38,4],[61,7,38,5],[61,9,38,7],[61,10,38,8],[61,11,38,9],[61,12,38,10],[62,6,39,4],[62,13,39,4,"Object"],[62,19,39,4],[62,20,39,4,"assign"],[62,26,39,4],[62,31,40,9,"rest"],[62,35,40,13],[62,37,41,9,"helpers"],[62,44,41,16],[63,8,42,6,"addListener"],[63,19,42,17],[63,21,42,19,"addListener"],[63,22,42,19],[63,27,42,25],[64,10,43,8],[66,10,45,8],[66,17,45,15],[66,23,45,21],[67,12,46,10],[68,10,46,10],[68,11,47,9],[69,8,48,6],[69,9,48,7],[70,8,49,6,"removeListener"],[70,22,49,20],[70,24,49,22,"removeListener"],[70,25,49,22],[70,30,49,28],[71,10,50,8],[72,8,50,8],[72,9,51,7],[73,8,52,6,"dispatch"],[73,16,52,14],[74,8,53,6,"getParent"],[74,17,53,15],[74,19,53,17,"id"],[74,21,53,19],[74,25,53,23],[75,10,54,8],[75,14,54,12,"id"],[75,16,54,14],[75,21,54,19,"undefined"],[75,30,54,28],[75,34,54,32,"id"],[75,36,54,34],[75,41,54,39,"rest"],[75,45,54,43],[75,46,54,44,"getId"],[75,51,54,49],[75,52,54,50],[75,53,54,51],[75,55,54,53],[76,12,55,10],[76,19,55,17,"base"],[76,23,55,21],[77,10,56,8],[78,10,57,8],[78,17,57,15,"rest"],[78,21,57,19],[78,22,57,20,"getParent"],[78,31,57,29],[78,32,57,30,"id"],[78,34,57,32],[78,35,57,33],[79,8,58,6],[79,9,58,7],[80,8,59,6,"setOptions"],[80,18,59,16],[80,20,59,18,"setOptions"],[80,21,59,18],[80,26,59,24],[81,10,60,8],[81,16,60,14],[81,20,60,18,"Error"],[81,25,60,23],[81,26,60,24],[81,76,60,74],[81,77,60,75],[82,8,61,6],[82,9,61,7],[83,8,62,6,"isFocused"],[83,17,62,15],[83,19,62,17,"isFocused"],[83,20,62,17],[83,25,62,23],[84,6,62,28],[85,4,64,2],[85,5,64,3],[85,7,64,5],[85,8,64,6,"navigation"],[85,18,64,16],[85,20,64,18,"router"],[85,26,64,24],[85,27,64,25,"actionCreators"],[85,41,64,39],[85,42,64,40],[85,43,64,41],[87,4,66,2],[88,4,67,2],[89,4,68,2],[90,4,69,2],[90,10,69,8,"cache"],[90,15,69,13],[90,18,69,16,"React"],[90,23,69,21],[90,24,69,22,"useMemo"],[90,31,69,29],[90,32,69,30],[90,39,69,37],[91,6,70,4,"current"],[91,13,70,11],[91,15,70,13],[91,16,70,14],[92,4,71,2],[92,5,71,3],[92,6,71,4],[93,4,72,2],[94,4,73,2],[94,5,73,3,"base"],[94,9,73,7],[94,11,73,9,"getState"],[94,19,73,17],[94,21,73,19,"navigation"],[94,31,73,29],[94,33,73,31,"setOptions"],[94,43,73,41],[94,45,73,43,"emitter"],[94,52,73,50],[94,53,73,51],[94,54,73,52],[95,4,74,2,"cache"],[95,9,74,7],[95,10,74,8,"current"],[95,17,74,15],[95,20,74,18,"state"],[95,25,74,23],[95,26,74,24,"routes"],[95,32,74,30],[95,33,74,31,"reduce"],[95,39,74,37],[95,40,74,38],[95,41,74,39,"acc"],[95,44,74,42],[95,46,74,44,"route"],[95,51,74,49],[95,56,74,54],[96,6,75,4],[96,12,75,10,"previous"],[96,20,75,18],[96,23,75,21,"cache"],[96,28,75,26],[96,29,75,27,"current"],[96,36,75,34],[96,37,75,35,"route"],[96,42,75,40],[96,43,75,41,"key"],[96,46,75,44],[96,47,75,45],[97,6,76,4],[97,10,76,8,"previous"],[97,18,76,16],[97,20,76,18],[98,8,77,6],[99,8,78,6,"acc"],[99,11,78,9],[99,12,78,10,"route"],[99,17,78,15],[99,18,78,16,"key"],[99,21,78,19],[99,22,78,20],[99,25,78,23,"previous"],[99,33,78,31],[100,6,79,4],[100,7,79,5],[100,13,79,11],[101,8,80,6],[101,14,80,12,"dispatch"],[101,22,80,20],[101,25,80,23,"thunk"],[101,30,80,28],[101,34,80,32],[102,10,81,8],[102,16,81,14,"action"],[102,22,81,20],[102,25,81,23],[102,32,81,30,"thunk"],[102,37,81,35],[102,42,81,40],[102,52,81,50],[102,55,81,53,"thunk"],[102,60,81,58],[102,61,81,59,"getState"],[102,69,81,67],[102,70,81,68],[102,71,81,69],[102,72,81,70],[102,75,81,73,"thunk"],[102,80,81,78],[103,10,82,8],[103,14,82,12,"action"],[103,20,82,18],[103,24,82,22],[103,28,82,26],[103,30,82,28],[104,12,83,10,"navigation"],[104,22,83,20],[104,23,83,21,"dispatch"],[104,31,83,29],[104,32,83,29,"Object"],[104,38,83,29],[104,39,83,29,"assign"],[104,45,83,29],[105,14,84,12,"source"],[105,20,84,18],[105,22,84,20,"route"],[105,27,84,25],[105,28,84,26,"key"],[106,12,84,29],[106,15,85,15,"action"],[106,21,85,21],[106,22,86,11],[106,23,86,12],[107,10,87,8],[108,8,88,6],[108,9,88,7],[109,8,89,6],[109,14,89,12,"withStack"],[109,23,89,21],[109,26,89,24,"callback"],[109,34,89,32],[109,38,89,36],[110,10,90,8],[110,14,90,12,"isStackSet"],[110,24,90,22],[110,27,90,25],[110,32,90,30],[111,10,91,8],[111,14,91,12],[112,12,92,10],[112,16,92,14,"process"],[112,23,92,21],[112,24,92,22,"env"],[112,27,92,25],[112,28,92,26,"NODE_ENV"],[112,36,92,34],[112,41,92,39],[112,53,92,51],[112,57,92,55,"stackRef"],[112,65,92,63],[112,69,92,67],[112,70,92,68,"stackRef"],[112,78,92,76],[112,79,92,77,"current"],[112,86,92,84],[112,88,92,86],[113,14,93,12],[114,14,94,12,"stackRef"],[114,22,94,20],[114,23,94,21,"current"],[114,30,94,28],[114,33,94,31],[114,37,94,35,"Error"],[114,42,94,40],[114,43,94,41],[114,44,94,42],[114,45,94,43,"stack"],[114,50,94,48],[115,14,95,12,"isStackSet"],[115,24,95,22],[115,27,95,25],[115,31,95,29],[116,12,96,10],[117,12,97,10,"callback"],[117,20,97,18],[117,21,97,19],[117,22,97,20],[118,10,98,8],[118,11,98,9],[118,20,98,18],[119,12,99,10],[119,16,99,14,"isStackSet"],[119,26,99,24],[119,30,99,28,"stackRef"],[119,38,99,36],[119,40,99,38],[120,14,100,12,"stackRef"],[120,22,100,20],[120,23,100,21,"current"],[120,30,100,28],[120,33,100,31,"undefined"],[120,42,100,40],[121,12,101,10],[122,10,102,8],[123,8,103,6],[123,9,103,7],[124,8,104,6],[124,14,104,12,"actions"],[124,21,104,19],[124,24,104,19,"Object"],[124,30,104,19],[124,31,104,19,"assign"],[124,37,104,19],[124,42,105,11,"router"],[124,48,105,17],[124,49,105,18,"actionCreators"],[124,63,105,32],[124,65,106,11,"CommonActions"],[124,88,106,24],[124,89,106,24,"CommonActions"],[124,102,106,24],[124,103,107,7],[125,8,108,6],[125,14,108,12,"helpers"],[125,21,108,19],[125,24,108,22,"Object"],[125,30,108,28],[125,31,108,29,"keys"],[125,35,108,33],[125,36,108,34,"actions"],[125,43,108,41],[125,44,108,42],[125,45,108,43,"reduce"],[125,51,108,49],[125,52,108,50],[125,53,108,51,"acc"],[125,56,108,54],[125,58,108,56,"name"],[125,62,108,60],[125,67,108,65],[126,10,109,8,"acc"],[126,13,109,11],[126,14,109,12,"name"],[126,18,109,16],[126,19,109,17],[126,22,109,20],[126,23,109,21],[126,26,109,24,"args"],[126,30,109,28],[126,35,109,33,"withStack"],[126,44,109,42],[126,45,109,43],[127,10,110,8],[128,10,111,8,"dispatch"],[128,18,111,16],[128,19,111,17,"actions"],[128,26,111,24],[128,27,111,25,"name"],[128,31,111,29],[128,32,111,30],[128,33,111,31],[128,36,111,34,"args"],[128,40,111,38],[128,41,111,39],[128,42,111,40],[128,43,111,41],[129,10,112,8],[129,17,112,15,"acc"],[129,20,112,18],[130,8,113,6],[130,9,113,7],[130,11,113,9],[130,12,113,10],[130,13,113,11],[130,14,113,12],[131,8,114,6,"acc"],[131,11,114,9],[131,12,114,10,"route"],[131,17,114,15],[131,18,114,16,"key"],[131,21,114,19],[131,22,114,20],[131,25,114,20,"Object"],[131,31,114,20],[131,32,114,20,"assign"],[131,38,114,20],[131,43,115,11,"base"],[131,47,115,15],[131,49,116,11,"helpers"],[131,56,116,18],[131,58,118,11,"emitter"],[131,65,118,18],[131,66,118,19,"create"],[131,72,118,25],[131,73,118,26,"route"],[131,78,118,31],[131,79,118,32,"key"],[131,82,118,35],[131,83,118,36],[132,10,119,8,"dispatch"],[132,18,119,16],[132,20,119,18,"thunk"],[132,25,119,23],[132,29,119,27,"withStack"],[132,38,119,36],[132,39,119,37],[132,45,119,43,"dispatch"],[132,53,119,51],[132,54,119,52,"thunk"],[132,59,119,57],[132,60,119,58],[132,61,119,59],[133,10,120,8,"getParent"],[133,19,120,17],[133,21,120,19,"id"],[133,23,120,21],[133,27,120,25],[134,12,121,10],[134,16,121,14,"id"],[134,18,121,16],[134,23,121,21,"undefined"],[134,32,121,30],[134,36,121,34,"id"],[134,38,121,36],[134,43,121,41,"base"],[134,47,121,45],[134,48,121,46,"getId"],[134,53,121,51],[134,54,121,52],[134,55,121,53],[134,57,121,55],[135,14,122,12],[136,14,123,12],[137,14,124,12],[137,21,124,19,"acc"],[137,24,124,22],[137,25,124,23,"route"],[137,30,124,28],[137,31,124,29,"key"],[137,34,124,32],[137,35,124,33],[138,12,125,10],[139,12,126,10],[139,19,126,17,"base"],[139,23,126,21],[139,24,126,22,"getParent"],[139,33,126,31],[139,34,126,32,"id"],[139,36,126,34],[139,37,126,35],[140,10,127,8],[140,11,127,9],[141,10,128,8,"setOptions"],[141,20,128,18],[141,22,128,20,"options"],[141,29,128,27],[141,33,128,31],[142,12,129,10,"setOptions"],[142,22,129,20],[142,23,129,21,"o"],[142,24,129,22],[142,28,129,22,"Object"],[142,34,129,22],[142,35,129,22,"assign"],[142,41,129,22],[142,46,130,15,"o"],[142,47,130,16],[143,14,131,12],[143,15,131,13,"route"],[143,20,131,18],[143,21,131,19,"key"],[143,24,131,22],[143,27,131,22,"Object"],[143,33,131,22],[143,34,131,22,"assign"],[143,40,131,22],[143,45,132,17,"o"],[143,46,132,18],[143,47,132,19,"route"],[143,52,132,24],[143,53,132,25,"key"],[143,56,132,28],[143,57,132,29],[143,59,133,17,"options"],[143,66,133,24],[144,12,134,13],[144,14,135,12],[144,15,135,13],[145,10,136,8],[145,11,136,9],[146,10,137,8,"isFocused"],[146,19,137,17],[146,21,137,19,"isFocused"],[146,22,137,19],[146,27,137,25],[147,12,138,10],[147,18,138,16,"state"],[147,23,138,21],[147,26,138,24,"base"],[147,30,138,28],[147,31,138,29,"getState"],[147,39,138,37],[147,40,138,38],[147,41,138,39],[148,12,139,10],[148,16,139,14,"state"],[148,21,139,19],[148,22,139,20,"routes"],[148,28,139,26],[148,29,139,27,"state"],[148,34,139,32],[148,35,139,33,"index"],[148,40,139,38],[148,41,139,39],[148,42,139,40,"key"],[148,45,139,43],[148,50,139,48,"route"],[148,55,139,53],[148,56,139,54,"key"],[148,59,139,57],[148,61,139,59],[149,14,140,12],[149,21,140,19],[149,26,140,24],[150,12,141,10],[152,12,143,10],[153,12,144,10],[154,12,145,10],[154,19,145,17,"navigation"],[154,29,145,27],[154,32,145,30,"navigation"],[154,42,145,40],[154,43,145,41,"isFocused"],[154,52,145,50],[154,53,145,51],[154,54,145,52],[154,57,145,55],[154,61,145,59],[155,10,146,8],[156,8,146,9],[156,10,147,7],[157,6,148,4],[158,6,149,4],[158,13,149,11,"acc"],[158,16,149,14],[159,4,150,2],[159,5,150,3],[159,7,150,5],[159,8,150,6],[159,9,150,7],[159,10,150,8],[160,4,151,2],[160,11,151,9],[161,6,152,4,"base"],[161,10,152,8],[162,6,153,4,"navigations"],[162,17,153,15],[162,19,153,17,"cache"],[162,24,153,22],[162,25,153,23,"current"],[163,4,154,2],[163,5,154,3],[164,2,155,0],[165,0,155,1],[165,3]],"functionMap":{"names":["<global>","useNavigationCache","React.useMemo$argument_0","dispatch","Object.keys.reduce$argument_0","addListener","<anonymous>","removeListener","getParent","setOptions","isFocused","state.routes.reduce$argument_0","withStack","acc.name","withStack$argument_0","acc.route.key.dispatch","acc.route.key.getParent","acc.route.key.setOptions","setOptions$argument_0","acc.route.key.isFocused"],"mappings":"AAA;OCU;6BCW;qBCU;KDE;gDEC;KFG;mBGI;eCG;SDE;OHC;sBKC;OLE;iBME;ONK;kBOC;OPE;iBQC,WR;GDE;8BCK;IDE;sCUG;uBRM;OQQ;wBCC;ODc;kDPK;oBSC,uBC;wCDE,CT;OOE;kBIM,mBD,qBC,CJ;mBKC;SLO;oBMC;qBCC;YDM;SNC;mBQC;SRS;GVI;CDK"},"hasCjsExports":false},"type":"js/module"}]} |