vite-plugin-react-server 1.2.0-alpha.1 → 1.2.0
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/README.md +211 -51
- package/dist/client.d.ts +4 -1
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +5 -6
- package/dist/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -10
- package/dist/package.json +102 -27
- package/dist/plugin/bundle/bundles.d.ts +11 -0
- package/dist/plugin/bundle/bundles.d.ts.map +1 -0
- package/dist/plugin/bundle/bundles.js +11 -0
- package/dist/plugin/bundle/deferredStaticGeneration.d.ts +31 -0
- package/dist/plugin/bundle/deferredStaticGeneration.d.ts.map +1 -0
- package/dist/plugin/bundle/deferredStaticGeneration.js +44 -0
- package/dist/plugin/bundle/manifests.d.ts +20 -0
- package/dist/plugin/bundle/manifests.d.ts.map +1 -0
- package/dist/plugin/bundle/manifests.js +54 -0
- package/dist/plugin/components/css.d.ts +2 -5
- package/dist/plugin/components/css.d.ts.map +1 -1
- package/dist/plugin/components/css.js +7 -9
- package/dist/plugin/components/html.d.ts +2 -3
- package/dist/plugin/components/html.d.ts.map +1 -1
- package/dist/plugin/components/html.js +3 -3
- package/dist/plugin/components/index.d.ts +1 -1
- package/dist/plugin/components/index.d.ts.map +1 -1
- package/dist/plugin/components/root.d.ts.map +1 -1
- package/dist/plugin/components/root.js +4 -4
- package/dist/plugin/config/autoDiscover/createGlobAutoDiscover.d.ts.map +1 -1
- package/dist/plugin/config/autoDiscover/createGlobAutoDiscover.js +6 -6
- package/dist/plugin/config/autoDiscover/pageAndPropFiles.d.ts.map +1 -1
- package/dist/plugin/config/autoDiscover/pageAndPropFiles.js +1 -1
- package/dist/plugin/config/autoDiscover/resolveAutoDiscover.d.ts +6 -5
- package/dist/plugin/config/autoDiscover/resolveAutoDiscover.d.ts.map +1 -1
- package/dist/plugin/config/autoDiscover/resolveAutoDiscover.js +34 -51
- package/dist/plugin/config/autoDiscover/resolveBuildPages.d.ts +5 -1
- package/dist/plugin/config/autoDiscover/resolveBuildPages.d.ts.map +1 -1
- package/dist/plugin/config/autoDiscover/resolveBuildPages.js +124 -52
- package/dist/plugin/config/createHandlerOptions.client.d.ts +4 -0
- package/dist/plugin/config/createHandlerOptions.client.d.ts.map +1 -0
- package/dist/plugin/config/createHandlerOptions.client.js +293 -0
- package/dist/plugin/config/createHandlerOptions.d.ts +4 -0
- package/dist/plugin/config/createHandlerOptions.d.ts.map +1 -0
- package/dist/plugin/config/createHandlerOptions.js +13 -0
- package/dist/plugin/config/createHandlerOptions.server.d.ts +4 -0
- package/dist/plugin/config/createHandlerOptions.server.d.ts.map +1 -0
- package/dist/plugin/config/createHandlerOptions.server.js +344 -0
- package/dist/plugin/config/createHandlerOptions.types.d.ts +114 -0
- package/dist/plugin/config/createHandlerOptions.types.d.ts.map +1 -0
- package/dist/plugin/config/createModuleID.d.ts +1 -1
- package/dist/plugin/config/createModuleID.d.ts.map +1 -1
- package/dist/plugin/config/createModuleID.js +121 -8
- package/dist/plugin/config/defaults.d.ts +46 -6
- package/dist/plugin/config/defaults.d.ts.map +1 -1
- package/dist/plugin/config/defaults.js +54 -11
- package/dist/plugin/config/envPrefixFromConfig.d.ts +3 -0
- package/dist/plugin/config/envPrefixFromConfig.d.ts.map +1 -0
- package/dist/plugin/config/envPrefixFromConfig.js +8 -0
- package/dist/plugin/config/getCondition.d.ts +54 -3
- package/dist/plugin/config/getCondition.d.ts.map +1 -1
- package/dist/plugin/config/getCondition.js +158 -6
- package/dist/plugin/{getNodeEnv.d.ts → config/getNodeEnv.d.ts} +1 -1
- package/dist/plugin/config/getNodeEnv.d.ts.map +1 -0
- package/dist/plugin/config/getNodeEnv.js +17 -0
- package/dist/plugin/config/index.d.ts +43 -1
- package/dist/plugin/config/index.d.ts.map +1 -1
- package/dist/plugin/config/index.js +9 -4
- package/dist/plugin/config/resolveDirectiveMatcher.d.ts +6 -6
- package/dist/plugin/config/resolveDirectiveMatcher.d.ts.map +1 -1
- package/dist/plugin/config/resolveDirectiveMatcher.js +7 -23
- package/dist/plugin/config/resolveEnv.d.ts.map +1 -1
- package/dist/plugin/config/resolveEnv.js +3 -6
- package/dist/plugin/config/resolveOptions.d.ts +3 -2
- package/dist/plugin/config/resolveOptions.d.ts.map +1 -1
- package/dist/plugin/config/resolveOptions.js +188 -43
- package/dist/plugin/config/resolvePages.d.ts +1 -1
- package/dist/plugin/config/resolvePages.d.ts.map +1 -1
- package/dist/plugin/config/resolvePages.js +1 -1
- package/dist/plugin/config/resolvePatternWithValues.d.ts.map +1 -1
- package/dist/plugin/config/resolvePatternWithValues.js +7 -26
- package/dist/plugin/config/resolveUrlOption.d.ts +1 -1
- package/dist/plugin/config/resolveUrlOption.d.ts.map +1 -1
- package/dist/plugin/config/resolveUrlOption.js +2 -2
- package/dist/plugin/config/resolveUserConfig.d.ts +5 -3
- package/dist/plugin/config/resolveUserConfig.d.ts.map +1 -1
- package/dist/plugin/config/resolveUserConfig.js +221 -75
- package/dist/plugin/config/stashedOptionsState.d.ts +66 -0
- package/dist/plugin/config/stashedOptionsState.d.ts.map +1 -0
- package/dist/plugin/config/stashedOptionsState.js +25 -0
- package/dist/plugin/dev-server/cleanupServerAction.client.d.ts +6 -0
- package/dist/plugin/dev-server/cleanupServerAction.client.d.ts.map +1 -0
- package/dist/plugin/dev-server/cleanupServerAction.client.js +28 -0
- package/dist/plugin/dev-server/cleanupServerAction.d.ts +2 -0
- package/dist/plugin/dev-server/cleanupServerAction.d.ts.map +1 -0
- package/dist/plugin/dev-server/cleanupServerAction.js +4 -0
- package/dist/plugin/dev-server/cleanupServerAction.server.d.ts +8 -0
- package/dist/plugin/dev-server/cleanupServerAction.server.d.ts.map +1 -0
- package/dist/plugin/dev-server/cleanupServerAction.server.js +15 -0
- package/dist/plugin/dev-server/configureReactServer.client.d.ts +7 -0
- package/dist/plugin/dev-server/configureReactServer.client.d.ts.map +1 -0
- package/dist/plugin/dev-server/configureReactServer.client.js +85 -0
- package/dist/plugin/dev-server/configureReactServer.d.ts +2 -0
- package/dist/plugin/dev-server/configureReactServer.d.ts.map +1 -0
- package/dist/plugin/dev-server/configureReactServer.js +13 -0
- package/dist/plugin/dev-server/configureReactServer.server.d.ts +3 -0
- package/dist/plugin/dev-server/configureReactServer.server.d.ts.map +1 -0
- package/dist/plugin/dev-server/configureReactServer.server.js +444 -0
- package/dist/plugin/dev-server/configureRequestHandler.client.d.ts +13 -0
- package/dist/plugin/dev-server/configureRequestHandler.client.d.ts.map +1 -0
- package/dist/plugin/dev-server/configureRequestHandler.client.js +307 -0
- package/dist/plugin/dev-server/configureRequestHandler.d.ts +2 -0
- package/dist/plugin/dev-server/configureRequestHandler.d.ts.map +1 -0
- package/dist/plugin/dev-server/configureRequestHandler.js +4 -0
- package/dist/plugin/dev-server/configureRequestHandler.server.d.ts +6 -0
- package/dist/plugin/dev-server/configureRequestHandler.server.d.ts.map +1 -0
- package/dist/plugin/dev-server/configureRequestHandler.server.js +44 -0
- package/dist/plugin/dev-server/handleServerAction.client.d.ts +11 -0
- package/dist/plugin/dev-server/handleServerAction.client.d.ts.map +1 -0
- package/dist/plugin/dev-server/handleServerAction.client.js +97 -0
- package/dist/plugin/dev-server/handleServerAction.d.ts +2 -0
- package/dist/plugin/dev-server/handleServerAction.d.ts.map +1 -0
- package/dist/plugin/dev-server/handleServerAction.js +13 -0
- package/dist/plugin/dev-server/handleServerAction.server.d.ts +3 -0
- package/dist/plugin/dev-server/handleServerAction.server.d.ts.map +1 -0
- package/dist/plugin/dev-server/handleServerAction.server.js +15 -0
- package/dist/plugin/dev-server/index.client.d.ts +7 -0
- package/dist/plugin/dev-server/index.client.d.ts.map +1 -0
- package/dist/plugin/dev-server/index.client.js +11 -0
- package/dist/plugin/dev-server/index.d.ts +4 -0
- package/dist/plugin/dev-server/index.d.ts.map +1 -0
- package/dist/plugin/dev-server/index.js +19 -0
- package/dist/plugin/dev-server/index.server.d.ts +7 -0
- package/dist/plugin/dev-server/index.server.d.ts.map +1 -0
- package/dist/plugin/dev-server/index.server.js +11 -0
- package/dist/plugin/dev-server/plugin.client.d.ts +7 -0
- package/dist/plugin/dev-server/plugin.client.d.ts.map +1 -0
- package/dist/plugin/dev-server/plugin.client.js +122 -0
- package/dist/plugin/dev-server/plugin.server.d.ts +8 -0
- package/dist/plugin/dev-server/plugin.server.d.ts.map +1 -0
- package/dist/plugin/dev-server/plugin.server.js +108 -0
- package/dist/plugin/dev-server/restartWorker.client.d.ts +3 -0
- package/dist/plugin/dev-server/restartWorker.client.d.ts.map +1 -0
- package/dist/plugin/dev-server/restartWorker.client.js +131 -0
- package/dist/plugin/dev-server/restartWorker.d.ts +2 -0
- package/dist/plugin/dev-server/restartWorker.d.ts.map +1 -0
- package/dist/plugin/dev-server/restartWorker.js +4 -0
- package/dist/plugin/dev-server/restartWorker.server.d.ts +3 -0
- package/dist/plugin/dev-server/restartWorker.server.d.ts.map +1 -0
- package/dist/plugin/dev-server/restartWorker.server.js +88 -0
- package/dist/plugin/dev-server/types.d.ts +38 -0
- package/dist/plugin/dev-server/types.d.ts.map +1 -0
- package/dist/plugin/dev-server/virtualRscHmrPlugin.d.ts +7 -0
- package/dist/plugin/dev-server/virtualRscHmrPlugin.d.ts.map +1 -0
- package/dist/plugin/dev-server/virtualRscHmrPlugin.js +80 -0
- package/dist/plugin/env/createConfigEnv.d.ts +7 -1
- package/dist/plugin/env/createConfigEnv.d.ts.map +1 -1
- package/dist/plugin/env/createConfigEnv.js +18 -5
- package/dist/plugin/env/createEnvPlugin.d.ts +3 -0
- package/dist/plugin/env/createEnvPlugin.d.ts.map +1 -0
- package/dist/plugin/env/createEnvPlugin.js +59 -0
- package/dist/plugin/env/getArgValue.js +47 -27
- package/dist/plugin/env/getEnvKey.d.ts +6 -0
- package/dist/plugin/env/getEnvKey.d.ts.map +1 -1
- package/dist/plugin/env/getEnvKey.js +11 -3
- package/dist/plugin/env/index.d.ts +2 -0
- package/dist/plugin/env/index.d.ts.map +1 -1
- package/dist/plugin/env/index.js +4 -0
- package/dist/plugin/env/plugin.client.d.ts +2 -0
- package/dist/plugin/env/plugin.client.d.ts.map +1 -0
- package/dist/plugin/env/plugin.client.js +2 -0
- package/dist/plugin/env/plugin.d.ts +4 -34
- package/dist/plugin/env/plugin.d.ts.map +1 -1
- package/dist/plugin/env/plugin.js +31 -64
- package/dist/plugin/env/plugin.server.d.ts +2 -0
- package/dist/plugin/env/plugin.server.d.ts.map +1 -0
- package/dist/plugin/env/plugin.server.js +2 -0
- package/dist/plugin/env/userConfigEnv.js +9 -18
- package/dist/plugin/environments/createBuildEventPlugin.d.ts +4 -0
- package/dist/plugin/environments/createBuildEventPlugin.d.ts.map +1 -0
- package/dist/plugin/environments/createBuildEventPlugin.js +100 -0
- package/dist/plugin/environments/createEnvironmentPlugin.d.ts +19 -0
- package/dist/plugin/environments/createEnvironmentPlugin.d.ts.map +1 -0
- package/dist/plugin/environments/createEnvironmentPlugin.js +257 -0
- package/dist/plugin/environments/hashCoordination.d.ts +14 -0
- package/dist/plugin/environments/hashCoordination.d.ts.map +1 -0
- package/dist/plugin/environments/hashCoordination.js +35 -0
- package/dist/plugin/environments/resolveEnvironmentConfig.d.ts +41 -0
- package/dist/plugin/environments/resolveEnvironmentConfig.d.ts.map +1 -0
- package/dist/plugin/environments/resolveEnvironmentConfig.js +232 -0
- package/dist/plugin/error/assertPanic.d.ts +2 -0
- package/dist/plugin/error/assertPanic.d.ts.map +1 -0
- package/dist/plugin/error/assertPanic.js +15 -0
- package/dist/plugin/error/handleError.d.ts +9 -0
- package/dist/plugin/error/handleError.d.ts.map +1 -0
- package/dist/plugin/error/handleError.js +51 -0
- package/dist/plugin/error/index.d.ts +3 -0
- package/dist/plugin/error/index.d.ts.map +1 -1
- package/dist/plugin/error/index.js +4 -1
- package/dist/plugin/error/logError.d.ts +6 -2
- package/dist/plugin/error/logError.d.ts.map +1 -1
- package/dist/plugin/error/logError.js +34 -36
- package/dist/plugin/error/panicThresholdHandler.d.ts +27 -0
- package/dist/plugin/error/panicThresholdHandler.d.ts.map +1 -0
- package/dist/plugin/error/panicThresholdHandler.js +13 -0
- package/dist/plugin/error/serializeError.d.ts +6 -2
- package/dist/plugin/error/serializeError.d.ts.map +1 -1
- package/dist/plugin/error/serializeError.js +30 -10
- package/dist/plugin/error/serializeErrorInfo.d.ts +5 -0
- package/dist/plugin/error/serializeErrorInfo.d.ts.map +1 -0
- package/dist/plugin/error/serializeErrorInfo.js +19 -0
- package/dist/plugin/error/setupGlobalErrorHandler.d.ts +4 -0
- package/dist/plugin/error/setupGlobalErrorHandler.d.ts.map +1 -0
- package/dist/plugin/error/setupGlobalErrorHandler.js +52 -0
- package/dist/plugin/error/shouldPanic.d.ts +6 -0
- package/dist/plugin/error/shouldPanic.d.ts.map +1 -0
- package/dist/plugin/error/shouldPanic.js +15 -0
- package/dist/plugin/error/toError.d.ts +5 -1
- package/dist/plugin/error/toError.d.ts.map +1 -1
- package/dist/plugin/error/toError.js +43 -19
- package/dist/plugin/error/types.d.ts +28 -0
- package/dist/plugin/error/types.d.ts.map +1 -0
- package/dist/plugin/error/types.js +1 -0
- package/dist/plugin/helpers/collectManifestCss.d.ts.map +1 -1
- package/dist/plugin/helpers/collectManifestCss.js +19 -5
- package/dist/plugin/helpers/collectViteModuleGraphCss.d.ts +3 -3
- package/dist/plugin/helpers/collectViteModuleGraphCss.d.ts.map +1 -1
- package/dist/plugin/helpers/collectViteModuleGraphCss.js +64 -3
- package/dist/plugin/helpers/createBufferedRscStream.d.ts +52 -0
- package/dist/plugin/helpers/createBufferedRscStream.d.ts.map +1 -0
- package/dist/plugin/helpers/createBufferedRscStream.js +147 -0
- package/dist/plugin/helpers/createCssProps.d.ts.map +1 -1
- package/dist/plugin/helpers/createCssProps.js +15 -14
- package/dist/plugin/helpers/createElementWithReact.d.ts +9 -0
- package/dist/plugin/helpers/createElementWithReact.d.ts.map +1 -0
- package/dist/plugin/helpers/createElementWithReact.js +87 -0
- package/dist/plugin/helpers/createPatternMatcher.d.ts +24 -0
- package/dist/plugin/helpers/createPatternMatcher.d.ts.map +1 -0
- package/dist/plugin/helpers/createPatternMatcher.js +50 -0
- package/dist/plugin/helpers/createRscRenderHelpers.d.ts +16 -0
- package/dist/plugin/helpers/createRscRenderHelpers.d.ts.map +1 -0
- package/dist/plugin/helpers/createRscRenderHelpers.js +60 -0
- package/dist/plugin/helpers/createSafePageComponent.d.ts +36 -0
- package/dist/plugin/helpers/createSafePageComponent.d.ts.map +1 -0
- package/dist/plugin/helpers/createSafePageComponent.js +50 -0
- package/dist/plugin/helpers/createSerializableHandlerOptions.d.ts +60 -0
- package/dist/plugin/helpers/createSerializableHandlerOptions.d.ts.map +1 -0
- package/dist/plugin/helpers/createSerializableHandlerOptions.js +94 -0
- package/dist/plugin/helpers/createSharedLoader.d.ts +44 -0
- package/dist/plugin/helpers/createSharedLoader.d.ts.map +1 -0
- package/dist/plugin/helpers/createSharedLoader.js +137 -0
- package/dist/plugin/helpers/createUnifiedCssProcessor.d.ts +70 -0
- package/dist/plugin/helpers/createUnifiedCssProcessor.d.ts.map +1 -0
- package/dist/plugin/helpers/createUnifiedCssProcessor.js +89 -0
- package/dist/plugin/helpers/getBundleManifest.d.ts.map +1 -1
- package/dist/plugin/helpers/getBundleManifest.js +2 -3
- package/dist/plugin/helpers/getRouteFiles.d.ts +1 -1
- package/dist/plugin/helpers/getRouteFiles.d.ts.map +1 -1
- package/dist/plugin/helpers/getRouteFiles.js +43 -41
- package/dist/plugin/helpers/handleServerAction.client.d.ts +29 -0
- package/dist/plugin/helpers/handleServerAction.client.d.ts.map +1 -0
- package/dist/plugin/helpers/handleServerAction.client.js +93 -0
- package/dist/plugin/helpers/handleServerAction.d.ts +2 -34
- package/dist/plugin/helpers/handleServerAction.d.ts.map +1 -1
- package/dist/plugin/helpers/handleServerAction.js +15 -45
- package/dist/plugin/helpers/handleServerAction.server.d.ts +25 -0
- package/dist/plugin/helpers/handleServerAction.server.d.ts.map +1 -0
- package/dist/plugin/helpers/handleServerAction.server.js +80 -0
- package/dist/plugin/helpers/handleServerActionHelper.d.ts +61 -0
- package/dist/plugin/helpers/handleServerActionHelper.d.ts.map +1 -0
- package/dist/plugin/helpers/handleServerActionHelper.js +183 -0
- package/dist/plugin/helpers/headlessStreamReuseHandler.d.ts +12 -0
- package/dist/plugin/helpers/headlessStreamReuseHandler.d.ts.map +1 -0
- package/dist/plugin/helpers/headlessStreamReuseHandler.js +29 -0
- package/dist/plugin/helpers/headlessStreamState.d.ts +71 -0
- package/dist/plugin/helpers/headlessStreamState.d.ts.map +1 -0
- package/dist/plugin/helpers/headlessStreamState.js +81 -0
- package/dist/plugin/helpers/hydrateUserOptions.d.ts +1 -1
- package/dist/plugin/helpers/hydrateUserOptions.d.ts.map +1 -1
- package/dist/plugin/helpers/hydrateUserOptions.js +2 -2
- package/dist/plugin/helpers/index.d.ts +12 -5
- package/dist/plugin/helpers/index.d.ts.map +1 -1
- package/dist/plugin/helpers/index.js +18 -4
- package/dist/plugin/helpers/logRenderStart.d.ts +17 -0
- package/dist/plugin/helpers/logRenderStart.d.ts.map +1 -0
- package/dist/plugin/helpers/logRenderStart.js +13 -0
- package/dist/plugin/helpers/mergeMessageWithDefaults.d.ts +90 -0
- package/dist/plugin/helpers/mergeMessageWithDefaults.d.ts.map +1 -0
- package/dist/plugin/helpers/mergeMessageWithDefaults.js +67 -0
- package/dist/plugin/helpers/pipeToResponse.d.ts +19 -0
- package/dist/plugin/helpers/pipeToResponse.d.ts.map +1 -0
- package/dist/plugin/helpers/pipeToResponse.js +55 -0
- package/dist/plugin/helpers/requestInfo.d.ts +2 -0
- package/dist/plugin/helpers/requestInfo.d.ts.map +1 -1
- package/dist/plugin/helpers/requestInfo.js +6 -2
- package/dist/plugin/helpers/resolveComponents.client.d.ts +34 -0
- package/dist/plugin/helpers/resolveComponents.client.d.ts.map +1 -0
- package/dist/plugin/helpers/resolveComponents.client.js +126 -0
- package/dist/plugin/helpers/resolveModuleFromManifest.d.ts +36 -0
- package/dist/plugin/helpers/resolveModuleFromManifest.d.ts.map +1 -0
- package/dist/plugin/helpers/resolveModuleFromManifest.js +60 -0
- package/dist/plugin/helpers/resolvePageAndProps.d.ts +23 -2
- package/dist/plugin/helpers/resolvePageAndProps.d.ts.map +1 -1
- package/dist/plugin/helpers/resolvePageAndProps.js +150 -9
- package/dist/plugin/helpers/resolveRenderUrl.d.ts +11 -0
- package/dist/plugin/helpers/resolveRenderUrl.d.ts.map +1 -0
- package/dist/plugin/helpers/resolveRenderUrl.js +19 -0
- package/dist/plugin/helpers/resolveStreamElements.client.d.ts +14 -0
- package/dist/plugin/helpers/resolveStreamElements.client.d.ts.map +1 -0
- package/dist/plugin/helpers/resolveStreamElements.client.js +36 -0
- package/dist/plugin/helpers/resolveStreamElements.d.ts +3 -0
- package/dist/plugin/helpers/resolveStreamElements.d.ts.map +1 -0
- package/dist/plugin/helpers/resolveStreamElements.js +13 -0
- package/dist/plugin/helpers/resolveStreamElements.server.d.ts +15 -0
- package/dist/plugin/helpers/resolveStreamElements.server.d.ts.map +1 -0
- package/dist/plugin/helpers/resolveStreamElements.server.js +35 -0
- package/dist/plugin/helpers/resolveStreamElements.types.d.ts +22 -0
- package/dist/plugin/helpers/resolveStreamElements.types.d.ts.map +1 -0
- package/dist/plugin/helpers/resolveStreamElements.types.js +1 -0
- package/dist/plugin/helpers/resolveVirtualAndNodeModules.d.ts +15 -0
- package/dist/plugin/helpers/resolveVirtualAndNodeModules.d.ts.map +1 -0
- package/dist/plugin/helpers/resolveVirtualAndNodeModules.js +45 -0
- package/dist/plugin/helpers/resolveWithDefaultRootAndHtml.d.ts +18 -0
- package/dist/plugin/helpers/resolveWithDefaultRootAndHtml.d.ts.map +1 -0
- package/dist/plugin/helpers/resolveWithDefaultRootAndHtml.js +17 -0
- package/dist/plugin/helpers/serializeUserOptions.d.ts +2 -2
- package/dist/plugin/helpers/serializeUserOptions.d.ts.map +1 -1
- package/dist/plugin/helpers/serializeUserOptions.js +28 -13
- package/dist/plugin/helpers/tryManifest.d.ts +2 -2
- package/dist/plugin/helpers/tryManifest.d.ts.map +1 -1
- package/dist/plugin/helpers/tryManifest.js +12 -6
- package/dist/plugin/helpers/validateRscRenderMessage.d.ts +9 -0
- package/dist/plugin/helpers/validateRscRenderMessage.d.ts.map +1 -0
- package/dist/plugin/helpers/validateRscRenderMessage.js +13 -0
- package/dist/plugin/helpers/workerCleanup.d.ts +29 -0
- package/dist/plugin/helpers/workerCleanup.d.ts.map +1 -0
- package/dist/plugin/helpers/workerCleanup.js +28 -0
- package/dist/plugin/helpers/workerManager.d.ts +5 -0
- package/dist/plugin/helpers/workerManager.d.ts.map +1 -0
- package/dist/plugin/helpers/workerManager.js +18 -0
- package/dist/plugin/index.d.ts +4 -1
- package/dist/plugin/index.d.ts.map +1 -1
- package/dist/plugin/index.js +5 -2
- package/dist/plugin/loader/createDefaultLoader.d.ts +1 -1
- package/dist/plugin/loader/createDefaultLoader.d.ts.map +1 -1
- package/dist/plugin/loader/createDefaultLoader.js +2 -22
- package/dist/plugin/loader/createTransformer.d.ts.map +1 -1
- package/dist/plugin/loader/createTransformer.js +155 -25
- package/dist/plugin/loader/directives/analyzeDirectives.d.ts +3 -2
- package/dist/plugin/loader/directives/analyzeDirectives.d.ts.map +1 -1
- package/dist/plugin/loader/directives/analyzeDirectives.js +53 -26
- package/dist/plugin/loader/directives/analyzeModule.d.ts.map +1 -1
- package/dist/plugin/loader/directives/analyzeModule.js +16 -9
- package/dist/plugin/loader/env-loader.js +2 -2
- package/dist/plugin/loader/react-loader.d.ts +4 -4
- package/dist/plugin/loader/react-loader.d.ts.map +1 -1
- package/dist/plugin/loader/react-loader.js +101 -73
- package/dist/plugin/loader/transformClientModule.d.ts +3 -3
- package/dist/plugin/loader/transformClientModule.d.ts.map +1 -1
- package/dist/plugin/loader/transformClientModule.js +63 -18
- package/dist/plugin/loader/transformModule.d.ts.map +1 -1
- package/dist/plugin/loader/transformModule.js +80 -16
- package/dist/plugin/loader/transformModuleIfNeeded.d.ts +6 -1
- package/dist/plugin/loader/transformModuleIfNeeded.d.ts.map +1 -1
- package/dist/plugin/loader/transformModuleIfNeeded.js +10 -18
- package/dist/plugin/loader/transformNonServerEnvironment.d.ts +1 -1
- package/dist/plugin/loader/transformNonServerEnvironment.d.ts.map +1 -1
- package/dist/plugin/loader/transformNonServerEnvironment.js +14 -12
- package/dist/plugin/loader/transformServerModule.d.ts +1 -1
- package/dist/plugin/loader/transformServerModule.d.ts.map +1 -1
- package/dist/plugin/loader/transformServerModule.js +54 -15
- package/dist/plugin/loader/types.d.ts +24 -7
- package/dist/plugin/loader/types.d.ts.map +1 -1
- package/dist/plugin/metrics/collectStreamMetrics.d.ts +1 -2
- package/dist/plugin/metrics/collectStreamMetrics.d.ts.map +1 -1
- package/dist/plugin/metrics/collectStreamMetrics.js +1 -1
- package/dist/plugin/metrics/convertStreamMetrics.d.ts +3 -0
- package/dist/plugin/metrics/convertStreamMetrics.d.ts.map +1 -0
- package/dist/plugin/metrics/convertStreamMetrics.js +26 -0
- package/dist/plugin/metrics/createModuleResolutionMetrics.d.ts +12 -0
- package/dist/plugin/metrics/createModuleResolutionMetrics.d.ts.map +1 -0
- package/dist/plugin/metrics/createModuleResolutionMetrics.js +32 -0
- package/dist/plugin/metrics/createRenderMetrics.d.ts +2 -2
- package/dist/plugin/metrics/createRenderMetrics.d.ts.map +1 -1
- package/dist/plugin/metrics/createRenderMetrics.js +45 -13
- package/dist/plugin/metrics/createStreamMetrics.d.ts +2 -2
- package/dist/plugin/metrics/createStreamMetrics.d.ts.map +1 -1
- package/dist/plugin/metrics/createStreamMetrics.js +15 -4
- package/dist/plugin/metrics/createWorkerStartupMetrics.d.ts +12 -0
- package/dist/plugin/metrics/createWorkerStartupMetrics.d.ts.map +1 -0
- package/dist/plugin/metrics/createWorkerStartupMetrics.js +14 -0
- package/dist/plugin/metrics/formatMetrics.d.ts +0 -6
- package/dist/plugin/metrics/formatMetrics.d.ts.map +1 -1
- package/dist/plugin/metrics/formatMetrics.js +7 -29
- package/dist/plugin/metrics/index.d.ts +6 -3
- package/dist/plugin/metrics/index.d.ts.map +1 -1
- package/dist/plugin/metrics/index.js +6 -3
- package/dist/plugin/metrics/metricWatcher.d.ts +9 -0
- package/dist/plugin/metrics/metricWatcher.d.ts.map +1 -0
- package/dist/plugin/metrics/metricWatcher.js +141 -0
- package/dist/plugin/metrics/types.d.ts +72 -6
- package/dist/plugin/metrics/types.d.ts.map +1 -1
- package/dist/plugin/orchestrator/createPluginOrchestrator.client.d.ts +3 -0
- package/dist/plugin/orchestrator/createPluginOrchestrator.client.d.ts.map +1 -0
- package/dist/plugin/orchestrator/createPluginOrchestrator.client.js +36 -0
- package/dist/plugin/orchestrator/createPluginOrchestrator.d.ts +19 -0
- package/dist/plugin/orchestrator/createPluginOrchestrator.d.ts.map +1 -0
- package/dist/plugin/orchestrator/createPluginOrchestrator.js +13 -0
- package/dist/plugin/orchestrator/createPluginOrchestrator.server.d.ts +3 -0
- package/dist/plugin/orchestrator/createPluginOrchestrator.server.d.ts.map +1 -0
- package/dist/plugin/orchestrator/createPluginOrchestrator.server.js +44 -0
- package/dist/plugin/orchestrator/index.d.ts +2 -0
- package/dist/plugin/orchestrator/index.d.ts.map +1 -0
- package/dist/plugin/orchestrator/index.js +1 -0
- package/dist/plugin/orchestrator/plugin.js +7 -0
- package/dist/plugin/orchestrator/resolveStrategy.d.ts +19 -0
- package/dist/plugin/orchestrator/resolveStrategy.d.ts.map +1 -0
- package/dist/plugin/orchestrator/resolveStrategy.js +35 -0
- package/dist/plugin/orchestrator/types.d.ts +21 -0
- package/dist/plugin/orchestrator/types.d.ts.map +1 -0
- package/dist/plugin/orchestrator/types.js +1 -0
- package/dist/plugin/plugin.client.d.ts +11 -19
- package/dist/plugin/plugin.client.d.ts.map +1 -1
- package/dist/plugin/plugin.client.js +20 -13
- package/dist/plugin/plugin.d.ts +2 -1
- package/dist/plugin/plugin.d.ts.map +1 -1
- package/dist/plugin/plugin.js +4 -2
- package/dist/plugin/plugin.server.d.ts +13 -11
- package/dist/plugin/plugin.server.d.ts.map +1 -1
- package/dist/plugin/plugin.server.js +19 -18
- package/dist/plugin/process-env.d.ts +1 -0
- package/dist/plugin/process-env.d.ts.map +1 -1
- package/dist/plugin/react-client/createMessageHandlers.d.ts +2 -10
- package/dist/plugin/react-client/createMessageHandlers.d.ts.map +1 -1
- package/dist/plugin/react-client/createMessageHandlers.js +42 -69
- package/dist/plugin/react-client/index.client.d.ts +2 -0
- package/dist/plugin/react-client/index.client.d.ts.map +1 -0
- package/dist/plugin/react-client/index.client.js +1 -0
- package/dist/plugin/react-client/index.d.ts +3 -4
- package/dist/plugin/react-client/index.d.ts.map +1 -1
- package/dist/plugin/react-client/index.js +10 -5
- package/dist/plugin/react-client/index.server.d.ts +2 -0
- package/dist/plugin/react-client/index.server.d.ts.map +1 -0
- package/dist/plugin/react-client/index.server.js +1 -0
- package/dist/plugin/react-client/plugin.client.d.ts +15 -0
- package/dist/plugin/react-client/plugin.client.d.ts.map +1 -0
- package/dist/plugin/react-client/plugin.client.js +98 -0
- package/dist/plugin/react-client/plugin.d.ts +2 -5
- package/dist/plugin/react-client/plugin.d.ts.map +1 -1
- package/dist/plugin/react-client/plugin.js +6 -121
- package/dist/plugin/react-client/plugin.server.d.ts +15 -0
- package/dist/plugin/react-client/plugin.server.d.ts.map +1 -0
- package/dist/plugin/react-client/plugin.server.js +93 -0
- package/dist/plugin/react-client/types.d.ts +60 -0
- package/dist/plugin/react-client/types.d.ts.map +1 -0
- package/dist/plugin/react-client/types.js +1 -0
- package/dist/plugin/react-server/index.client.d.ts +2 -0
- package/dist/plugin/react-server/index.client.d.ts.map +1 -0
- package/dist/plugin/react-server/index.client.js +1 -0
- package/dist/plugin/react-server/index.d.ts +3 -1
- package/dist/plugin/react-server/index.d.ts.map +1 -1
- package/dist/plugin/react-server/index.js +13 -1
- package/dist/plugin/react-server/index.server.d.ts +2 -0
- package/dist/plugin/react-server/index.server.d.ts.map +1 -0
- package/dist/plugin/react-server/index.server.js +1 -0
- package/dist/plugin/react-server/plugin.client.d.ts +3 -0
- package/dist/plugin/react-server/plugin.client.d.ts.map +1 -0
- package/dist/plugin/react-server/plugin.client.js +40 -0
- package/dist/plugin/react-server/plugin.d.ts +2 -5
- package/dist/plugin/react-server/plugin.d.ts.map +1 -1
- package/dist/plugin/react-server/plugin.js +5 -143
- package/dist/plugin/react-server/plugin.server.d.ts +3 -0
- package/dist/plugin/react-server/plugin.server.d.ts.map +1 -0
- package/dist/plugin/react-server/plugin.server.js +18 -0
- package/dist/plugin/react-server/types.d.ts +11 -0
- package/dist/plugin/react-server/types.d.ts.map +1 -0
- package/dist/plugin/react-server/types.js +1 -0
- package/dist/plugin/react-static/collectHtmlContent.d.ts +15 -0
- package/dist/plugin/react-static/collectHtmlContent.d.ts.map +1 -0
- package/dist/plugin/react-static/collectHtmlContent.js +104 -0
- package/dist/plugin/react-static/collectRscContent.d.ts +10 -15
- package/dist/plugin/react-static/collectRscContent.d.ts.map +1 -1
- package/dist/plugin/react-static/collectRscContent.js +71 -20
- package/dist/plugin/react-static/configurePreviewServer.d.ts +1 -7
- package/dist/plugin/react-static/configurePreviewServer.d.ts.map +1 -1
- package/dist/plugin/react-static/configurePreviewServer.js +3 -6
- package/dist/plugin/react-static/createBuildLoader.client.d.ts +2 -0
- package/dist/plugin/react-static/createBuildLoader.client.d.ts.map +1 -0
- package/dist/plugin/react-static/createBuildLoader.client.js +7 -0
- package/dist/plugin/react-static/createBuildLoader.d.ts +3 -19
- package/dist/plugin/react-static/createBuildLoader.d.ts.map +1 -1
- package/dist/plugin/react-static/createBuildLoader.js +4 -226
- package/dist/plugin/react-static/createBuildLoader.server.d.ts +9 -0
- package/dist/plugin/react-static/createBuildLoader.server.d.ts.map +1 -0
- package/dist/plugin/react-static/createBuildLoader.server.js +253 -0
- package/dist/plugin/react-static/fileWriter.d.ts +3 -14
- package/dist/plugin/react-static/fileWriter.d.ts.map +1 -1
- package/dist/plugin/react-static/fileWriter.js +233 -42
- package/dist/plugin/react-static/index.client.d.ts +7 -0
- package/dist/plugin/react-static/index.client.d.ts.map +1 -0
- package/dist/plugin/react-static/index.client.js +6 -0
- package/dist/plugin/react-static/index.d.ts +7 -1
- package/dist/plugin/react-static/index.d.ts.map +1 -1
- package/dist/plugin/react-static/index.js +19 -1
- package/dist/plugin/react-static/index.server.d.ts +7 -0
- package/dist/plugin/react-static/index.server.d.ts.map +1 -0
- package/dist/plugin/react-static/index.server.js +6 -0
- package/dist/plugin/react-static/plugin.client.d.ts +32 -0
- package/dist/plugin/react-static/plugin.client.d.ts.map +1 -0
- package/dist/plugin/react-static/plugin.client.js +801 -0
- package/dist/plugin/react-static/plugin.d.ts +3 -20
- package/dist/plugin/react-static/plugin.d.ts.map +1 -1
- package/dist/plugin/react-static/plugin.js +4 -365
- package/dist/plugin/react-static/plugin.server.d.ts +18 -0
- package/dist/plugin/react-static/plugin.server.d.ts.map +1 -0
- package/dist/plugin/react-static/plugin.server.js +615 -0
- package/dist/plugin/react-static/processCssFilesForPages.d.ts +16 -0
- package/dist/plugin/react-static/processCssFilesForPages.d.ts.map +1 -0
- package/dist/plugin/react-static/processCssFilesForPages.js +94 -0
- package/dist/plugin/react-static/renderPage.client.d.ts +49 -0
- package/dist/plugin/react-static/renderPage.client.d.ts.map +1 -0
- package/dist/plugin/react-static/renderPage.client.js +555 -0
- package/dist/plugin/react-static/renderPage.d.ts +3 -4
- package/dist/plugin/react-static/renderPage.d.ts.map +1 -1
- package/dist/plugin/react-static/renderPage.js +6 -119
- package/dist/plugin/react-static/renderPage.server.d.ts +24 -0
- package/dist/plugin/react-static/renderPage.server.d.ts.map +1 -0
- package/dist/plugin/react-static/renderPage.server.js +533 -0
- package/dist/plugin/react-static/renderPages.d.ts +11 -3
- package/dist/plugin/react-static/renderPages.d.ts.map +1 -1
- package/dist/plugin/react-static/renderPages.js +533 -92
- package/dist/plugin/react-static/renderPagesBatched.d.ts +6 -0
- package/dist/plugin/react-static/renderPagesBatched.d.ts.map +1 -0
- package/dist/plugin/react-static/renderPagesBatched.js +195 -0
- package/dist/plugin/react-static/renderStreams.d.ts +2 -5
- package/dist/plugin/react-static/renderStreams.d.ts.map +1 -1
- package/dist/plugin/react-static/renderStreams.js +36 -24
- package/dist/plugin/react-static/rscToHtmlStream.client.d.ts +12 -0
- package/dist/plugin/react-static/rscToHtmlStream.client.d.ts.map +1 -0
- package/dist/plugin/react-static/rscToHtmlStream.client.js +32 -0
- package/dist/plugin/react-static/rscToHtmlStream.d.ts +3 -21
- package/dist/plugin/react-static/rscToHtmlStream.d.ts.map +1 -1
- package/dist/plugin/react-static/rscToHtmlStream.js +4 -53
- package/dist/plugin/react-static/rscToHtmlStream.server.d.ts +3 -0
- package/dist/plugin/react-static/rscToHtmlStream.server.d.ts.map +1 -0
- package/dist/plugin/react-static/rscToHtmlStream.server.js +39 -0
- package/dist/plugin/react-static/temporaryReferences.client.d.ts +2 -0
- package/dist/plugin/react-static/temporaryReferences.client.d.ts.map +1 -0
- package/dist/plugin/react-static/temporaryReferences.client.js +1 -0
- package/dist/plugin/react-static/temporaryReferences.d.ts +2 -1
- package/dist/plugin/react-static/temporaryReferences.d.ts.map +1 -1
- package/dist/plugin/react-static/temporaryReferences.js +6 -10
- package/dist/plugin/react-static/temporaryReferences.server.d.ts +2 -0
- package/dist/plugin/react-static/temporaryReferences.server.d.ts.map +1 -0
- package/dist/plugin/react-static/temporaryReferences.server.js +3 -0
- package/dist/plugin/react-static/types.d.ts +83 -9
- package/dist/plugin/react-static/types.d.ts.map +1 -1
- package/dist/plugin/root.d.ts.map +1 -1
- package/dist/plugin/root.js +2 -5
- package/dist/plugin/stream/MessagePortReadable.d.ts +22 -0
- package/dist/plugin/stream/MessagePortReadable.d.ts.map +1 -0
- package/dist/plugin/stream/MessagePortReadable.js +101 -0
- package/dist/plugin/stream/MessagePortWritable.d.ts +22 -0
- package/dist/plugin/stream/MessagePortWritable.d.ts.map +1 -0
- package/dist/plugin/stream/MessagePortWritable.js +85 -0
- package/dist/plugin/stream/client.js +12 -0
- package/dist/plugin/stream/createFromNodeStream.client.d.ts +9 -0
- package/dist/plugin/stream/createFromNodeStream.client.d.ts.map +1 -0
- package/dist/plugin/stream/createFromNodeStream.client.js +76 -0
- package/dist/plugin/stream/createFromNodeStream.d.ts +3 -0
- package/dist/plugin/stream/createFromNodeStream.d.ts.map +1 -0
- package/dist/plugin/stream/createFromNodeStream.js +6 -0
- package/dist/plugin/stream/createFromNodeStream.server.d.ts +9 -0
- package/dist/plugin/stream/createFromNodeStream.server.d.ts.map +1 -0
- package/dist/plugin/stream/createFromNodeStream.server.js +27 -0
- package/dist/plugin/stream/createFromNodeStream.types.d.ts +37 -0
- package/dist/plugin/stream/createFromNodeStream.types.d.ts.map +1 -0
- package/dist/plugin/stream/createFromNodeStream.types.js +1 -0
- package/dist/plugin/stream/createHtmlStream.client.d.ts +3 -0
- package/dist/plugin/stream/createHtmlStream.client.d.ts.map +1 -0
- package/dist/plugin/stream/createHtmlStream.client.js +42 -0
- package/dist/plugin/stream/createHtmlStream.d.ts +3 -0
- package/dist/plugin/stream/createHtmlStream.d.ts.map +1 -0
- package/dist/plugin/stream/createHtmlStream.js +6 -0
- package/dist/plugin/stream/createHtmlStream.server.d.ts +6 -0
- package/dist/plugin/stream/createHtmlStream.server.d.ts.map +1 -0
- package/dist/plugin/stream/createHtmlStream.server.js +224 -0
- package/dist/plugin/stream/createHtmlStream.types.d.ts +43 -0
- package/dist/plugin/stream/createHtmlStream.types.d.ts.map +1 -0
- package/dist/plugin/stream/createHtmlStream.types.js +1 -0
- package/dist/plugin/stream/createMainThreadHandlers.d.ts +11 -0
- package/dist/plugin/stream/createMainThreadHandlers.d.ts.map +1 -0
- package/dist/plugin/stream/createMainThreadHandlers.js +32 -0
- package/dist/plugin/stream/createMessageChannels.d.ts +29 -0
- package/dist/plugin/stream/createMessageChannels.d.ts.map +1 -0
- package/dist/plugin/stream/createMessageChannels.js +35 -0
- package/dist/plugin/stream/createRenderToPipeableStreamHandler.client.d.ts +10 -0
- package/dist/plugin/stream/createRenderToPipeableStreamHandler.client.d.ts.map +1 -0
- package/dist/plugin/stream/createRenderToPipeableStreamHandler.client.js +188 -0
- package/dist/plugin/stream/createRenderToPipeableStreamHandler.d.ts +3 -0
- package/dist/plugin/stream/createRenderToPipeableStreamHandler.d.ts.map +1 -0
- package/dist/plugin/stream/createRenderToPipeableStreamHandler.js +6 -0
- package/dist/plugin/stream/createRenderToPipeableStreamHandler.server.d.ts +45 -0
- package/dist/plugin/stream/createRenderToPipeableStreamHandler.server.d.ts.map +1 -0
- package/dist/plugin/stream/createRenderToPipeableStreamHandler.server.js +249 -0
- package/dist/plugin/stream/createRenderToPipeableStreamHandler.types.d.ts +17 -0
- package/dist/plugin/stream/createRenderToPipeableStreamHandler.types.d.ts.map +1 -0
- package/dist/plugin/stream/createRenderToPipeableStreamHandler.types.js +1 -0
- package/dist/plugin/stream/createRscStream.client.d.ts +18 -0
- package/dist/plugin/stream/createRscStream.client.d.ts.map +1 -0
- package/dist/plugin/stream/createRscStream.client.js +79 -0
- package/dist/plugin/stream/createRscStream.d.ts +2 -0
- package/dist/plugin/stream/createRscStream.d.ts.map +1 -0
- package/dist/plugin/stream/createRscStream.js +13 -0
- package/dist/plugin/stream/createRscStream.server.d.ts +46 -0
- package/dist/plugin/stream/createRscStream.server.d.ts.map +1 -0
- package/dist/plugin/stream/createRscStream.server.js +113 -0
- package/dist/plugin/stream/createRscStream.types.d.ts +134 -0
- package/dist/plugin/stream/createRscStream.types.d.ts.map +1 -0
- package/dist/plugin/stream/createRscStream.types.js +1 -0
- package/dist/plugin/stream/createRscStream.utils.d.ts +54 -0
- package/dist/plugin/stream/createRscStream.utils.d.ts.map +1 -0
- package/dist/plugin/stream/createRscStream.utils.js +91 -0
- package/dist/plugin/stream/createRscWorkerStream.d.ts +41 -0
- package/dist/plugin/stream/createRscWorkerStream.d.ts.map +1 -0
- package/dist/plugin/stream/createRscWorkerStream.js +120 -0
- package/dist/plugin/stream/handleRscStream.client.d.ts +17 -0
- package/dist/plugin/stream/handleRscStream.client.d.ts.map +1 -0
- package/dist/plugin/stream/handleRscStream.client.js +163 -0
- package/dist/plugin/stream/handleRscStream.d.ts +3 -0
- package/dist/plugin/stream/handleRscStream.d.ts.map +1 -0
- package/dist/plugin/stream/handleRscStream.js +13 -0
- package/dist/plugin/stream/handleRscStream.server.d.ts +6 -0
- package/dist/plugin/stream/handleRscStream.server.d.ts.map +1 -0
- package/dist/plugin/stream/handleRscStream.server.js +70 -0
- package/dist/plugin/stream/handleRscStream.types.d.ts +28 -0
- package/dist/plugin/stream/handleRscStream.types.d.ts.map +1 -0
- package/dist/plugin/stream/handleRscStream.types.js +1 -0
- package/dist/plugin/stream/index.client.d.ts +7 -0
- package/dist/plugin/stream/index.client.d.ts.map +1 -0
- package/dist/plugin/stream/index.client.js +11 -0
- package/dist/plugin/stream/index.d.ts +95 -0
- package/dist/plugin/stream/index.d.ts.map +1 -0
- package/dist/plugin/stream/index.js +21 -0
- package/dist/plugin/stream/index.server.d.ts +7 -0
- package/dist/plugin/stream/index.server.d.ts.map +1 -0
- package/dist/plugin/stream/index.server.js +11 -0
- package/dist/plugin/stream/renderRscStream.server.d.ts +21 -0
- package/dist/plugin/stream/renderRscStream.server.d.ts.map +1 -0
- package/dist/plugin/stream/renderRscStream.server.js +153 -0
- package/dist/plugin/stream/renderRscStream.types.d.ts +36 -0
- package/dist/plugin/stream/renderRscStream.types.d.ts.map +1 -0
- package/dist/plugin/stream/renderRscStream.types.js +1 -0
- package/dist/plugin/stream/renderRscStreamHelpers.server.d.ts +9 -0
- package/dist/plugin/stream/renderRscStreamHelpers.server.d.ts.map +1 -0
- package/dist/plugin/stream/renderRscStreamHelpers.server.js +63 -0
- package/dist/plugin/stream/server.js +12 -0
- package/dist/plugin/stream/setMaxListeners.d.ts +16 -0
- package/dist/plugin/stream/setMaxListeners.d.ts.map +1 -0
- package/dist/plugin/stream/setMaxListeners.js +16 -0
- package/dist/plugin/transformer/createTransformerPlugin.d.ts +18 -0
- package/dist/plugin/transformer/createTransformerPlugin.d.ts.map +1 -0
- package/dist/plugin/transformer/createTransformerPlugin.js +269 -0
- package/dist/plugin/transformer/plugin.client.d.ts +2 -29
- package/dist/plugin/transformer/plugin.client.d.ts.map +1 -1
- package/dist/plugin/transformer/plugin.client.js +5 -96
- package/dist/plugin/transformer/plugin.server.d.ts +2 -29
- package/dist/plugin/transformer/plugin.server.d.ts.map +1 -1
- package/dist/plugin/transformer/plugin.server.js +5 -96
- package/dist/plugin/transformer/transformerEnv.d.ts +15 -0
- package/dist/plugin/transformer/transformerEnv.d.ts.map +1 -0
- package/dist/plugin/transformer/transformerEnv.js +26 -0
- package/dist/plugin/types.d.ts +366 -140
- package/dist/plugin/types.d.ts.map +1 -1
- package/dist/plugin/types.js +1 -2
- package/dist/plugin/utils/callServer.d.ts +1 -1
- package/dist/plugin/utils/callServer.d.ts.map +1 -1
- package/dist/plugin/utils/createCallServer.d.ts +1 -1
- package/dist/plugin/utils/createCallServer.d.ts.map +1 -1
- package/dist/plugin/utils/createCallServer.js +4 -9
- package/dist/plugin/utils/createReactFetcher.d.ts +43 -2
- package/dist/plugin/utils/createReactFetcher.d.ts.map +1 -1
- package/dist/plugin/utils/createReactFetcher.js +14 -3
- package/dist/plugin/utils/envUrls.node.js +11 -12
- package/dist/plugin/utils/index.client.d.ts +8 -0
- package/dist/plugin/utils/index.client.d.ts.map +1 -0
- package/dist/plugin/utils/index.client.js +8 -0
- package/dist/plugin/utils/index.d.ts +1 -0
- package/dist/plugin/utils/index.d.ts.map +1 -1
- package/dist/plugin/utils/index.js +3 -2
- package/dist/plugin/utils/index.server.d.ts +6 -0
- package/dist/plugin/utils/index.server.d.ts.map +1 -0
- package/dist/plugin/utils/index.server.js +8 -0
- package/dist/plugin/utils/routeToURL.d.ts.map +1 -1
- package/dist/plugin/utils/routeToURL.js +4 -4
- package/dist/plugin/utils/urls.d.ts +1 -1
- package/dist/plugin/utils/urls.d.ts.map +1 -1
- package/dist/plugin/utils/urls.js +29 -8
- package/dist/plugin/utils/useRscHmr.d.ts +39 -0
- package/dist/plugin/utils/useRscHmr.d.ts.map +1 -0
- package/dist/plugin/utils/useRscHmr.js +27 -0
- package/dist/plugin/vendor/vendor.client.d.ts +3 -3
- package/dist/plugin/vendor/vendor.client.d.ts.map +1 -1
- package/dist/plugin/vendor/vendor.client.js +7 -6
- package/dist/plugin/vendor/vendor.d.ts +1 -1
- package/dist/plugin/vendor/vendor.d.ts.map +1 -1
- package/dist/plugin/vendor/vendor.js +4 -6
- package/dist/plugin/vendor/vendor.server.d.ts +4 -2
- package/dist/plugin/vendor/vendor.server.d.ts.map +1 -1
- package/dist/plugin/vendor/vendor.server.js +2 -3
- package/dist/plugin/vendor/vendor.static.d.ts +4 -0
- package/dist/plugin/vendor/vendor.static.d.ts.map +1 -0
- package/dist/plugin/vendor/vendor.static.js +15 -0
- package/dist/plugin/worker/createWorker.d.ts +16 -5
- package/dist/plugin/worker/createWorker.d.ts.map +1 -1
- package/dist/plugin/worker/createWorker.js +207 -30
- package/dist/plugin/worker/html/handleHtmlRender.d.ts +14 -0
- package/dist/plugin/worker/html/handleHtmlRender.d.ts.map +1 -0
- package/dist/plugin/worker/html/handleHtmlRender.js +190 -0
- package/dist/plugin/worker/html/html-worker.development.js +9 -26
- package/dist/plugin/worker/html/html-worker.js +4 -4
- package/dist/plugin/worker/html/html-worker.production.js +7 -13
- package/dist/plugin/worker/html/index.d.ts +1 -1
- package/dist/plugin/worker/html/index.js +6 -2
- package/dist/plugin/worker/html/messageHandler.d.ts +1 -1
- package/dist/plugin/worker/html/messageHandler.d.ts.map +1 -1
- package/dist/plugin/worker/html/messageHandler.js +291 -104
- package/dist/plugin/worker/html/state.d.ts +10 -0
- package/dist/plugin/worker/html/state.d.ts.map +1 -0
- package/dist/plugin/worker/html/state.js +28 -0
- package/dist/plugin/worker/html/types.d.ts +52 -23
- package/dist/plugin/worker/html/types.d.ts.map +1 -1
- package/dist/plugin/worker/index.js +1 -1
- package/dist/plugin/worker/rsc/createBundleLoader.d.ts +22 -0
- package/dist/plugin/worker/rsc/createBundleLoader.d.ts.map +1 -0
- package/dist/plugin/worker/rsc/createBundleLoader.js +55 -0
- package/dist/plugin/worker/rsc/createRscWorkerLoader.d.ts +23 -0
- package/dist/plugin/worker/rsc/createRscWorkerLoader.d.ts.map +1 -0
- package/dist/plugin/worker/rsc/createRscWorkerLoader.js +79 -0
- package/dist/plugin/worker/rsc/handleRscRender.d.ts +32 -0
- package/dist/plugin/worker/rsc/handleRscRender.d.ts.map +1 -0
- package/dist/plugin/worker/rsc/handleRscRender.js +349 -0
- package/dist/plugin/worker/rsc/handlers.d.ts +8 -2
- package/dist/plugin/worker/rsc/handlers.d.ts.map +1 -1
- package/dist/plugin/worker/rsc/handlers.js +137 -200
- package/dist/plugin/worker/rsc/hydrateRscRenderMessage.d.ts +118 -0
- package/dist/plugin/worker/rsc/hydrateRscRenderMessage.d.ts.map +1 -0
- package/dist/plugin/worker/rsc/hydrateRscRenderMessage.js +61 -0
- package/dist/plugin/worker/rsc/messageHandler.d.ts +1 -1
- package/dist/plugin/worker/rsc/messageHandler.d.ts.map +1 -1
- package/dist/plugin/worker/rsc/messageHandler.js +927 -49
- package/dist/plugin/worker/rsc/rsc-worker.development.js +153 -148
- package/dist/plugin/worker/rsc/rsc-worker.js +2 -3
- package/dist/plugin/worker/rsc/rsc-worker.production.js +238 -42
- package/dist/plugin/worker/rsc/state.d.ts +6 -0
- package/dist/plugin/worker/rsc/state.d.ts.map +1 -1
- package/dist/plugin/worker/rsc/state.js +37 -5
- package/dist/plugin/worker/rsc/types.d.ts +73 -12
- package/dist/plugin/worker/rsc/types.d.ts.map +1 -1
- package/dist/plugin/worker/rsc/workerUserOptions.d.ts +10 -0
- package/dist/plugin/worker/rsc/workerUserOptions.d.ts.map +1 -0
- package/dist/plugin/worker/rsc/workerUserOptions.js +39 -0
- package/dist/plugin/worker/sendMessage.d.ts +2 -3
- package/dist/plugin/worker/sendMessage.d.ts.map +1 -1
- package/dist/plugin/worker/sendMessage.js +24 -38
- package/dist/plugin/worker/types.d.ts +42 -56
- package/dist/plugin/worker/types.d.ts.map +1 -1
- package/dist/plugin/worker/worker-handlers.server.d.ts +2 -0
- package/dist/plugin/worker/worker-handlers.server.d.ts.map +1 -0
- package/dist/plugin/worker/worker-handlers.server.js +1 -0
- package/dist/server.d.ts +5 -1
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +4 -6
- package/dist/static.js +11 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +103 -28
- package/plugin/bundle/bundles.ts +22 -0
- package/plugin/bundle/deferredStaticGeneration.ts +48 -0
- package/plugin/bundle/manifests.ts +73 -0
- package/plugin/components/css.tsx +3 -7
- package/plugin/components/html.tsx +4 -3
- package/plugin/components/index.ts +1 -1
- package/plugin/components/root.tsx +3 -3
- package/plugin/config/autoDiscover/createGlobAutoDiscover.ts +10 -5
- package/plugin/config/autoDiscover/pageAndPropFiles.ts +4 -2
- package/plugin/config/autoDiscover/resolveAutoDiscover.ts +64 -79
- package/plugin/config/autoDiscover/resolveBuildPages.ts +181 -69
- package/plugin/config/createHandlerOptions.client.ts +403 -0
- package/plugin/config/createHandlerOptions.server.ts +477 -0
- package/plugin/config/createHandlerOptions.ts +46 -0
- package/plugin/config/createHandlerOptions.types.ts +119 -0
- package/plugin/config/createModuleID.ts +201 -10
- package/plugin/config/defaults.tsx +58 -9
- package/plugin/config/envPrefixFromConfig.ts +10 -0
- package/plugin/config/getCondition.ts +267 -10
- package/plugin/{getNodeEnv.ts → config/getNodeEnv.ts} +4 -2
- package/plugin/config/index.ts +60 -1
- package/plugin/config/resolveDirectiveMatcher.ts +13 -34
- package/plugin/config/resolveEnv.ts +3 -8
- package/plugin/config/resolveOptions.ts +295 -77
- package/plugin/config/resolvePages.ts +1 -1
- package/plugin/config/resolvePatternWithValues.ts +6 -26
- package/plugin/config/resolveUrlOption.ts +2 -2
- package/plugin/config/resolveUserConfig.ts +358 -133
- package/plugin/config/stashedOptionsState.ts +144 -0
- package/plugin/dev-server/cleanupServerAction.client.ts +47 -0
- package/plugin/dev-server/cleanupServerAction.server.ts +24 -0
- package/plugin/dev-server/cleanupServerAction.ts +8 -0
- package/plugin/dev-server/configureReactServer.client.ts +107 -0
- package/plugin/dev-server/configureReactServer.server.ts +558 -0
- package/plugin/dev-server/configureReactServer.ts +8 -0
- package/plugin/dev-server/configureRequestHandler.client.ts +382 -0
- package/plugin/dev-server/configureRequestHandler.server.ts +46 -0
- package/plugin/dev-server/configureRequestHandler.ts +8 -0
- package/plugin/dev-server/handleServerAction.client.ts +126 -0
- package/plugin/dev-server/handleServerAction.server.ts +10 -0
- package/plugin/dev-server/handleServerAction.ts +8 -0
- package/plugin/dev-server/index.client.ts +6 -0
- package/plugin/dev-server/index.server.ts +6 -0
- package/plugin/dev-server/index.ts +20 -0
- package/plugin/dev-server/plugin.client.ts +160 -0
- package/plugin/dev-server/plugin.server.ts +133 -0
- package/plugin/dev-server/restartWorker.client.ts +155 -0
- package/plugin/dev-server/restartWorker.server.ts +108 -0
- package/plugin/dev-server/restartWorker.ts +8 -0
- package/plugin/dev-server/types.ts +78 -0
- package/plugin/dev-server/virtualRscHmrPlugin.ts +82 -0
- package/plugin/env/createConfigEnv.ts +27 -8
- package/plugin/env/createEnvPlugin.ts +76 -0
- package/plugin/env/getArgValue.ts +1 -1
- package/plugin/env/getEnvKey.ts +20 -1
- package/plugin/env/index.ts +10 -0
- package/plugin/env/plugin.client.ts +3 -0
- package/plugin/env/plugin.server.ts +4 -0
- package/plugin/env/plugin.ts +48 -103
- package/plugin/environments/createBuildEventPlugin.ts +117 -0
- package/plugin/environments/createEnvironmentPlugin.ts +332 -0
- package/plugin/environments/hashCoordination.ts +39 -0
- package/plugin/environments/resolveEnvironmentConfig.ts +320 -0
- package/plugin/error/assertPanic.ts +9 -0
- package/plugin/error/handleError.ts +63 -0
- package/plugin/error/index.ts +4 -1
- package/plugin/error/logError.ts +63 -42
- package/plugin/error/panicThresholdHandler.ts +52 -0
- package/plugin/error/serializeError.ts +36 -11
- package/plugin/error/serializeErrorInfo.ts +17 -0
- package/plugin/error/setupGlobalErrorHandler.ts +71 -0
- package/plugin/error/shouldPanic.ts +14 -0
- package/plugin/error/toError.ts +59 -19
- package/plugin/error/types.ts +32 -0
- package/plugin/helpers/README.md +112 -0
- package/plugin/helpers/collectManifestCss.ts +24 -5
- package/plugin/helpers/collectViteModuleGraphCss.ts +83 -9
- package/plugin/helpers/createBufferedRscStream.ts +194 -0
- package/plugin/helpers/createCssProps.tsx +22 -19
- package/plugin/helpers/createElementWithReact.tsx +121 -0
- package/plugin/helpers/createPatternMatcher.ts +100 -0
- package/plugin/helpers/createRscRenderHelpers.ts +77 -0
- package/plugin/helpers/createSafePageComponent.ts +64 -0
- package/plugin/helpers/createSerializableHandlerOptions.ts +183 -0
- package/plugin/helpers/createSharedLoader.ts +207 -0
- package/plugin/helpers/createUnifiedCssProcessor.ts +175 -0
- package/plugin/helpers/getBundleManifest.ts +2 -3
- package/plugin/helpers/getRouteFiles.ts +28 -23
- package/plugin/helpers/handleServerAction.client.ts +145 -0
- package/plugin/helpers/handleServerAction.server.ts +151 -0
- package/plugin/helpers/handleServerAction.ts +19 -79
- package/plugin/helpers/handleServerActionHelper.ts +270 -0
- package/plugin/helpers/headlessStreamReuseHandler.ts +48 -0
- package/plugin/helpers/headlessStreamState.ts +122 -0
- package/plugin/helpers/hydrateUserOptions.ts +2 -2
- package/plugin/helpers/index.ts +32 -5
- package/plugin/helpers/logRenderStart.ts +26 -0
- package/plugin/helpers/mergeMessageWithDefaults.ts +80 -0
- package/plugin/helpers/pipeToResponse.ts +77 -0
- package/plugin/helpers/requestInfo.ts +9 -3
- package/plugin/helpers/resolveComponents.client.ts +183 -0
- package/plugin/helpers/resolveModuleFromManifest.ts +99 -0
- package/plugin/helpers/resolvePageAndProps.ts +237 -50
- package/plugin/helpers/resolveRenderUrl.ts +26 -0
- package/plugin/helpers/resolveStreamElements.client.ts +50 -0
- package/plugin/helpers/resolveStreamElements.server.ts +43 -0
- package/plugin/helpers/resolveStreamElements.ts +13 -0
- package/plugin/helpers/resolveStreamElements.types.ts +29 -0
- package/plugin/helpers/resolveVirtualAndNodeModules.ts +75 -0
- package/plugin/helpers/resolveWithDefaultRootAndHtml.ts +25 -0
- package/plugin/helpers/serializeUserOptions.ts +37 -15
- package/plugin/helpers/tryManifest.ts +15 -6
- package/plugin/helpers/validateRscRenderMessage.ts +13 -0
- package/plugin/helpers/workerCleanup.ts +85 -0
- package/plugin/helpers/workerManager.ts +16 -0
- package/plugin/index.ts +6 -2
- package/plugin/loader/createDefaultLoader.ts +0 -21
- package/plugin/loader/createTransformer.ts +231 -37
- package/plugin/loader/directives/analyzeDirectives.ts +163 -73
- package/plugin/loader/directives/analyzeModule.ts +18 -9
- package/plugin/loader/env-loader.ts +3 -3
- package/plugin/loader/react-loader.ts +133 -86
- package/plugin/loader/transformClientModule.ts +85 -23
- package/plugin/loader/transformModule.ts +101 -21
- package/plugin/loader/transformModuleIfNeeded.ts +20 -23
- package/plugin/loader/transformNonServerEnvironment.ts +21 -13
- package/plugin/loader/transformServerModule.ts +86 -22
- package/plugin/loader/types.ts +22 -7
- package/plugin/metrics/collectStreamMetrics.ts +1 -2
- package/plugin/metrics/convertStreamMetrics.ts +28 -0
- package/plugin/metrics/createModuleResolutionMetrics.ts +38 -0
- package/plugin/metrics/createRenderMetrics.ts +46 -13
- package/plugin/metrics/createStreamMetrics.ts +16 -6
- package/plugin/metrics/createWorkerStartupMetrics.ts +38 -0
- package/plugin/metrics/formatMetrics.ts +5 -33
- package/plugin/metrics/index.ts +6 -3
- package/plugin/metrics/metricWatcher.ts +216 -0
- package/plugin/metrics/types.ts +87 -8
- package/plugin/orchestrator/createPluginOrchestrator.client.ts +47 -0
- package/plugin/orchestrator/createPluginOrchestrator.server.ts +55 -0
- package/plugin/orchestrator/createPluginOrchestrator.ts +29 -0
- package/plugin/orchestrator/index.ts +1 -0
- package/plugin/orchestrator/resolveStrategy.ts +53 -0
- package/plugin/orchestrator/types.ts +24 -0
- package/plugin/plugin.client.ts +29 -34
- package/plugin/plugin.server.ts +36 -42
- package/plugin/plugin.ts +8 -2
- package/plugin/process-env.ts +3 -0
- package/plugin/react-client/createMessageHandlers.ts +9 -34
- package/plugin/react-client/index.client.ts +1 -0
- package/plugin/react-client/index.server.ts +1 -0
- package/plugin/react-client/index.ts +13 -4
- package/plugin/react-client/plugin.client.ts +124 -0
- package/plugin/react-client/plugin.server.ts +108 -0
- package/plugin/react-client/plugin.ts +13 -152
- package/plugin/react-client/types.ts +95 -0
- package/plugin/react-server/index.client.ts +1 -0
- package/plugin/react-server/index.server.ts +1 -0
- package/plugin/react-server/index.ts +13 -1
- package/plugin/react-server/plugin.client.ts +54 -0
- package/plugin/react-server/plugin.server.ts +27 -0
- package/plugin/react-server/plugin.ts +8 -183
- package/plugin/react-server/types.ts +24 -0
- package/plugin/react-static/collectHtmlContent.ts +131 -0
- package/plugin/react-static/collectRscContent.ts +92 -49
- package/plugin/react-static/configurePreviewServer.ts +8 -18
- package/plugin/react-static/createBuildLoader.client.ts +7 -0
- package/plugin/react-static/createBuildLoader.server.ts +333 -0
- package/plugin/react-static/createBuildLoader.ts +8 -300
- package/plugin/react-static/fileWriter.ts +303 -64
- package/plugin/react-static/index.client.ts +6 -0
- package/plugin/react-static/index.server.ts +6 -0
- package/plugin/react-static/index.ts +25 -1
- package/plugin/react-static/plugin.client.ts +932 -0
- package/plugin/react-static/plugin.server.ts +713 -0
- package/plugin/react-static/plugin.ts +8 -446
- package/plugin/react-static/processCssFilesForPages.ts +148 -0
- package/plugin/react-static/renderPage.client.ts +640 -0
- package/plugin/react-static/renderPage.server.ts +655 -0
- package/plugin/react-static/renderPage.ts +10 -160
- package/plugin/react-static/renderPages.ts +736 -139
- package/plugin/react-static/renderPagesBatched.ts +264 -0
- package/plugin/react-static/renderStreams.ts +12 -16
- package/plugin/react-static/rscToHtmlStream.client.ts +61 -0
- package/plugin/react-static/rscToHtmlStream.server.ts +66 -0
- package/plugin/react-static/rscToHtmlStream.ts +8 -80
- package/plugin/react-static/temporaryReferences.client.ts +1 -0
- package/plugin/react-static/temporaryReferences.server.ts +5 -0
- package/plugin/react-static/temporaryReferences.ts +11 -2
- package/plugin/react-static/types.ts +202 -8
- package/plugin/root.ts +1 -3
- package/plugin/stream/MessagePortReadable.ts +131 -0
- package/plugin/stream/MessagePortWritable.ts +104 -0
- package/plugin/stream/createFromNodeStream.client.ts +90 -0
- package/plugin/stream/createFromNodeStream.server.ts +30 -0
- package/plugin/stream/createFromNodeStream.ts +13 -0
- package/plugin/stream/createFromNodeStream.types.ts +53 -0
- package/plugin/stream/createHtmlStream.client.ts +47 -0
- package/plugin/stream/createHtmlStream.server.ts +312 -0
- package/plugin/stream/createHtmlStream.ts +13 -0
- package/plugin/stream/createHtmlStream.types.ts +63 -0
- package/plugin/stream/createMainThreadHandlers.ts +44 -0
- package/plugin/stream/createMessageChannels.ts +52 -0
- package/plugin/stream/createRenderToPipeableStreamHandler.client.ts +224 -0
- package/plugin/stream/createRenderToPipeableStreamHandler.server.ts +358 -0
- package/plugin/stream/createRenderToPipeableStreamHandler.ts +13 -0
- package/plugin/stream/createRenderToPipeableStreamHandler.types.ts +69 -0
- package/plugin/stream/createRscStream.client.ts +122 -0
- package/plugin/stream/createRscStream.server.ts +188 -0
- package/plugin/stream/createRscStream.ts +8 -0
- package/plugin/stream/createRscStream.types.ts +168 -0
- package/plugin/stream/createRscStream.utils.ts +171 -0
- package/plugin/stream/createRscWorkerStream.ts +178 -0
- package/plugin/stream/handleRscStream.client.ts +214 -0
- package/plugin/stream/handleRscStream.server.ts +82 -0
- package/plugin/stream/handleRscStream.ts +11 -0
- package/plugin/stream/handleRscStream.types.ts +70 -0
- package/plugin/stream/index.client.ts +15 -0
- package/plugin/stream/index.server.ts +15 -0
- package/plugin/stream/index.ts +137 -0
- package/plugin/stream/renderRscStream.server.ts +182 -0
- package/plugin/stream/renderRscStream.types.ts +43 -0
- package/plugin/stream/renderRscStreamHelpers.server.ts +88 -0
- package/plugin/stream/setMaxListeners.ts +30 -0
- package/plugin/transformer/README.md +2 -381
- package/plugin/transformer/createTransformerPlugin.ts +388 -0
- package/plugin/transformer/plugin.client.ts +6 -141
- package/plugin/transformer/plugin.server.ts +6 -142
- package/plugin/transformer/transformerEnv.ts +49 -0
- package/plugin/types/react-server-dom-esm.d.ts +269 -110
- package/plugin/types/virtual-rsc-hmr.d.ts +21 -0
- package/plugin/types.ts +636 -223
- package/plugin/utils/createCallServer.ts +8 -18
- package/plugin/utils/createReactFetcher.ts +87 -5
- package/plugin/utils/env.ts +1 -1
- package/plugin/utils/index.client.ts +8 -0
- package/plugin/utils/index.server.ts +8 -0
- package/plugin/utils/index.ts +5 -1
- package/plugin/utils/routeToURL.ts +3 -4
- package/plugin/utils/urls.ts +40 -8
- package/plugin/utils/useRscHmr.ts +72 -0
- package/plugin/vendor/vendor.client.ts +9 -7
- package/plugin/vendor/vendor.server.ts +5 -4
- package/plugin/vendor/vendor.static.ts +12 -0
- package/plugin/vendor/vendor.ts +10 -5
- package/plugin/worker/createWorker.ts +283 -41
- package/plugin/worker/html/README.md +2 -65
- package/plugin/worker/html/handleHtmlRender.ts +245 -0
- package/plugin/worker/html/html-worker.development.tsx +5 -17
- package/plugin/worker/html/html-worker.production.tsx +1 -1
- package/plugin/worker/html/html-worker.ts +5 -5
- package/plugin/worker/html/index.ts +6 -6
- package/plugin/worker/html/messageHandler.tsx +317 -98
- package/plugin/worker/html/state.ts +38 -0
- package/plugin/worker/html/types.ts +108 -35
- package/plugin/worker/rsc/README.md +2 -257
- package/plugin/worker/rsc/createBundleLoader.ts +92 -0
- package/plugin/worker/rsc/createRscWorkerLoader.ts +104 -0
- package/plugin/worker/rsc/handleRscRender.ts +510 -0
- package/plugin/worker/rsc/handlers.ts +159 -238
- package/plugin/worker/rsc/hydrateRscRenderMessage.ts +118 -0
- package/plugin/worker/rsc/messageHandler.tsx +1288 -58
- package/plugin/worker/rsc/rsc-worker.development.ts +198 -185
- package/plugin/worker/rsc/rsc-worker.production.ts +302 -64
- package/plugin/worker/rsc/rsc-worker.tsx +3 -5
- package/plugin/worker/rsc/state.ts +54 -2
- package/plugin/worker/rsc/types.ts +110 -32
- package/plugin/worker/rsc/workerUserOptions.ts +63 -0
- package/plugin/worker/sendMessage.ts +33 -53
- package/plugin/worker/types.ts +94 -91
- package/scripts/generate-toc.mjs +311 -0
- package/scripts/remove-toc.mjs +51 -0
- package/scripts/test-both.sh +82 -0
- package/dist/plugin/config/resolveDevServerConfig.d.ts +0 -2
- package/dist/plugin/config/resolveDevServerConfig.d.ts.map +0 -1
- package/dist/plugin/getNodeEnv.d.ts.map +0 -1
- package/dist/plugin/getNodeEnv.js +0 -17
- package/dist/plugin/helpers/collectBundleManifestCss.d.ts +0 -2
- package/dist/plugin/helpers/collectBundleManifestCss.d.ts.map +0 -1
- package/dist/plugin/helpers/collectBundleManifestCss.js +0 -2
- package/dist/plugin/helpers/createEventHandler.d.ts +0 -22
- package/dist/plugin/helpers/createEventHandler.d.ts.map +0 -1
- package/dist/plugin/helpers/createEventHandler.js +0 -36
- package/dist/plugin/helpers/createHandler.d.ts +0 -14
- package/dist/plugin/helpers/createHandler.d.ts.map +0 -1
- package/dist/plugin/helpers/createHandler.js +0 -75
- package/dist/plugin/helpers/createRscStream.d.ts +0 -26
- package/dist/plugin/helpers/createRscStream.d.ts.map +0 -1
- package/dist/plugin/helpers/createRscStream.js +0 -178
- package/dist/plugin/helpers/defaultFileWriter.d.ts +0 -2
- package/dist/plugin/helpers/defaultFileWriter.d.ts.map +0 -1
- package/dist/plugin/helpers/resolveComponents.d.ts +0 -27
- package/dist/plugin/helpers/resolveComponents.d.ts.map +0 -1
- package/dist/plugin/helpers/resolveComponents.js +0 -146
- package/dist/plugin/helpers/resolveUserComponents.d.ts +0 -33
- package/dist/plugin/helpers/resolveUserComponents.d.ts.map +0 -1
- package/dist/plugin/helpers/resolveUserComponents.js +0 -163
- package/dist/plugin/react-client/cleanupWorkerServerAction.d.ts +0 -11
- package/dist/plugin/react-client/cleanupWorkerServerAction.d.ts.map +0 -1
- package/dist/plugin/react-client/cleanupWorkerServerAction.js +0 -18
- package/dist/plugin/react-client/configureWorkerRequestHandler.d.ts +0 -17
- package/dist/plugin/react-client/configureWorkerRequestHandler.d.ts.map +0 -1
- package/dist/plugin/react-client/configureWorkerRequestHandler.js +0 -203
- package/dist/plugin/react-client/createWorkerStream.d.ts +0 -26
- package/dist/plugin/react-client/createWorkerStream.d.ts.map +0 -1
- package/dist/plugin/react-client/createWorkerStream.js +0 -163
- package/dist/plugin/react-client/handleWorkerRscStream.d.ts +0 -24
- package/dist/plugin/react-client/handleWorkerRscStream.d.ts.map +0 -1
- package/dist/plugin/react-client/handleWorkerRscStream.js +0 -91
- package/dist/plugin/react-client/handleWorkerServerAction.d.ts +0 -13
- package/dist/plugin/react-client/handleWorkerServerAction.d.ts.map +0 -1
- package/dist/plugin/react-client/handleWorkerServerAction.js +0 -62
- package/dist/plugin/react-client/restartWorker.d.ts +0 -12
- package/dist/plugin/react-client/restartWorker.d.ts.map +0 -1
- package/dist/plugin/react-client/restartWorker.js +0 -69
- package/dist/plugin/react-server/configureReactServer.d.ts +0 -10
- package/dist/plugin/react-server/configureReactServer.d.ts.map +0 -1
- package/dist/plugin/react-server/configureReactServer.js +0 -209
- package/dist/plugin/react-server/handleServerAction.d.ts +0 -6
- package/dist/plugin/react-server/handleServerAction.d.ts.map +0 -1
- package/dist/plugin/react-server/handleServerAction.js +0 -159
- package/dist/plugin/react-static/collectHtmlWorkerContent.d.ts +0 -25
- package/dist/plugin/react-static/collectHtmlWorkerContent.d.ts.map +0 -1
- package/dist/plugin/react-static/collectHtmlWorkerContent.js +0 -94
- package/dist/plugin/worker/html/createHtmlWorkerRenderState.d.ts +0 -12
- package/dist/plugin/worker/html/createHtmlWorkerRenderState.d.ts.map +0 -1
- package/dist/plugin/worker/html/createHtmlWorkerRenderState.js +0 -130
- package/dist/plugin/worker/html/sendHtmlWorkerMessage.d.ts +0 -3
- package/dist/plugin/worker/html/sendHtmlWorkerMessage.d.ts.map +0 -1
- package/dist/plugin/worker/html/sendHtmlWorkerMessage.js +0 -2
- package/dist/plugin/worker/rsc/handleRender.d.ts +0 -6
- package/dist/plugin/worker/rsc/handleRender.d.ts.map +0 -1
- package/dist/plugin/worker/rsc/handleRender.js +0 -137
- package/dist/plugin/worker/rsc/sendRscWorkerMessage.d.ts +0 -3
- package/dist/plugin/worker/rsc/sendRscWorkerMessage.d.ts.map +0 -1
- package/dist/plugin/worker/rsc/sendRscWorkerMessage.js +0 -11
- package/dist/plugin/worker/rsc/userOptions.d.ts +0 -2
- package/dist/plugin/worker/rsc/userOptions.d.ts.map +0 -1
- package/dist/plugin/worker/rsc/userOptions.js +0 -16
- package/plugin/helpers/collectBundleManifestCss.ts +0 -1
- package/plugin/helpers/createEventHandler.ts +0 -44
- package/plugin/helpers/createHandler.ts +0 -97
- package/plugin/helpers/createRscStream.tsx +0 -226
- package/plugin/helpers/defaultFileWriter.ts +0 -0
- package/plugin/helpers/resolveComponents.ts +0 -202
- package/plugin/helpers/resolveUserComponents.ts +0 -190
- package/plugin/react-client/cleanupWorkerServerAction.ts +0 -33
- package/plugin/react-client/configureWorkerRequestHandler.ts +0 -249
- package/plugin/react-client/createWorkerStream.ts +0 -210
- package/plugin/react-client/handleWorkerRscStream.ts +0 -145
- package/plugin/react-client/handleWorkerServerAction.ts +0 -96
- package/plugin/react-client/restartWorker.ts +0 -90
- package/plugin/react-server/configureReactServer.ts +0 -235
- package/plugin/react-server/handleServerAction.ts +0 -192
- package/plugin/react-static/collectHtmlWorkerContent.ts +0 -147
- package/plugin/worker/html/createHtmlWorkerRenderState.tsx +0 -142
- package/plugin/worker/html/sendHtmlWorkerMessage.ts +0 -8
- package/plugin/worker/rsc/handleRender.ts +0 -168
- package/plugin/worker/rsc/sendRscWorkerMessage.ts +0 -7
- package/plugin/worker/rsc/userOptions.ts +0 -7
- /package/dist/plugin/config/{resolveDevServerConfig.js → createHandlerOptions.types.js} +0 -0
- /package/dist/plugin/{helpers/defaultFileWriter.js → dev-server/types.js} +0 -0
- /package/plugin/{config/resolveDevServerConfig.tsx → worker/worker-handlers.server.ts} +0 -0
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import type { CssContent, ResolvedUserOptions } from "../types.js";
|
|
2
|
+
import type { Logger } from "vite";
|
|
3
|
+
/**
|
|
4
|
+
* Unified CSS Processor
|
|
5
|
+
*
|
|
6
|
+
* PURPOSE: Consolidate CSS processing logic used across:
|
|
7
|
+
* - processCssFilesForPages (plugin.server.ts, plugin.client.ts)
|
|
8
|
+
* - RSC worker message handler (messageHandler.tsx)
|
|
9
|
+
* - HTML worker message handler
|
|
10
|
+
*
|
|
11
|
+
* This helper provides consistent CSS processing behavior across all environments
|
|
12
|
+
* and reduces code duplication.
|
|
13
|
+
*/
|
|
14
|
+
export interface UnifiedCssProcessorOptions {
|
|
15
|
+
/** User options for CSS processing */
|
|
16
|
+
userOptions: ResolvedUserOptions;
|
|
17
|
+
/** Logger for verbose output */
|
|
18
|
+
logger?: Logger;
|
|
19
|
+
/** Whether to enable verbose logging */
|
|
20
|
+
verbose?: boolean;
|
|
21
|
+
/** Static build output directory */
|
|
22
|
+
staticOutDir?: string;
|
|
23
|
+
/** Static manifest for CSS file resolution */
|
|
24
|
+
staticManifest?: any;
|
|
25
|
+
/** Bundle containing CSS files */
|
|
26
|
+
bundle?: any;
|
|
27
|
+
}
|
|
28
|
+
export interface CssProcessingResult {
|
|
29
|
+
/** CSS files organized by page/route */
|
|
30
|
+
cssFilesByPage: Map<string, Map<string, CssContent>>;
|
|
31
|
+
/** Global CSS files */
|
|
32
|
+
globalCss: Map<string, CssContent>;
|
|
33
|
+
/** Combined CSS files for a specific route */
|
|
34
|
+
combinedCssFiles: Map<string, CssContent>;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Processes CSS files from static build output
|
|
38
|
+
*
|
|
39
|
+
* @param cssInputs - CSS file inputs from manifest
|
|
40
|
+
* @param options - Processing options
|
|
41
|
+
* @returns Processed CSS content map
|
|
42
|
+
*/
|
|
43
|
+
export declare function processCssFromStaticBuild(cssInputs: Record<string, string>, options: UnifiedCssProcessorOptions): Map<string, CssContent>;
|
|
44
|
+
/**
|
|
45
|
+
* Combines CSS files from multiple sources
|
|
46
|
+
*
|
|
47
|
+
* @param sources - Array of CSS file maps to combine
|
|
48
|
+
* @returns Combined CSS file map
|
|
49
|
+
*/
|
|
50
|
+
export declare function combineCssFiles(...sources: Array<Map<string, CssContent> | undefined>): Map<string, CssContent>;
|
|
51
|
+
/**
|
|
52
|
+
* Processes inline CSS content for stateful systems
|
|
53
|
+
*
|
|
54
|
+
* @param cssFiles - CSS files map
|
|
55
|
+
* @param addCssFileContent - Function to add CSS content to state
|
|
56
|
+
* @param userOptions - User options
|
|
57
|
+
*/
|
|
58
|
+
export declare function processInlineCssForState(cssFiles: Map<string, CssContent>, addCssFileContent: (id: string, content: string, userOptions: ResolvedUserOptions) => void, userOptions: ResolvedUserOptions): void;
|
|
59
|
+
/**
|
|
60
|
+
* Creates a unified CSS processor instance
|
|
61
|
+
*
|
|
62
|
+
* @param options - Processing options
|
|
63
|
+
* @returns CSS processor functions
|
|
64
|
+
*/
|
|
65
|
+
export declare function createUnifiedCssProcessor(options: UnifiedCssProcessorOptions): {
|
|
66
|
+
processCssFromStaticBuild: (cssInputs: Record<string, string>) => Map<string, CssContent>;
|
|
67
|
+
combineCssFiles: typeof combineCssFiles;
|
|
68
|
+
processInlineCssForState: typeof processInlineCssForState;
|
|
69
|
+
};
|
|
70
|
+
//# sourceMappingURL=createUnifiedCssProcessor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createUnifiedCssProcessor.d.ts","sourceRoot":"","sources":["../../../plugin/helpers/createUnifiedCssProcessor.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AACnE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,MAAM,CAAC;AAKnC;;;;;;;;;;GAUG;AAEH,MAAM,WAAW,0BAA0B;IACzC,sCAAsC;IACtC,WAAW,EAAE,mBAAmB,CAAC;IACjC,gCAAgC;IAChC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,wCAAwC;IACxC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,oCAAoC;IACpC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,8CAA8C;IAC9C,cAAc,CAAC,EAAE,GAAG,CAAC;IACrB,kCAAkC;IAClC,MAAM,CAAC,EAAE,GAAG,CAAC;CACd;AAED,MAAM,WAAW,mBAAmB;IAClC,wCAAwC;IACxC,cAAc,EAAE,GAAG,CAAC,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC;IACrD,uBAAuB;IACvB,SAAS,EAAE,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;IACnC,8CAA8C;IAC9C,gBAAgB,EAAE,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;CAC3C;AAED;;;;;;GAMG;AACH,wBAAgB,yBAAyB,CACvC,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EACjC,OAAO,EAAE,0BAA0B,GAClC,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,CAkEzB;AAED;;;;;GAKG;AACH,wBAAgB,eAAe,CAC7B,GAAG,OAAO,EAAE,KAAK,CAAC,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,GAAG,SAAS,CAAC,GACrD,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,CAYzB;AAED;;;;;;GAMG;AACH,wBAAgB,wBAAwB,CACtC,QAAQ,EAAE,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,EACjC,iBAAiB,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,mBAAmB,KAAK,IAAI,EAC1F,WAAW,EAAE,mBAAmB,GAC/B,IAAI,CAMN;AAED;;;;;GAKG;AACH,wBAAgB,yBAAyB,CAAC,OAAO,EAAE,0BAA0B;2CAElC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;;;EAKhE"}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* vite-plugin-react-server
|
|
3
|
+
* Copyright (c) Nico Brinkkemper
|
|
4
|
+
* MIT License
|
|
5
|
+
*/
|
|
6
|
+
import { createCssProps } from './createCssProps.js';
|
|
7
|
+
import { readFileSync } from 'node:fs';
|
|
8
|
+
import { join } from 'node:path';
|
|
9
|
+
|
|
10
|
+
function processCssFromStaticBuild(cssInputs, options) {
|
|
11
|
+
const { userOptions, logger, verbose, staticOutDir, staticManifest } = options;
|
|
12
|
+
const cssMap = /* @__PURE__ */ new Map();
|
|
13
|
+
for (const [key] of Object.entries(cssInputs)) {
|
|
14
|
+
if (verbose) {
|
|
15
|
+
logger?.info(`[unified-css] Loading CSS content for ${key}`);
|
|
16
|
+
}
|
|
17
|
+
let cssContent = "";
|
|
18
|
+
if (staticManifest && staticOutDir) {
|
|
19
|
+
const cssFilePath = join(staticOutDir, key);
|
|
20
|
+
try {
|
|
21
|
+
cssContent = readFileSync(cssFilePath, "utf-8");
|
|
22
|
+
if (verbose) {
|
|
23
|
+
logger?.info(`[unified-css] Got CSS from static build file: ${cssFilePath}`);
|
|
24
|
+
}
|
|
25
|
+
} catch (error) {
|
|
26
|
+
if (verbose) {
|
|
27
|
+
logger?.info(`[unified-css] Failed to read CSS file: ${cssFilePath} - ${error}`);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
} else {
|
|
31
|
+
if (verbose) {
|
|
32
|
+
logger?.info(`[unified-css] No static manifest available for CSS file: ${key}`);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
if (verbose) {
|
|
36
|
+
logger?.info(
|
|
37
|
+
`[unified-css] CSS content for ${key}: ${typeof cssContent}, length: ${cssContent?.length}, preview: ${cssContent?.substring(0, 100)}`
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
if (typeof cssContent !== "string" || cssContent === "undefined" || !cssContent) {
|
|
41
|
+
if (verbose) {
|
|
42
|
+
logger?.info(`[unified-css] Skipping CSS file ${key} - invalid content`);
|
|
43
|
+
}
|
|
44
|
+
continue;
|
|
45
|
+
}
|
|
46
|
+
if (cssContent) {
|
|
47
|
+
cssMap.set(
|
|
48
|
+
key,
|
|
49
|
+
createCssProps({
|
|
50
|
+
id: key,
|
|
51
|
+
code: cssContent,
|
|
52
|
+
userOptions
|
|
53
|
+
})
|
|
54
|
+
);
|
|
55
|
+
if (verbose) {
|
|
56
|
+
logger?.info(`[unified-css] Added CSS file ${key} to map`);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
return cssMap;
|
|
61
|
+
}
|
|
62
|
+
function combineCssFiles(...sources) {
|
|
63
|
+
const combined = /* @__PURE__ */ new Map();
|
|
64
|
+
for (const source of sources) {
|
|
65
|
+
if (source) {
|
|
66
|
+
for (const [key, value] of source.entries()) {
|
|
67
|
+
combined.set(key, value);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
return combined;
|
|
72
|
+
}
|
|
73
|
+
function processInlineCssForState(cssFiles, addCssFileContent, userOptions) {
|
|
74
|
+
for (const [id, cssContent] of cssFiles.entries()) {
|
|
75
|
+
if (cssContent.children && typeof cssContent.children === "string") {
|
|
76
|
+
addCssFileContent(id, cssContent.children, userOptions);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
function createUnifiedCssProcessor(options) {
|
|
81
|
+
return {
|
|
82
|
+
processCssFromStaticBuild: (cssInputs) => processCssFromStaticBuild(cssInputs, options),
|
|
83
|
+
combineCssFiles,
|
|
84
|
+
processInlineCssForState
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export { combineCssFiles, createUnifiedCssProcessor, processCssFromStaticBuild, processInlineCssForState };
|
|
89
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3JlYXRlVW5pZmllZENzc1Byb2Nlc3Nvci5qcyIsInNvdXJjZXMiOlsiLi4vLi4vLi4vcGx1Z2luL2hlbHBlcnMvY3JlYXRlVW5pZmllZENzc1Byb2Nlc3Nvci50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgdHlwZSB7IENzc0NvbnRlbnQsIFJlc29sdmVkVXNlck9wdGlvbnMgfSBmcm9tIFwiLi4vdHlwZXMuanNcIjtcbmltcG9ydCB0eXBlIHsgTG9nZ2VyIH0gZnJvbSBcInZpdGVcIjtcbmltcG9ydCB7IGNyZWF0ZUNzc1Byb3BzIH0gZnJvbSBcIi4vY3JlYXRlQ3NzUHJvcHMuanNcIjtcbmltcG9ydCB7IHJlYWRGaWxlU3luYyB9IGZyb20gXCJub2RlOmZzXCI7XG5pbXBvcnQgeyBqb2luIH0gZnJvbSBcIm5vZGU6cGF0aFwiO1xuXG4vKipcbiAqIFVuaWZpZWQgQ1NTIFByb2Nlc3NvclxuICogXG4gKiBQVVJQT1NFOiBDb25zb2xpZGF0ZSBDU1MgcHJvY2Vzc2luZyBsb2dpYyB1c2VkIGFjcm9zczpcbiAqIC0gcHJvY2Vzc0Nzc0ZpbGVzRm9yUGFnZXMgKHBsdWdpbi5zZXJ2ZXIudHMsIHBsdWdpbi5jbGllbnQudHMpXG4gKiAtIFJTQyB3b3JrZXIgbWVzc2FnZSBoYW5kbGVyIChtZXNzYWdlSGFuZGxlci50c3gpXG4gKiAtIEhUTUwgd29ya2VyIG1lc3NhZ2UgaGFuZGxlclxuICogXG4gKiBUaGlzIGhlbHBlciBwcm92aWRlcyBjb25zaXN0ZW50IENTUyBwcm9jZXNzaW5nIGJlaGF2aW9yIGFjcm9zcyBhbGwgZW52aXJvbm1lbnRzXG4gKiBhbmQgcmVkdWNlcyBjb2RlIGR1cGxpY2F0aW9uLlxuICovXG5cbmV4cG9ydCBpbnRlcmZhY2UgVW5pZmllZENzc1Byb2Nlc3Nvck9wdGlvbnMge1xuICAvKiogVXNlciBvcHRpb25zIGZvciBDU1MgcHJvY2Vzc2luZyAqL1xuICB1c2VyT3B0aW9uczogUmVzb2x2ZWRVc2VyT3B0aW9ucztcbiAgLyoqIExvZ2dlciBmb3IgdmVyYm9zZSBvdXRwdXQgKi9cbiAgbG9nZ2VyPzogTG9nZ2VyO1xuICAvKiogV2hldGhlciB0byBlbmFibGUgdmVyYm9zZSBsb2dnaW5nICovXG4gIHZlcmJvc2U/OiBib29sZWFuO1xuICAvKiogU3RhdGljIGJ1aWxkIG91dHB1dCBkaXJlY3RvcnkgKi9cbiAgc3RhdGljT3V0RGlyPzogc3RyaW5nO1xuICAvKiogU3RhdGljIG1hbmlmZXN0IGZvciBDU1MgZmlsZSByZXNvbHV0aW9uICovXG4gIHN0YXRpY01hbmlmZXN0PzogYW55O1xuICAvKiogQnVuZGxlIGNvbnRhaW5pbmcgQ1NTIGZpbGVzICovXG4gIGJ1bmRsZT86IGFueTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBDc3NQcm9jZXNzaW5nUmVzdWx0IHtcbiAgLyoqIENTUyBmaWxlcyBvcmdhbml6ZWQgYnkgcGFnZS9yb3V0ZSAqL1xuICBjc3NGaWxlc0J5UGFnZTogTWFwPHN0cmluZywgTWFwPHN0cmluZywgQ3NzQ29udGVudD4+O1xuICAvKiogR2xvYmFsIENTUyBmaWxlcyAqL1xuICBnbG9iYWxDc3M6IE1hcDxzdHJpbmcsIENzc0NvbnRlbnQ+O1xuICAvKiogQ29tYmluZWQgQ1NTIGZpbGVzIGZvciBhIHNwZWNpZmljIHJvdXRlICovXG4gIGNvbWJpbmVkQ3NzRmlsZXM6IE1hcDxzdHJpbmcsIENzc0NvbnRlbnQ+O1xufVxuXG4vKipcbiAqIFByb2Nlc3NlcyBDU1MgZmlsZXMgZnJvbSBzdGF0aWMgYnVpbGQgb3V0cHV0XG4gKiBcbiAqIEBwYXJhbSBjc3NJbnB1dHMgLSBDU1MgZmlsZSBpbnB1dHMgZnJvbSBtYW5pZmVzdFxuICogQHBhcmFtIG9wdGlvbnMgLSBQcm9jZXNzaW5nIG9wdGlvbnNcbiAqIEByZXR1cm5zIFByb2Nlc3NlZCBDU1MgY29udGVudCBtYXBcbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIHByb2Nlc3NDc3NGcm9tU3RhdGljQnVpbGQoXG4gIGNzc0lucHV0czogUmVjb3JkPHN0cmluZywgc3RyaW5nPixcbiAgb3B0aW9uczogVW5pZmllZENzc1Byb2Nlc3Nvck9wdGlvbnNcbik6IE1hcDxzdHJpbmcsIENzc0NvbnRlbnQ+IHtcbiAgY29uc3QgeyB1c2VyT3B0aW9ucywgbG9nZ2VyLCB2ZXJib3NlLCBzdGF0aWNPdXREaXIsIHN0YXRpY01hbmlmZXN0IH0gPSBvcHRpb25zO1xuICBjb25zdCBjc3NNYXAgPSBuZXcgTWFwPHN0cmluZywgQ3NzQ29udGVudD4oKTtcblxuICBmb3IgKGNvbnN0IFtrZXldIG9mIE9iamVjdC5lbnRyaWVzKGNzc0lucHV0cykpIHtcbiAgICBpZiAodmVyYm9zZSkge1xuICAgICAgbG9nZ2VyPy5pbmZvKGBbdW5pZmllZC1jc3NdIExvYWRpbmcgQ1NTIGNvbnRlbnQgZm9yICR7a2V5fWApO1xuICAgIH1cblxuICAgIC8vIEdldCBDU1MgY29udGVudCBmcm9tIHN0YXRpYyBidWlsZCBvdXRwdXQgZmlsZXNcbiAgICBsZXQgY3NzQ29udGVudCA9IFwiXCI7XG5cbiAgICAvLyBUcnkgdG8gZ2V0IENTUyBmcm9tIHN0YXRpYyBidWlsZCBvdXRwdXQgZGlyZWN0b3J5XG4gICAgaWYgKHN0YXRpY01hbmlmZXN0ICYmIHN0YXRpY091dERpcikge1xuICAgICAgY29uc3QgY3NzRmlsZVBhdGggPSBqb2luKHN0YXRpY091dERpciwga2V5KTtcbiAgICAgIHRyeSB7XG4gICAgICAgIGNzc0NvbnRlbnQgPSByZWFkRmlsZVN5bmMoY3NzRmlsZVBhdGgsICd1dGYtOCcpO1xuICAgICAgICBpZiAodmVyYm9zZSkge1xuICAgICAgICAgIGxvZ2dlcj8uaW5mbyhgW3VuaWZpZWQtY3NzXSBHb3QgQ1NTIGZyb20gc3RhdGljIGJ1aWxkIGZpbGU6ICR7Y3NzRmlsZVBhdGh9YCk7XG4gICAgICAgIH1cbiAgICAgIH0gY2F0Y2ggKGVycm9yKSB7XG4gICAgICAgIGlmICh2ZXJib3NlKSB7XG4gICAgICAgICAgbG9nZ2VyPy5pbmZvKGBbdW5pZmllZC1jc3NdIEZhaWxlZCB0byByZWFkIENTUyBmaWxlOiAke2Nzc0ZpbGVQYXRofSAtICR7ZXJyb3J9YCk7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9IGVsc2Uge1xuICAgICAgaWYgKHZlcmJvc2UpIHtcbiAgICAgICAgbG9nZ2VyPy5pbmZvKGBbdW5pZmllZC1jc3NdIE5vIHN0YXRpYyBtYW5pZmVzdCBhdmFpbGFibGUgZm9yIENTUyBmaWxlOiAke2tleX1gKTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICBpZiAodmVyYm9zZSkge1xuICAgICAgbG9nZ2VyPy5pbmZvKFxuICAgICAgICBgW3VuaWZpZWQtY3NzXSBDU1MgY29udGVudCBmb3IgJHtrZXl9OiAke3R5cGVvZiBjc3NDb250ZW50fSwgbGVuZ3RoOiAke1xuICAgICAgICAgIGNzc0NvbnRlbnQ/Lmxlbmd0aFxuICAgICAgICB9LCBwcmV2aWV3OiAke2Nzc0NvbnRlbnQ/LnN1YnN0cmluZygwLCAxMDApfWBcbiAgICAgICk7XG4gICAgfVxuXG4gICAgaWYgKFxuICAgICAgdHlwZW9mIGNzc0NvbnRlbnQgIT09IFwic3RyaW5nXCIgfHxcbiAgICAgIGNzc0NvbnRlbnQgPT09IFwidW5kZWZpbmVkXCIgfHxcbiAgICAgICFjc3NDb250ZW50XG4gICAgKSB7XG4gICAgICBpZiAodmVyYm9zZSkge1xuICAgICAgICBsb2dnZXI/LmluZm8oYFt1bmlmaWVkLWNzc10gU2tpcHBpbmcgQ1NTIGZpbGUgJHtrZXl9IC0gaW52YWxpZCBjb250ZW50YCk7XG4gICAgICB9XG4gICAgICBjb250aW51ZTtcbiAgICB9XG5cbiAgICBpZiAoY3NzQ29udGVudCkge1xuICAgICAgY3NzTWFwLnNldChcbiAgICAgICAga2V5LFxuICAgICAgICBjcmVhdGVDc3NQcm9wcyh7XG4gICAgICAgICAgaWQ6IGtleSxcbiAgICAgICAgICBjb2RlOiBjc3NDb250ZW50LFxuICAgICAgICAgIHVzZXJPcHRpb25zOiB1c2VyT3B0aW9ucyxcbiAgICAgICAgfSlcbiAgICAgICk7XG4gICAgICBpZiAodmVyYm9zZSkge1xuICAgICAgICBsb2dnZXI/LmluZm8oYFt1bmlmaWVkLWNzc10gQWRkZWQgQ1NTIGZpbGUgJHtrZXl9IHRvIG1hcGApO1xuICAgICAgfVxuICAgIH1cbiAgfVxuXG4gIHJldHVybiBjc3NNYXA7XG59XG5cbi8qKlxuICogQ29tYmluZXMgQ1NTIGZpbGVzIGZyb20gbXVsdGlwbGUgc291cmNlc1xuICogXG4gKiBAcGFyYW0gc291cmNlcyAtIEFycmF5IG9mIENTUyBmaWxlIG1hcHMgdG8gY29tYmluZVxuICogQHJldHVybnMgQ29tYmluZWQgQ1NTIGZpbGUgbWFwXG4gKi9cbmV4cG9ydCBmdW5jdGlvbiBjb21iaW5lQ3NzRmlsZXMoXG4gIC4uLnNvdXJjZXM6IEFycmF5PE1hcDxzdHJpbmcsIENzc0NvbnRlbnQ+IHwgdW5kZWZpbmVkPlxuKTogTWFwPHN0cmluZywgQ3NzQ29udGVudD4ge1xuICBjb25zdCBjb21iaW5lZCA9IG5ldyBNYXA8c3RyaW5nLCBDc3NDb250ZW50PigpO1xuICBcbiAgZm9yIChjb25zdCBzb3VyY2Ugb2Ygc291cmNlcykge1xuICAgIGlmIChzb3VyY2UpIHtcbiAgICAgIGZvciAoY29uc3QgW2tleSwgdmFsdWVdIG9mIHNvdXJjZS5lbnRyaWVzKCkpIHtcbiAgICAgICAgY29tYmluZWQuc2V0KGtleSwgdmFsdWUpO1xuICAgICAgfVxuICAgIH1cbiAgfVxuICBcbiAgcmV0dXJuIGNvbWJpbmVkO1xufVxuXG4vKipcbiAqIFByb2Nlc3NlcyBpbmxpbmUgQ1NTIGNvbnRlbnQgZm9yIHN0YXRlZnVsIHN5c3RlbXNcbiAqIFxuICogQHBhcmFtIGNzc0ZpbGVzIC0gQ1NTIGZpbGVzIG1hcFxuICogQHBhcmFtIGFkZENzc0ZpbGVDb250ZW50IC0gRnVuY3Rpb24gdG8gYWRkIENTUyBjb250ZW50IHRvIHN0YXRlXG4gKiBAcGFyYW0gdXNlck9wdGlvbnMgLSBVc2VyIG9wdGlvbnNcbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIHByb2Nlc3NJbmxpbmVDc3NGb3JTdGF0ZShcbiAgY3NzRmlsZXM6IE1hcDxzdHJpbmcsIENzc0NvbnRlbnQ+LFxuICBhZGRDc3NGaWxlQ29udGVudDogKGlkOiBzdHJpbmcsIGNvbnRlbnQ6IHN0cmluZywgdXNlck9wdGlvbnM6IFJlc29sdmVkVXNlck9wdGlvbnMpID0+IHZvaWQsXG4gIHVzZXJPcHRpb25zOiBSZXNvbHZlZFVzZXJPcHRpb25zXG4pOiB2b2lkIHtcbiAgZm9yIChjb25zdCBbaWQsIGNzc0NvbnRlbnRdIG9mIGNzc0ZpbGVzLmVudHJpZXMoKSkge1xuICAgIGlmIChjc3NDb250ZW50LmNoaWxkcmVuICYmIHR5cGVvZiBjc3NDb250ZW50LmNoaWxkcmVuID09PSAnc3RyaW5nJykge1xuICAgICAgYWRkQ3NzRmlsZUNvbnRlbnQoaWQsIGNzc0NvbnRlbnQuY2hpbGRyZW4sIHVzZXJPcHRpb25zKTtcbiAgICB9XG4gIH1cbn1cblxuLyoqXG4gKiBDcmVhdGVzIGEgdW5pZmllZCBDU1MgcHJvY2Vzc29yIGluc3RhbmNlXG4gKiBcbiAqIEBwYXJhbSBvcHRpb25zIC0gUHJvY2Vzc2luZyBvcHRpb25zXG4gKiBAcmV0dXJucyBDU1MgcHJvY2Vzc29yIGZ1bmN0aW9uc1xuICovXG5leHBvcnQgZnVuY3Rpb24gY3JlYXRlVW5pZmllZENzc1Byb2Nlc3NvcihvcHRpb25zOiBVbmlmaWVkQ3NzUHJvY2Vzc29yT3B0aW9ucykge1xuICByZXR1cm4ge1xuICAgIHByb2Nlc3NDc3NGcm9tU3RhdGljQnVpbGQ6IChjc3NJbnB1dHM6IFJlY29yZDxzdHJpbmcsIHN0cmluZz4pID0+IFxuICAgICAgcHJvY2Vzc0Nzc0Zyb21TdGF0aWNCdWlsZChjc3NJbnB1dHMsIG9wdGlvbnMpLFxuICAgIGNvbWJpbmVDc3NGaWxlcyxcbiAgICBwcm9jZXNzSW5saW5lQ3NzRm9yU3RhdGUsXG4gIH07XG59XG4iXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7O0FBaURPLFNBQVMseUJBQUEsQ0FDZCxXQUNBLE9BQ3lCLEVBQUE7QUFDekIsRUFBQSxNQUFNLEVBQUUsV0FBYSxFQUFBLE1BQUEs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
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getBundleManifest.d.ts","sourceRoot":"","sources":["../../../plugin/helpers/getBundleManifest.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,YAAY,EAEb,MAAM,QAAQ,CAAC;AAChB,OAAO,KAAK,EAAG,aAAa,EAAE,MAAM,MAAM,CAAC;AAC3C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAGnD;;;;;;GAMG;AACH,wBAAgB,iBAAiB,CAAC,GAAG,SAAS,OAAO,EAAE,EACrD,MAAM,EACN,UAAU,GACX,EAAE;IACD,MAAM,EAAE,YAAY,CAAC;IACrB,UAAU,EAAE,eAAe,CAAC;CAC7B,GAAG,GAAG,SAAS,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,GAAG;IAChD,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,GAAG;QAC7B,MAAM,EAAE,MAAM,CAAC;KAChB,CAAA;CACF,
|
|
1
|
+
{"version":3,"file":"getBundleManifest.d.ts","sourceRoot":"","sources":["../../../plugin/helpers/getBundleManifest.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,YAAY,EAEb,MAAM,QAAQ,CAAC;AAChB,OAAO,KAAK,EAAG,aAAa,EAAE,MAAM,MAAM,CAAC;AAC3C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAGnD;;;;;;GAMG;AACH,wBAAgB,iBAAiB,CAAC,GAAG,SAAS,OAAO,EAAE,EACrD,MAAM,EACN,UAAU,GACX,EAAE;IACD,MAAM,EAAE,YAAY,CAAC;IACrB,UAAU,EAAE,eAAe,CAAC;CAC7B,GAAG,GAAG,SAAS,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,GAAG;IAChD,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,GAAG;QAC7B,MAAM,EAAE,MAAM,CAAC;KAChB,CAAA;CACF,CA6GA"}
|
|
@@ -32,8 +32,7 @@ function getBundleManifest({
|
|
|
32
32
|
}
|
|
33
33
|
];
|
|
34
34
|
}
|
|
35
|
-
const
|
|
36
|
-
const moduleId = chunkWithFacade.facadeModuleId || chunkWithFacade.moduleIds[0] || originalFileName;
|
|
35
|
+
const moduleId = chunk.facadeModuleId || chunk.moduleIds[0] || originalFileName;
|
|
37
36
|
if (moduleId.includes("commonjsHelpers")) {
|
|
38
37
|
return [
|
|
39
38
|
moduleId,
|
|
@@ -92,4 +91,4 @@ function getBundleManifest({
|
|
|
92
91
|
}
|
|
93
92
|
|
|
94
93
|
export { getBundleManifest };
|
|
95
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
94
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0QnVuZGxlTWFuaWZlc3QuanMiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3BsdWdpbi9oZWxwZXJzL2dldEJ1bmRsZU1hbmlmZXN0LnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB0eXBlIHtcbiAgT3V0cHV0QnVuZGxlLFxuICAvLyBPdXRwdXRDaHVuayAtIHJlbW92ZWQgdW51c2VkIGltcG9ydFxufSBmcm9tIFwicm9sbHVwXCI7XG5pbXBvcnQgdHlwZSB7ICBNYW5pZmVzdENodW5rIH0gZnJvbSBcInZpdGVcIjtcbmltcG9ydCB0eXBlIHsgSW5wdXROb3JtYWxpemVyIH0gZnJvbSBcIi4uL3R5cGVzLmpzXCI7XG5cblxuLyoqXG4gKiBHZXQgdGhlIGJ1bmRsZSBtYW5pZmVzdCBmcm9tIHRoZSBwbHVnaW4gY29udGV4dC4gV2lsbCBvbmx5IHdvcmsgZHVyaW5nIHByb2R1Y3Rpb24gYnVpbGRcbiAqIEBwYXJhbSBwbHVnaW5Db250ZXh0IC0gVGhlIHBsdWdpbiBjb250ZXh0XG4gKiBAcGFyYW0gYnVuZGxlIC0gVGhlIGJ1bmRsZVxuICogQHBhcmFtIHByZXNlcnZlTW9kdWxlc1Jvb3QgLSBUaGUgcHJlc2VydmUgbW9kdWxlcyByb290XG4gKiBAcmV0dXJucyBUaGUgYnVuZGxlIG1hbmlmZXN0XG4gKi9cbmV4cG9ydCBmdW5jdGlvbiBnZXRCdW5kbGVNYW5pZmVzdDxTU1IgZXh0ZW5kcyBib29sZWFuPih7XG4gIGJ1bmRsZSxcbiAgbm9ybWFsaXplcixcbn06IHtcbiAgYnVuZGxlOiBPdXRwdXRCdW5kbGUsXG4gIG5vcm1hbGl6ZXI6IElucHV0Tm9ybWFsaXplcixcbn0pOiBTU1IgZXh0ZW5kcyB0cnVlID8gUmVjb3JkPHN0cmluZywgc3RyaW5nW10+IDoge1xuICBba2V5OiBzdHJpbmddOiBNYW5pZmVzdENodW5rICYge1xuICAgIHNvdXJjZTogc3RyaW5nLFxuICB9XG59IHtcblxuICBpZiAoIWJ1bmRsZSkgcmV0dXJuIHt9O1xuXG4gIC8vIFRyYWNrIHZpcnR1YWwgbW9kdWxlcyB0byBwcmV2ZW50IGR1cGxpY2F0ZXNcbiAgY29uc3QgdmlydHVhbE1vZHVsZXMgPSBuZXcgTWFwPHN0cmluZywgc3RyaW5nPigpO1xuXG4gIGNvbnN0IGJ1bmRsZU1hbmlmZXN0ID0gT2JqZWN0LmZyb21FbnRyaWVzKFxuICAgIE9iamVjdC5lbnRyaWVzKGJ1bmRsZSlcbiAgICAgIC5tYXAoKFtvcmlnaW5hbEZpbGVOYW1lLCBjaHVua10pID0+IHtcbiAgICAgICAgaWYoIW9yaWdpbmFsRmlsZU5hbWUgJiYgJ2ZpbGUnIGluIGNodW5rKSB7XG4gICAgICAgICAgcmV0dXJuIFtcbiAgICAgICAgICAgIGNodW5rLmZpbGUsXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgIGZpbGU6IGNodW5rLmZpbGUsXG4gICAgICAgICAgICAgIHNvdXJjZTogJ3NvdXJjZScgaW4gY2h1bmsgPyBjaHVuay5zb3VyY2UgOiB1bmRlZmluZWQsXG4gICAgICAgICAgICB9XG4gICAgICAgICAgXVxuICAgICAgICB9XG4gICAgICAgIGlmIChjaHVuay50eXBlID09PSBcImFzc2V0XCIpIHtcbiAgICAgICAgICByZXR1cm4gW1xuICAgICAgICAgICAgb3JpZ2luYWxGaWxlTmFtZSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgZmlsZTogY2h1bmsuZmlsZU5hbWUsXG4gICAgICAgICAgICAgIG5hbWU6IGNodW5rLm5hbWVzWzBdLFxuICAgICAgICAgICAgICBzcmM6IG9yaWdpbmFsRmlsZU5hbWUsXG4gICAgICAgICAgICAgIHNvdXJjZTogY2h1bmsuc291cmNlLFxuICAgICAgICAgICAgICBpc0VudHJ5OiBjaHVuay5uZWVkc0NvZGVSZWZlcmVuY2UsXG4gICAgICAgICAgICB9XG4gICAgICAgICAgXVxuICAgICAgICB9XG4gICAgICAgIFxuICAgICAgICAvLyBHZXQgdGhlIG1vZHVsZSBJRCwgcHJlZmVycmluZyBmYWNhZGVNb2R1bGVJZFxuICAgICAgICBjb25zdCBtb2R1bGVJZCA9IGNodW5rLmZhY2FkZU1vZHVsZUlkIHx8IGNodW5rLm1vZHVsZUlkc1swXSB8fCBvcmlnaW5hbEZpbGVOYW1lO1xuICAgICAgICBcbiAgICAgICAgLy8gSGFuZGxlIGNvbW1vbmpzIGhlbHBlcnMgc3BlY2lhbGx5IC0gbXVzdCBiZSBkb25lIGJlZm9yZSBub3JtYWxpemF0aW9uXG4gICAgICAgIGlmIChtb2R1bGVJZC5pbmNsdWRlcygnY29tbW9uanNIZWxwZXJzJykpIHtcbiAgICAgICAgICByZXR1cm4gW1xuICAgICAgICAgICAgbW9kdWxlSWQsXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgIGZpbGU6ICdjb21tb25qcy1ydW50aW1lLmpzJyxcbiAgICAgICAgICAgICAgbmFtZTogJ2NvbW1vbmpzSGVscGVycycsXG4gICAgICAgICAgICAgIHNyYzogbW9kdWxlSWQsXG4gICAgICAgICAgICAgIGlzRW50cnk6IGZhbHNlXG4gICAgICAgICAgICB9XG4gICAgICAgICAgXTtcbiAgICAgICAgfVxuICAgICAgICBcbiAgICAgICAgLy8gTm9ybWFsaXplIGJvdGggcGF0aHMsIHJlbW92aW5nIHRoZSByb290IHByZWZpeFxuICAgICAgICBsZXQgW25vcm1hbGl6ZWRJZCwgc291cmNlUGF0aF0gPSBub3JtYWxpemVyKG1vZHVsZUlkKTtcblxuICAgICAgICAvLyBGb3IgdmlydHVhbCBtb2R1bGVzLCB1c2UgYSBjb25zaXN0ZW50IG5hbWluZyBzY2hlbWVcbiAgICAgICAgbGV0IGZpbmFsRmlsZU5hbWUgPSBvcmlnaW5hbEZpbGVOYW1lO1xuICAgICAgICBpZiAobW9kdWxlSWQuaW5jbHVkZXMoJz8nKSkge1xuICAgICAgICAgIGNvbnN0IFtiYXNlUGF0aCwgcXVlcnldID0gbW9kdWxlSWQuc3BsaXQoJz8nKTtcbiAgICAgICAgICBjb25zdCB2aXJ0dWFsUGF0aCA9IGJhc2VQYXRoLmluY2x1ZGVzKCdub2RlX21vZHVsZXMnKSBcbiAgICAgICAgICAgID8gYmFzZVBhdGguc3BsaXQoJ25vZGVfbW9kdWxlcy8nKVsxXSBcbiAgICAgICAgICAgIDogYmFzZVBhdGg7XG4gICAgICAgICAgXG4gICAgICAgICAgLy8gQ3JlYXRlIGEgdW5pcXVlIGtleSBmb3IgdGhpcyB2aXJ0dWFsIG1vZHVsZVxuICAgICAgICAgIGNvbnN0IHZpcnR1YWxLZXkgPSBgJHt2aXJ0dWFsUGF0aH0/JHtxdWVyeX1gO1xuICAgICAgICAgIFxuICAgICAgICAgIGlmICghdmlydHVhbE1vZHVsZXMuaGFzKHZpcnR1YWxLZXkpKSB7XG4gICAgICAgICAgICAvLyBGaXJzdCB0aW1lIHNlZWluZyB0aGlzIHZpcnR1YWwgbW9kdWxlXG4gICAgICAgICAgICBsZXQgdmlydHVhbEZpbGVOYW1lO1xuICAgICAgICAgICAgaWYgKHF1ZXJ5ID09PSAnaW5saW5lJykge1xuICAgICAgICAgICAgICB2aXJ0dWFsRmlsZU5hbWUgPSB2aXJ0dWFsUGF0aDtcbiAgICAgICAgICAgIH0gZWxzZSBpZiAodmlydHVhbFBhdGguZW5kc1dpdGgoJy5jc3MnKSkge1xuICAgICAgICAgICAgICAvLyBQcmVzZXJ2ZSBDU1MgZXh0ZW5zaW9uIGZvciBDU1MgZmlsZXNcbiAgICAgICAgICAgICAgdmlydHVhbEZpbGVOYW1lID0gdmlydHVhbFBhdGg7XG4gICAgICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgICAvLyBBZGQgLmpzIGV4dGVuc2lvbiBmb3Igb3RoZXIgZmlsZXNcbiAgICAgICAgICAgICAgdmlydHVhbEZpbGVOYW1lID0gYCR7dmlydHVhbFBhdGh9LiR7cXVlcnl9LmpzYDtcbiAgICAgICAgICAgIH1cbiAgICAgICAgICAgIHZpcnR1YWxNb2R1bGVzLnNldCh2aXJ0dWFsS2V5LCB2aXJ0dWFsRmlsZU5hbWUpO1xuICAgICAgICAgIH1cbiAgICAgICAgICBcbiAgICAgICAgICBmaW5hbEZpbGVOYW1lID0gdmlydHVhbE1vZHVsZXMuZ2V0KHZpcnR1YWxLZXkpITtcbiAgICAgICAgfVxuXG4gICAgICAgIC8vIGhhbmRsZSBwcmVzZXJ2ZU1vZHVsZXNSb290XG4gICAgICAgIGlmKG5vcm1hbGl6ZWRJZC5zdGFydHNXaXRoKCdcXHgwMCcpKXtcbiAgICAgICAgICBub3JtYWxpemVkSWQgPSBub3JtYWxpemVkSWQuc2xpY2UoMSk7XG4gICAgICAgIH1cbiAgICAgICAgaWYoc291cmNlUGF0aC5zdGFydHNXaXRoKCcvJykpe1xuICAgICAgICAgIHNvdXJjZVBhdGggPSBzb3VyY2VQYXRoLnNsaWNlKDEpO1xuICAgICAgICB9XG5cbiAgICAgICAgXG4gICAgICAgIGNvbnN0IHdpdGhDc3MgPSBjaHVuay52aXRlTWV0YWRhdGE/LmltcG9ydGVkQ3NzPy5zaXplID8ge1xuICAgICAgICAgIGNzczogQXJyYXkuZnJvbShjaHVuay52aXRlTWV0YWRhdGEuaW1wb3J0ZWRDc3MpLFxuICAgICAgICB9IDoge307XG4gICAgICAgIGNvbnN0IGJ1bmRsZU1hbmlmZXN0RW50cnkgPSBbXG4gICAgICAgICAgc291cmNlUGF0aCxcbiAgICAgICAgICB7XG4gICAgICAgICAgICBmaWxlOiBmaW5hbEZpbGVOYW1lLFxuICAgICAgICAgICAgbmFtZTogbm9ybWFsaXplZElkLFxuICAgICAgICAgICAgc3JjOiBzb3VyY2VQYXRoLFxuICAgICAgICAgICAgaXNFbnRyeTogY2h1bmsuaXNFbnRyeSxcbiAgICAgICAgICAgIC4uLihjaHVuay5pbXBvcnRzPy5sZW5ndGggPiAwID8geyBpbXBvcnRzOiBjaHVuay5pbXBvcnRzIH0gOiB7fSksXG4gICAgICAgICAgICAuLi4oY2h1bmsuZHluYW1pY0ltcG9ydHM/Lmxlbmd0aCA+IDAgPyB7IGR5bmFtaWNJbXBvcnRzOiBjaHVuay5keW5hbWljSW1wb3J0cyB9IDoge30pLFxuICAgICAgICAgICAgLi4ud2l0aENzcyxcbiAgICAgICAgICB9LFxuICAgICAgICBdO1xuICAgICAgICByZXR1cm4gYnVuZGxlTWFuaWZlc3RFbnRyeTtcbiAgICAgIH0pXG4gICAgICAuZmlsdGVyKEJvb2xlYW4pXG4gICk7XG4gIHJldHVybiBidW5k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
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRouteFiles.d.ts","sourceRoot":"","sources":["../../../plugin/helpers/getRouteFiles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAG5E,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"getRouteFiles.d.ts","sourceRoot":"","sources":["../../../plugin/helpers/getRouteFiles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAG5E,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAGvD,KAAK,oBAAoB,GAAG;IAC1B,IAAI,EAAE,SAAS,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC3B,CAAC;AAEF,KAAK,kBAAkB,GAAG;IACxB,IAAI,EAAE,OAAO,CAAC;IACd,KAAK,EAAE,OAAO,CAAC;CAChB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,eAAO,MAAM,aAAa,GACxB,OAAO,MAAM,EACb,qBAAqB,mBAAmB,EACxC,aAAa,IAAI,CACf,mBAAmB,EACjB,QAAQ,GACR,SAAS,GACT,MAAM,GACN,MAAM,GACN,gBAAgB,GAChB,SAAS,GACT,gBAAgB,GAChB,iBAAiB,GACjB,gBAAgB,GAChB,gBAAgB,CACnB,EACD,8BAAuB,KACtB,OAAO,CAAC,oBAAoB,GAAG,kBAAkB,CAwInD,CAAC"}
|
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { resolveUrlOption } from '../config/resolveUrlOption.js';
|
|
7
7
|
import { createLogger } from 'vite';
|
|
8
|
-
import { logError } from '../error/logError.js';
|
|
9
8
|
|
|
10
9
|
const getRouteFiles = async (route, autoDiscoveredFiles, userOptions, logger = createLogger()) => {
|
|
11
10
|
if (autoDiscoveredFiles.urlMap.has(route)) {
|
|
@@ -13,44 +12,53 @@ const getRouteFiles = async (route, autoDiscoveredFiles, userOptions, logger = c
|
|
|
13
12
|
const { page, props: props2 } = cached;
|
|
14
13
|
let { root: root2, html: html2 } = cached;
|
|
15
14
|
if (userOptions.verbose) {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
if (
|
|
20
|
-
logger.info(
|
|
15
|
+
logger.info(`[getRouteFiles] Found cached route: ${route}, page: "${page}", props: "${props2}"`);
|
|
16
|
+
}
|
|
17
|
+
if (!page) {
|
|
18
|
+
if (userOptions.verbose) {
|
|
19
|
+
logger.info("[getRouteFiles] Cached page is undefined, falling back to resolveUrlOption");
|
|
21
20
|
}
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
} else {
|
|
22
|
+
if (userOptions.verbose) {
|
|
23
|
+
if (page && page !== "") {
|
|
24
|
+
logger.info(`[getRouteFiles] Page: "${page}"`);
|
|
25
|
+
}
|
|
26
|
+
if (props2 && props2 !== "") {
|
|
27
|
+
logger.info(`[getRouteFiles] Props: "${props2}"`);
|
|
28
|
+
}
|
|
29
|
+
if (root2 && root2 !== "") {
|
|
30
|
+
logger.info(`[getRouteFiles] Root: "${root2}"`);
|
|
31
|
+
}
|
|
32
|
+
if (html2 && html2 !== "") {
|
|
33
|
+
logger.info(`[getRouteFiles] Html: "${html2}"`);
|
|
34
|
+
}
|
|
24
35
|
}
|
|
25
|
-
if (
|
|
26
|
-
|
|
36
|
+
if (!root2 && userOptions.Root) {
|
|
37
|
+
const {
|
|
38
|
+
type: rootType,
|
|
39
|
+
error: rootError,
|
|
40
|
+
Root
|
|
41
|
+
} = await resolveUrlOption(userOptions, "Root", route);
|
|
42
|
+
if (rootType === "error") {
|
|
43
|
+
return { type: "error", error: rootError };
|
|
44
|
+
}
|
|
45
|
+
root2 = Root;
|
|
46
|
+
autoDiscoveredFiles.urlMap.set(route, { page, props: props2, root: root2, html: html2 });
|
|
27
47
|
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
autoDiscoveredFiles.urlMap.set(route, { page, props: props2, root: root2, html: html2 });
|
|
40
|
-
}
|
|
41
|
-
if (!html2 && userOptions.Html) {
|
|
42
|
-
const {
|
|
43
|
-
type: htmlType,
|
|
44
|
-
error: htmlError,
|
|
45
|
-
Html
|
|
46
|
-
} = await resolveUrlOption(userOptions, "Html", route);
|
|
47
|
-
if (htmlType === "error") {
|
|
48
|
-
return { type: "error", error: htmlError };
|
|
48
|
+
if (!html2 && userOptions.Html) {
|
|
49
|
+
const {
|
|
50
|
+
type: htmlType,
|
|
51
|
+
error: htmlError,
|
|
52
|
+
Html
|
|
53
|
+
} = await resolveUrlOption(userOptions, "Html", route);
|
|
54
|
+
if (htmlType === "error") {
|
|
55
|
+
return { type: "error", error: htmlError };
|
|
56
|
+
}
|
|
57
|
+
html2 = Html;
|
|
58
|
+
autoDiscoveredFiles.urlMap.set(route, { page, props: props2, root: root2, html: html2 });
|
|
49
59
|
}
|
|
50
|
-
html2
|
|
51
|
-
autoDiscoveredFiles.urlMap.set(route, { page, props: props2, root: root2, html: html2 });
|
|
60
|
+
return { type: "success", page, props: props2, root: root2, html: html2 };
|
|
52
61
|
}
|
|
53
|
-
return { type: "success", page, props: props2, root: root2, html: html2 };
|
|
54
62
|
}
|
|
55
63
|
if (userOptions.verbose) {
|
|
56
64
|
logger.info("[getRouteFiles] Not in urlMap, resolving Page option");
|
|
@@ -61,9 +69,6 @@ const getRouteFiles = async (route, autoDiscoveredFiles, userOptions, logger = c
|
|
|
61
69
|
route
|
|
62
70
|
);
|
|
63
71
|
if (type === "error") {
|
|
64
|
-
if (userOptions.verbose) {
|
|
65
|
-
logError(error, logger);
|
|
66
|
-
}
|
|
67
72
|
return { type: "error", error };
|
|
68
73
|
}
|
|
69
74
|
if (userOptions.verbose) {
|
|
@@ -114,9 +119,6 @@ const getRouteFiles = async (route, autoDiscoveredFiles, userOptions, logger = c
|
|
|
114
119
|
props
|
|
115
120
|
} = await resolveUrlOption(userOptions, "props", route);
|
|
116
121
|
if (propsType === "error") {
|
|
117
|
-
if (userOptions.verbose) {
|
|
118
|
-
logError(propsError, logger);
|
|
119
|
-
}
|
|
120
122
|
return { type: "error", error: propsError };
|
|
121
123
|
}
|
|
122
124
|
if (userOptions.verbose) {
|
|
@@ -127,4 +129,4 @@ const getRouteFiles = async (route, autoDiscoveredFiles, userOptions, logger = c
|
|
|
127
129
|
};
|
|
128
130
|
|
|
129
131
|
export { getRouteFiles };
|
|
130
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0Um91dGVGaWxlcy5qcyIsInNvdXJjZXMiOlsiLi4vLi4vLi4vcGx1Z2luL2hlbHBlcnMvZ2V0Um91dGVGaWxlcy50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgdHlwZSB7IFBhZ2VOYW1lLCBQcm9wc05hbWUsIFJlc29sdmVkVXNlck9wdGlvbnMgfSBmcm9tIFwiLi4vdHlwZXMuanNcIjtcblxuaW1wb3J0IHsgcmVzb2x2ZVVybE9wdGlvbiB9IGZyb20gXCIuLi9jb25maWcvcmVzb2x2ZVVybE9wdGlvbi5qc1wiO1xuaW1wb3J0IHR5cGUgeyBBdXRvRGlzY292ZXJlZEZpbGVzIH0gZnJvbSBcIi4uL3R5cGVzLmpzXCI7XG5pbXBvcnQgeyBjcmVhdGVMb2dnZXIgfSBmcm9tIFwidml0ZVwiO1xuaW1wb3J0IHsgbG9nRXJyb3IgfSBmcm9tIFwiLi4vZXJyb3IvbG9nRXJyb3IuanNcIjtcblxudHlwZSBHZXRSb3V0ZUZpbGVzU3VjY2VzcyA9IHtcbiAgdHlwZTogXCJzdWNjZXNzXCI7XG4gIHBhZ2U6IHN0cmluZztcbiAgcHJvcHM/OiBzdHJpbmcgfCB1bmRlZmluZWQ7XG4gIHJvb3Q/OiBzdHJpbmcgfCB1bmRlZmluZWQ7XG4gIGh0bWw/OiBzdHJpbmcgfCB1bmRlZmluZWQ7XG59O1xuXG50eXBlIEdldFJvdXRlRmlsZXNFcnJvciA9IHtcbiAgdHlwZTogXCJlcnJvclwiO1xuICBlcnJvcjogRXJyb3I7XG59O1xuXG4vKipcbiAqIEdldHMgcGFnZSBhbmQgcHJvcHMgZmlsZSBwYXRocyBmb3IgYSByb3V0ZSB1c2luZyBjYWNoZWQgZGlzY292ZXJ5ICsgZHluYW1pYyBmYWxsYmFjay5cbiAqXG4gKiAjIyBSVU5USU1FIFJFU09MVVRJT04gU1RSQVRFR1lcbiAqIFRoaXMgZnVuY3Rpb24gaW1wbGVtZW50cyBhIHR3by10aWVyIGxvb2t1cCBzdHJhdGVneTpcbiAqXG4gKiAxLiAqKkZBU1QgUEFUSCoqOiBDaGVjayBhdXRvLWRpc2NvdmVyZWQgdXJsTWFwIGNhY2hlIGZpcnN0XG4gKiAgICAtIEJ1aWx0IGJ5IHJlc29sdmVCdWlsZFBhZ2VzLnRzIGZyb20gYnVpbGQucGFnZXMgYXJyYXlcbiAqICAgIC0gTygxKSBsb29rdXAsIG5vIEkvTywgdmVyeSBmYXN0XG4gKiAgICAtIFVzZWQgZm9yIHJvdXRlcyB0aGF0IHdlcmUgcHJlLWRpc2NvdmVyZWQgYXQgYnVpbGQgdGltZVxuICpcbiAqIDIuICoqRkFMTEJBQ0sgUEFUSCoqOiBEeW5hbWljIHJlc29sdXRpb24gdmlhIHJlc29sdmVVcmxPcHRpb25cbiAqICAgIC0gT25seSB3aGVuIHJvdXRlIG5vdCBmb3VuZCBpbiB1cmxNYXAgY2FjaGVcbiAqICAgIC0gQ2FsbHMgUGFnZS9wcm9wcyByZXNvbHZlciBmdW5jdGlvbnMgd2l0aCB0aGUgcm91dGUgVVJMXG4gKiAgICAtIEVuYWJsZXMgZHluYW1pYyByb3V0aW5nIGJleW9uZCB3aGF0J3MgaW4gYnVpbGQucGFnZXNcbiAqICAgIC0gU2xvd2VyIGR1ZSB0byBmdW5jdGlvbiBjYWxscyArIHBvdGVudGlhbCBJL09cbiAqXG4gKiAjIyBBdXRvLURpc2NvdmVyeSBJbnRlZ3JhdGlvbjpcbiAqIFJlc3VsdHMgZnJvbSBkeW5hbWljIHJlc29sdXRpb24gYXJlIGNhY2hlZCBiYWNrIGludG8gYXV0b0Rpc2NvdmVyZWRGaWxlcy51cmxNYXBcbiAqIGZvciBmdXR1cmUgcmVxdWVzdHMsIHNvIGVhY2ggcm91dGUgaXMgb25seSByZXNvbHZlZCBkeW5hbWljYWxseSBvbmNlLlxuICpcbiAqICMjIEZ1bmN0aW9uIFJlc29sdmVyIFN1cHBvcnQ6XG4gKiBUaGlzIGlzIHdoZXJlIHJvdXRlciBmdW5jdGlvbnMgbGlrZSBgKHVybCkgPT4gXCIuL3NyYy9wYWdlcy9cIiArIHVybCArIFwiLnRzeFwiYFxuICogYXJlIGFjdHVhbGx5IGNhbGxlZC4gVGhlIGR5bmFtaWMgbmF0dXJlIGFsbG93cyBydW50aW1lIHJvdXRlIHJlc29sdXRpb24gYnV0XG4gKiBjcmVhdGVzIGNvbXBsZXhpdHkgZm9yIHN0YXRpYyBhbmFseXNpcyBhbmQgYnVpbGQtdGltZSBkaXNjb3ZlcnkuXG4gKi9cbmV4cG9ydCBjb25zdCBnZXRSb3V0ZUZpbGVzID0gYXN5bmMgKFxuICByb3V0ZTogc3RyaW5nLFxuICBhdXRvRGlzY292ZXJlZEZpbGVzOiBBdXRvRGlzY292ZXJlZEZpbGVzLFxuICB1c2VyT3B0aW9uczogUGljazxcbiAgICBSZXNvbHZlZFVzZXJPcHRpb25zLFxuICAgIHwgUGFnZU5hbWVcbiAgICB8IFByb3BzTmFtZVxuICAgIHwgXCJSb290XCJcbiAgICB8IFwiSHRtbFwiXG4gICAgfCBcIm1vZHVsZUJhc2VQYXRoXCJcbiAgICB8IFwidmVyYm9zZVwiXG4gICAgfCBcInBhZ2VFeHBvcnROYW1lXCJcbiAgICB8IFwicHJvcHNFeHBvcnROYW1lXCJcbiAgICB8IFwicm9vdEV4cG9ydE5hbWVcIlxuICAgIHwgXCJodG1sRXhwb3J0TmFtZVwiXG4gID4sXG4gIGxvZ2dlciA9IGNyZWF0ZUxvZ2dlcigpXG4pOiBQcm9taXNlPEdldFJvdXRlRmlsZXNTdWNjZXNzIHwgR2V0Um91dGVGaWxlc0Vycm9yPiA9PiB7XG4gIGlmIChhdXRvRGlzY292ZXJlZEZpbGVzLnVybE1hcC5oYXMocm91dGUpKSB7XG4gICAgY29uc3QgY2FjaGVkID0gYXV0b0Rpc2NvdmVyZWRGaWxlcy51cmxNYXAuZ2V0KHJvdXRlKSE7XG4gICAgY29uc3QgeyBwYWdlLCBwcm9wcyB9ID0gY2FjaGVkO1xuICAgIGxldCB7IHJvb3QsIGh0bWwgfSA9IGNhY2hlZDtcblxuICAgIGlmICh1c2VyT3B0aW9ucy52ZXJib3NlKSB7XG4gICAgICBpZiAocGFnZSAmJiBwYWdlICE9PSBcIlwiKSB7XG4gICAgICAgIGxvZ2dlci5pbmZvKGBbZ2V0Um91dGVGaWxlc10gUGFnZTogXFxcIiR7cGFnZX1cXFwiYCk7XG4gICAgICB9XG4gICAgICBpZiAocHJvcHMgJiYgcHJvcHMgIT09IFwiXCIpIHtcbiAgICAgICAgbG9nZ2VyLmluZm8oYFtnZXRSb3V0ZUZpbGVzXSBQcm9wczogXFxcIiR7cHJvcHN9XFxcImApO1xuICAgICAgfVxuICAgICAgaWYgKHJvb3QgJiYgcm9vdCAhPT0gXCJcIikge1xuICAgICAgICBsb2dnZXIuaW5mbyhgW2dldFJvdXRlRmlsZXNdIFJvb3Q6IFxcXCIke3Jvb3R9XFxcImApO1xuICAgICAgfVxuICAgICAgaWYgKGh0bWwgJiYgaHRtbCAhPT0gXCJcIikge1xuICAgICAgICBsb2dnZXIuaW5mbyhgW2dldFJvdXRlRmlsZXNdIEh0bWw6IFxcXCIke2h0bWx9XFxcImApO1xuICAgICAgfVxuICAgIH1cblxuICAgIC8vIEZvciBjYWNoZWQgcm91dGVzLCB3ZSBzdGlsbCBuZWVkIHRvIHJlc29sdmUgUm9vdCBhbmQgSHRtbCBkeW5hbWljYWxseSBpZiB0aGV5IGFyZSBmdW5jdGlvbnNcbiAgICAvLyBhbmQgbm90IGFscmVhZHkgY2FjaGVkXG4gICAgaWYgKCFyb290ICYmIHVzZXJPcHRpb25zLlJvb3QpIHtcbiAgICAgIGNvbnN0IHtcbiAgICAgICAgdHlwZTogcm9vdFR5cGUsXG4gICAgICAgIGVycm9yOiByb290RXJyb3IsXG4gICAgICAgIFJvb3QsXG4gICAgICB9ID0gYXdhaXQgcmVzb2x2ZVVybE9wdGlvbih1c2VyT3B0aW9ucywgXCJSb290XCIsIHJvdXRlKTtcbiAgICAgIGlmIChyb290VHlwZSA9PT0gXCJlcnJvclwiKSB7XG4gICAgICAgIHJldHVybiB7IHR5cGU6IFwiZXJyb3JcIiwgZXJyb3I6IHJvb3RFcnJvciB9O1xuICAgICAgfVxuICAgICAgcm9vdCA9IFJvb3Q7XG4gICAgICAvLyBVcGRhdGUgY2FjaGUgd2l0aCByZXNvbHZlZCByb290IHBhdGhcbiAgICAgIGF1dG9EaXNjb3ZlcmVkRmlsZXMudXJsTWFwLnNldChyb3V0ZSwgeyBwYWdlLCBwcm9wcywgcm9vdCwgaHRtbCB9KTtcbiAgICB9XG5cbiAgICBpZiAoIWh0bWwgJiYgdXNlck9wdGlvbnMuSHRtbCkge1xuICAgICAgY29uc3Qge1xuICAgICAgICB0eXBlOiBodG1sVHlwZSxcbiAgICAgICAgZXJyb3I6IGh0bWxFcnJvcixcbiAgICAgICAgSHRtbCxcbiAgICAgIH0gPSBhd2FpdCByZXNvbHZlVXJsT3B0aW9uKHVzZXJPcHRpb25zLCBcIkh0bWxcIiwgcm91dGUpO1xuICAgICAgaWYgKGh0bWxUeXBlID09PSBcImVycm9yXCIpIHtcbiAgICAgICAgcmV0dXJuIHsgdHlwZTogXCJlcnJvclwiLCBlcnJvcjogaHRtbEVycm9yIH07XG4gICAgICB9XG4gICAgICBodG1sID0gSHRtbDtcbiAgICAgIC8vIFVwZGF0ZSBjYWNoZSB3aXRoIHJlc29sdmVkIGh0bWwgcGF0aFxuICAgICAgYXV0b0Rpc2NvdmVyZWRGaWxlcy51cmxNYXAuc2V0KHJvdXRlLCB7IHBhZ2UsIHByb3BzLCByb290LCBodG1sIH0pO1xuICAgIH1cblxuICAgIHJldHVybiB7IHR5cGU6IFwic3VjY2Vzc1wiLCBwYWdlLCBwcm9wcywgcm9vdCwgaHRtbCB9O1xuICB9XG4gIGlmICh1c2VyT3B0aW9ucy52ZXJib3NlKSB7XG4gICAgbG9nZ2VyLmluZm8oXCJbZ2V0Um91dGVGaWxlc10gTm90IGluIHVybE1hcCwgcmVzb2x2aW5nIFBhZ2Ugb3B0aW9uXCIpO1xuICB9XG4gIGNvbnN0IHsgdHlwZSwgZXJyb3IsIFBhZ2UgfSA9IGF3YWl0IHJlc29sdmVVcmxPcHRpb24oXG4gICAgdXNlck9wdGlvbnMsXG4gICAgXCJQYWdlXCIsXG4gICAgcm91dGVcbiAgKTtcbiAgaWYgKHR5cGUgPT09IFwiZXJyb3JcIikge1xuICAgIGlmICh1c2VyT3B0aW9ucy52ZXJib3NlKSB7XG4gICAgICBsb2dFcnJvcihlcnJvciwgbG9nZ2VyKTtcbiAgICB9XG4gICAgcmV0dXJuIHsgdHlwZTogXCJlcnJvclwiLCBlcnJvciB9O1xuICB9XG4gIGlmICh1c2VyT3B0aW9ucy52ZXJib3NlKSB7XG4gICAgbG9nZ2VyLmluZm8oYFtnZXRSb3V0ZUZpbGVzXSBQYWdlIHJlc29sdmVkIHRvOiAke1BhZ2V9YCk7XG4gIH1cbiAgLy8gUmVzb2x2ZSBSb290IGFuZCBIdG1sIGNvbXBvbmVudHNcbiAgbGV0IHJvb3Q6IHN0cmluZyB8IHVuZGVmaW5lZDtcbiAgbGV0IGh0bWw6IHN0cmluZyB8IHVuZGVmaW5lZDtcblxuICBpZiAodXNlck9wdGlvbnMuUm9vdCkge1xuICAgIGNvbnN0IHtcbiAgICAgIHR5cGU6IHJvb3RUeXBlLFxuICAgICAgZXJyb3I6IHJvb3RFcnJvcixcbiAgICAgIFJvb3QsXG4gICAgfSA9IGF3YWl0IHJlc29sdmVVcmxPcHRpb24odXNlck9wdGlvbnMsIFwiUm9vdFwiLCByb3V0ZSk7XG4gICAgaWYgKHJvb3RUeXBlID09PSBcImVycm9yXCIpIHtcbiAgICAgIHJldHVybiB7IHR5cGU6IFwiZXJyb3JcIiwgZXJyb3I6IHJvb3RFcnJvciB9O1xuICAgIH1cbiAgICByb290ID0gUm9vdDtcbiAgfVxuXG4gIGlmICh1c2VyT3B0aW9ucy5IdG1sKSB7XG4gICAgY29uc3Qge1xuICAgICAgdHlwZTogaHRtbFR5cGUsXG4gICAgICBlcnJvcjogaHRtbEVycm9yLFxuICAgICAgSHRtbCxcbiAgICB9ID0gYXdhaXQgcmVzb2x2ZVVybE9wdGlvbih1c2VyT3B0aW9ucywgXCJIdG1sXCIsIHJvdXRlKTtcbiAgICBpZiAoaHRtbFR5cGUgPT09IFwiZXJyb3JcIikge1xuICAgICAgcmV0dXJuIHsgdHlwZTogXCJlcnJvclwiLCBlcnJvcjogaHRtbEVycm9yIH07XG4gICAgfVxuICAgIGh0bWwgPSBIdG1sO1xuICB9XG5cbiAgaWYgKCF1c2VyT3B0aW9ucy5wcm9wcykge1xuICAgIGlmICh1c2VyT3B0aW9ucy52ZXJib3NlKSB7XG4gICAgICBsb2dnZXIuaW5mbyhcIltnZXRSb3V0ZUZpbGVzXSBObyBwcm9wcyBvcHRpb24sIHJldHVybmluZyBwYWdlIG9ubHlcIik7XG4gICAgfVxuICAgIGF1dG9EaXNjb3ZlcmVkRmlsZXMudXJsTWFwLnNldChyb3V0ZSwge1xuICAgICAgcGFnZTogUGFnZSxcbiAgICAgIHByb3BzOiB1bmRlZmluZWQsXG4gICAgICByb290LFxuICAgICAgaHRtbCxcbiAgICB9KTtcbiAgICByZXR1cm4geyB0eXBlOiBcInN1Y2Nlc3NcIiwgcGFnZTogUGFnZSwgcHJvcHM6IHVuZGVmaW5lZCwgcm9vdCwgaHRtbCB9O1xuICB9XG4gIGlmICh1c2VyT3B0aW9ucy52ZXJib3NlKSB7XG4gICAgbG9nZ2VyLmluZm8oXCJbZ2V0Um91dGVGaWxlc10gUmVzb2x2aW5nIHByb3BzIG9wdGlvblwiKTtcbiAgfVxuICBjb25zdCB7XG4gICAgdHlwZTogcHJvcHNUeXBlLFxuICAgIGVycm9yOiBwcm9wc0Vycm9yLFxuICAgIHByb3BzLFxuICB9ID0gYXdhaXQgcmVzb2x2ZVVybE9wdGlvbih1c2VyT3B0aW9ucywgXCJwcm9wc1wiLCByb3V0ZSk7XG5cbiAgaWYgKHByb3BzVHlwZSA9PT0gXCJlcnJvclwiKSB7XG4gICAgaWYgKHVzZXJPcHRpb25zLnZlcmJvc2UpIHtcbiAgICAgIGxvZ0Vycm9yKHByb3BzRXJyb3IsIGxvZ2dlcik7XG4gICAgfVxuICAgIHJldHVybiB7IHR5cGU6IFwiZXJyb3JcIiwgZXJyb3I6IHByb3BzRXJyb3IgfTtcbiAgfVxuICBpZiAodXNlck9wdGlvbnMudmVyYm9zZSkge1xuICAgIGxvZ2dlci5pbmZvKGBbZ2V0Um91dGVGaWxlc10gUHJvcHMgcmVzb2x2ZWQgdG86ICR7cHJvcHN9YCk7XG4gIH1cbiAgYXV0b0Rpc2NvdmVyZWRGaWxlcy51cmxNYXAuc2V0KHJvdXRlLCB7IHBhZ2U6IFBhZ2UsIHByb3BzLCByb290LCBodG1sIH0pO1xuICByZXR1cm4geyB0eXBlOiBcInN1Y2Nlc3NcIiwgcGFnZTogUGFnZSwgcHJvcHMsIHJvb3QsIGh0bWwgfTtcbn07XG4iXSwibmFtZXMiOlsicHJvcHMiLCJyb290IiwiaHRtbCJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7O0FBOENPLE1BQU0sZ0JBQWdCLE9BQzNCLEtBQUEsRUFDQSxxQkFDQSxXQWFBLEVBQUEsTUFBQSxHQUFTLGNBQzhDLEtBQUE7QUFD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
|
|
132
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0Um91dGVGaWxlcy5qcyIsInNvdXJjZXMiOlsiLi4vLi4vLi4vcGx1Z2luL2hlbHBlcnMvZ2V0Um91dGVGaWxlcy50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgdHlwZSB7IFBhZ2VOYW1lLCBQcm9wc05hbWUsIFJlc29sdmVkVXNlck9wdGlvbnMgfSBmcm9tIFwiLi4vdHlwZXMuanNcIjtcblxuaW1wb3J0IHsgcmVzb2x2ZVVybE9wdGlvbiB9IGZyb20gXCIuLi9jb25maWcvcmVzb2x2ZVVybE9wdGlvbi5qc1wiO1xuaW1wb3J0IHR5cGUgeyBBdXRvRGlzY292ZXJlZEZpbGVzIH0gZnJvbSBcIi4uL3R5cGVzLmpzXCI7XG5pbXBvcnQgeyBjcmVhdGVMb2dnZXIgfSBmcm9tIFwidml0ZVwiO1xuXG50eXBlIEdldFJvdXRlRmlsZXNTdWNjZXNzID0ge1xuICB0eXBlOiBcInN1Y2Nlc3NcIjtcbiAgcGFnZTogc3RyaW5nO1xuICBwcm9wcz86IHN0cmluZyB8IHVuZGVmaW5lZDtcbiAgcm9vdD86IHN0cmluZyB8IHVuZGVmaW5lZDtcbiAgaHRtbD86IHN0cmluZyB8IHVuZGVmaW5lZDtcbn07XG5cbnR5cGUgR2V0Um91dGVGaWxlc0Vycm9yID0ge1xuICB0eXBlOiBcImVycm9yXCI7XG4gIGVycm9yOiB1bmtub3duO1xufTtcblxuLyoqXG4gKiBHZXRzIHBhZ2UgYW5kIHByb3BzIGZpbGUgcGF0aHMgZm9yIGEgcm91dGUgdXNpbmcgY2FjaGVkIGRpc2NvdmVyeSArIGR5bmFtaWMgZmFsbGJhY2suXG4gKlxuICogIyMgUlVOVElNRSBSRVNPTFVUSU9OIFNUUkFURUdZXG4gKiBUaGlzIGZ1bmN0aW9uIGltcGxlbWVudHMgYSB0d28tdGllciBsb29rdXAgc3RyYXRlZ3k6XG4gKlxuICogMS4gKipGQVNUIFBBVEgqKjogQ2hlY2sgYXV0by1kaXNjb3ZlcmVkIHVybE1hcCBjYWNoZSBmaXJzdFxuICogICAgLSBCdWlsdCBieSByZXNvbHZlQnVpbGRQYWdlcy50cyBmcm9tIGJ1aWxkLnBhZ2VzIGFycmF5XG4gKiAgICAtIE8oMSkgbG9va3VwLCBubyBJL08sIHZlcnkgZmFzdFxuICogICAgLSBVc2VkIGZvciByb3V0ZXMgdGhhdCB3ZXJlIHByZS1kaXNjb3ZlcmVkIGF0IGJ1aWxkIHRpbWVcbiAqXG4gKiAyLiAqKkZBTExCQUNLIFBBVEgqKjogRHluYW1pYyByZXNvbHV0aW9uIHZpYSByZXNvbHZlVXJsT3B0aW9uXG4gKiAgICAtIE9ubHkgd2hlbiByb3V0ZSBub3QgZm91bmQgaW4gdXJsTWFwIGNhY2hlXG4gKiAgICAtIENhbGxzIFBhZ2UvcHJvcHMgcmVzb2x2ZXIgZnVuY3Rpb25zIHdpdGggdGhlIHJvdXRlIFVSTFxuICogICAgLSBFbmFibGVzIGR5bmFtaWMgcm91dGluZyBiZXlvbmQgd2hhdCdzIGluIGJ1aWxkLnBhZ2VzXG4gKiAgICAtIFNsb3dlciBkdWUgdG8gZnVuY3Rpb24gY2FsbHMgKyBwb3RlbnRpYWwgSS9PXG4gKlxuICogIyMgQXV0by1EaXNjb3ZlcnkgSW50ZWdyYXRpb246XG4gKiBSZXN1bHRzIGZyb20gZHluYW1pYyByZXNvbHV0aW9uIGFyZSBjYWNoZWQgYmFjayBpbnRvIGF1dG9EaXNjb3ZlcmVkRmlsZXMudXJsTWFwXG4gKiBmb3IgZnV0dXJlIHJlcXVlc3RzLCBzbyBlYWNoIHJvdXRlIGlzIG9ubHkgcmVzb2x2ZWQgZHluYW1pY2FsbHkgb25jZS5cbiAqXG4gKiAjIyBGdW5jdGlvbiBSZXNvbHZlciBTdXBwb3J0OlxuICogVGhpcyBpcyB3aGVyZSByb3V0ZXIgZnVuY3Rpb25zIGxpa2UgYCh1cmwpID0+IFwiLi9zcmMvcGFnZXMvXCIgKyB1cmwgKyBcIi50c3hcImBcbiAqIGFyZSBhY3R1YWxseSBjYWxsZWQuIFRoZSBkeW5hbWljIG5hdHVyZSBhbGxvd3MgcnVudGltZSByb3V0ZSByZXNvbHV0aW9uIGJ1dFxuICogY3JlYXRlcyBjb21wbGV4aXR5IGZvciBzdGF0aWMgYW5hbHlzaXMgYW5kIGJ1aWxkLXRpbWUgZGlzY292ZXJ5LlxuICovXG5leHBvcnQgY29uc3QgZ2V0Um91dGVGaWxlcyA9IGFzeW5jIChcbiAgcm91dGU6IHN0cmluZyxcbiAgYXV0b0Rpc2NvdmVyZWRGaWxlczogQXV0b0Rpc2NvdmVyZWRGaWxlcyxcbiAgdXNlck9wdGlvbnM6IFBpY2s8XG4gICAgUmVzb2x2ZWRVc2VyT3B0aW9ucyxcbiAgICB8IFBhZ2VOYW1lXG4gICAgfCBQcm9wc05hbWVcbiAgICB8IFwiUm9vdFwiXG4gICAgfCBcIkh0bWxcIlxuICAgIHwgXCJtb2R1bGVCYXNlUGF0aFwiXG4gICAgfCBcInZlcmJvc2VcIlxuICAgIHwgXCJwYWdlRXhwb3J0TmFtZVwiXG4gICAgfCBcInByb3BzRXhwb3J0TmFtZVwiXG4gICAgfCBcInJvb3RFeHBvcnROYW1lXCJcbiAgICB8IFwiaHRtbEV4cG9ydE5hbWVcIlxuICA+LFxuICBsb2dnZXIgPSBjcmVhdGVMb2dnZXIoKVxuKTogUHJvbWlzZTxHZXRSb3V0ZUZpbGVzU3VjY2VzcyB8IEdldFJvdXRlRmlsZXNFcnJvcj4gPT4ge1xuICBpZiAoYXV0b0Rpc2NvdmVyZWRGaWxlcy51cmxNYXAuaGFzKHJvdXRlKSkge1xuICAgIGNvbnN0IGNhY2hlZCA9IGF1dG9EaXNjb3ZlcmVkRmlsZXMudXJsTWFwLmdldChyb3V0ZSkhO1xuICAgIGNvbnN0IHsgcGFnZSwgcHJvcHMgfSA9IGNhY2hlZDtcbiAgICBsZXQgeyByb290LCBodG1sIH0gPSBjYWNoZWQ7XG5cbiAgICBpZiAodXNlck9wdGlvbnMudmVyYm9zZSkge1xuICAgICAgbG9nZ2VyLmluZm8oYFtnZXRSb3V0ZUZpbGVzXSBGb3VuZCBjYWNoZWQgcm91dGU6ICR7cm91dGV9LCBwYWdlOiBcIiR7cGFnZX1cIiwgcHJvcHM6IFwiJHtwcm9wc31cImApO1xuICAgIH1cblxuICAgIC8vIElmIHRoZSBjYWNoZWQgcGFnZSBpcyB1bmRlZmluZWQsIGZhbGwgYmFjayB0byByZXNvbHZlVXJsT3B0aW9uXG4gICAgaWYgKCFwYWdlKSB7XG4gICAgICBpZiAodXNlck9wdGlvbnMudmVyYm9zZSkge1xuICAgICAgICBsb2dnZXIuaW5mbyhcIltnZXRSb3V0ZUZpbGVzXSBDYWNoZWQgcGFnZSBpcyB1bmRlZmluZWQsIGZhbGxpbmcgYmFjayB0byByZXNvbHZlVXJsT3B0aW9uXCIpO1xuICAgICAgfVxuICAgICAgLy8gRmFsbCB0aHJvdWdoIHRvIHRoZSByZXNvbHZlVXJsT3B0aW9uIGxvZ2ljIGJlbG93XG4gICAgfSBlbHNlIHtcbiAgICAgIGlmICh1c2VyT3B0aW9ucy52ZXJib3NlKSB7XG4gICAgICAgIGlmIChwYWdlICYmIHBhZ2UgIT09IFwiXCIpIHtcbiAgICAgICAgICBsb2dnZXIuaW5mbyhgW2dldFJvdXRlRmlsZXNdIFBhZ2U6IFxcXCIke3BhZ2V9XFxcImApO1xuICAgICAgICB9XG4gICAgICAgIGlmIChwcm9wcyAmJiBwcm9wcyAhPT0gXCJcIikge1xuICAgICAgICAgIGxvZ2dlci5pbmZvKGBbZ2V0Um91dGVGaWxlc10gUHJvcHM6IFxcXCIke3Byb3BzfVxcXCJgKTtcbiAgICAgICAgfVxuICAgICAgICBpZiAocm9vdCAmJiByb290ICE9PSBcIlwiKSB7XG4gICAgICAgICAgbG9nZ2VyLmluZm8oYFtnZXRSb3V0ZUZpbGVzXSBSb290OiBcXFwiJHtyb290fVxcXCJgKTtcbiAgICAgICAgfVxuICAgICAgICBpZiAoaHRtbCAmJiBodG1sICE9PSBcIlwiKSB7XG4gICAgICAgICAgbG9nZ2VyLmluZm8oYFtnZXRSb3V0ZUZpbGVzXSBIdG1sOiBcXFwiJHtodG1sfVxcXCJgKTtcbiAgICAgICAgfVxuICAgICAgfVxuXG4gICAgICAvLyBGb3IgY2FjaGVkIHJvdXRlcywgd2Ugc3RpbGwgbmVlZCB0byByZXNvbHZlIFJvb3QgYW5kIEh0bWwgZHluYW1pY2FsbHkgaWYgdGhleSBhcmUgZnVuY3Rpb25zXG4gICAgICAvLyBhbmQgbm90IGFscmVhZHkgY2FjaGVkXG4gICAgICBpZiAoIXJvb3QgJiYgdXNlck9wdGlvbnMuUm9vdCkge1xuICAgICAgY29uc3Qge1xuICAgICAgICB0eXBlOiByb290VHlwZSxcbiAgICAgICAgZXJyb3I6IHJvb3RFcnJvcixcbiAgICAgICAgUm9vdCxcbiAgICAgIH0gPSBhd2FpdCByZXNvbHZlVXJsT3B0aW9uKHVzZXJPcHRpb25zLCBcIlJvb3RcIiwgcm91dGUpO1xuICAgICAgaWYgKHJvb3RUeXBlID09PSBcImVycm9yXCIpIHtcbiAgICAgICAgcmV0dXJuIHsgdHlwZTogXCJlcnJvclwiLCBlcnJvcjogcm9vdEVycm9yIH07XG4gICAgICB9XG4gICAgICByb290ID0gUm9vdDtcbiAgICAgIC8vIFVwZGF0ZSBjYWNoZSB3aXRoIHJlc29sdmVkIHJvb3QgcGF0aFxuICAgICAgYXV0b0Rpc2NvdmVyZWRGaWxlcy51cmxNYXAuc2V0KHJvdXRlLCB7IHBhZ2UsIHByb3BzLCByb290LCBodG1sIH0pO1xuICAgIH1cblxuICAgIGlmICghaHRtbCAmJiB1c2VyT3B0aW9ucy5IdG1sKSB7XG4gICAgICBjb25zdCB7XG4gICAgICAgIHR5cGU6IGh0bWxUeXBlLFxuICAgICAgICBlcnJvcjogaHRtbEVycm9yLFxuICAgICAgICBIdG1sLFxuICAgICAgfSA9IGF3YWl0IHJlc29sdmVVcmxPcHRpb24odXNlck9wdGlvbnMsIFwiSHRtbFwiLCByb3V0ZSk7XG4gICAgICBpZiAoaHRtbFR5cGUgPT09IFwiZXJyb3JcIikge1xuICAgICAgICByZXR1cm4geyB0eXBlOiBcImVycm9yXCIsIGVycm9yOiBodG1sRXJyb3IgfTtcbiAgICAgIH1cbiAgICAgIGh0bWwgPSBIdG1sO1xuICAgICAgLy8gVXBkYXRlIGNhY2hlIHdpdGggcmVzb2x2ZWQgaHRtbCBwYXRoXG4gICAgICBhdXRvRGlzY292ZXJlZEZpbGVzLnVybE1hcC5zZXQocm91dGUsIHsgcGFnZSwgcHJvcHMsIHJvb3QsIGh0bWwgfSk7XG4gICAgfVxuXG4gICAgICByZXR1cm4geyB0eXBlOiBcInN1Y2Nlc3NcIiwgcGFnZSwgcHJvcHMsIHJvb3QsIGh0bWwgfTtcbiAgICB9XG4gIH1cbiAgaWYgKHVzZXJPcHRpb25zLnZlcmJvc2UpIHtcbiAgICBsb2dnZXIuaW5mbyhcIltnZXRSb3V0ZUZpbGVzXSBOb3QgaW4gdXJsTWFwLCByZXNvbHZpbmcgUGFnZSBvcHRpb25cIik7XG4gIH1cbiAgY29uc3QgeyB0eXBlLCBlcnJvciwgUGFnZSB9ID0gYXdhaXQgcmVzb2x2ZVVybE9wdGlvbihcbiAgICB1c2VyT3B0aW9ucyxcbiAgICBcIlBhZ2VcIixcbiAgICByb3V0ZVxuICApO1xuICBpZiAodHlwZSA9PT0gXCJlcnJvclwiKSB7XG4gICAgcmV0dXJuIHsgdHlwZTogXCJlcnJvclwiLCBlcnJvciB9O1xuICB9XG4gIGlmICh1c2VyT3B0aW9ucy52ZXJib3NlKSB7XG4gICAgbG9nZ2VyLmluZm8oYFtnZXRSb3V0ZUZpbGVzXSBQYWdlIHJlc29sdmVkIHRvOiAke1BhZ2V9YCk7XG4gIH1cbiAgLy8gUmVzb2x2ZSBSb290IGFuZCBIdG1sIGNvbXBvbmVudHNcbiAgbGV0IHJvb3Q6IHN0cmluZyB8IHVuZGVmaW5lZDtcbiAgbGV0IGh0bWw6IHN0cmluZyB8IHVuZGVmaW5lZDtcblxuICBpZiAodXNlck9wdGlvbnMuUm9vdCkge1xuICAgIGNvbnN0IHtcbiAgICAgIHR5cGU6IHJvb3RUeXBlLFxuICAgICAgZXJyb3I6IHJvb3RFcnJvcixcbiAgICAgIFJvb3QsXG4gICAgfSA9IGF3YWl0IHJlc29sdmVVcmxPcHRpb24odXNlck9wdGlvbnMsIFwiUm9vdFwiLCByb3V0ZSk7XG4gICAgaWYgKHJvb3RUeXBlID09PSBcImVycm9yXCIpIHtcbiAgICAgIHJldHVybiB7IHR5cGU6IFwiZXJyb3JcIiwgZXJyb3I6IHJvb3RFcnJvciB9O1xuICAgIH1cbiAgICByb290ID0gUm9vdDtcbiAgfVxuXG4gIGlmICh1c2VyT3B0aW9ucy5IdG1sKSB7XG4gICAgY29uc3Qge1xuICAgICAgdHlwZTogaHRtbFR5cGUsXG4gICAgICBlcnJvcjogaHRtbEVycm9yLFxuICAgICAgSHRtbCxcbiAgICB9ID0gYXdhaXQgcmVzb2x2ZVVybE9wdGlvbih1c2VyT3B0aW9ucywgXCJIdG1sXCIsIHJvdXRlKTtcbiAgICBpZiAoaHRtbFR5cGUgPT09IFwiZXJyb3JcIikge1xuICAgICAgcmV0dXJuIHsgdHlwZTogXCJlcnJvclwiLCBlcnJvcjogaHRtbEVycm9yIH07XG4gICAgfVxuICAgIGh0bWwgPSBIdG1sO1xuICB9XG5cbiAgaWYgKCF1c2VyT3B0aW9ucy5wcm9wcykge1xuICAgIGlmICh1c2VyT3B0aW9ucy52ZXJib3NlKSB7XG4gICAgICBsb2dnZXIuaW5mbyhcIltnZXRSb3V0ZUZpbGVzXSBObyBwcm9wcyBvcHRpb24sIHJldHVybmluZyBwYWdlIG9ubHlcIik7XG4gICAgfVxuICAgIGF1dG9EaXNjb3ZlcmVkRmlsZXMudXJsTWFwLnNldChyb3V0ZSwge1xuICAgICAgcGFnZTogUGFnZSxcbiAgICAgIHByb3BzOiB1bmRlZmluZWQsXG4gICAgICByb290LFxuICAgICAgaHRtbCxcbiAgICB9KTtcbiAgICByZXR1cm4geyB0eXBlOiBcInN1Y2Nlc3NcIiwgcGFnZTogUGFnZSwgcHJvcHM6IHVuZGVmaW5lZCwgcm9vdCwgaHRtbCB9O1xuICB9XG4gIGlmICh1c2VyT3B0aW9ucy52ZXJib3NlKSB7XG4gICAgbG9nZ2VyLmluZm8oXCJbZ2V0Um91dGVGaWxlc10gUmVzb2x2aW5nIHByb3BzIG9wdGlvblwiKTtcbiAgfVxuICBjb25zdCB7XG4gICAgdHlwZTogcHJvcHNUeXBlLFxuICAgIGVycm9yOiBwcm9wc0Vycm9yLFxuICAgIHByb3BzLFxuICB9ID0gYXdhaXQgcmVzb2x2ZVVybE9wdGlvbih1c2VyT3B0aW9ucywgXCJwcm9wc1wiLCByb3V0ZSk7XG5cbiAgaWYgKHByb3BzVHlwZSA9PT0gXCJlcnJvclwiKSB7XG4gICAgcmV0dXJuIHsgdHlwZTogXCJlcnJvclwiLCBlcnJvcjogcHJvcHNFcnJvciB9O1xuICB9XG4gIGlmICh1c2VyT3B0aW9ucy52ZXJib3NlKSB7XG4gICAgbG9nZ2VyLmluZm8oYFtnZXRSb3V0ZUZpbGVzXSBQcm9wcyByZXNvbHZlZCB0bzogJHtwcm9wc31gKTtcbiAgfVxuICBhdXRvRGlzY292ZXJlZEZpbGVzLnVybE1hcC5zZXQocm91dGUsIHsgcGFnZTogUGFnZSwgcHJvcHMsIHJvb3QsIGh0bWwgfSk7XG4gIHJldHVybiB7IHR5cGU6IFwic3VjY2Vzc1wiLCBwYWdlOiBQYWdlLCBwcm9wcywgcm9vdCwgaHRtbCB9O1xufTtcbiJdLCJuYW1lcyI6WyJwcm9wcyIsInJvb3QiLCJodG1sIl0sIm1hcHBpbmdzIjoiOzs7Ozs7OztBQTZDTyxNQUFNLGdCQUFnQixPQUMzQixLQUFBLEVBQ0EscUJBQ0EsV0FhQSxFQUFBLE1BQUEsR0FBUyxjQUM4QyxLQUFBO0FBQ3ZELEVBQUEsSUFBSSxtQkFBb0IsQ0FBQSxNQUFBLENBQU8sR0FBSSxDQUFBLEtBQUssQ0FBRyxFQUFBO0FBQ3pDLElBQUEsTUFBTSxNQUFTLEdBQUEsbUJBQUEsQ0FBb0IsTUFBTyxDQUFBLEdBQUEsQ0FBSSxLQUFLLENBQUE7QUFDbkQsSUFBQSxNQUFNLEVBQUUsSUFBQSxFQUFNLEtBQUFBLEVBQUFBLE1BQUFBLEVBQVUsR0FBQSxNQUFBO0FBQ3hCLElBQUEsSUFBSSxFQUFFLElBQUEsRUFBQUMsS0FBTSxFQUFBLElBQUEsRUFBQUMsT0FBUyxHQUFBLE1BQUE7QUFFckIsSUFBQSxJQUFJLFlBQVksT0FBUyxFQUFBO0FBQ3ZCLE1BQUEsTUFBQSxDQUFPLEtBQUssQ0FBdUMsb0NBQUEsRUFBQSxLQUFLLFlBQVksSUFBSSxDQUFBLFdBQUEsRUFBY0YsTUFBSyxDQUFHLENBQUEsQ0FBQSxDQUFBO0FBQUE7QUFJaEcsSUFBQSxJQUFJLENBQUMsSUFBTSxFQUFBO0FBQ1QsTUFBQSxJQUFJLFlBQVksT0FBUyxFQUFBO0FBQ3ZCLFFBQUEsTUFBQSxDQUFPLEtBQUssNEVBQTRFLENBQUE7QUFBQTtBQUMxRixLQUVLLE1BQUE7QUFDTCxNQUFBLElBQUksWUFBWSxPQUFTLEVBQUE7QUFDdkIsUUFBSSxJQUFBLElBQUEsSUFBUSxTQUFTLEVBQUksRUFBQTtBQUN2QixVQUFPLE1B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
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { Logger } from "vite";
|
|
2
|
+
import type { IncomingMessage, ServerResponse } from "node:http";
|
|
3
|
+
import type { Worker } from "node:worker_threads";
|
|
4
|
+
import { PassThrough } from "node:stream";
|
|
5
|
+
import type { ServerActionHandlerOptions } from "./handleServerActionHelper.js";
|
|
6
|
+
/**
|
|
7
|
+
* Creates a pass-through stream for server action responses.
|
|
8
|
+
*/
|
|
9
|
+
export declare function createServerActionStream(res: ServerResponse): PassThrough;
|
|
10
|
+
/**
|
|
11
|
+
* Handles errors in server action processing.
|
|
12
|
+
*/
|
|
13
|
+
export declare function handleServerActionError(error: unknown, res: ServerResponse, logger?: Logger): void;
|
|
14
|
+
/**
|
|
15
|
+
* Client-side server action handler that delegates to worker
|
|
16
|
+
*/
|
|
17
|
+
export declare function handleServerAction(req: IncomingMessage, res: ServerResponse, options: ServerActionHandlerOptions & {
|
|
18
|
+
worker?: Worker;
|
|
19
|
+
}): Promise<void>;
|
|
20
|
+
/**
|
|
21
|
+
* Client-side ViteDevServer-specific handler that delegates to worker
|
|
22
|
+
*/
|
|
23
|
+
export declare function handleServerActionWithViteServer(req: IncomingMessage, res: ServerResponse, server: any, handlerOptions: {
|
|
24
|
+
verbose?: boolean;
|
|
25
|
+
projectRoot: string;
|
|
26
|
+
worker?: Worker;
|
|
27
|
+
}): Promise<void>;
|
|
28
|
+
export { parseServerActionRequest, parseServerActionRequestBody, createServerActionResponse, setupServerActionHeaders } from "./handleServerActionHelper.js";
|
|
29
|
+
//# sourceMappingURL=handleServerAction.client.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"handleServerAction.client.d.ts","sourceRoot":"","sources":["../../../plugin/helpers/handleServerAction.client.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,MAAM,CAAC;AACnC,OAAO,KAAK,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AACjE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAKlD,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,KAAK,EACV,0BAA0B,EAC3B,MAAM,+BAA+B,CAAC;AAOvC;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,GAAG,EAAE,cAAc,GAAG,WAAW,CAOzE;AAED;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,OAAO,EAAE,GAAG,EAAE,cAAc,EAAE,MAAM,CAAC,EAAE,MAAM,QAK3F;AAED;;GAEG;AACH,wBAAsB,kBAAkB,CACtC,GAAG,EAAE,eAAe,EACpB,GAAG,EAAE,cAAc,EACnB,OAAO,EAAE,0BAA0B,GAAG;IAAE,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,GACxD,OAAO,CAAC,IAAI,CAAC,CAqEf;AAED;;GAEG;AACH,wBAAsB,gCAAgC,CACpD,GAAG,EAAE,eAAe,EACpB,GAAG,EAAE,cAAc,EACnB,MAAM,EAAE,GAAG,EACX,cAAc,EAAE;IACd,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,GACA,OAAO,CAAC,IAAI,CAAC,CAOf;AAGD,OAAO,EACL,wBAAwB,EACxB,4BAA4B,EAC5B,0BAA0B,EAC1B,wBAAwB,EACzB,MAAM,+BAA+B,CAAC"}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { cleanupServerAction } from "../dev-server/cleanupServerAction.client.js";
|
|
2
|
+
import { logError, toError } from "../error/index.js";
|
|
3
|
+
import { PassThrough } from "node:stream";
|
|
4
|
+
import { parseServerActionRequestBody, createServerActionResponse, setupServerActionHeaders } from "./handleServerActionHelper.js";
|
|
5
|
+
// Use shared helper instead of duplicating logic
|
|
6
|
+
// Use shared helper instead of duplicating logic
|
|
7
|
+
/**
|
|
8
|
+
* Creates a pass-through stream for server action responses.
|
|
9
|
+
*/
|
|
10
|
+
export function createServerActionStream(res) {
|
|
11
|
+
const passThrough = new PassThrough();
|
|
12
|
+
passThrough.pipe(res, { end: true });
|
|
13
|
+
passThrough.on('end', () => {
|
|
14
|
+
res.end();
|
|
15
|
+
});
|
|
16
|
+
return passThrough;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Handles errors in server action processing.
|
|
20
|
+
*/
|
|
21
|
+
export function handleServerActionError(error, res, logger) {
|
|
22
|
+
const err = toError(error);
|
|
23
|
+
logError(err, logger);
|
|
24
|
+
res.statusCode = 500;
|
|
25
|
+
res.end(JSON.stringify(createServerActionResponse(undefined, err.message)));
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Client-side server action handler that delegates to worker
|
|
29
|
+
*/
|
|
30
|
+
export async function handleServerAction(req, res, options) {
|
|
31
|
+
if (!options.worker) {
|
|
32
|
+
throw new Error("Worker is required for client-side server actions");
|
|
33
|
+
}
|
|
34
|
+
let messageHandler = null;
|
|
35
|
+
const passThrough = createServerActionStream(res);
|
|
36
|
+
try {
|
|
37
|
+
// Read request body
|
|
38
|
+
const chunks = [];
|
|
39
|
+
for await (const chunk of req) {
|
|
40
|
+
chunks.push(chunk);
|
|
41
|
+
}
|
|
42
|
+
const body = Buffer.concat(chunks).toString();
|
|
43
|
+
// Parse the server action request
|
|
44
|
+
const { id, args } = parseServerActionRequestBody(body, req.url);
|
|
45
|
+
// Set up response headers
|
|
46
|
+
setupServerActionHeaders(res);
|
|
47
|
+
// Send server action request to worker
|
|
48
|
+
options.worker.postMessage({
|
|
49
|
+
type: "SERVER_ACTION",
|
|
50
|
+
id,
|
|
51
|
+
args,
|
|
52
|
+
});
|
|
53
|
+
// Handle worker messages
|
|
54
|
+
messageHandler = (message) => {
|
|
55
|
+
if (message.type === "RSC_CHUNK") {
|
|
56
|
+
passThrough.write(message.chunk);
|
|
57
|
+
}
|
|
58
|
+
else if (message.type === "RSC_END") {
|
|
59
|
+
if (messageHandler) {
|
|
60
|
+
cleanupServerAction(passThrough, options.worker, messageHandler, res);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
else if (message.type === "ERROR") {
|
|
64
|
+
if (messageHandler) {
|
|
65
|
+
cleanupServerAction(passThrough, options.worker, messageHandler, res, message.error, options.logger);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
};
|
|
69
|
+
options.worker.on("message", messageHandler);
|
|
70
|
+
// Handle errors
|
|
71
|
+
passThrough.on("error", (error) => {
|
|
72
|
+
if (messageHandler) {
|
|
73
|
+
cleanupServerAction(passThrough, options.worker, messageHandler, res, error, options.logger);
|
|
74
|
+
}
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
catch (error) {
|
|
78
|
+
handleServerActionError(error, res, options.logger);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Client-side ViteDevServer-specific handler that delegates to worker
|
|
83
|
+
*/
|
|
84
|
+
export async function handleServerActionWithViteServer(req, res, server, handlerOptions) {
|
|
85
|
+
return handleServerAction(req, res, {
|
|
86
|
+
projectRoot: handlerOptions.projectRoot,
|
|
87
|
+
verbose: handlerOptions.verbose,
|
|
88
|
+
logger: server.config.customLogger || server.config.logger,
|
|
89
|
+
worker: handlerOptions.worker,
|
|
90
|
+
});
|
|
91
|
+
}
|
|
92
|
+
// Re-export helper functions for the entry point
|
|
93
|
+
export { parseServerActionRequest, parseServerActionRequestBody, createServerActionResponse, setupServerActionHeaders } from "./handleServerActionHelper.js";
|
|
@@ -1,35 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import type { ServerResponse } from "node:http";
|
|
4
|
-
export type ServerActionRequest = {
|
|
5
|
-
id: string;
|
|
6
|
-
args: unknown[];
|
|
7
|
-
};
|
|
8
|
-
export type ServerActionResponse = {
|
|
9
|
-
type: "server-action-response";
|
|
10
|
-
returnValue: unknown;
|
|
11
|
-
};
|
|
12
|
-
/**
|
|
13
|
-
* Parses a server action request from the request body.
|
|
14
|
-
* Supports two formats:
|
|
15
|
-
* 1. Direct args array: [arg1, arg2, ...]
|
|
16
|
-
* 2. Object with id and args: { id: string, args: unknown[] }
|
|
17
|
-
*/
|
|
18
|
-
export declare function parseServerActionRequest(body: string, url?: string): ServerActionRequest;
|
|
19
|
-
/**
|
|
20
|
-
* Creates a server action response with the given result or error.
|
|
21
|
-
*/
|
|
22
|
-
export declare function createServerActionResponse(result?: unknown, error?: string): ServerActionResponse;
|
|
23
|
-
/**
|
|
24
|
-
* Handles errors in server action processing.
|
|
25
|
-
*/
|
|
26
|
-
export declare function handleServerActionError(error: unknown, res: ServerResponse, logger: Logger): void;
|
|
27
|
-
/**
|
|
28
|
-
* Sets up common response headers for server actions.
|
|
29
|
-
*/
|
|
30
|
-
export declare function setupServerActionHeaders(res: ServerResponse): void;
|
|
31
|
-
/**
|
|
32
|
-
* Creates a pass-through stream for server action responses.
|
|
33
|
-
*/
|
|
34
|
-
export declare function createServerActionStream(res: ServerResponse): PassThrough;
|
|
1
|
+
export declare const handleServerAction: any, handleServerActionWithViteServer: any, parseServerActionRequest: any, parseServerActionRequestBody: any, createServerActionResponse: any, setupServerActionHeaders: any, createServerActionStream: any, handleServerActionError: any;
|
|
2
|
+
export type { ServerActionRequest, ServerActionHandlerOptions, } from "./handleServerActionHelper.js";
|
|
35
3
|
//# sourceMappingURL=handleServerAction.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"handleServerAction.d.ts","sourceRoot":"","sources":["../../../plugin/helpers/handleServerAction.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"handleServerAction.d.ts","sourceRoot":"","sources":["../../../plugin/helpers/handleServerAction.ts"],"names":[],"mappings":"AAOA,eAAO,MACL,kBAAkB,OAClB,gCAAgC,OAChC,wBAAwB,OACxB,4BAA4B,OAC5B,0BAA0B,OAC1B,wBAAwB,OACxB,wBAAwB,OACxB,uBAAuB,KACwC,CAAC;AAIlE,YAAY,EACV,mBAAmB,EACnB,0BAA0B,GAC3B,MAAM,+BAA+B,CAAC"}
|