mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 18:01:02 +00:00
1 line
21 KiB
Plaintext
1 line
21 KiB
Plaintext
{"dependencies":[{"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 Object.defineProperty(exports, '__esModule', {\n value: true\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 _reactNavigationRouters = require(_dependencyMap[0], \"@react-navigation/routers\");\n var _react = require(_dependencyMap[1], \"react\");\n var React = _interopNamespace(_react);\n var _NavigationBuilderContextJs = require(_dependencyMap[2], \"./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 {\n emit,\n ...rest\n } = navigation;\n const actions = {\n ...router.actionCreators,\n ..._reactNavigationRouters.CommonActions\n };\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 {\n ...rest,\n ...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({\n source: route.key,\n ...action\n });\n }\n };\n const withStack = callback => {\n let isStackSet = false;\n try {\n if (\"development\" !== '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 = {\n ...router.actionCreators,\n ..._reactNavigationRouters.CommonActions\n };\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] = {\n ...base,\n ...helpers,\n // FIXME: too much work to fix the types for now\n ...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 => ({\n ...o,\n [route.key]: {\n ...o[route.key],\n ...options\n }\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":177,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13,"Object"],[4,8,1,13],[4,9,1,13,"defineProperty"],[4,23,1,13],[4,24,1,13,"exports"],[4,31,1,13],[5,4,1,13,"value"],[5,9,1,13],[6,2,1,13],[7,2,1,13],[7,11,1,13,"_interopNamespace"],[7,29,1,13,"e"],[7,30,1,13],[8,4,1,13],[8,8,1,13,"e"],[8,9,1,13],[8,13,1,13,"e"],[8,14,1,13],[8,15,1,13,"__esModule"],[8,25,1,13],[8,34,1,13,"e"],[8,35,1,13],[9,4,1,13],[9,8,1,13,"n"],[9,9,1,13],[10,4,1,13],[10,8,1,13,"e"],[10,9,1,13],[10,11,1,13,"Object"],[10,17,1,13],[10,18,1,13,"keys"],[10,22,1,13],[10,23,1,13,"e"],[10,24,1,13],[10,26,1,13,"forEach"],[10,33,1,13],[10,44,1,13,"k"],[10,45,1,13],[11,6,1,13],[11,10,1,13,"d"],[11,11,1,13],[11,14,1,13,"Object"],[11,20,1,13],[11,21,1,13,"getOwnPropertyDescriptor"],[11,45,1,13],[11,46,1,13,"e"],[11,47,1,13],[11,49,1,13,"k"],[11,50,1,13],[12,6,1,13,"Object"],[12,12,1,13],[12,13,1,13,"defineProperty"],[12,27,1,13],[12,28,1,13,"n"],[12,29,1,13],[12,31,1,13,"k"],[12,32,1,13],[12,34,1,13,"d"],[12,35,1,13],[12,36,1,13,"get"],[12,39,1,13],[12,42,1,13,"d"],[12,43,1,13],[13,8,1,13,"enumerable"],[13,18,1,13],[14,8,1,13,"get"],[14,11,1,13],[14,22,1,13,"get"],[14,23,1,13],[15,10,1,13],[15,17,1,13,"e"],[15,18,1,13],[15,19,1,13,"k"],[15,20,1,13],[16,8,1,13],[17,6,1,13],[18,4,1,13],[19,4,1,13,"n"],[19,5,1,13],[19,6,1,13,"default"],[19,13,1,13],[19,16,1,13,"e"],[19,17,1,13],[20,4,1,13],[20,11,1,13,"n"],[20,12,1,13],[21,2,1,13],[22,2,11,0,"exports"],[22,9,11,0],[22,10,11,0,"useNavigationCache"],[22,28,11,0],[22,31,11,0,"useNavigationCache"],[22,49,11,0],[23,2,3,0],[23,6,3,0,"_reactNavigationRouters"],[23,29,3,0],[23,32,3,0,"require"],[23,39,3,0],[23,40,3,0,"_dependencyMap"],[23,54,3,0],[24,2,4,0],[24,6,4,0,"_react"],[24,12,4,0],[24,15,4,0,"require"],[24,22,4,0],[24,23,4,0,"_dependencyMap"],[24,37,4,0],[25,2,4,0],[25,6,4,0,"React"],[25,11,4,0],[25,14,4,0,"_interopNamespace"],[25,31,4,0],[25,32,4,0,"_react"],[25,38,4,0],[26,2,5,0],[26,6,5,0,"_NavigationBuilderContextJs"],[26,33,5,0],[26,36,5,0,"require"],[26,43,5,0],[26,44,5,0,"_dependencyMap"],[26,58,5,0],[27,2,6,0],[28,0,7,0],[29,0,8,0],[30,0,9,0],[31,0,10,0],[32,2,11,7],[32,11,11,16,"useNavigationCache"],[32,29,11,34,"useNavigationCache"],[32,30,11,35],[33,4,12,2,"state"],[33,9,12,7],[34,4,13,2,"getState"],[34,12,13,10],[35,4,14,2,"navigation"],[35,14,14,12],[36,4,15,2,"setOptions"],[36,14,15,12],[37,4,16,2,"router"],[37,10,16,8],[38,4,17,2,"emitter"],[39,2,18,0],[39,3,18,1],[39,5,18,3],[40,4,19,2],[40,10,19,8],[41,6,20,4,"stackRef"],[42,4,21,2],[42,5,21,3],[42,8,21,6,"React"],[42,13,21,11],[42,14,21,12,"useContext"],[42,24,21,22],[42,25,21,23,"NavigationBuilderContext"],[42,52,21,47],[42,53,21,47,"NavigationBuilderContext"],[42,77,21,47],[42,78,21,48],[43,4,22,2],[43,10,22,8,"base"],[43,14,22,12],[43,17,22,15,"React"],[43,22,22,20],[43,23,22,21,"useMemo"],[43,30,22,28],[43,31,22,29],[43,37,22,35],[44,6,23,4],[45,6,24,4],[45,12,24,10],[46,8,25,6,"emit"],[46,12,25,10],[47,8,26,6],[47,11,26,9,"rest"],[48,6,27,4],[48,7,27,5],[48,10,27,8,"navigation"],[48,20,27,18],[49,6,28,4],[49,12,28,10,"actions"],[49,19,28,17],[49,22,28,20],[50,8,29,6],[50,11,29,9,"router"],[50,17,29,15],[50,18,29,16,"actionCreators"],[50,32,29,30],[51,8,30,6],[51,11,30,9,"CommonActions"],[51,34,30,22],[51,35,30,22,"CommonActions"],[52,6,31,4],[52,7,31,5],[53,6,32,4],[53,12,32,10,"dispatch"],[53,20,32,18],[53,23,32,21,"dispatch"],[53,24,32,21],[53,29,32,27],[54,8,33,6],[54,14,33,12],[54,18,33,16,"Error"],[54,23,33,21],[54,24,33,22],[54,81,33,79],[54,82,33,80],[55,6,34,4],[55,7,34,5],[56,6,35,4],[56,12,35,10,"helpers"],[56,19,35,17],[56,22,35,20,"Object"],[56,28,35,26],[56,29,35,27,"keys"],[56,33,35,31],[56,34,35,32,"actions"],[56,41,35,39],[56,42,35,40],[56,43,35,41,"reduce"],[56,49,35,47],[56,50,35,48],[56,51,35,49,"acc"],[56,54,35,52],[56,56,35,54,"name"],[56,60,35,58],[56,65,35,63],[57,8,36,6,"acc"],[57,11,36,9],[57,12,36,10,"name"],[57,16,36,14],[57,17,36,15],[57,20,36,18,"dispatch"],[57,28,36,26],[58,8,37,6],[58,15,37,13,"acc"],[58,18,37,16],[59,6,38,4],[59,7,38,5],[59,9,38,7],[59,10,38,8],[59,11,38,9],[59,12,38,10],[60,6,39,4],[60,13,39,11],[61,8,40,6],[61,11,40,9,"rest"],[61,15,40,13],[62,8,41,6],[62,11,41,9,"helpers"],[62,18,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,63,4],[84,7,63,5],[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,30],[105,14,84,12,"source"],[105,20,84,18],[105,22,84,20,"route"],[105,27,84,25],[105,28,84,26,"key"],[105,31,84,29],[106,14,85,12],[106,17,85,15,"action"],[107,12,86,10],[107,13,86,11],[107,14,86,12],[108,10,87,8],[109,8,88,6],[109,9,88,7],[110,8,89,6],[110,14,89,12,"withStack"],[110,23,89,21],[110,26,89,24,"callback"],[110,34,89,32],[110,38,89,36],[111,10,90,8],[111,14,90,12,"isStackSet"],[111,24,90,22],[111,27,90,25],[111,32,90,30],[112,10,91,8],[112,14,91,12],[113,12,92,10],[113,16,92,14],[113,34,92,39],[113,46,92,51],[113,50,92,55,"stackRef"],[113,58,92,63],[113,62,92,67],[113,63,92,68,"stackRef"],[113,71,92,76],[113,72,92,77,"current"],[113,79,92,84],[113,81,92,86],[114,14,93,12],[115,14,94,12,"stackRef"],[115,22,94,20],[115,23,94,21,"current"],[115,30,94,28],[115,33,94,31],[115,37,94,35,"Error"],[115,42,94,40],[115,43,94,41],[115,44,94,42],[115,45,94,43,"stack"],[115,50,94,48],[116,14,95,12,"isStackSet"],[116,24,95,22],[116,27,95,25],[116,31,95,29],[117,12,96,10],[118,12,97,10,"callback"],[118,20,97,18],[118,21,97,19],[118,22,97,20],[119,10,98,8],[119,11,98,9],[119,20,98,18],[120,12,99,10],[120,16,99,14,"isStackSet"],[120,26,99,24],[120,30,99,28,"stackRef"],[120,38,99,36],[120,40,99,38],[121,14,100,12,"stackRef"],[121,22,100,20],[121,23,100,21,"current"],[121,30,100,28],[121,33,100,31,"undefined"],[121,42,100,40],[122,12,101,10],[123,10,102,8],[124,8,103,6],[124,9,103,7],[125,8,104,6],[125,14,104,12,"actions"],[125,21,104,19],[125,24,104,22],[126,10,105,8],[126,13,105,11,"router"],[126,19,105,17],[126,20,105,18,"actionCreators"],[126,34,105,32],[127,10,106,8],[127,13,106,11,"CommonActions"],[127,36,106,24],[127,37,106,24,"CommonActions"],[128,8,107,6],[128,9,107,7],[129,8,108,6],[129,14,108,12,"helpers"],[129,21,108,19],[129,24,108,22,"Object"],[129,30,108,28],[129,31,108,29,"keys"],[129,35,108,33],[129,36,108,34,"actions"],[129,43,108,41],[129,44,108,42],[129,45,108,43,"reduce"],[129,51,108,49],[129,52,108,50],[129,53,108,51,"acc"],[129,56,108,54],[129,58,108,56,"name"],[129,62,108,60],[129,67,108,65],[130,10,109,8,"acc"],[130,13,109,11],[130,14,109,12,"name"],[130,18,109,16],[130,19,109,17],[130,22,109,20],[130,23,109,21],[130,26,109,24,"args"],[130,30,109,28],[130,35,109,33,"withStack"],[130,44,109,42],[130,45,109,43],[131,10,110,8],[132,10,111,8,"dispatch"],[132,18,111,16],[132,19,111,17,"actions"],[132,26,111,24],[132,27,111,25,"name"],[132,31,111,29],[132,32,111,30],[132,33,111,31],[132,36,111,34,"args"],[132,40,111,38],[132,41,111,39],[132,42,111,40],[132,43,111,41],[133,10,112,8],[133,17,112,15,"acc"],[133,20,112,18],[134,8,113,6],[134,9,113,7],[134,11,113,9],[134,12,113,10],[134,13,113,11],[134,14,113,12],[135,8,114,6,"acc"],[135,11,114,9],[135,12,114,10,"route"],[135,17,114,15],[135,18,114,16,"key"],[135,21,114,19],[135,22,114,20],[135,25,114,23],[136,10,115,8],[136,13,115,11,"base"],[136,17,115,15],[137,10,116,8],[137,13,116,11,"helpers"],[137,20,116,18],[138,10,117,8],[139,10,118,8],[139,13,118,11,"emitter"],[139,20,118,18],[139,21,118,19,"create"],[139,27,118,25],[139,28,118,26,"route"],[139,33,118,31],[139,34,118,32,"key"],[139,37,118,35],[139,38,118,36],[140,10,119,8,"dispatch"],[140,18,119,16],[140,20,119,18,"thunk"],[140,25,119,23],[140,29,119,27,"withStack"],[140,38,119,36],[140,39,119,37],[140,45,119,43,"dispatch"],[140,53,119,51],[140,54,119,52,"thunk"],[140,59,119,57],[140,60,119,58],[140,61,119,59],[141,10,120,8,"getParent"],[141,19,120,17],[141,21,120,19,"id"],[141,23,120,21],[141,27,120,25],[142,12,121,10],[142,16,121,14,"id"],[142,18,121,16],[142,23,121,21,"undefined"],[142,32,121,30],[142,36,121,34,"id"],[142,38,121,36],[142,43,121,41,"base"],[142,47,121,45],[142,48,121,46,"getId"],[142,53,121,51],[142,54,121,52],[142,55,121,53],[142,57,121,55],[143,14,122,12],[144,14,123,12],[145,14,124,12],[145,21,124,19,"acc"],[145,24,124,22],[145,25,124,23,"route"],[145,30,124,28],[145,31,124,29,"key"],[145,34,124,32],[145,35,124,33],[146,12,125,10],[147,12,126,10],[147,19,126,17,"base"],[147,23,126,21],[147,24,126,22,"getParent"],[147,33,126,31],[147,34,126,32,"id"],[147,36,126,34],[147,37,126,35],[148,10,127,8],[148,11,127,9],[149,10,128,8,"setOptions"],[149,20,128,18],[149,22,128,20,"options"],[149,29,128,27],[149,33,128,31],[150,12,129,10,"setOptions"],[150,22,129,20],[150,23,129,21,"o"],[150,24,129,22],[150,29,129,27],[151,14,130,12],[151,17,130,15,"o"],[151,18,130,16],[152,14,131,12],[152,15,131,13,"route"],[152,20,131,18],[152,21,131,19,"key"],[152,24,131,22],[152,27,131,25],[153,16,132,14],[153,19,132,17,"o"],[153,20,132,18],[153,21,132,19,"route"],[153,26,132,24],[153,27,132,25,"key"],[153,30,132,28],[153,31,132,29],[154,16,133,14],[154,19,133,17,"options"],[155,14,134,12],[156,12,135,10],[156,13,135,11],[156,14,135,12],[156,15,135,13],[157,10,136,8],[157,11,136,9],[158,10,137,8,"isFocused"],[158,19,137,17],[158,21,137,19,"isFocused"],[158,22,137,19],[158,27,137,25],[159,12,138,10],[159,18,138,16,"state"],[159,23,138,21],[159,26,138,24,"base"],[159,30,138,28],[159,31,138,29,"getState"],[159,39,138,37],[159,40,138,38],[159,41,138,39],[160,12,139,10],[160,16,139,14,"state"],[160,21,139,19],[160,22,139,20,"routes"],[160,28,139,26],[160,29,139,27,"state"],[160,34,139,32],[160,35,139,33,"index"],[160,40,139,38],[160,41,139,39],[160,42,139,40,"key"],[160,45,139,43],[160,50,139,48,"route"],[160,55,139,53],[160,56,139,54,"key"],[160,59,139,57],[160,61,139,59],[161,14,140,12],[161,21,140,19],[161,26,140,24],[162,12,141,10],[164,12,143,10],[165,12,144,10],[166,12,145,10],[166,19,145,17,"navigation"],[166,29,145,27],[166,32,145,30,"navigation"],[166,42,145,40],[166,43,145,41,"isFocused"],[166,52,145,50],[166,53,145,51],[166,54,145,52],[166,57,145,55],[166,61,145,59],[167,10,146,8],[168,8,147,6],[168,9,147,7],[169,6,148,4],[170,6,149,4],[170,13,149,11,"acc"],[170,16,149,14],[171,4,150,2],[171,5,150,3],[171,7,150,5],[171,8,150,6],[171,9,150,7],[171,10,150,8],[172,4,151,2],[172,11,151,9],[173,6,152,4,"base"],[173,10,152,8],[174,6,153,4,"navigations"],[174,17,153,15],[174,19,153,17,"cache"],[174,24,153,22],[174,25,153,23,"current"],[175,4,154,2],[175,5,154,3],[176,2,155,0],[177,0,155,1],[177,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"}]} |