one 1.1.309 → 1.1.310
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/Root.cjs +212 -0
- package/dist/cjs/{Route.js → Route.cjs} +34 -19
- package/dist/cjs/{cleanUrl.js → cleanUrl.cjs} +27 -18
- package/dist/cjs/cli/label-process.cjs +31 -0
- package/dist/cjs/cli/{main.js → main.cjs} +28 -16
- package/dist/cjs/cli/{prebuild.js → prebuild.cjs} +25 -15
- package/dist/cjs/cli/run.cjs +70 -0
- package/dist/cjs/cli/{runAndroid.js → runAndroid.cjs} +25 -15
- package/dist/cjs/cli/{runIos.js → runIos.cjs} +25 -15
- package/dist/cjs/cli.cjs +258 -0
- package/dist/cjs/clientLoaderResolver.cjs +35 -0
- package/dist/cjs/config.cjs +32 -0
- package/dist/cjs/constants.cjs +30 -0
- package/dist/cjs/{createApp.js → createApp.cjs} +33 -17
- package/dist/cjs/createApp.native.cjs +38 -0
- package/dist/cjs/createApp.native.cjs.map +6 -0
- package/dist/cjs/{createHandleRequest.js → createHandleRequest.cjs} +60 -49
- package/dist/cjs/createRoute.cjs +42 -0
- package/dist/cjs/fallbackViews/{Sitemap.js → Sitemap.cjs} +35 -16
- package/dist/cjs/fallbackViews/{Unmatched.js → Unmatched.cjs} +32 -17
- package/dist/cjs/fork/NavigationContainer.cjs +105 -0
- package/dist/cjs/fork/NavigationContainer.native.cjs +103 -0
- package/dist/cjs/fork/NavigationContainer.native.cjs.map +6 -0
- package/dist/cjs/fork/createMemoryHistory.cjs +136 -0
- package/dist/cjs/fork/{extractPathFromURL.js → extractPathFromURL.cjs} +30 -21
- package/dist/cjs/fork/findFocusedRoute.cjs +30 -0
- package/dist/cjs/fork/{getPathFromState.js → getPathFromState.cjs} +120 -113
- package/dist/cjs/fork/getStateFromPath.cjs +366 -0
- package/dist/cjs/fork/useLinking.cjs +215 -0
- package/dist/cjs/fork/useLinking.native.cjs +126 -0
- package/dist/cjs/fork/useLinking.native.cjs.map +6 -0
- package/dist/cjs/fork/validatePathConfig.cjs +44 -0
- package/dist/cjs/{getLinkingConfig.js → getLinkingConfig.cjs} +21 -15
- package/dist/cjs/{getReactNavigationConfig.js → getReactNavigationConfig.cjs} +33 -32
- package/dist/cjs/getRoutes.cjs +276 -0
- package/dist/cjs/{getURL.js → getURL.cjs} +16 -11
- package/dist/cjs/getURL.native.cjs +48 -0
- package/dist/cjs/getURL.native.cjs.map +6 -0
- package/dist/cjs/head/Head.android.cjs +28 -0
- package/dist/cjs/head/Head.android.cjs.map +6 -0
- package/dist/cjs/head/Head.cjs +30 -0
- package/dist/cjs/head/Head.ios.cjs +210 -0
- package/dist/cjs/head/Head.ios.cjs.map +6 -0
- package/dist/cjs/head/HeadModule.cjs +27 -0
- package/dist/cjs/head/index.cjs +18 -0
- package/dist/cjs/head/types.cjs +16 -0
- package/dist/cjs/head/url.cjs +50 -0
- package/dist/cjs/{hooks.js → hooks.cjs} +52 -40
- package/dist/cjs/{imperative-api.js → imperative-api.cjs} +26 -19
- package/dist/cjs/import-mode/index.android.cjs +26 -0
- package/dist/cjs/import-mode/index.android.cjs.map +6 -0
- package/dist/cjs/import-mode/index.cjs +26 -0
- package/dist/cjs/import-mode/index.ios.cjs +26 -0
- package/dist/cjs/import-mode/index.ios.cjs.map +6 -0
- package/dist/cjs/import-mode/index.native.cjs +26 -0
- package/dist/cjs/import-mode/index.native.cjs.map +6 -0
- package/dist/cjs/import-mode/index.web.cjs +26 -0
- package/dist/cjs/{index.js → index.cjs} +50 -14
- package/dist/cjs/interfaces/router.cjs +27 -0
- package/dist/cjs/layouts/Drawer.cjs +31 -0
- package/dist/cjs/layouts/Stack.cjs +31 -0
- package/dist/cjs/layouts/Tabs.cjs +64 -0
- package/dist/cjs/layouts/withLayoutContext.cjs +91 -0
- package/dist/cjs/link/Link.cjs +120 -0
- package/dist/cjs/link/Redirect.cjs +39 -0
- package/dist/cjs/link/href.cjs +58 -0
- package/dist/cjs/link/linking.cjs +89 -0
- package/dist/cjs/link/path.cjs +69 -0
- package/dist/cjs/link/useLinkTo.cjs +54 -0
- package/dist/cjs/link/useLoadedNavigation.cjs +60 -0
- package/dist/cjs/{matchers.js → matchers.cjs} +16 -11
- package/dist/cjs/platform.cjs +26 -0
- package/dist/cjs/polyfills-mobile.cjs +33 -0
- package/dist/cjs/polyfills-server.cjs +25 -0
- package/dist/cjs/render.cjs +47 -0
- package/dist/cjs/render.native.cjs +28 -0
- package/dist/cjs/render.native.cjs.map +6 -0
- package/dist/cjs/router/RouterStore.cjs +16 -0
- package/dist/cjs/router/constants.cjs +26 -0
- package/dist/cjs/router/{getNormalizedStatePath.js → getNormalizedStatePath.cjs} +25 -23
- package/dist/cjs/router/lastAction.cjs +31 -0
- package/dist/cjs/router/{router.js → router.cjs} +104 -78
- package/dist/cjs/router/serverLocationContext.cjs +27 -0
- package/dist/cjs/router/{useInitializeOneRouter.js → useInitializeOneRouter.cjs} +26 -16
- package/dist/cjs/serve.cjs +185 -0
- package/dist/cjs/server/{createRoutesManifest.js → createRoutesManifest.cjs} +22 -16
- package/dist/cjs/server/{getServerManifest.js → getServerManifest.cjs} +58 -31
- package/dist/cjs/{server-render.js → server-render.cjs} +28 -17
- package/dist/cjs/sortRoutes.cjs +62 -0
- package/dist/cjs/typed-routes/generateRouteTypes.cjs +48 -0
- package/dist/cjs/typed-routes/{getTypedRoutesDeclarationFile.js → getTypedRoutesDeclarationFile.cjs} +37 -40
- package/dist/cjs/types.cjs +16 -0
- package/dist/cjs/{useFocusEffect.js → useFocusEffect.cjs} +33 -24
- package/dist/cjs/useLoader.cjs +114 -0
- package/dist/cjs/useNavigation.cjs +68 -0
- package/dist/cjs/useScreens.cjs +233 -0
- package/dist/cjs/{useViteRoutes.js → useViteRoutes.cjs} +36 -24
- package/dist/cjs/utils/assertIsReady.cjs +28 -0
- package/dist/cjs/utils/dynamicImport.cjs +27 -0
- package/dist/cjs/utils/existsAsync.cjs +33 -0
- package/dist/cjs/utils/getPageExport.cjs +32 -0
- package/dist/cjs/utils/{globDir.js → globDir.cjs} +23 -15
- package/dist/cjs/utils/{hashString.js → hashString.cjs} +22 -14
- package/dist/cjs/utils/isResponse.cjs +28 -0
- package/dist/cjs/utils/isStatus.cjs +28 -0
- package/dist/cjs/utils/promiseWithResolvers.cjs +37 -0
- package/dist/cjs/utils/rand.cjs +26 -0
- package/dist/cjs/utils/redirect.cjs +34 -0
- package/dist/cjs/utils/removeSearch.cjs +28 -0
- package/dist/cjs/utils/removeUndefined.cjs +30 -0
- package/dist/cjs/utils/{url.js → url.cjs} +16 -11
- package/dist/cjs/utils/weakKey.cjs +30 -0
- package/dist/cjs/utils/weakMemo.cjs +34 -0
- package/dist/cjs/views/EmptyRoute.cjs +30 -0
- package/dist/cjs/views/{ErrorBoundary.js → ErrorBoundary.cjs} +30 -16
- package/dist/cjs/views/LoadProgressBar.cjs +90 -0
- package/dist/cjs/views/Navigator.cjs +149 -0
- package/dist/cjs/views/{PreloadLinks.js → PreloadLinks.cjs} +20 -13
- package/dist/cjs/views/PreloadLinks.native.cjs +28 -0
- package/dist/cjs/views/PreloadLinks.native.cjs.map +6 -0
- package/dist/cjs/views/{RootErrorBoundary.js → RootErrorBoundary.cjs} +28 -16
- package/dist/cjs/views/Screen.cjs +39 -0
- package/dist/cjs/views/ScrollRestoration.cjs +74 -0
- package/dist/cjs/views/Try.cjs +68 -0
- package/dist/cjs/vite/build.cjs +425 -0
- package/dist/cjs/vite/{clientTreeShakePlugin.js → clientTreeShakePlugin.cjs} +53 -35
- package/dist/cjs/vite/constants.cjs +28 -0
- package/dist/cjs/vite/{createFileSystemRouter.js → createFileSystemRouter.cjs} +117 -84
- package/dist/cjs/vite/{customNodeExternals.js → customNodeExternals.cjs} +32 -20
- package/dist/cjs/vite/ensureTsConfig.cjs +68 -0
- package/dist/cjs/vite/findDepsToOptimize.cjs +74 -0
- package/dist/cjs/vite/{fixDependenciesPlugin.js → fixDependenciesPlugin.cjs} +17 -12
- package/dist/cjs/vite/generateTypesForRoutes.cjs +45 -0
- package/dist/cjs/vite/{getManifest.js → getManifest.cjs} +18 -12
- package/dist/cjs/vite/{headers.js → headers.cjs} +19 -14
- package/dist/cjs/vite/headers.native.cjs +32 -0
- package/dist/cjs/vite/headers.native.cjs.map +6 -0
- package/dist/cjs/vite/{loadEnv.js → loadEnv.cjs} +27 -16
- package/dist/cjs/vite/makePluginWebOnly.cjs +31 -0
- package/dist/cjs/vite/one.cjs +256 -0
- package/dist/cjs/vite/{removeReactNativeWebAnimatedPlugin.js → removeReactNativeWebAnimatedPlugin.cjs} +32 -25
- package/dist/cjs/vite/replaceLoader.cjs +37 -0
- package/dist/cjs/vite/resolveAPIRequest.cjs +90 -0
- package/dist/cjs/vite/server.cjs +13 -0
- package/dist/cjs/vite/types.cjs +16 -0
- package/dist/cjs/vite/{virtualEntryPlugin.js → virtualEntryPlugin.cjs} +28 -20
- package/dist/cjs/vite/{vitePluginSsrCss.js → vitePluginSsrCss.cjs} +56 -50
- package/dist/cjs/vite.cjs +40 -0
- package/dist/cjs/zero/getQueryKey.cjs +29 -0
- package/dist/cjs/zero/isZeroQuery.cjs +28 -0
- package/dist/cjs/zero/resolveQuery.cjs +41 -0
- package/dist/cjs/zero/{subscribeToQuery.js → subscribeToQuery.cjs} +16 -11
- package/dist/cjs/zero/types.cjs +16 -0
- package/dist/cjs/zero/useQuery.cjs +58 -0
- package/dist/cjs/zero/{useQueryZero.js → useQueryZero.cjs} +21 -15
- package/dist/cjs/zero.cjs +30 -0
- package/package.json +10 -10
- package/dist/cjs/Root.js +0 -182
- package/dist/cjs/cli/label-process.js +0 -25
- package/dist/cjs/cli/run.js +0 -52
- package/dist/cjs/cli.js +0 -209
- package/dist/cjs/clientLoaderResolver.js +0 -32
- package/dist/cjs/config.js +0 -27
- package/dist/cjs/constants.js +0 -23
- package/dist/cjs/createRoute.js +0 -37
- package/dist/cjs/fork/NavigationContainer.js +0 -85
- package/dist/cjs/fork/createMemoryHistory.js +0 -100
- package/dist/cjs/fork/findFocusedRoute.js +0 -26
- package/dist/cjs/fork/getStateFromPath.js +0 -381
- package/dist/cjs/fork/useLinking.js +0 -182
- package/dist/cjs/fork/validatePathConfig.js +0 -46
- package/dist/cjs/getRoutes.js +0 -294
- package/dist/cjs/head/Head.js +0 -23
- package/dist/cjs/head/HeadModule.js +0 -22
- package/dist/cjs/head/index.js +0 -15
- package/dist/cjs/head/types.js +0 -14
- package/dist/cjs/head/url.js +0 -52
- package/dist/cjs/import-mode/index.js +0 -21
- package/dist/cjs/import-mode/index.web.js +0 -21
- package/dist/cjs/interfaces/router.js +0 -23
- package/dist/cjs/layouts/Drawer.js +0 -24
- package/dist/cjs/layouts/Stack.js +0 -24
- package/dist/cjs/layouts/Tabs.js +0 -52
- package/dist/cjs/layouts/withLayoutContext.js +0 -77
- package/dist/cjs/link/Link.js +0 -98
- package/dist/cjs/link/Redirect.js +0 -31
- package/dist/cjs/link/href.js +0 -50
- package/dist/cjs/link/linking.js +0 -82
- package/dist/cjs/link/path.js +0 -65
- package/dist/cjs/link/useLinkTo.js +0 -42
- package/dist/cjs/link/useLoadedNavigation.js +0 -50
- package/dist/cjs/platform.js +0 -21
- package/dist/cjs/polyfills-mobile.js +0 -26
- package/dist/cjs/polyfills-server.js +0 -23
- package/dist/cjs/render.js +0 -44
- package/dist/cjs/router/RouterStore.js +0 -14
- package/dist/cjs/router/constants.js +0 -21
- package/dist/cjs/router/lastAction.js +0 -25
- package/dist/cjs/router/serverLocationContext.js +0 -22
- package/dist/cjs/serve.js +0 -175
- package/dist/cjs/sortRoutes.js +0 -64
- package/dist/cjs/typed-routes/generateRouteTypes.js +0 -33
- package/dist/cjs/types.js +0 -14
- package/dist/cjs/useLoader.js +0 -97
- package/dist/cjs/useNavigation.js +0 -60
- package/dist/cjs/useScreens.js +0 -176
- package/dist/cjs/utils/assertIsReady.js +0 -26
- package/dist/cjs/utils/dynamicImport.js +0 -24
- package/dist/cjs/utils/existsAsync.js +0 -28
- package/dist/cjs/utils/getPageExport.js +0 -27
- package/dist/cjs/utils/isResponse.js +0 -23
- package/dist/cjs/utils/isStatus.js +0 -23
- package/dist/cjs/utils/promiseWithResolvers.js +0 -26
- package/dist/cjs/utils/rand.js +0 -21
- package/dist/cjs/utils/redirect.js +0 -28
- package/dist/cjs/utils/removeSearch.js +0 -23
- package/dist/cjs/utils/removeUndefined.js +0 -26
- package/dist/cjs/utils/weakKey.js +0 -24
- package/dist/cjs/utils/weakMemo.js +0 -30
- package/dist/cjs/views/EmptyRoute.js +0 -25
- package/dist/cjs/views/LoadProgressBar.js +0 -83
- package/dist/cjs/views/Navigator.js +0 -101
- package/dist/cjs/views/Screen.js +0 -29
- package/dist/cjs/views/ScrollRestoration.js +0 -70
- package/dist/cjs/views/Try.js +0 -44
- package/dist/cjs/vite/build.js +0 -376
- package/dist/cjs/vite/constants.js +0 -22
- package/dist/cjs/vite/ensureTsConfig.js +0 -66
- package/dist/cjs/vite/findDepsToOptimize.js +0 -66
- package/dist/cjs/vite/generateTypesForRoutes.js +0 -36
- package/dist/cjs/vite/makePluginWebOnly.js +0 -27
- package/dist/cjs/vite/one.js +0 -255
- package/dist/cjs/vite/replaceLoader.js +0 -34
- package/dist/cjs/vite/resolveAPIRequest.js +0 -71
- package/dist/cjs/vite/server.js +0 -16
- package/dist/cjs/vite/types.js +0 -14
- package/dist/cjs/vite.js +0 -28
- package/dist/cjs/zero/getQueryKey.js +0 -24
- package/dist/cjs/zero/isZeroQuery.js +0 -23
- package/dist/cjs/zero/resolveQuery.js +0 -38
- package/dist/cjs/zero/types.js +0 -14
- package/dist/cjs/zero/useQuery.js +0 -47
- package/dist/cjs/zero.js +0 -23
- /package/dist/cjs/{Root.js.map → Root.cjs.map} +0 -0
- /package/dist/cjs/{Route.js.map → Route.cjs.map} +0 -0
- /package/dist/cjs/{cleanUrl.js.map → cleanUrl.cjs.map} +0 -0
- /package/dist/cjs/cli/{label-process.js.map → label-process.cjs.map} +0 -0
- /package/dist/cjs/cli/{main.js.map → main.cjs.map} +0 -0
- /package/dist/cjs/cli/{prebuild.js.map → prebuild.cjs.map} +0 -0
- /package/dist/cjs/cli/{run.js.map → run.cjs.map} +0 -0
- /package/dist/cjs/cli/{runAndroid.js.map → runAndroid.cjs.map} +0 -0
- /package/dist/cjs/cli/{runIos.js.map → runIos.cjs.map} +0 -0
- /package/dist/cjs/{cli.js.map → cli.cjs.map} +0 -0
- /package/dist/cjs/{clientLoaderResolver.js.map → clientLoaderResolver.cjs.map} +0 -0
- /package/dist/cjs/{config.js.map → config.cjs.map} +0 -0
- /package/dist/cjs/{constants.js.map → constants.cjs.map} +0 -0
- /package/dist/cjs/{createApp.js.map → createApp.cjs.map} +0 -0
- /package/dist/cjs/{createHandleRequest.js.map → createHandleRequest.cjs.map} +0 -0
- /package/dist/cjs/{createRoute.js.map → createRoute.cjs.map} +0 -0
- /package/dist/cjs/fallbackViews/{Sitemap.js.map → Sitemap.cjs.map} +0 -0
- /package/dist/cjs/fallbackViews/{Unmatched.js.map → Unmatched.cjs.map} +0 -0
- /package/dist/cjs/fork/{NavigationContainer.js.map → NavigationContainer.cjs.map} +0 -0
- /package/dist/cjs/fork/{createMemoryHistory.js.map → createMemoryHistory.cjs.map} +0 -0
- /package/dist/cjs/fork/{extractPathFromURL.js.map → extractPathFromURL.cjs.map} +0 -0
- /package/dist/cjs/fork/{findFocusedRoute.js.map → findFocusedRoute.cjs.map} +0 -0
- /package/dist/cjs/fork/{getPathFromState.js.map → getPathFromState.cjs.map} +0 -0
- /package/dist/cjs/fork/{getStateFromPath.js.map → getStateFromPath.cjs.map} +0 -0
- /package/dist/cjs/fork/{useLinking.js.map → useLinking.cjs.map} +0 -0
- /package/dist/cjs/fork/{validatePathConfig.js.map → validatePathConfig.cjs.map} +0 -0
- /package/dist/cjs/{getLinkingConfig.js.map → getLinkingConfig.cjs.map} +0 -0
- /package/dist/cjs/{getReactNavigationConfig.js.map → getReactNavigationConfig.cjs.map} +0 -0
- /package/dist/cjs/{getRoutes.js.map → getRoutes.cjs.map} +0 -0
- /package/dist/cjs/{getURL.js.map → getURL.cjs.map} +0 -0
- /package/dist/cjs/head/{Head.js.map → Head.cjs.map} +0 -0
- /package/dist/cjs/head/{HeadModule.js.map → HeadModule.cjs.map} +0 -0
- /package/dist/cjs/head/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/head/{types.js.map → types.cjs.map} +0 -0
- /package/dist/cjs/head/{url.js.map → url.cjs.map} +0 -0
- /package/dist/cjs/{hooks.js.map → hooks.cjs.map} +0 -0
- /package/dist/cjs/{imperative-api.js.map → imperative-api.cjs.map} +0 -0
- /package/dist/cjs/import-mode/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/import-mode/{index.web.js.map → index.web.cjs.map} +0 -0
- /package/dist/cjs/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/interfaces/{router.js.map → router.cjs.map} +0 -0
- /package/dist/cjs/layouts/{Drawer.js.map → Drawer.cjs.map} +0 -0
- /package/dist/cjs/layouts/{Stack.js.map → Stack.cjs.map} +0 -0
- /package/dist/cjs/layouts/{Tabs.js.map → Tabs.cjs.map} +0 -0
- /package/dist/cjs/layouts/{withLayoutContext.js.map → withLayoutContext.cjs.map} +0 -0
- /package/dist/cjs/link/{Link.js.map → Link.cjs.map} +0 -0
- /package/dist/cjs/link/{Redirect.js.map → Redirect.cjs.map} +0 -0
- /package/dist/cjs/link/{href.js.map → href.cjs.map} +0 -0
- /package/dist/cjs/link/{linking.js.map → linking.cjs.map} +0 -0
- /package/dist/cjs/link/{path.js.map → path.cjs.map} +0 -0
- /package/dist/cjs/link/{useLinkTo.js.map → useLinkTo.cjs.map} +0 -0
- /package/dist/cjs/link/{useLoadedNavigation.js.map → useLoadedNavigation.cjs.map} +0 -0
- /package/dist/cjs/{matchers.js.map → matchers.cjs.map} +0 -0
- /package/dist/cjs/{platform.js.map → platform.cjs.map} +0 -0
- /package/dist/cjs/{polyfills-mobile.js.map → polyfills-mobile.cjs.map} +0 -0
- /package/dist/cjs/{polyfills-server.js.map → polyfills-server.cjs.map} +0 -0
- /package/dist/cjs/{render.js.map → render.cjs.map} +0 -0
- /package/dist/cjs/router/{RouterStore.js.map → RouterStore.cjs.map} +0 -0
- /package/dist/cjs/router/{constants.js.map → constants.cjs.map} +0 -0
- /package/dist/cjs/router/{getNormalizedStatePath.js.map → getNormalizedStatePath.cjs.map} +0 -0
- /package/dist/cjs/router/{lastAction.js.map → lastAction.cjs.map} +0 -0
- /package/dist/cjs/router/{router.js.map → router.cjs.map} +0 -0
- /package/dist/cjs/router/{serverLocationContext.js.map → serverLocationContext.cjs.map} +0 -0
- /package/dist/cjs/router/{useInitializeOneRouter.js.map → useInitializeOneRouter.cjs.map} +0 -0
- /package/dist/cjs/{serve.js.map → serve.cjs.map} +0 -0
- /package/dist/cjs/server/{createRoutesManifest.js.map → createRoutesManifest.cjs.map} +0 -0
- /package/dist/cjs/server/{getServerManifest.js.map → getServerManifest.cjs.map} +0 -0
- /package/dist/cjs/{server-render.js.map → server-render.cjs.map} +0 -0
- /package/dist/cjs/{sortRoutes.js.map → sortRoutes.cjs.map} +0 -0
- /package/dist/cjs/typed-routes/{generateRouteTypes.js.map → generateRouteTypes.cjs.map} +0 -0
- /package/dist/cjs/typed-routes/{getTypedRoutesDeclarationFile.js.map → getTypedRoutesDeclarationFile.cjs.map} +0 -0
- /package/dist/cjs/{types.js.map → types.cjs.map} +0 -0
- /package/dist/cjs/{useFocusEffect.js.map → useFocusEffect.cjs.map} +0 -0
- /package/dist/cjs/{useLoader.js.map → useLoader.cjs.map} +0 -0
- /package/dist/cjs/{useNavigation.js.map → useNavigation.cjs.map} +0 -0
- /package/dist/cjs/{useScreens.js.map → useScreens.cjs.map} +0 -0
- /package/dist/cjs/{useViteRoutes.js.map → useViteRoutes.cjs.map} +0 -0
- /package/dist/cjs/utils/{assertIsReady.js.map → assertIsReady.cjs.map} +0 -0
- /package/dist/cjs/utils/{dynamicImport.js.map → dynamicImport.cjs.map} +0 -0
- /package/dist/cjs/utils/{existsAsync.js.map → existsAsync.cjs.map} +0 -0
- /package/dist/cjs/utils/{getPageExport.js.map → getPageExport.cjs.map} +0 -0
- /package/dist/cjs/utils/{globDir.js.map → globDir.cjs.map} +0 -0
- /package/dist/cjs/utils/{hashString.js.map → hashString.cjs.map} +0 -0
- /package/dist/cjs/utils/{isResponse.js.map → isResponse.cjs.map} +0 -0
- /package/dist/cjs/utils/{isStatus.js.map → isStatus.cjs.map} +0 -0
- /package/dist/cjs/utils/{promiseWithResolvers.js.map → promiseWithResolvers.cjs.map} +0 -0
- /package/dist/cjs/utils/{rand.js.map → rand.cjs.map} +0 -0
- /package/dist/cjs/utils/{redirect.js.map → redirect.cjs.map} +0 -0
- /package/dist/cjs/utils/{removeSearch.js.map → removeSearch.cjs.map} +0 -0
- /package/dist/cjs/utils/{removeUndefined.js.map → removeUndefined.cjs.map} +0 -0
- /package/dist/cjs/utils/{url.js.map → url.cjs.map} +0 -0
- /package/dist/cjs/utils/{weakKey.js.map → weakKey.cjs.map} +0 -0
- /package/dist/cjs/utils/{weakMemo.js.map → weakMemo.cjs.map} +0 -0
- /package/dist/cjs/views/{EmptyRoute.js.map → EmptyRoute.cjs.map} +0 -0
- /package/dist/cjs/views/{ErrorBoundary.js.map → ErrorBoundary.cjs.map} +0 -0
- /package/dist/cjs/views/{LoadProgressBar.js.map → LoadProgressBar.cjs.map} +0 -0
- /package/dist/cjs/views/{Navigator.js.map → Navigator.cjs.map} +0 -0
- /package/dist/cjs/views/{PreloadLinks.js.map → PreloadLinks.cjs.map} +0 -0
- /package/dist/cjs/views/{RootErrorBoundary.js.map → RootErrorBoundary.cjs.map} +0 -0
- /package/dist/cjs/views/{Screen.js.map → Screen.cjs.map} +0 -0
- /package/dist/cjs/views/{ScrollRestoration.js.map → ScrollRestoration.cjs.map} +0 -0
- /package/dist/cjs/views/{Try.js.map → Try.cjs.map} +0 -0
- /package/dist/cjs/vite/{build.js.map → build.cjs.map} +0 -0
- /package/dist/cjs/vite/{clientTreeShakePlugin.js.map → clientTreeShakePlugin.cjs.map} +0 -0
- /package/dist/cjs/vite/{constants.js.map → constants.cjs.map} +0 -0
- /package/dist/cjs/vite/{createFileSystemRouter.js.map → createFileSystemRouter.cjs.map} +0 -0
- /package/dist/cjs/vite/{customNodeExternals.js.map → customNodeExternals.cjs.map} +0 -0
- /package/dist/cjs/vite/{ensureTsConfig.js.map → ensureTsConfig.cjs.map} +0 -0
- /package/dist/cjs/vite/{findDepsToOptimize.js.map → findDepsToOptimize.cjs.map} +0 -0
- /package/dist/cjs/vite/{fixDependenciesPlugin.js.map → fixDependenciesPlugin.cjs.map} +0 -0
- /package/dist/cjs/vite/{generateTypesForRoutes.js.map → generateTypesForRoutes.cjs.map} +0 -0
- /package/dist/cjs/vite/{getManifest.js.map → getManifest.cjs.map} +0 -0
- /package/dist/cjs/vite/{headers.js.map → headers.cjs.map} +0 -0
- /package/dist/cjs/vite/{loadEnv.js.map → loadEnv.cjs.map} +0 -0
- /package/dist/cjs/vite/{makePluginWebOnly.js.map → makePluginWebOnly.cjs.map} +0 -0
- /package/dist/cjs/vite/{one.js.map → one.cjs.map} +0 -0
- /package/dist/cjs/vite/{removeReactNativeWebAnimatedPlugin.js.map → removeReactNativeWebAnimatedPlugin.cjs.map} +0 -0
- /package/dist/cjs/vite/{replaceLoader.js.map → replaceLoader.cjs.map} +0 -0
- /package/dist/cjs/vite/{resolveAPIRequest.js.map → resolveAPIRequest.cjs.map} +0 -0
- /package/dist/cjs/vite/{server.js.map → server.cjs.map} +0 -0
- /package/dist/cjs/vite/{types.js.map → types.cjs.map} +0 -0
- /package/dist/cjs/vite/{virtualEntryPlugin.js.map → virtualEntryPlugin.cjs.map} +0 -0
- /package/dist/cjs/vite/{vitePluginSsrCss.js.map → vitePluginSsrCss.cjs.map} +0 -0
- /package/dist/cjs/{vite.js.map → vite.cjs.map} +0 -0
- /package/dist/cjs/zero/{getQueryKey.js.map → getQueryKey.cjs.map} +0 -0
- /package/dist/cjs/zero/{isZeroQuery.js.map → isZeroQuery.cjs.map} +0 -0
- /package/dist/cjs/zero/{resolveQuery.js.map → resolveQuery.cjs.map} +0 -0
- /package/dist/cjs/zero/{subscribeToQuery.js.map → subscribeToQuery.cjs.map} +0 -0
- /package/dist/cjs/zero/{types.js.map → types.cjs.map} +0 -0
- /package/dist/cjs/zero/{useQuery.js.map → useQuery.cjs.map} +0 -0
- /package/dist/cjs/zero/{useQueryZero.js.map → useQueryZero.cjs.map} +0 -0
- /package/dist/cjs/{zero.js.map → zero.cjs.map} +0 -0
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all) __defProp(target, name, {
|
|
7
|
+
get: all[name],
|
|
8
|
+
enumerable: !0
|
|
9
|
+
});
|
|
10
|
+
},
|
|
11
|
+
__copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
13
|
+
get: () => from[key],
|
|
14
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
+
});
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
19
|
+
value: !0
|
|
20
|
+
}), mod);
|
|
21
|
+
var useLoader_exports = {};
|
|
22
|
+
__export(useLoader_exports, {
|
|
23
|
+
useLoader: () => useLoader
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(useLoader_exports);
|
|
26
|
+
var import_react = require("react"),
|
|
27
|
+
import_cleanUrl = require("./cleanUrl.cjs"),
|
|
28
|
+
import_hooks = require("./hooks.cjs"),
|
|
29
|
+
import_href = require("./link/href.cjs"),
|
|
30
|
+
import_Route = require("./Route.cjs"),
|
|
31
|
+
import_router = require("./router/router.cjs"),
|
|
32
|
+
import_dynamicImport = require("./utils/dynamicImport.cjs"),
|
|
33
|
+
import_weakKey = require("./utils/weakKey.cjs");
|
|
34
|
+
const promises = {},
|
|
35
|
+
errors = {},
|
|
36
|
+
loadedData = {};
|
|
37
|
+
function useLoader(loader) {
|
|
38
|
+
const preloadedProps = globalThis.__vxrnLoaderProps__;
|
|
39
|
+
if (typeof window > "u") return useAsyncFn(loader, preloadedProps || {
|
|
40
|
+
params: (0, import_hooks.useActiveParams)()
|
|
41
|
+
});
|
|
42
|
+
const isNative = !1,
|
|
43
|
+
routeNode = (0, import_Route.useRouteNode)(),
|
|
44
|
+
params = (0, import_hooks.useParams)(),
|
|
45
|
+
pathName = "/" + (0, import_href.resolveHref)({
|
|
46
|
+
pathname: routeNode?.route || "",
|
|
47
|
+
params
|
|
48
|
+
}).replace(/index$/, ""),
|
|
49
|
+
currentPath = (isNative ? null : globalThis.__vxrntodopath) || (
|
|
50
|
+
// @zetavg: not sure why we're using `globalThis['__vxrntodopath']` here, but this breaks native when switching between tabs where the value stays with the previous path, so ignoring this on native
|
|
51
|
+
// TODO likely either not needed or needs proper path from server side
|
|
52
|
+
typeof window < "u" ? window.location?.pathname || pathName : "/"),
|
|
53
|
+
preloadedData = preloadedProps?.path === currentPath ? globalThis.__vxrnLoaderData__ : void 0,
|
|
54
|
+
currentData = (0, import_react.useRef)(preloadedData);
|
|
55
|
+
if ((0, import_react.useEffect)(() => {
|
|
56
|
+
preloadedData && (loadedData[currentPath] = preloadedData, delete globalThis.__vxrnLoaderData__);
|
|
57
|
+
}, [preloadedData]), errors[currentPath]) throw errors[currentPath];
|
|
58
|
+
const loaded = loadedData[currentPath];
|
|
59
|
+
if (typeof loaded < "u") return loaded;
|
|
60
|
+
if (!preloadedData) {
|
|
61
|
+
if (import_router.preloadingLoader[currentPath] && (typeof import_router.preloadingLoader[currentPath] == "function" && (import_router.preloadingLoader[currentPath] = import_router.preloadingLoader[currentPath]()), promises[currentPath] = import_router.preloadingLoader[currentPath].then(val => {
|
|
62
|
+
loadedData[currentPath] = val;
|
|
63
|
+
}).catch(err => {
|
|
64
|
+
console.error("Error loading loader", err), errors[currentPath] = err, delete promises[currentPath], delete import_router.preloadingLoader[currentPath];
|
|
65
|
+
})), !promises[currentPath]) {
|
|
66
|
+
const getData = async () => {
|
|
67
|
+
const loaderJSUrl = (0, import_cleanUrl.getLoaderPath)(currentPath, !0);
|
|
68
|
+
try {
|
|
69
|
+
const response = await (async () => {
|
|
70
|
+
if (isNative) {
|
|
71
|
+
const nativeLoaderJSUrl = `${loaderJSUrl}&platform=ios`;
|
|
72
|
+
try {
|
|
73
|
+
const loaderJsCodeResp = await fetch(nativeLoaderJSUrl);
|
|
74
|
+
if (!loaderJsCodeResp.ok) throw new Error(`Response not ok: ${loaderJsCodeResp.status}`);
|
|
75
|
+
const loaderJsCode = await loaderJsCodeResp.text(),
|
|
76
|
+
result = eval(`() => { var exports = {}; ${loaderJsCode}; return exports; }`)();
|
|
77
|
+
if (typeof result.loader != "function") throw new Error("Loader code isn't exporting a `loader` function");
|
|
78
|
+
return result;
|
|
79
|
+
} catch (e) {
|
|
80
|
+
return console.error(`Error fetching loader from URL: ${nativeLoaderJSUrl}, ${e}`), {
|
|
81
|
+
loader: () => ({})
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
return await (0, import_dynamicImport.dynamicImport)(loaderJSUrl);
|
|
86
|
+
})();
|
|
87
|
+
return loadedData[currentPath] = response.loader(), loadedData[currentPath];
|
|
88
|
+
} catch (err) {
|
|
89
|
+
return console.error(`Error calling loader: ${err}`), errors[currentPath] = err, delete promises[currentPath], null;
|
|
90
|
+
}
|
|
91
|
+
};
|
|
92
|
+
promises[currentPath] = getData();
|
|
93
|
+
}
|
|
94
|
+
throw promises[currentPath];
|
|
95
|
+
}
|
|
96
|
+
return currentData.current;
|
|
97
|
+
}
|
|
98
|
+
const results = /* @__PURE__ */new Map(),
|
|
99
|
+
started = /* @__PURE__ */new Map();
|
|
100
|
+
function useAsyncFn(val, props) {
|
|
101
|
+
const key = (val ? (0, import_weakKey.weakKey)(val) : "") + JSON.stringify(props);
|
|
102
|
+
if (val && !started.get(key)) {
|
|
103
|
+
started.set(key, !0);
|
|
104
|
+
let next = val(props);
|
|
105
|
+
next instanceof Promise && (next = next.then(final => {
|
|
106
|
+
results.set(key, final);
|
|
107
|
+
}).catch(err => {
|
|
108
|
+
console.error("Error running loader()", err), results.set(key, void 0);
|
|
109
|
+
})), results.set(key, next);
|
|
110
|
+
}
|
|
111
|
+
const current = results.get(key);
|
|
112
|
+
if (current instanceof Promise) throw current;
|
|
113
|
+
return current;
|
|
114
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf,
|
|
6
|
+
__hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all) __defProp(target, name, {
|
|
9
|
+
get: all[name],
|
|
10
|
+
enumerable: !0
|
|
11
|
+
});
|
|
12
|
+
},
|
|
13
|
+
__copyProps = (to, from, except, desc) => {
|
|
14
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
15
|
+
get: () => from[key],
|
|
16
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
17
|
+
});
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
26
|
+
value: mod,
|
|
27
|
+
enumerable: !0
|
|
28
|
+
}) : target, mod)),
|
|
29
|
+
__toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
30
|
+
value: !0
|
|
31
|
+
}), mod);
|
|
32
|
+
var useNavigation_exports = {};
|
|
33
|
+
__export(useNavigation_exports, {
|
|
34
|
+
resolveParentId: () => resolveParentId,
|
|
35
|
+
useNavigation: () => useNavigation
|
|
36
|
+
});
|
|
37
|
+
module.exports = __toCommonJS(useNavigation_exports);
|
|
38
|
+
var import_native = require("@react-navigation/native"),
|
|
39
|
+
import_react = __toESM(require("react"), 1),
|
|
40
|
+
import_matchers = require("./matchers.cjs"),
|
|
41
|
+
import_Route = require("./Route.cjs");
|
|
42
|
+
function useNavigation(parent) {
|
|
43
|
+
const navigation = (0, import_native.useNavigation)(),
|
|
44
|
+
contextKey = (0, import_Route.useContextKey)(),
|
|
45
|
+
normalizedParent = import_react.default.useMemo(() => {
|
|
46
|
+
if (!parent) return null;
|
|
47
|
+
const normalized = (0, import_matchers.getNameFromFilePath)(parent);
|
|
48
|
+
return parent.startsWith(".") ? relativePaths(contextKey, parent) : normalized;
|
|
49
|
+
}, [contextKey, parent]);
|
|
50
|
+
if (normalizedParent != null) {
|
|
51
|
+
const parentNavigation = navigation.getParent(normalizedParent);
|
|
52
|
+
if (!parentNavigation) throw new Error(`Could not find parent navigation with route "${parent}".` + (normalizedParent !== parent ? ` (normalized: ${normalizedParent})` : ""));
|
|
53
|
+
return parentNavigation;
|
|
54
|
+
}
|
|
55
|
+
return navigation;
|
|
56
|
+
}
|
|
57
|
+
function resolveParentId(contextKey, parentId) {
|
|
58
|
+
return parentId ? parentId.startsWith(".") ? (0, import_matchers.getNameFromFilePath)(relativePaths(contextKey, parentId)) : (0, import_matchers.getNameFromFilePath)(parentId) : null;
|
|
59
|
+
}
|
|
60
|
+
function relativePaths(from, to) {
|
|
61
|
+
const fromParts = from.split("/").filter(Boolean),
|
|
62
|
+
toParts = to.split("/").filter(Boolean);
|
|
63
|
+
for (const part of toParts) if (part === "..") {
|
|
64
|
+
if (fromParts.length === 0) throw new Error(`Cannot resolve path "${to}" relative to "${from}"`);
|
|
65
|
+
fromParts.pop();
|
|
66
|
+
} else part === "." || fromParts.push(part);
|
|
67
|
+
return "/" + fromParts.join("/");
|
|
68
|
+
}
|
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf,
|
|
6
|
+
__hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all) __defProp(target, name, {
|
|
9
|
+
get: all[name],
|
|
10
|
+
enumerable: !0
|
|
11
|
+
});
|
|
12
|
+
},
|
|
13
|
+
__copyProps = (to, from, except, desc) => {
|
|
14
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
15
|
+
get: () => from[key],
|
|
16
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
17
|
+
});
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
26
|
+
value: mod,
|
|
27
|
+
enumerable: !0
|
|
28
|
+
}) : target, mod)),
|
|
29
|
+
__toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
30
|
+
value: !0
|
|
31
|
+
}), mod);
|
|
32
|
+
var useScreens_exports = {};
|
|
33
|
+
__export(useScreens_exports, {
|
|
34
|
+
Group: () => Group,
|
|
35
|
+
Screen: () => Screen,
|
|
36
|
+
createGetIdForRoute: () => createGetIdForRoute,
|
|
37
|
+
getQualifiedRouteComponent: () => getQualifiedRouteComponent,
|
|
38
|
+
useSortedScreens: () => useSortedScreens
|
|
39
|
+
});
|
|
40
|
+
module.exports = __toCommonJS(useScreens_exports);
|
|
41
|
+
var import_core = require("@react-navigation/core"),
|
|
42
|
+
import_react = __toESM(require("react"), 1),
|
|
43
|
+
import_Route = require("./Route.cjs"),
|
|
44
|
+
import_import_mode = __toESM(require("./import-mode/index.cjs"), 1),
|
|
45
|
+
import_sortRoutes = require("./sortRoutes.cjs"),
|
|
46
|
+
import_EmptyRoute = require("./views/EmptyRoute.cjs"),
|
|
47
|
+
import_RootErrorBoundary = require("./views/RootErrorBoundary.cjs"),
|
|
48
|
+
import_Try = require("./views/Try.cjs"),
|
|
49
|
+
import_getPageExport = require("./utils/getPageExport.cjs"),
|
|
50
|
+
import_jsx_runtime = require("react/jsx-runtime"),
|
|
51
|
+
import_react2 = require("react");
|
|
52
|
+
const {
|
|
53
|
+
Screen,
|
|
54
|
+
Group
|
|
55
|
+
} = (0, import_core.createNavigatorFactory)({})();
|
|
56
|
+
function getSortedChildren(children, order, initialRouteName) {
|
|
57
|
+
if (!order?.length) return children.sort((0, import_sortRoutes.sortRoutesWithInitial)(initialRouteName)).map(route => ({
|
|
58
|
+
route,
|
|
59
|
+
props: {}
|
|
60
|
+
}));
|
|
61
|
+
const entries = [...children],
|
|
62
|
+
ordered = order.map(({
|
|
63
|
+
name,
|
|
64
|
+
redirect,
|
|
65
|
+
initialParams,
|
|
66
|
+
listeners,
|
|
67
|
+
options,
|
|
68
|
+
getId
|
|
69
|
+
}) => {
|
|
70
|
+
if (!entries.length) return console.warn(`[Layout children]: Too many screens defined. Route "${name}" is extraneous.`), null;
|
|
71
|
+
const matchIndex = entries.findIndex(child => child.route === name);
|
|
72
|
+
if (matchIndex === -1) return console.warn(`[Layout children]: No route named "${name}" exists in nested children:`, children.map(({
|
|
73
|
+
route
|
|
74
|
+
}) => route)), null;
|
|
75
|
+
const match = entries[matchIndex];
|
|
76
|
+
if (entries.splice(matchIndex, 1), redirect) {
|
|
77
|
+
if (typeof redirect == "string") throw new Error("Redirecting to a specific route is not supported yet.");
|
|
78
|
+
return null;
|
|
79
|
+
}
|
|
80
|
+
return {
|
|
81
|
+
route: match,
|
|
82
|
+
props: {
|
|
83
|
+
initialParams,
|
|
84
|
+
listeners,
|
|
85
|
+
options,
|
|
86
|
+
getId
|
|
87
|
+
}
|
|
88
|
+
};
|
|
89
|
+
}).filter(Boolean);
|
|
90
|
+
return ordered.push(...entries.sort((0, import_sortRoutes.sortRoutesWithInitial)(initialRouteName)).map(route => ({
|
|
91
|
+
route,
|
|
92
|
+
props: {}
|
|
93
|
+
}))), ordered;
|
|
94
|
+
}
|
|
95
|
+
function useSortedScreens(order) {
|
|
96
|
+
const node = (0, import_Route.useRouteNode)();
|
|
97
|
+
return import_react.default.useMemo(() => (node?.children?.length ? getSortedChildren(node.children, order, node.initialRouteName) : []).map(value => routeToScreen(value.route, value.props)), [node?.children, node?.initialRouteName, order]);
|
|
98
|
+
}
|
|
99
|
+
function fromImport({
|
|
100
|
+
ErrorBoundary,
|
|
101
|
+
...component
|
|
102
|
+
}) {
|
|
103
|
+
if (ErrorBoundary) return {
|
|
104
|
+
default: import_react.default.forwardRef((props, ref) => {
|
|
105
|
+
const children = import_react.default.createElement((0, import_getPageExport.getPageExport)(component) || import_EmptyRoute.EmptyRoute, {
|
|
106
|
+
...props,
|
|
107
|
+
ref
|
|
108
|
+
});
|
|
109
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_Try.Try, {
|
|
110
|
+
catch: ErrorBoundary,
|
|
111
|
+
children
|
|
112
|
+
});
|
|
113
|
+
})
|
|
114
|
+
};
|
|
115
|
+
if (process.env.NODE_ENV !== "production") {
|
|
116
|
+
const exported = (0, import_getPageExport.getPageExport)(component);
|
|
117
|
+
if (exported && typeof exported == "object" && Object.keys(exported).length === 0) return {
|
|
118
|
+
default: import_EmptyRoute.EmptyRoute
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
return {
|
|
122
|
+
default: (0, import_getPageExport.getPageExport)(component)
|
|
123
|
+
};
|
|
124
|
+
}
|
|
125
|
+
const qualifiedStore = /* @__PURE__ */new WeakMap();
|
|
126
|
+
function getQualifiedRouteComponent(value) {
|
|
127
|
+
if (value && qualifiedStore.has(value)) return qualifiedStore.get(value);
|
|
128
|
+
let ScreenComponent;
|
|
129
|
+
import_import_mode.default === "lazy" ? ScreenComponent = import_react.default.forwardRef((props, ref) => {
|
|
130
|
+
const [loaded, setLoaded] = (0, import_react.useState)(null);
|
|
131
|
+
if ((0, import_react.useEffect)(() => {
|
|
132
|
+
try {
|
|
133
|
+
const found = value.loadRoute();
|
|
134
|
+
found && setLoaded(found);
|
|
135
|
+
} catch (err) {
|
|
136
|
+
err instanceof Promise ? err.then(res => {
|
|
137
|
+
setLoaded(res);
|
|
138
|
+
}).catch(err2 => {
|
|
139
|
+
console.error("Error loading route", err2);
|
|
140
|
+
}) : setLoaded(err);
|
|
141
|
+
}
|
|
142
|
+
}, []), loaded) {
|
|
143
|
+
const Component = (0, import_getPageExport.getPageExport)(fromImport(loaded));
|
|
144
|
+
return (
|
|
145
|
+
// <Suspense fallback={null}>
|
|
146
|
+
/* @__PURE__ */
|
|
147
|
+
(0, import_jsx_runtime.jsx)(Component, {
|
|
148
|
+
...props,
|
|
149
|
+
ref
|
|
150
|
+
})
|
|
151
|
+
);
|
|
152
|
+
}
|
|
153
|
+
return null;
|
|
154
|
+
}) : ScreenComponent = import_react.default.forwardRef((props, ref) => {
|
|
155
|
+
const res = value.loadRoute(),
|
|
156
|
+
Component = (0, import_getPageExport.getPageExport)(fromImport(res));
|
|
157
|
+
return (
|
|
158
|
+
// <Suspense fallback={null}>
|
|
159
|
+
/* @__PURE__ */
|
|
160
|
+
(0, import_jsx_runtime.jsx)(Component, {
|
|
161
|
+
...props,
|
|
162
|
+
ref
|
|
163
|
+
})
|
|
164
|
+
);
|
|
165
|
+
});
|
|
166
|
+
const wrapSuspense = children => children,
|
|
167
|
+
getLoadable = (props, ref) => /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_RootErrorBoundary.RootErrorBoundary, {
|
|
168
|
+
children: wrapSuspense(/* @__PURE__ */(0, import_jsx_runtime.jsx)(ScreenComponent, {
|
|
169
|
+
...props,
|
|
170
|
+
ref,
|
|
171
|
+
// Expose the template segment path, e.g. `(home)`, `[foo]`, `index`
|
|
172
|
+
// the intention is to make it possible to deduce shared routes.
|
|
173
|
+
segment: value.route
|
|
174
|
+
}))
|
|
175
|
+
}),
|
|
176
|
+
SuspenseFallback = ({
|
|
177
|
+
route
|
|
178
|
+
}) => ((0, import_react.useEffect)(() => {}, [route]), null),
|
|
179
|
+
QualifiedRoute = import_react.default.forwardRef(({
|
|
180
|
+
// Remove these React Navigation props to
|
|
181
|
+
// enforce usage of router hooks (where the query params are correct).
|
|
182
|
+
route,
|
|
183
|
+
navigation,
|
|
184
|
+
// Pass all other props to the component
|
|
185
|
+
...props
|
|
186
|
+
}, ref) => {
|
|
187
|
+
const loadable = getLoadable(props, ref);
|
|
188
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_Route.Route, {
|
|
189
|
+
node: value,
|
|
190
|
+
children: loadable
|
|
191
|
+
});
|
|
192
|
+
});
|
|
193
|
+
return QualifiedRoute.displayName = `Route(${value.route})`, qualifiedStore.set(value, QualifiedRoute), QualifiedRoute;
|
|
194
|
+
}
|
|
195
|
+
function createGetIdForRoute(route) {
|
|
196
|
+
const include = /* @__PURE__ */new Map();
|
|
197
|
+
if (route.dynamic) for (const segment of route.dynamic) include.set(segment.name, segment);
|
|
198
|
+
return ({
|
|
199
|
+
params = {}
|
|
200
|
+
} = {}) => {
|
|
201
|
+
const segments = [];
|
|
202
|
+
for (const dynamic of include.values()) {
|
|
203
|
+
const value = params?.[dynamic.name];
|
|
204
|
+
Array.isArray(value) && value.length > 0 ? segments.push(value.join("/")) : value && !Array.isArray(value) ? segments.push(value) : dynamic.deep ? segments.push(`[...${dynamic.name}]`) : segments.push(`[${dynamic.name}]`);
|
|
205
|
+
}
|
|
206
|
+
return segments.join("/") ?? route.contextKey;
|
|
207
|
+
};
|
|
208
|
+
}
|
|
209
|
+
function routeToScreen(route, {
|
|
210
|
+
options,
|
|
211
|
+
...props
|
|
212
|
+
} = {}) {
|
|
213
|
+
return /* @__PURE__ */(0, import_react2.createElement)(Screen, {
|
|
214
|
+
getId: createGetIdForRoute(route),
|
|
215
|
+
...props,
|
|
216
|
+
name: route.route,
|
|
217
|
+
key: route.route,
|
|
218
|
+
options: args => {
|
|
219
|
+
const staticOptions = route.generated ? route.loadRoute()?.getNavOptions : null,
|
|
220
|
+
staticResult = typeof staticOptions == "function" ? staticOptions(args) : staticOptions,
|
|
221
|
+
dynamicResult = typeof options == "function" ? options?.(args) : options,
|
|
222
|
+
output = {
|
|
223
|
+
...staticResult,
|
|
224
|
+
...dynamicResult
|
|
225
|
+
};
|
|
226
|
+
return route.generated && (output.tabBarButton = () => null, output.drawerItemStyle = {
|
|
227
|
+
height: 0,
|
|
228
|
+
display: "none"
|
|
229
|
+
}), output;
|
|
230
|
+
},
|
|
231
|
+
getComponent: () => getQualifiedRouteComponent(route)
|
|
232
|
+
});
|
|
233
|
+
}
|
|
@@ -3,15 +3,21 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
3
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
4
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
5
|
var __export = (target, all) => {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
6
|
+
for (var name in all) __defProp(target, name, {
|
|
7
|
+
get: all[name],
|
|
8
|
+
enumerable: !0
|
|
9
|
+
});
|
|
10
|
+
},
|
|
11
|
+
__copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
13
|
+
get: () => from[key],
|
|
14
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
+
});
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
19
|
+
value: !0
|
|
20
|
+
}), mod);
|
|
15
21
|
var useViteRoutes_exports = {};
|
|
16
22
|
__export(useViteRoutes_exports, {
|
|
17
23
|
globbedRoutesToRouteContext: () => globbedRoutesToRouteContext,
|
|
@@ -19,9 +25,11 @@ __export(useViteRoutes_exports, {
|
|
|
19
25
|
useViteRoutes: () => useViteRoutes
|
|
20
26
|
});
|
|
21
27
|
module.exports = __toCommonJS(useViteRoutes_exports);
|
|
22
|
-
var import_cleanUrl = require("./cleanUrl"),
|
|
28
|
+
var import_cleanUrl = require("./cleanUrl.cjs"),
|
|
29
|
+
import_dynamicImport = require("./utils/dynamicImport.cjs");
|
|
23
30
|
const import_meta = {};
|
|
24
|
-
let lastVersion = 0,
|
|
31
|
+
let lastVersion = 0,
|
|
32
|
+
context;
|
|
25
33
|
function useViteRoutes(routes, options, version) {
|
|
26
34
|
return version && version > lastVersion && (context = null, lastVersion = version), context || loadRoutes(routes, options), context;
|
|
27
35
|
}
|
|
@@ -29,27 +37,32 @@ function loadRoutes(paths, options) {
|
|
|
29
37
|
return context || (globalThis.__importMetaGlobbed = paths, context = globbedRoutesToRouteContext(paths, options), context);
|
|
30
38
|
}
|
|
31
39
|
function globbedRoutesToRouteContext(paths, options) {
|
|
32
|
-
const routesSync = {},
|
|
33
|
-
|
|
40
|
+
const routesSync = {},
|
|
41
|
+
promises = {},
|
|
42
|
+
loadedRoutes = {},
|
|
43
|
+
clears = {};
|
|
44
|
+
Object.keys(paths).map(path => {
|
|
34
45
|
if (!paths[path]) {
|
|
35
46
|
console.error(`Error: Missing route at path ${path}`);
|
|
36
47
|
return;
|
|
37
48
|
}
|
|
38
|
-
const loadRouteFunction = paths[path],
|
|
49
|
+
const loadRouteFunction = paths[path],
|
|
50
|
+
pathWithoutRelative = path.replace("/app/", "./"),
|
|
51
|
+
shouldRewrite = typeof window < "u" && window.location && !import_meta.env.PROD,
|
|
52
|
+
originalPath = pathWithoutRelative.slice(1).replace(/\.[jt]sx?$/, "");
|
|
39
53
|
options?.routeModes?.[originalPath] === "spa" ? (console.info(`Spa mode: ${originalPath}`), loadedRoutes[pathWithoutRelative] = () => null) : shouldRewrite ? routesSync[pathWithoutRelative] = path.includes("_layout.") || path.includes("+spa") ? loadRouteFunction : () => {
|
|
40
|
-
const realPath = (globalThis.__vxrntodopath ?? window.location.pathname).trim(),
|
|
54
|
+
const realPath = (globalThis.__vxrntodopath ?? window.location.pathname).trim(),
|
|
55
|
+
importUrl = (0, import_cleanUrl.getLoaderPath)(realPath);
|
|
41
56
|
return (0, import_dynamicImport.dynamicImport)(importUrl);
|
|
42
57
|
} : routesSync[pathWithoutRelative] = loadRouteFunction;
|
|
43
58
|
});
|
|
44
59
|
const moduleKeys = Object.keys(routesSync);
|
|
45
60
|
function resolve(id) {
|
|
46
|
-
if (clearTimeout(clears[id]), loadedRoutes[id])
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
return routesSync[id];
|
|
50
|
-
throw promises[id] || (promises[id] = routesSync[id]().then((val) => (loadedRoutes[id] = val, delete promises[id], clears[id] = setTimeout(() => {
|
|
61
|
+
if (clearTimeout(clears[id]), loadedRoutes[id]) return loadedRoutes[id];
|
|
62
|
+
if (typeof routesSync[id] != "function") return routesSync[id];
|
|
63
|
+
throw promises[id] || (promises[id] = routesSync[id]().then(val => (loadedRoutes[id] = val, delete promises[id], clears[id] = setTimeout(() => {
|
|
51
64
|
delete loadedRoutes[id];
|
|
52
|
-
}, 500), val)).catch(
|
|
65
|
+
}, 500), val)).catch(err => {
|
|
53
66
|
console.error("Error loading route", id, err, new Error().stack), loadedRoutes[id] = {
|
|
54
67
|
default: () => null
|
|
55
68
|
// <View
|
|
@@ -72,6 +85,5 @@ function globbedRoutesToRouteContext(paths, options) {
|
|
|
72
85
|
}, delete promises[id];
|
|
73
86
|
}), process.env.NODE_ENV === "development" && (promises[id].stack = new Error().stack)), promises[id];
|
|
74
87
|
}
|
|
75
|
-
return resolve.keys = () => moduleKeys, resolve.id = "", resolve.resolve =
|
|
76
|
-
}
|
|
77
|
-
//# sourceMappingURL=useViteRoutes.js.map
|
|
88
|
+
return resolve.keys = () => moduleKeys, resolve.id = "", resolve.resolve = id => id, resolve;
|
|
89
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all) __defProp(target, name, {
|
|
7
|
+
get: all[name],
|
|
8
|
+
enumerable: !0
|
|
9
|
+
});
|
|
10
|
+
},
|
|
11
|
+
__copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
13
|
+
get: () => from[key],
|
|
14
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
+
});
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
19
|
+
value: !0
|
|
20
|
+
}), mod);
|
|
21
|
+
var assertIsReady_exports = {};
|
|
22
|
+
__export(assertIsReady_exports, {
|
|
23
|
+
assertIsReady: () => assertIsReady
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(assertIsReady_exports);
|
|
26
|
+
function assertIsReady(navigationRef) {
|
|
27
|
+
if (!navigationRef.isReady()) throw new Error("Attempted to navigate before mounting the Root Layout component. Ensure the Root Layout component is rendering a Slot, or other navigator on the first render.");
|
|
28
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all) __defProp(target, name, {
|
|
7
|
+
get: all[name],
|
|
8
|
+
enumerable: !0
|
|
9
|
+
});
|
|
10
|
+
},
|
|
11
|
+
__copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
13
|
+
get: () => from[key],
|
|
14
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
+
});
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
19
|
+
value: !0
|
|
20
|
+
}), mod);
|
|
21
|
+
var dynamicImport_exports = {};
|
|
22
|
+
__export(dynamicImport_exports, {
|
|
23
|
+
dynamicImport: () => dynamicImport
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(dynamicImport_exports);
|
|
26
|
+
const dynamicImport = path => import(/* @vite-ignore */
|
|
27
|
+
path);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all) __defProp(target, name, {
|
|
7
|
+
get: all[name],
|
|
8
|
+
enumerable: !0
|
|
9
|
+
});
|
|
10
|
+
},
|
|
11
|
+
__copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
13
|
+
get: () => from[key],
|
|
14
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
+
});
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
19
|
+
value: !0
|
|
20
|
+
}), mod);
|
|
21
|
+
var existsAsync_exports = {};
|
|
22
|
+
__export(existsAsync_exports, {
|
|
23
|
+
existsAsync: () => existsAsync
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(existsAsync_exports);
|
|
26
|
+
var import_node_fs = require("node:fs");
|
|
27
|
+
const existsAsync = file => new Promise((res, rej) => {
|
|
28
|
+
try {
|
|
29
|
+
(0, import_node_fs.exists)(file, res);
|
|
30
|
+
} catch {
|
|
31
|
+
return !1;
|
|
32
|
+
}
|
|
33
|
+
});
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all) __defProp(target, name, {
|
|
7
|
+
get: all[name],
|
|
8
|
+
enumerable: !0
|
|
9
|
+
});
|
|
10
|
+
},
|
|
11
|
+
__copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
13
|
+
get: () => from[key],
|
|
14
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
+
});
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
19
|
+
value: !0
|
|
20
|
+
}), mod);
|
|
21
|
+
var getPageExport_exports = {};
|
|
22
|
+
__export(getPageExport_exports, {
|
|
23
|
+
getPageExport: () => getPageExport
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(getPageExport_exports);
|
|
26
|
+
const getPageExport = exported => exported.default ||
|
|
27
|
+
// because HMR fails with default exports, allow exporting something else
|
|
28
|
+
// we just find the first non-loader export for now...
|
|
29
|
+
(() => {
|
|
30
|
+
const nonLoader = Object.keys(exported).find(x => x !== "loader" && x[0].toUpperCase() === x[0]);
|
|
31
|
+
if (nonLoader) return exported[nonLoader];
|
|
32
|
+
})();
|