@revealui/core 0.0.1-pre.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.
Files changed (728) hide show
  1. package/LICENSE +202 -0
  2. package/LICENSE_SUMMARY.md +55 -0
  3. package/README.md +201 -0
  4. package/dist/core/__internal/index.ts +63 -0
  5. package/dist/core/__tests__/assertNoInfiniteHttpRedirect.spec.ts +76 -0
  6. package/dist/core/__tests__/deduceRouteStringFromFilesystemPath.spec.ts +88 -0
  7. package/dist/core/__tests__/freezePartial.spec.ts +40 -0
  8. package/dist/core/__tests__/getValuePrintable.spec.ts +15 -0
  9. package/dist/core/__tests__/injectHtmlTags.spec.ts +101 -0
  10. package/dist/core/__tests__/isHtml.spec.ts +23 -0
  11. package/dist/core/__tests__/isNpmPackage.spec.ts +93 -0
  12. package/dist/core/__tests__/normalizeHeaders.spec.ts +142 -0
  13. package/dist/core/__tests__/parseUrl-extras.spec.ts +60 -0
  14. package/dist/core/__tests__/parseUrl.spec.ts +1339 -0
  15. package/dist/core/__tests__/resolvePrecedence/resolvePrecedence_overall.spec.ts +106 -0
  16. package/dist/core/__tests__/resolvePrecedence/resolvePrecedence_route-strings.spec.ts +99 -0
  17. package/dist/core/__tests__/resolveRedirects.spec.ts +132 -0
  18. package/dist/core/__tests__/resolveRouteString.spec.ts +211 -0
  19. package/dist/core/__tests__/resolveUrlPathname.spec.ts +22 -0
  20. package/dist/core/__tests__/trimWithAnsi.spec.ts +40 -0
  21. package/dist/core/api/ssr.ts +63 -0
  22. package/dist/core/assets/extractAssetsQuery.ts +29 -0
  23. package/dist/core/assets/index.ts +173 -0
  24. package/dist/core/assets/inferHtmlTags.ts +61 -0
  25. package/dist/core/assets/injectHtmlTags.ts +236 -0
  26. package/dist/core/assets/mergeScriptTags.ts +77 -0
  27. package/dist/core/assets/sanitizeJson.ts +8 -0
  28. package/dist/core/cli/bin.ts +161 -0
  29. package/dist/core/cli/commands/add.ts +158 -0
  30. package/dist/core/cli/commands/check.ts +47 -0
  31. package/dist/core/cli/commands/doctor/checks/build.ts +83 -0
  32. package/dist/core/cli/commands/doctor/checks/config.ts +130 -0
  33. package/dist/core/cli/commands/doctor/checks/dependencies.ts +144 -0
  34. package/dist/core/cli/commands/doctor/checks/practices.ts +156 -0
  35. package/dist/core/cli/commands/doctor/checks/structure.ts +127 -0
  36. package/dist/core/cli/commands/doctor/fixes/index.ts +136 -0
  37. package/dist/core/cli/commands/doctor/index.ts +47 -0
  38. package/dist/core/cli/commands/doctor/print.ts +44 -0
  39. package/dist/core/cli/commands/doctor/types.ts +16 -0
  40. package/dist/core/cli/commands/fix.ts +161 -0
  41. package/dist/core/cli/commands/init.ts +145 -0
  42. package/dist/core/cli/commands/upgrade.ts +115 -0
  43. package/dist/core/cli/onLoad.ts +7 -0
  44. package/dist/core/cli/utils.ts +6 -0
  45. package/dist/core/components/Config/Config-client.ts +14 -0
  46. package/dist/core/components/Config/Config-server.ts +16 -0
  47. package/dist/core/components/Head/Head-client.ts +4 -0
  48. package/dist/core/components/Head/Head-server.ts +16 -0
  49. package/dist/core/components/Loading.tsx +23 -0
  50. package/dist/core/config/findPageConfig.ts +14 -0
  51. package/dist/core/config/loadConfigValues.ts +28 -0
  52. package/dist/core/constants/UnifiedConstants.ts +348 -0
  53. package/dist/core/dom/applyHeadSettings.tsx +13 -0
  54. package/dist/core/dom/onPageVisibilityChange.ts +17 -0
  55. package/dist/core/dom/updateDocumentHead.ts +15 -0
  56. package/dist/core/errors/ErrorHandler.ts +480 -0
  57. package/dist/core/files/file-system/filesystemPath.ts +27 -0
  58. package/dist/core/files/file-system/findFile.ts +35 -0
  59. package/dist/core/files/file-system/findPackageJson.ts +19 -0
  60. package/dist/core/files/file-system/findPageFiles.ts +40 -0
  61. package/dist/core/files/file-system/pathShim.ts +16 -0
  62. package/dist/core/files/file-system/prependEntriesDir.ts +13 -0
  63. package/dist/core/files/file-system/removeFileExtention.ts +3 -0
  64. package/dist/core/files/file-system/requireResolve.ts +59 -0
  65. package/dist/core/files/file-system/scanCodebase.ts +64 -0
  66. package/dist/core/files/virtual-files/index.ts +31 -0
  67. package/dist/core/files/virtual-files/virtualFileImportUserCode.ts +34 -0
  68. package/dist/core/files/virtual-files/virtualFilePageConfigValuesAll.ts +49 -0
  69. package/dist/core/gaurds/assertions/assert/base.ts +6 -0
  70. package/dist/core/gaurds/assertions/assert/index.ts +2 -0
  71. package/dist/core/gaurds/assertions/assert/log.ts +42 -0
  72. package/dist/core/gaurds/assertions/assertArguments.ts +83 -0
  73. package/dist/core/gaurds/assertions/assertCast.ts +9 -0
  74. package/dist/core/gaurds/assertions/assertCommonJS/base.ts +9 -0
  75. package/dist/core/gaurds/assertions/assertCommonJS/common.ts +30 -0
  76. package/dist/core/gaurds/assertions/assertCommonJS/index.ts +2 -0
  77. package/dist/core/gaurds/assertions/assertExtensions/base.ts +187 -0
  78. package/dist/core/gaurds/assertions/assertExtensions/index.ts +1 -0
  79. package/dist/core/gaurds/assertions/assertHookReturnedObject.ts +30 -0
  80. package/dist/core/gaurds/assertions/assertInfo/base.ts +14 -0
  81. package/dist/core/gaurds/assertions/assertInfo/index.ts +2 -0
  82. package/dist/core/gaurds/assertions/assertInfo/log.ts +28 -0
  83. package/dist/core/gaurds/assertions/assertIs404.ts +12 -0
  84. package/dist/core/gaurds/assertions/assertIsBrowser/base.ts +8 -0
  85. package/dist/core/gaurds/assertions/assertIsBrowser/index.ts +1 -0
  86. package/dist/core/gaurds/assertions/assertIsNotBrowser/base.ts +9 -0
  87. package/dist/core/gaurds/assertions/assertIsNotBrowser/index.ts +1 -0
  88. package/dist/core/gaurds/assertions/assertIsNotProductionRuntime/base.ts +71 -0
  89. package/dist/core/gaurds/assertions/assertIsNotProductionRuntime/index.ts +1 -0
  90. package/dist/core/gaurds/assertions/assertKeys/base.ts +31 -0
  91. package/dist/core/gaurds/assertions/assertKeys/index.ts +1 -0
  92. package/dist/core/gaurds/assertions/assertNoInfiniteHttpRedirect.ts +55 -0
  93. package/dist/core/gaurds/assertions/assertNodeEnv/base.ts +120 -0
  94. package/dist/core/gaurds/assertions/assertNodeEnv/index.ts +1 -0
  95. package/dist/core/gaurds/assertions/assertNodeVersion/base.ts +11 -0
  96. package/dist/core/gaurds/assertions/assertNodeVersion/index.ts +1 -0
  97. package/dist/core/gaurds/assertions/assertOnBeforeRenderHookReturn.ts +37 -0
  98. package/dist/core/gaurds/assertions/assertPageContextProvidedByUser.ts +60 -0
  99. package/dist/core/gaurds/assertions/assertPluginManifest.ts +41 -0
  100. package/dist/core/gaurds/assertions/assertPlusFileExport.ts +66 -0
  101. package/dist/core/gaurds/assertions/assertRoutingType/base.ts +41 -0
  102. package/dist/core/gaurds/assertions/assertRoutingType/index.ts +1 -0
  103. package/dist/core/gaurds/assertions/assertRuntimeManifest.ts +34 -0
  104. package/dist/core/gaurds/assertions/assertSingleInstance/index.ts +142 -0
  105. package/dist/core/gaurds/assertions/assertSingleInstance/onAssertModuleLoad.ts +0 -0
  106. package/dist/core/gaurds/assertions/assertSingleInstance/onClientEntryClientRouting.ts +0 -0
  107. package/dist/core/gaurds/assertions/assertSingleInstance/onClientEntryServerRouting.ts +0 -0
  108. package/dist/core/gaurds/assertions/assertType.ts +12 -0
  109. package/dist/core/gaurds/assertions/assertUsage/base.ts +43 -0
  110. package/dist/core/gaurds/assertions/assertUsage/index.ts +3 -0
  111. package/dist/core/gaurds/assertions/assertUsage/log.ts +29 -0
  112. package/dist/core/gaurds/assertions/assertUsage/node.ts +16 -0
  113. package/dist/core/gaurds/assertions/assertV1Design.ts +29 -0
  114. package/dist/core/gaurds/assertions/assertVersion/base.ts +55 -0
  115. package/dist/core/gaurds/assertions/assertVersion/index.ts +1 -0
  116. package/dist/core/gaurds/assertions/assertWarning/base.ts +43 -0
  117. package/dist/core/gaurds/assertions/assertWarning/index.ts +2 -0
  118. package/dist/core/gaurds/assertions/assertWarning/log.ts +43 -0
  119. package/dist/core/gaurds/assertions/checkType.ts +2 -0
  120. package/dist/core/gaurds/debugger/createDebugger.ts +196 -0
  121. package/dist/core/gaurds/debugger/debugPageFiles.ts +121 -0
  122. package/dist/core/gaurds/debugger/index.ts +2 -0
  123. package/dist/core/gaurds/errors/createErrorWithCleanStackTrace.ts +56 -0
  124. package/dist/core/gaurds/errors/removeErrMsg.ts +8 -0
  125. package/dist/core/gaurds/logger/addOnBeforeLogHook/index.ts +7 -0
  126. package/dist/core/gaurds/logger/formatHintLog.ts +17 -0
  127. package/dist/core/gaurds/logger/log404/index.spec.snapshot-1 +8 -0
  128. package/dist/core/gaurds/logger/log404/index.spec.snapshot-2 +9 -0
  129. package/dist/core/gaurds/logger/log404/index.spec.ts +78 -0
  130. package/dist/core/gaurds/logger/log404/index.ts +208 -0
  131. package/dist/core/gaurds/logger/logErrorHint/errors.ts +17 -0
  132. package/dist/core/gaurds/logger/logErrorHint/getErrorHint.spec.ts +1057 -0
  133. package/dist/core/gaurds/logger/logErrorHint.ts +196 -0
  134. package/dist/core/gaurds/logger/loggerNotProd/errorWithCodeSnippet/fixture-errors/errBabelReact.ts +16 -0
  135. package/dist/core/gaurds/logger/loggerNotProd/errorWithCodeSnippet/fixture-errors/errBabelSolid.ts +16 -0
  136. package/dist/core/gaurds/logger/loggerNotProd/errorWithCodeSnippet/fixture-errors/errEsbuild.ts +39 -0
  137. package/dist/core/gaurds/logger/loggerNotProd/errorWithCodeSnippet/fixture-errors/errMdx1.ts +24 -0
  138. package/dist/core/gaurds/logger/loggerNotProd/errorWithCodeSnippet/fixture-errors/errMdx2.ts +83 -0
  139. package/dist/core/gaurds/logger/loggerNotProd/errorWithCodeSnippet/fixture-errors/errPostcss.ts +33 -0
  140. package/dist/core/gaurds/logger/loggerNotProd/errorWithCodeSnippet/fixture-errors/errSwc.ts +20 -0
  141. package/dist/core/gaurds/logger/loggerNotProd/errorWithCodeSnippet/fixture-errors/errSwcBig.ts +19 -0
  142. package/dist/core/gaurds/logger/loggerNotProd/errorWithCodeSnippet/fixture-errors/errVueCss.ts +36 -0
  143. package/dist/core/gaurds/logger/loggerNotProd/errorWithCodeSnippet/fixture-errors/errVueHtml.ts +17 -0
  144. package/dist/core/gaurds/logger/loggerNotProd/errorWithCodeSnippet/fixture-errors/errVueJavascript.ts +16 -0
  145. package/dist/core/gaurds/logger/loggerNotProd/errorWithCodeSnippet/getPrettyErrMessage.spec.ts +101 -0
  146. package/dist/core/gaurds/logger/loggerNotProd/errorWithCodeSnippet/getPrettyErrorWithCodeSnippet.spec.ts +232 -0
  147. package/dist/core/gaurds/logger/loggerNotProd/errorWithCodeSnippet.ts +212 -0
  148. package/dist/core/gaurds/logger/loggerNotProd/log.ts +124 -0
  149. package/dist/core/gaurds/logger/loggerNotProd.ts +271 -0
  150. package/dist/core/gaurds/logger/loggerProd.ts +37 -0
  151. package/dist/core/gaurds/logger/loggerRuntime.ts +46 -0
  152. package/dist/core/gaurds/logger/loggerVite/removeSuperfluousViteLog.ts +30 -0
  153. package/dist/core/gaurds/logger/loggerVite.ts +65 -0
  154. package/dist/core/gaurds/logger/overwriteAssertProductionLogger/index.ts +9 -0
  155. package/dist/core/gaurds/logger/trackLogs.ts +35 -0
  156. package/dist/core/gaurds/logger/warnIfErrorIsNotObject.ts +31 -0
  157. package/dist/core/gaurds/normalization/freezePartial.ts +39 -0
  158. package/dist/core/gaurds/normalization/normalizeHeaders.ts +20 -0
  159. package/dist/core/gaurds/normalization/normalizeLink.tsx +14 -0
  160. package/dist/core/gaurds/normalization/normalizeUrlArgument.ts +22 -0
  161. package/dist/core/gaurds/validators/hasProp.ts +116 -0
  162. package/dist/core/gaurds/validators/isArray.ts +4 -0
  163. package/dist/core/gaurds/validators/isArrayOfStrings.ts +7 -0
  164. package/dist/core/gaurds/validators/isAsset.ts +43 -0
  165. package/dist/core/gaurds/validators/isBrowser.ts +5 -0
  166. package/dist/core/gaurds/validators/isBug.ts +5 -0
  167. package/dist/core/gaurds/validators/isCallable.ts +11 -0
  168. package/dist/core/gaurds/validators/isClientSideRoutable.ts +19 -0
  169. package/dist/core/gaurds/validators/isConfigInvalid.ts +10 -0
  170. package/dist/core/gaurds/validators/isDev.ts +56 -0
  171. package/dist/core/gaurds/validators/isErrorDebug.ts +7 -0
  172. package/dist/core/gaurds/validators/isErrorPage.ts +16 -0
  173. package/dist/core/gaurds/validators/isFilePathAbsoluteFilesystem.ts +55 -0
  174. package/dist/core/gaurds/validators/isHtml.ts +9 -0
  175. package/dist/core/gaurds/validators/isNewError.ts +29 -0
  176. package/dist/core/gaurds/validators/isNodeJS.ts +10 -0
  177. package/dist/core/gaurds/validators/isNotFalse.ts +3 -0
  178. package/dist/core/gaurds/validators/isNotNullish.ts +2 -0
  179. package/dist/core/gaurds/validators/isNpmPackage.ts +127 -0
  180. package/dist/core/gaurds/validators/isObject.ts +3 -0
  181. package/dist/core/gaurds/validators/isObjectOfStrings.ts +9 -0
  182. package/dist/core/gaurds/validators/isObjectWithKeys.ts +18 -0
  183. package/dist/core/gaurds/validators/isPlainObject.ts +21 -0
  184. package/dist/core/gaurds/validators/isPromise.ts +9 -0
  185. package/dist/core/gaurds/validators/isPropertyGetter.ts +4 -0
  186. package/dist/core/gaurds/validators/isReact.ts +24 -0
  187. package/dist/core/gaurds/validators/isReactElement.ts +21 -0
  188. package/dist/core/gaurds/validators/isRevealApp.ts +4 -0
  189. package/dist/core/gaurds/validators/isSameErrorMessage.ts +8 -0
  190. package/dist/core/gaurds/validators/isScriptFile.ts +75 -0
  191. package/dist/core/gaurds/validators/isServerSideError.ts +1 -0
  192. package/dist/core/gaurds/validators/isViteCliCall.ts +93 -0
  193. package/dist/core/gaurds/validators/isVitest.ts +7 -0
  194. package/dist/core/gaurds/validators/rollupIsEsm.ts +14 -0
  195. package/dist/core/gaurds/validators/viteIsSSR.ts +23 -0
  196. package/dist/core/globals/contexts/globalContext/getPageFilesExports.ts +28 -0
  197. package/dist/core/globals/contexts/globalContext/index.ts +374 -0
  198. package/dist/core/globals/contexts/globalContext/loadImportBuild.ts +44 -0
  199. package/dist/core/globals/contexts/globalContext/setup.ts +4 -0
  200. package/dist/core/globals/contexts/index.ts +1 -0
  201. package/dist/core/globals/logger/index.ts +1 -0
  202. package/dist/core/globals/logger/numberOfStackTraceLinesToRemove.ts +3 -0
  203. package/dist/core/globals/objects/index.ts +1 -0
  204. package/dist/core/globals/objects/log.ts +24 -0
  205. package/dist/core/globals/patterns/styleFileRE.ts +3 -0
  206. package/dist/core/globals/tags/addPrefixAssertType.ts +11 -0
  207. package/dist/core/globals/tags/addPrefixProjectName.ts +9 -0
  208. package/dist/core/globals/tags/projectTag.ts +3 -0
  209. package/dist/core/globals/tags/projectTagWithVersion.ts +5 -0
  210. package/dist/core/globals/versions/PROJECT_VERSION.ts +2 -0
  211. package/dist/core/globals/versions/projectInfo.ts +5 -0
  212. package/dist/core/handlers/handleErrorWithoutErrorPage.ts +70 -0
  213. package/dist/core/handlers/handlePageContext.ts +15 -0
  214. package/dist/core/handlers/handlePageContextRequestUrl.ts +56 -0
  215. package/dist/core/handlers/openFacebook.ts +20 -0
  216. package/dist/core/hocs/clientOnly.tsx +130 -0
  217. package/dist/core/hooks/callCumulativeHooks.ts +22 -0
  218. package/dist/core/hooks/executeHook.ts +118 -0
  219. package/dist/core/hooks/useConfig/configsCumulative.ts +6 -0
  220. package/dist/core/hooks/useConfig/useConfig-client.ts +82 -0
  221. package/dist/core/hooks/useConfig/useConfig-server.ts +152 -0
  222. package/dist/core/hydration/progressive.ts +252 -0
  223. package/dist/core/index.ts +60 -0
  224. package/dist/core/islands/index.tsx +198 -0
  225. package/dist/core/logging/UnifiedLoggerV2.ts +555 -0
  226. package/dist/core/logging/index.ts +80 -0
  227. package/dist/core/logging/plugins/FilePlugin.ts +132 -0
  228. package/dist/core/logging/plugins/PayloadCMSPlugin.ts +71 -0
  229. package/dist/core/logging/plugins/RemotePlugin.ts +110 -0
  230. package/dist/core/logging/plugins/index.ts +11 -0
  231. package/dist/core/naming/UnifiedNaming.ts +424 -0
  232. package/dist/core/observability/logger.ts +195 -0
  233. package/dist/core/observability/metrics.ts +156 -0
  234. package/dist/core/processing/getters/getAssertErrMsg.ts +49 -0
  235. package/dist/core/processing/getters/getAssetsDir.ts +11 -0
  236. package/dist/core/processing/getters/getBaseServer.ts +16 -0
  237. package/dist/core/processing/getters/getCacheControl.ts +26 -0
  238. package/dist/core/processing/getters/getConfigDefinedAt.ts +73 -0
  239. package/dist/core/processing/getters/getConfigReveal.ts +14 -0
  240. package/dist/core/processing/getters/getConfigValue.ts +68 -0
  241. package/dist/core/processing/getters/getConfigValueBuildTime.ts +92 -0
  242. package/dist/core/processing/getters/getConfigValueFilePathToShowToUser.ts +17 -0
  243. package/dist/core/processing/getters/getCurrentUrl.ts +42 -0
  244. package/dist/core/processing/getters/getEarlyHints.ts +58 -0
  245. package/dist/core/processing/getters/getEnv.ts +33 -0
  246. package/dist/core/processing/getters/getErrorPageId.ts +23 -0
  247. package/dist/core/processing/getters/getExportPath.spec.ts +34 -0
  248. package/dist/core/processing/getters/getExportPath.ts +33 -0
  249. package/dist/core/processing/getters/getFileExtension.ts +19 -0
  250. package/dist/core/processing/getters/getFilePath.ts +269 -0
  251. package/dist/core/processing/getters/getGlobalObject.ts +53 -0
  252. package/dist/core/processing/getters/getHeadSetting.tsx +36 -0
  253. package/dist/core/processing/getters/getHook.ts +222 -0
  254. package/dist/core/processing/getters/getHookFilePathToShowToUser.ts +12 -0
  255. package/dist/core/processing/getters/getHtmlTags.ts +341 -0
  256. package/dist/core/processing/getters/getHttpRequestAsyncStore.ts +122 -0
  257. package/dist/core/processing/getters/getHttpResponseBody.ts +177 -0
  258. package/dist/core/processing/getters/getMostSimilar.ts +72 -0
  259. package/dist/core/processing/getters/getOutDirs.ts +160 -0
  260. package/dist/core/processing/getters/getPageAssets/getManifestEntry.ts +164 -0
  261. package/dist/core/processing/getters/getPageAssets/retrieveAssetsDev.ts +96 -0
  262. package/dist/core/processing/getters/getPageAssets/retrieveAssetsProd.ts +86 -0
  263. package/dist/core/processing/getters/getPageAssets/sortPageAssetsForEarlyHintsHeader.ts +40 -0
  264. package/dist/core/processing/getters/getPageAssets.ts +140 -0
  265. package/dist/core/processing/getters/getPageConfig.ts +14 -0
  266. package/dist/core/processing/getters/getPageContext.ts +64 -0
  267. package/dist/core/processing/getters/getPageContextCurrent.ts +19 -0
  268. package/dist/core/processing/getters/getPageContextFromHooks.ts +335 -0
  269. package/dist/core/processing/getters/getPageContextProxyForUser.ts +97 -0
  270. package/dist/core/processing/getters/getPageContextRequestUrl.ts +22 -0
  271. package/dist/core/processing/getters/getPageContextSerializedInHtml.ts +32 -0
  272. package/dist/core/processing/getters/getPageContextUrlComputed.ts +410 -0
  273. package/dist/core/processing/getters/getPageElement.tsx +148 -0
  274. package/dist/core/processing/getters/getPageFiles/analyzeClientSide.ts +50 -0
  275. package/dist/core/processing/getters/getPageFiles/analyzePageServerSide.ts +32 -0
  276. package/dist/core/processing/getters/getPageFiles/getExportNames.ts +16 -0
  277. package/dist/core/processing/getters/getPageFiles/getExports.ts +193 -0
  278. package/dist/core/processing/getters/getPageFiles/index.ts +9 -0
  279. package/dist/core/processing/getters/getPageFiles/parseGlobResults.ts +167 -0
  280. package/dist/core/processing/getters/getPageFiles/setPageFiles.ts +76 -0
  281. package/dist/core/processing/getters/getPrefetchSettingResolved.ts.ts +87 -0
  282. package/dist/core/processing/getters/getProjectError.ts +18 -0
  283. package/dist/core/processing/getters/getPropAccessNotation.ts +10 -0
  284. package/dist/core/processing/getters/getRandomId.ts +15 -0
  285. package/dist/core/processing/getters/getRevalidationKey.ts +5 -0
  286. package/dist/core/processing/getters/getRevealClientEntry.ts +7 -0
  287. package/dist/core/processing/getters/getRevealConfig/configDefinitionsBuiltIn.ts +711 -0
  288. package/dist/core/processing/getters/getRevealConfig/crawlPlusFiles.ts +409 -0
  289. package/dist/core/processing/getters/getRevealConfig/filesystemRouting.spec.ts +40 -0
  290. package/dist/core/processing/getters/getRevealConfig/filesystemRouting.ts +286 -0
  291. package/dist/core/processing/getters/getRevealConfig/index.ts +1641 -0
  292. package/dist/core/processing/getters/getRevealConfig/loadFileAtConfigTime.ts +181 -0
  293. package/dist/core/processing/getters/getRevealConfig/resolvePointerImport.ts +240 -0
  294. package/dist/core/processing/getters/getRevealConfig/transformPointerImports.spec.ts +30 -0
  295. package/dist/core/processing/getters/getRevealConfig/transformPointerImports.ts +244 -0
  296. package/dist/core/processing/getters/getRevealConfig/transpileAndExecuteFile.ts +490 -0
  297. package/dist/core/processing/getters/getTagAttributesString.ts +27 -0
  298. package/dist/core/processing/getters/getTerminWidth.ts +9 -0
  299. package/dist/core/processing/getters/getValuePrintable.ts +6 -0
  300. package/dist/core/processing/getters/getViteDevScript.ts +47 -0
  301. package/dist/core/processing/iterators/analyzePage.ts +65 -0
  302. package/dist/core/processing/iterators/includes.ts +10 -0
  303. package/dist/core/processing/iterators/index.ts +2 -0
  304. package/dist/core/processing/iterators/objectKeys.ts +6 -0
  305. package/dist/core/processing/parsers/parseEsModule.ts +43 -0
  306. package/dist/core/processing/parsers/parseTransform.ts +36 -0
  307. package/dist/core/processing/serializers/notSerializable.ts +2 -0
  308. package/dist/core/processing/serializers/replaceWithParserPath.ts +30 -0
  309. package/dist/core/processing/serializers/serializePage/PageConfigSerialized.ts +45 -0
  310. package/dist/core/processing/serializers/serializePage/parsePageConfigs.ts +223 -0
  311. package/dist/core/processing/serializers/serializePage/serializeConfigValues.ts +336 -0
  312. package/dist/core/processing/serializers/serializePageContextClientSide.ts +179 -0
  313. package/dist/core/processing/serializers/stringify.ts +188 -0
  314. package/dist/core/processing/serializers/stringifyTypes.ts +103 -0
  315. package/dist/core/processing/setters/addIs404ToPageProps.ts +27 -0
  316. package/dist/core/processing/setters/setAlwaysShowStackTrace.ts +7 -0
  317. package/dist/core/processing/transformers/augmentType.ts +10 -0
  318. package/dist/core/processing/transformers/rollupSourceMap.ts +23 -0
  319. package/dist/core/processing/transformers/slice.ts +52 -0
  320. package/dist/core/renderer/page/executeOnBeforeRenderAndDataHooks.ts +53 -0
  321. package/dist/core/renderer/page/executeOnRenderHtmlHook.ts +261 -0
  322. package/dist/core/renderer/page/index.ts +804 -0
  323. package/dist/core/renderer/page/inferMediaType.ts +128 -0
  324. package/dist/core/renderer/page/loadUserFilesServerSide.ts +154 -0
  325. package/dist/core/renderer/page/preparePageContextForUserConsumption.ts +55 -0
  326. package/dist/core/renderer/page/preparePageContextForUserConsumptionServerSide.ts +38 -0
  327. package/dist/core/renderer/page/renderPageAlreadyRouted.ts +373 -0
  328. package/dist/core/renderer/page/resolveRedirects.ts +75 -0
  329. package/dist/core/renderer/prerender/index.ts +1 -0
  330. package/dist/core/renderer/prerender/runPrerender.ts +1141 -0
  331. package/dist/core/renderer/prerender/utils.ts +22 -0
  332. package/dist/core/renderer/stream/html.ts +408 -0
  333. package/dist/core/renderer/stream/index.ts +1001 -0
  334. package/dist/core/renderer/stream/onLoad.ts +14 -0
  335. package/dist/core/renderer/stream/react-streaming.ts +69 -0
  336. package/dist/core/renderer/stream/utils.ts +66 -0
  337. package/dist/core/resilience/circuit-breaker.ts +212 -0
  338. package/dist/core/resilience/retry.ts +172 -0
  339. package/dist/core/result/adapters.ts +254 -0
  340. package/dist/core/result.ts +332 -0
  341. package/dist/core/router/abort.ts +339 -0
  342. package/dist/core/router/apiRoutes.ts +94 -0
  343. package/dist/core/router/debug.ts +19 -0
  344. package/dist/core/router/deduceRouteStringFromFilesystemPath.ts +75 -0
  345. package/dist/core/router/dynamicApiRoutes.ts +18 -0
  346. package/dist/core/router/dynamicPageRoutes.ts +18 -0
  347. package/dist/core/router/executeGuardHook.ts +45 -0
  348. package/dist/core/router/executeOnBeforeRouteHook.ts +161 -0
  349. package/dist/core/router/index.ts +230 -0
  350. package/dist/core/router/loadPageRoutes.ts +155 -0
  351. package/dist/core/router/noRouteMatch.ts +1 -0
  352. package/dist/core/router/pageRoutes.ts +159 -0
  353. package/dist/core/router/resolvePrecedence.ts +128 -0
  354. package/dist/core/router/resolveRoute.ts +29 -0
  355. package/dist/core/router/resolveRouteFunction.ts +193 -0
  356. package/dist/core/router/resolveRouteString.ts +204 -0
  357. package/dist/core/router/resolveRouteUtils.ts +77 -0
  358. package/dist/core/router/resolveUrlPathname.ts +67 -0
  359. package/dist/core/router/routeInternal.ts +97 -0
  360. package/dist/core/router/utils.ts +30 -0
  361. package/dist/core/services/BaseService.ts +403 -0
  362. package/dist/core/targets/client/abort.ts +11 -0
  363. package/dist/core/targets/client/createPageContext.ts +48 -0
  364. package/dist/core/targets/client/entry.ts +15 -0
  365. package/dist/core/targets/client/executeOnRenderClientHook.ts +94 -0
  366. package/dist/core/targets/client/history.ts +142 -0
  367. package/dist/core/targets/client/index.ts +9 -0
  368. package/dist/core/targets/client/initClientRouter.ts +48 -0
  369. package/dist/core/targets/client/initOnLinkClick.ts +54 -0
  370. package/dist/core/targets/client/loadUserFilesClientSide.ts +92 -0
  371. package/dist/core/targets/client/navigate.ts +45 -0
  372. package/dist/core/targets/client/onBrowserHistoryNavigation.ts +85 -0
  373. package/dist/core/targets/client/onLoad.ts +10 -0
  374. package/dist/core/targets/client/pageContextInitIsPassedToClient.ts +2 -0
  375. package/dist/core/targets/client/pageFiles.ts +4 -0
  376. package/dist/core/targets/client/prefetch.ts +399 -0
  377. package/dist/core/targets/client/preparePageContextForUserConsumptionClientSide.ts +48 -0
  378. package/dist/core/targets/client/removeBuiltInOverrides.ts +37 -0
  379. package/dist/core/targets/client/removeFoucBuster.ts +70 -0
  380. package/dist/core/targets/client/renderPageClientSide.ts +1817 -0
  381. package/dist/core/targets/client/router.ts +15 -0
  382. package/dist/core/targets/client/scrollRestoration.ts +37 -0
  383. package/dist/core/targets/client/setScrollPosition.ts +87 -0
  384. package/dist/core/targets/client/skipLink.ts +63 -0
  385. package/dist/core/targets/client/utils.ts +34 -0
  386. package/dist/core/targets/http/createHttpResponse.ts +254 -0
  387. package/dist/core/targets/http/fetchBanner.ts +25 -0
  388. package/dist/core/targets/http/fetchCard.ts +25 -0
  389. package/dist/core/targets/http/fetchEvents.ts +25 -0
  390. package/dist/core/targets/http/fetchHero.ts +25 -0
  391. package/dist/core/targets/http/fetchMainInfos.ts +25 -0
  392. package/dist/core/targets/http/fetchPage.ts +78 -0
  393. package/dist/core/targets/http/fetchPages.ts +70 -0
  394. package/dist/core/targets/http/fetchVideos.ts +26 -0
  395. package/dist/core/targets/http/fetchYouTube.ts +90 -0
  396. package/dist/core/targets/server/entry.ts +43 -0
  397. package/dist/core/targets/server/middleware/addSsrMiddleware.ts +52 -0
  398. package/dist/core/targets/server/onLoad.ts +7 -0
  399. package/dist/core/targets/server/pageFiles.ts +4 -0
  400. package/dist/core/targets/server/root.ts +10 -0
  401. package/dist/core/targets/server/utils.ts +20 -0
  402. package/dist/core/targets/url/index.ts +439 -0
  403. package/dist/core/targets/url/modifyUrl.ts +45 -0
  404. package/dist/core/targets/url/parseUrl.ts +440 -0
  405. package/dist/core/targets/url/parseUrlExtras.ts +193 -0
  406. package/dist/core/targets/url/redirectHard.ts +3 -0
  407. package/dist/core/targets/url/updateCurrentPath.ts +52 -0
  408. package/dist/core/targets/url/urlToFile.ts +47 -0
  409. package/dist/core/types/UnifiedTypes.ts +493 -0
  410. package/dist/core/types/contracts.ts +61 -0
  411. package/dist/core/types/generator.ts +316 -0
  412. package/dist/core/utils/array/includes.ts +10 -0
  413. package/dist/core/utils/array/slice.ts +52 -0
  414. package/dist/core/utils/array/sorter.ts +130 -0
  415. package/dist/core/utils/array/stringifyStringArray.ts +7 -0
  416. package/dist/core/utils/array/unique.ts +5 -0
  417. package/dist/core/utils/async/genPromise.ts +8 -0
  418. package/dist/core/utils/async/pLimit.ts +157 -0
  419. package/dist/core/utils/async/sleep.ts +3 -0
  420. package/dist/core/utils/async/throttle.ts +14 -0
  421. package/dist/core/utils/index.ts +31 -0
  422. package/dist/core/utils/object/changeEnumerable.ts +9 -0
  423. package/dist/core/utils/object/deepEqual.ts +10 -0
  424. package/dist/core/utils/object/objectAssign.ts +16 -0
  425. package/dist/core/utils/object/objectDefineProperty.ts +15 -0
  426. package/dist/core/utils/object/objectEntries.ts +7 -0
  427. package/dist/core/utils/object/objectEntriesForEach.ts +7 -0
  428. package/dist/core/utils/object/objectFromEntries.ts +6 -0
  429. package/dist/core/utils/string/addWhitespace.ts +9 -0
  430. package/dist/core/utils/string/capitalizeFirstLetter.ts +8 -0
  431. package/dist/core/utils/string/compareString.ts +7 -0
  432. package/dist/core/utils/string/escapeHtml.ts +10 -0
  433. package/dist/core/utils/string/escapeRegex.ts +4 -0
  434. package/dist/core/utils/string/joinEnglish.ts +18 -0
  435. package/dist/core/utils/string/removeEmptyLines.ts +6 -0
  436. package/dist/core/utils/string/stripAnsi.ts +24 -0
  437. package/dist/core/utils/string/trimWithAnsi.ts +40 -0
  438. package/dist/core/utils/string/truncateString.ts +19 -0
  439. package/dist/core/utils/time/humanizeTime.ts +24 -0
  440. package/dist/exports/RenderErrorPage.js +3 -0
  441. package/dist/exports/__internal.js +3 -0
  442. package/dist/exports/abort.js +3 -0
  443. package/dist/exports/bin-entry.js +3 -0
  444. package/dist/exports/cli.js +3 -0
  445. package/dist/exports/client.js +3 -0
  446. package/dist/exports/config.js +1 -0
  447. package/dist/exports/helpers.js +1 -0
  448. package/dist/exports/index.js +33 -0
  449. package/dist/exports/plugin.js +3 -0
  450. package/dist/exports/prerender.js +3 -0
  451. package/dist/exports/router.js +3 -0
  452. package/dist/exports/routing.js +3 -0
  453. package/dist/exports/server.js +3 -0
  454. package/dist/exports/setup.js +3 -0
  455. package/dist/exports/types.js +1 -0
  456. package/dist/index.d.ts +1 -0
  457. package/dist/index.js +33 -0
  458. package/dist/integration/hydration.ts +52 -0
  459. package/dist/integration/onRenderClient.tsx +377 -0
  460. package/dist/integration/onRenderHtml.tsx +761 -0
  461. package/dist/integration/ssrEffect.ts +31 -0
  462. package/dist/integration/styles.css +141 -0
  463. package/dist/plugins/baseUrls.ts +54 -0
  464. package/dist/plugins/buildConfig/index.ts +701 -0
  465. package/dist/plugins/buildConfig/injectRollupInputs.ts +36 -0
  466. package/dist/plugins/commonConfig.ts +112 -0
  467. package/dist/plugins/config/assertResolveAlias.ts +99 -0
  468. package/dist/plugins/config/assertRevealConfig.ts +116 -0
  469. package/dist/plugins/config/fixServerAssets.ts +213 -0
  470. package/dist/plugins/config/index.ts +227 -0
  471. package/dist/plugins/config/pickFirst.ts +3 -0
  472. package/dist/plugins/config/resolveBase.ts +78 -0
  473. package/dist/plugins/devConfig/determineFsAllowList.ts +34 -0
  474. package/dist/plugins/devConfig/determineOptimizeDeps.ts +129 -0
  475. package/dist/plugins/devConfig/index.ts +222 -0
  476. package/dist/plugins/distFileNames.ts +341 -0
  477. package/dist/plugins/envVars.ts +150 -0
  478. package/dist/plugins/extractAssetsPlugin.ts +318 -0
  479. package/dist/plugins/extractExportNamesPlugin.ts +154 -0
  480. package/dist/plugins/fileEnv.ts +374 -0
  481. package/dist/plugins/importBuild/getRevealManifest.ts +20 -0
  482. package/dist/plugins/importBuild/index.ts +120 -0
  483. package/dist/plugins/importUserCode/addImportStatement.ts +32 -0
  484. package/dist/plugins/importUserCode/debug.ts +2 -0
  485. package/dist/plugins/importUserCode/getConfigFileExport.ts +24 -0
  486. package/dist/plugins/importUserCode/getVirtualFilePageConfigValuesAll.ts +95 -0
  487. package/dist/plugins/importUserCode/getVirtualFilePageConfigs.ts +150 -0
  488. package/dist/plugins/importUserCode/index.ts +375 -0
  489. package/dist/plugins/importUserCode/isRuntimeEnvMatch.ts +31 -0
  490. package/dist/plugins/index.ts +233 -0
  491. package/dist/plugins/onLoad.ts +12 -0
  492. package/dist/plugins/packageJsonFile.ts +62 -0
  493. package/dist/plugins/payload/index.ts +62 -0
  494. package/dist/plugins/previewConfig.ts +95 -0
  495. package/dist/plugins/react/index.ts +72 -0
  496. package/dist/plugins/removeRequireHookPlugin.ts +27 -0
  497. package/dist/plugins/resolveClientEntriesDev.ts +87 -0
  498. package/dist/plugins/reveal/index.ts +39 -0
  499. package/dist/plugins/reveal/remove-use-client-server.ts +52 -0
  500. package/dist/plugins/setGlobalContext.ts +53 -0
  501. package/dist/plugins/suppressRollupWarning.ts +94 -0
  502. package/dist/plugins/utils.ts +33 -0
  503. package/dist/plugins/vercel/+config.ts +18 -0
  504. package/dist/plugins/vercel/functions/assert.ts +13 -0
  505. package/dist/plugins/vercel/functions/build.ts +484 -0
  506. package/dist/plugins/vercel/functions/config.ts +147 -0
  507. package/dist/plugins/vercel/functions/helpers.ts +70 -0
  508. package/dist/plugins/vercel/functions/prerender.ts +140 -0
  509. package/dist/plugins/vercel/functions/route-regex.ts +37 -0
  510. package/dist/plugins/vercel/functions/utils.ts +33 -0
  511. package/dist/plugins/vercel/functions/vike.ts +754 -0
  512. package/dist/plugins/vercel/index.ts +186 -0
  513. package/dist/plugins/vercel/plugin.ts +45 -0
  514. package/dist/plugins/vercel/schemas/config/prerender-config.ts +20 -0
  515. package/dist/plugins/vercel/schemas/config/vc-config.ts +45 -0
  516. package/dist/plugins/vercel/schemas/config/vercel.ts +130 -0
  517. package/dist/plugins/vercel/schemas/exports.ts +12 -0
  518. package/dist/plugins/vercel/templates/edge-helpers.ts +72 -0
  519. package/dist/plugins/vercel/templates/node-helpers.ts +60 -0
  520. package/dist/plugins/vercel/templates/ssr_.template.ts +25 -0
  521. package/dist/plugins/vercel/templates/ssr_edge_.template.ts +20 -0
  522. package/dist/plugins/vercel/templates/utils.ts +31 -0
  523. package/dist/plugins/workaroundCssModuleHmr.ts +23 -0
  524. package/dist/types/index.ts +50 -0
  525. package/dist/types/interfaces/app.ts +700 -0
  526. package/dist/types/interfaces/client.ts +10 -0
  527. package/dist/types/interfaces/config.ts +481 -0
  528. package/dist/types/interfaces/context.ts +677 -0
  529. package/dist/types/interfaces/error.ts +6 -0
  530. package/dist/types/interfaces/file.ts +98 -0
  531. package/dist/types/interfaces/host.ts +209 -0
  532. package/dist/types/interfaces/log.ts +3 -0
  533. package/dist/types/interfaces/logic.ts +46 -0
  534. package/dist/types/interfaces/manifest.ts +15 -0
  535. package/dist/types/interfaces/node.ts +8 -0
  536. package/dist/types/interfaces/page.ts +154 -0
  537. package/dist/types/interfaces/reveal.ts +118 -0
  538. package/dist/types/interfaces/tag.ts +3 -0
  539. package/dist/types/modules/assets.d.ts +57 -0
  540. package/dist/types/modules/env.d.ts +34 -0
  541. package/dist/types/modules/global.d.ts +10 -0
  542. package/dist/types/modules/index.d.ts +1 -0
  543. package/dist/types/modules/node.d.ts +2 -0
  544. package/dist/types/modules/payload.d.ts +2 -0
  545. package/dist/types/modules/reveal-vercel.d.ts +19 -0
  546. package/dist/types/modules/reveal.d.ts +1 -0
  547. package/dist/types/modules/stripe.d.ts +41 -0
  548. package/dist/types/modules/supabase.d.ts +19 -0
  549. package/dist/types/modules/tailwindcss.d.ts +49 -0
  550. package/dist/types/modules/vite.d.ts +7 -0
  551. package/dist/types/namespaces/Config.ts +291 -0
  552. package/dist/types/namespaces/PageContext.ts +23 -0
  553. package/dist/types/namespaces/RevealNamespace.ts +51 -0
  554. package/dist/types/namespaces/index.ts +3 -0
  555. package/dist/ui/accents/DiagonalGrid.tsx +36 -0
  556. package/dist/ui/accents/Glass.tsx +33 -0
  557. package/dist/ui/accents/Parallax.tsx +78 -0
  558. package/dist/ui/accents/Shadow.tsx +28 -0
  559. package/dist/ui/accents/index.tsx +4 -0
  560. package/dist/ui/accessibility/index.ts +168 -0
  561. package/dist/ui/ai/ChatGPTAssistant.tsx +113 -0
  562. package/dist/ui/ai/index.ts +3 -0
  563. package/dist/ui/animations/container.ts +7 -0
  564. package/dist/ui/animations/content.ts +16 -0
  565. package/dist/ui/animations/fade.ts +16 -0
  566. package/dist/ui/animations/index.ts +6 -0
  567. package/dist/ui/animations/slide.ts +23 -0
  568. package/dist/ui/animations/text.ts +14 -0
  569. package/dist/ui/animations/transition.ts +1 -0
  570. package/dist/ui/audio/AudioTrack.tsx +26 -0
  571. package/dist/ui/audio/index.tsx +1 -0
  572. package/dist/ui/backgrounds/Diagonal.tsx +46 -0
  573. package/dist/ui/backgrounds/GradientConic.tsx +21 -0
  574. package/dist/ui/backgrounds/GradientConicRev.tsx +50 -0
  575. package/dist/ui/backgrounds/GradientGlass.tsx +28 -0
  576. package/dist/ui/backgrounds/GradientRadial.tsx +37 -0
  577. package/dist/ui/backgrounds/GradientRadialLeft.tsx +33 -0
  578. package/dist/ui/backgrounds/GradientToBottom.tsx +59 -0
  579. package/dist/ui/backgrounds/GradientToTop.tsx +60 -0
  580. package/dist/ui/backgrounds/Solid.tsx +50 -0
  581. package/dist/ui/backgrounds/Straight.tsx +55 -0
  582. package/dist/ui/backgrounds/TopRight.tsx +15 -0
  583. package/dist/ui/backgrounds/Wrapper.tsx +33 -0
  584. package/dist/ui/backgrounds/index.tsx +12 -0
  585. package/dist/ui/buttons/Button.tsx +54 -0
  586. package/dist/ui/buttons/DisclosureButton.tsx +35 -0
  587. package/dist/ui/buttons/GradientButton.tsx +51 -0
  588. package/dist/ui/buttons/IconButton.tsx +24 -0
  589. package/dist/ui/buttons/LikeButton.tsx +221 -0
  590. package/dist/ui/buttons/MobileMenuButton.tsx +63 -0
  591. package/dist/ui/buttons/MusicButton.tsx +53 -0
  592. package/dist/ui/buttons/SignUpButton.tsx +18 -0
  593. package/dist/ui/buttons/index.tsx +8 -0
  594. package/dist/ui/cards/Card.tsx +255 -0
  595. package/dist/ui/cards/ProductCard.tsx +291 -0
  596. package/dist/ui/cards/VideoCard.tsx +201 -0
  597. package/dist/ui/cards/index.tsx +3 -0
  598. package/dist/ui/contexts/DisclosureContext.tsx +44 -0
  599. package/dist/ui/contexts/GlobalContext.tsx +67 -0
  600. package/dist/ui/contexts/MenuContext.tsx +8 -0
  601. package/dist/ui/contexts/PageContext.tsx +28 -0
  602. package/dist/ui/contexts/ThemeContext.tsx +195 -0
  603. package/dist/ui/controls/MusicHeader.tsx +484 -0
  604. package/dist/ui/controls/MusicPlayer.tsx +76 -0
  605. package/dist/ui/controls/MusicSidebar.tsx +118 -0
  606. package/dist/ui/controls/MusicSlider.tsx +25 -0
  607. package/dist/ui/controls/MusicUpload.tsx +296 -0
  608. package/dist/ui/controls/PlayPause.tsx +64 -0
  609. package/dist/ui/controls/PlayerContent.tsx +205 -0
  610. package/dist/ui/controls/SearchContent.tsx +58 -0
  611. package/dist/ui/controls/SearchInput.tsx +118 -0
  612. package/dist/ui/controls/Searchbar.tsx +53 -0
  613. package/dist/ui/controls/SidebarItem.tsx +57 -0
  614. package/dist/ui/controls/SongItem.tsx +45 -0
  615. package/dist/ui/controls/VideoPlayer.tsx +36 -0
  616. package/dist/ui/controls/index.tsx +13 -0
  617. package/dist/ui/dividers/Horizontal.tsx +18 -0
  618. package/dist/ui/dividers/Transparent.tsx +7 -0
  619. package/dist/ui/dividers/index.tsx +2 -0
  620. package/dist/ui/error/ErrorBoundary.tsx +150 -0
  621. package/dist/ui/error/index.tsx +1 -0
  622. package/dist/ui/forms/Input.tsx +38 -0
  623. package/dist/ui/forms/MediaItem.tsx +105 -0
  624. package/dist/ui/forms/index.tsx +2 -0
  625. package/dist/ui/game/Enemy.tsx +52 -0
  626. package/dist/ui/game/Fighters.tsx +38 -0
  627. package/dist/ui/game/GameControls.tsx +37 -0
  628. package/dist/ui/game/HealthBar.tsx +18 -0
  629. package/dist/ui/game/Player.tsx +70 -0
  630. package/dist/ui/game/index.tsx +5 -0
  631. package/dist/ui/hooks/useApiData.ts +57 -0
  632. package/dist/ui/hooks/useAuthModal.ts +18 -0
  633. package/dist/ui/hooks/useCart.ts +21 -0
  634. package/dist/ui/hooks/useChatGPT.ts +94 -0
  635. package/dist/ui/hooks/useCustomProps.ts +31 -0
  636. package/dist/ui/hooks/useData.ts +10 -0
  637. package/dist/ui/hooks/useDebounce.ts +52 -0
  638. package/dist/ui/hooks/useDisclosure.ts +8 -0
  639. package/dist/ui/hooks/useGame.ts +1147 -0
  640. package/dist/ui/hooks/useLayoutClasses.ts +70 -0
  641. package/dist/ui/hooks/useLazyLoad.ts +78 -0
  642. package/dist/ui/hooks/useLikeSong.ts +22 -0
  643. package/dist/ui/hooks/useLivePreview.ts +60 -0
  644. package/dist/ui/hooks/useMenu.ts +6 -0
  645. package/dist/ui/hooks/useOnPlay.ts +23 -0
  646. package/dist/ui/hooks/usePageContext.ts +174 -0
  647. package/dist/ui/hooks/useParallax.ts +161 -0
  648. package/dist/ui/hooks/usePreviewModal.ts +25 -0
  649. package/dist/ui/hooks/useScreenSize.ts +56 -0
  650. package/dist/ui/hooks/useTheme.ts +6 -0
  651. package/dist/ui/images/Carousel.tsx +326 -0
  652. package/dist/ui/images/Circle.tsx +9 -0
  653. package/dist/ui/images/Defs.tsx +7 -0
  654. package/dist/ui/images/Image.tsx +127 -0
  655. package/dist/ui/images/ImageGrid.tsx +73 -0
  656. package/dist/ui/images/Logo.tsx +22 -0
  657. package/dist/ui/images/Path.tsx +27 -0
  658. package/dist/ui/images/Pattern.tsx +70 -0
  659. package/dist/ui/images/PromoBanner.tsx +25 -0
  660. package/dist/ui/images/Rect.tsx +10 -0
  661. package/dist/ui/images/SVG.tsx +58 -0
  662. package/dist/ui/images/Stop.tsx +15 -0
  663. package/dist/ui/images/index.tsx +12 -0
  664. package/dist/ui/layouts/classNames.ts +8 -0
  665. package/dist/ui/layouts/container.ts +20 -0
  666. package/dist/ui/layouts/flex.ts +13 -0
  667. package/dist/ui/layouts/grid.ts +11 -0
  668. package/dist/ui/layouts/main.ts +31 -0
  669. package/dist/ui/layouts/responsive.ts +28 -0
  670. package/dist/ui/layouts/stack.ts +24 -0
  671. package/dist/ui/lists/DescriptionList.tsx +41 -0
  672. package/dist/ui/lists/DisclosurePanel.tsx +20 -0
  673. package/dist/ui/lists/JobOpeningsList.tsx +54 -0
  674. package/dist/ui/lists/List.tsx +18 -0
  675. package/dist/ui/lists/ListElements.tsx +43 -0
  676. package/dist/ui/lists/ListItem.tsx +63 -0
  677. package/dist/ui/lists/ProductList.tsx +37 -0
  678. package/dist/ui/lists/StatsList.tsx +64 -0
  679. package/dist/ui/lists/UList.tsx +54 -0
  680. package/dist/ui/lists/index.ts +9 -0
  681. package/dist/ui/navigation/DesktopMenu.tsx +14 -0
  682. package/dist/ui/navigation/Footer.tsx +128 -0
  683. package/dist/ui/navigation/Link.tsx +225 -0
  684. package/dist/ui/navigation/MobileMenu.tsx +26 -0
  685. package/dist/ui/navigation/NavigationLinks.tsx +244 -0
  686. package/dist/ui/navigation/NotFound.tsx +12 -0
  687. package/dist/ui/navigation/Route.tsx +120 -0
  688. package/dist/ui/navigation/Transition.tsx +40 -0
  689. package/dist/ui/navigation/index.tsx +8 -0
  690. package/dist/ui/notifications/Banner.tsx +69 -0
  691. package/dist/ui/notifications/Error.tsx +12 -0
  692. package/dist/ui/notifications/Loader.tsx +14 -0
  693. package/dist/ui/notifications/NoResults.tsx +11 -0
  694. package/dist/ui/notifications/index.tsx +4 -0
  695. package/dist/ui/providers/AppProvider.tsx +115 -0
  696. package/dist/ui/providers/DisclosureProvider.tsx +21 -0
  697. package/dist/ui/providers/MenuProvider.tsx +40 -0
  698. package/dist/ui/providers/PageContextProvider.tsx +176 -0
  699. package/dist/ui/providers/ThemeProvider.tsx +196 -0
  700. package/dist/ui/shells/App.tsx +57 -0
  701. package/dist/ui/shells/Container.tsx +74 -0
  702. package/dist/ui/shells/Disclosure.tsx +72 -0
  703. package/dist/ui/shells/Field.tsx +21 -0
  704. package/dist/ui/shells/Flex.tsx +193 -0
  705. package/dist/ui/shells/Grid.tsx +118 -0
  706. package/dist/ui/shells/Header.tsx +123 -0
  707. package/dist/ui/shells/Main.tsx +96 -0
  708. package/dist/ui/shells/Nav.tsx +138 -0
  709. package/dist/ui/shells/Section.tsx +94 -0
  710. package/dist/ui/shells/Skeleton.tsx +24 -0
  711. package/dist/ui/shells/index.ts +11 -0
  712. package/dist/ui/text/Article.tsx +141 -0
  713. package/dist/ui/text/Currency.tsx +29 -0
  714. package/dist/ui/text/Heading.tsx +29 -0
  715. package/dist/ui/text/Label.tsx +24 -0
  716. package/dist/ui/text/Motto.tsx +40 -0
  717. package/dist/ui/text/Paragraph.tsx +20 -0
  718. package/dist/ui/text/Span.tsx +20 -0
  719. package/dist/ui/text/TagLine.tsx +20 -0
  720. package/dist/ui/text/Time.tsx +36 -0
  721. package/dist/ui/text/WelcomeHeading.tsx +40 -0
  722. package/dist/ui/text/index.ts +10 -0
  723. package/dist/ui/video/VideoComponent.tsx +23 -0
  724. package/dist/ui/video/VideoDetail.tsx +33 -0
  725. package/dist/ui/video/VideoItem.tsx +51 -0
  726. package/dist/ui/video/VideoList.tsx +155 -0
  727. package/dist/ui/video/index.ts +4 -0
  728. package/package.json +721 -0
@@ -0,0 +1,1339 @@
1
+ import assert from "assert"
2
+ import { describe, expect, it } from "vitest"
3
+ import { parseUrl } from "../targets/url/parseUrl"
4
+
5
+ describe("parseUrl", () => {
6
+ it("basics", () => {
7
+ expect(parseUrl("/", "/")).toMatchInlineSnapshot(`
8
+ {
9
+ "hasBaseServer": true,
10
+ "hash": "",
11
+ "hashOriginal": null,
12
+ "hostname": null,
13
+ "href": "/",
14
+ "origin": null,
15
+ "pathname": "/",
16
+ "pathnameOriginal": "/",
17
+ "port": null,
18
+ "protocol": null,
19
+ "search": {},
20
+ "searchAll": {},
21
+ "searchOriginal": null,
22
+ }
23
+ `)
24
+ expect(parseUrl("/hello", "/")).toMatchInlineSnapshot(`
25
+ {
26
+ "hasBaseServer": true,
27
+ "hash": "",
28
+ "hashOriginal": null,
29
+ "hostname": null,
30
+ "href": "/hello",
31
+ "origin": null,
32
+ "pathname": "/hello",
33
+ "pathnameOriginal": "/hello",
34
+ "port": null,
35
+ "protocol": null,
36
+ "search": {},
37
+ "searchAll": {},
38
+ "searchOriginal": null,
39
+ }
40
+ `)
41
+ })
42
+
43
+ it("Base URL", () => {
44
+ expect(parseUrl("/base", "/base")).toMatchInlineSnapshot(`
45
+ {
46
+ "hasBaseServer": true,
47
+ "hash": "",
48
+ "hashOriginal": null,
49
+ "hostname": null,
50
+ "href": "/",
51
+ "origin": null,
52
+ "pathname": "/",
53
+ "pathnameOriginal": "/base",
54
+ "port": null,
55
+ "protocol": null,
56
+ "search": {},
57
+ "searchAll": {},
58
+ "searchOriginal": null,
59
+ }
60
+ `)
61
+ expect(parseUrl("/base/", "/base")).toMatchInlineSnapshot(`
62
+ {
63
+ "hasBaseServer": true,
64
+ "hash": "",
65
+ "hashOriginal": null,
66
+ "hostname": null,
67
+ "href": "/",
68
+ "origin": null,
69
+ "pathname": "/",
70
+ "pathnameOriginal": "/base/",
71
+ "port": null,
72
+ "protocol": null,
73
+ "search": {},
74
+ "searchAll": {},
75
+ "searchOriginal": null,
76
+ }
77
+ `)
78
+ expect(parseUrl("/base", "/base/")).toMatchInlineSnapshot(`
79
+ {
80
+ "hasBaseServer": true,
81
+ "hash": "",
82
+ "hashOriginal": null,
83
+ "hostname": null,
84
+ "href": "/",
85
+ "origin": null,
86
+ "pathname": "/",
87
+ "pathnameOriginal": "/base",
88
+ "port": null,
89
+ "protocol": null,
90
+ "search": {},
91
+ "searchAll": {},
92
+ "searchOriginal": null,
93
+ }
94
+ `)
95
+ expect(parseUrl("https://example.org/base", "/base"))
96
+ .toMatchInlineSnapshot(`
97
+ {
98
+ "hasBaseServer": true,
99
+ "hash": "",
100
+ "hashOriginal": null,
101
+ "hostname": "example.org",
102
+ "href": "https://example.org/",
103
+ "origin": "https://example.org",
104
+ "pathname": "/",
105
+ "pathnameOriginal": "/base",
106
+ "port": null,
107
+ "protocol": "https://",
108
+ "search": {},
109
+ "searchAll": {},
110
+ "searchOriginal": null,
111
+ }
112
+ `)
113
+ expect(parseUrl("https://example.org/base/", "/base"))
114
+ .toMatchInlineSnapshot(`
115
+ {
116
+ "hasBaseServer": true,
117
+ "hash": "",
118
+ "hashOriginal": null,
119
+ "hostname": "example.org",
120
+ "href": "https://example.org/",
121
+ "origin": "https://example.org",
122
+ "pathname": "/",
123
+ "pathnameOriginal": "/base/",
124
+ "port": null,
125
+ "protocol": "https://",
126
+ "search": {},
127
+ "searchAll": {},
128
+ "searchOriginal": null,
129
+ }
130
+ `)
131
+ expect(parseUrl("https://example.org/base", "/base/"))
132
+ .toMatchInlineSnapshot(`
133
+ {
134
+ "hasBaseServer": true,
135
+ "hash": "",
136
+ "hashOriginal": null,
137
+ "hostname": "example.org",
138
+ "href": "https://example.org/",
139
+ "origin": "https://example.org",
140
+ "pathname": "/",
141
+ "pathnameOriginal": "/base",
142
+ "port": null,
143
+ "protocol": "https://",
144
+ "search": {},
145
+ "searchAll": {},
146
+ "searchOriginal": null,
147
+ }
148
+ `)
149
+ expect(parseUrl("/base/hello", "/base")).toMatchInlineSnapshot(`
150
+ {
151
+ "hasBaseServer": true,
152
+ "hash": "",
153
+ "hashOriginal": null,
154
+ "hostname": null,
155
+ "href": "/hello",
156
+ "origin": null,
157
+ "pathname": "/hello",
158
+ "pathnameOriginal": "/base/hello",
159
+ "port": null,
160
+ "protocol": null,
161
+ "search": {},
162
+ "searchAll": {},
163
+ "searchOriginal": null,
164
+ }
165
+ `)
166
+ expect(parseUrl("/hello", "/base")).toMatchInlineSnapshot(`
167
+ {
168
+ "hasBaseServer": false,
169
+ "hash": "",
170
+ "hashOriginal": null,
171
+ "hostname": null,
172
+ "href": "/hello",
173
+ "origin": null,
174
+ "pathname": "/hello",
175
+ "pathnameOriginal": "/hello",
176
+ "port": null,
177
+ "protocol": null,
178
+ "search": {},
179
+ "searchAll": {},
180
+ "searchOriginal": null,
181
+ }
182
+ `)
183
+ expect(parseUrl("/base/hello", "/base/nested")).toMatchInlineSnapshot(`
184
+ {
185
+ "hasBaseServer": false,
186
+ "hash": "",
187
+ "hashOriginal": null,
188
+ "hostname": null,
189
+ "href": "/base/hello",
190
+ "origin": null,
191
+ "pathname": "/base/hello",
192
+ "pathnameOriginal": "/base/hello",
193
+ "port": null,
194
+ "protocol": null,
195
+ "search": {},
196
+ "searchAll": {},
197
+ "searchOriginal": null,
198
+ }
199
+ `)
200
+ })
201
+
202
+ it("origin", () => {
203
+ expect(parseUrl("https://example.org/", "/")).toMatchInlineSnapshot(`
204
+ {
205
+ "hasBaseServer": true,
206
+ "hash": "",
207
+ "hashOriginal": null,
208
+ "hostname": "example.org",
209
+ "href": "https://example.org/",
210
+ "origin": "https://example.org",
211
+ "pathname": "/",
212
+ "pathnameOriginal": "/",
213
+ "port": null,
214
+ "protocol": "https://",
215
+ "search": {},
216
+ "searchAll": {},
217
+ "searchOriginal": null,
218
+ }
219
+ `)
220
+ expect(parseUrl("http://example.org/", "/")).toMatchInlineSnapshot(`
221
+ {
222
+ "hasBaseServer": true,
223
+ "hash": "",
224
+ "hashOriginal": null,
225
+ "hostname": "example.org",
226
+ "href": "http://example.org/",
227
+ "origin": "http://example.org",
228
+ "pathname": "/",
229
+ "pathnameOriginal": "/",
230
+ "port": null,
231
+ "protocol": "http://",
232
+ "search": {},
233
+ "searchAll": {},
234
+ "searchOriginal": null,
235
+ }
236
+ `)
237
+ expect(parseUrl("http://example.org", "/")).toMatchInlineSnapshot(`
238
+ {
239
+ "hasBaseServer": true,
240
+ "hash": "",
241
+ "hashOriginal": null,
242
+ "hostname": "example.org",
243
+ "href": "http://example.org/",
244
+ "origin": "http://example.org",
245
+ "pathname": "/",
246
+ "pathnameOriginal": "",
247
+ "port": null,
248
+ "protocol": "http://",
249
+ "search": {},
250
+ "searchAll": {},
251
+ "searchOriginal": null,
252
+ }
253
+ `)
254
+ expect(parseUrl("http://example.org/base/hello", "/base"))
255
+ .toMatchInlineSnapshot(`
256
+ {
257
+ "hasBaseServer": true,
258
+ "hash": "",
259
+ "hashOriginal": null,
260
+ "hostname": "example.org",
261
+ "href": "http://example.org/hello",
262
+ "origin": "http://example.org",
263
+ "pathname": "/hello",
264
+ "pathnameOriginal": "/base/hello",
265
+ "port": null,
266
+ "protocol": "http://",
267
+ "search": {},
268
+ "searchAll": {},
269
+ "searchOriginal": null,
270
+ }
271
+ `)
272
+
273
+ // Port
274
+ expect(parseUrl("http://localhost:3000/base/hello", "/base"))
275
+ .toMatchInlineSnapshot(`
276
+ {
277
+ "hasBaseServer": true,
278
+ "hash": "",
279
+ "hashOriginal": null,
280
+ "hostname": "localhost",
281
+ "href": "http://localhost:3000/hello",
282
+ "origin": "http://localhost:3000",
283
+ "pathname": "/hello",
284
+ "pathnameOriginal": "/base/hello",
285
+ "port": 3000,
286
+ "protocol": "http://",
287
+ "search": {},
288
+ "searchAll": {},
289
+ "searchOriginal": null,
290
+ }
291
+ `)
292
+ expect(parseUrl("https://example.org:0", "/")).toMatchInlineSnapshot(`
293
+ {
294
+ "hasBaseServer": true,
295
+ "hash": "",
296
+ "hashOriginal": null,
297
+ "hostname": "example.org",
298
+ "href": "https://example.org:0/",
299
+ "origin": "https://example.org:0",
300
+ "pathname": "/",
301
+ "pathnameOriginal": "",
302
+ "port": 0,
303
+ "protocol": "https://",
304
+ "search": {},
305
+ "searchAll": {},
306
+ "searchOriginal": null,
307
+ }
308
+ `)
309
+ })
310
+
311
+ it("hash", () => {
312
+ expect(parseUrl("/#reviews", "/")).toMatchInlineSnapshot(`
313
+ {
314
+ "hasBaseServer": true,
315
+ "hash": "reviews",
316
+ "hashOriginal": "#reviews",
317
+ "hostname": null,
318
+ "href": "/#reviews",
319
+ "origin": null,
320
+ "pathname": "/",
321
+ "pathnameOriginal": "/",
322
+ "port": null,
323
+ "protocol": null,
324
+ "search": {},
325
+ "searchAll": {},
326
+ "searchOriginal": null,
327
+ }
328
+ `)
329
+ expect(parseUrl("/#", "/")).toMatchInlineSnapshot(`
330
+ {
331
+ "hasBaseServer": true,
332
+ "hash": "",
333
+ "hashOriginal": "#",
334
+ "hostname": null,
335
+ "href": "/#",
336
+ "origin": null,
337
+ "pathname": "/",
338
+ "pathnameOriginal": "/",
339
+ "port": null,
340
+ "protocol": null,
341
+ "search": {},
342
+ "searchAll": {},
343
+ "searchOriginal": null,
344
+ }
345
+ `)
346
+ expect(parseUrl("/", "/")).toMatchInlineSnapshot(`
347
+ {
348
+ "hasBaseServer": true,
349
+ "hash": "",
350
+ "hashOriginal": null,
351
+ "hostname": null,
352
+ "href": "/",
353
+ "origin": null,
354
+ "pathname": "/",
355
+ "pathnameOriginal": "/",
356
+ "port": null,
357
+ "protocol": null,
358
+ "search": {},
359
+ "searchAll": {},
360
+ "searchOriginal": null,
361
+ }
362
+ `)
363
+ expect(parseUrl("/a/b#", "/a/")).toMatchInlineSnapshot(`
364
+ {
365
+ "hasBaseServer": true,
366
+ "hash": "",
367
+ "hashOriginal": "#",
368
+ "hostname": null,
369
+ "href": "/b#",
370
+ "origin": null,
371
+ "pathname": "/b",
372
+ "pathnameOriginal": "/a/b",
373
+ "port": null,
374
+ "protocol": null,
375
+ "search": {},
376
+ "searchAll": {},
377
+ "searchOriginal": null,
378
+ }
379
+ `)
380
+ })
381
+
382
+ it("search", () => {
383
+ expect(parseUrl("/?q=apples", "/")).toMatchInlineSnapshot(`
384
+ {
385
+ "hasBaseServer": true,
386
+ "hash": "",
387
+ "hashOriginal": null,
388
+ "hostname": null,
389
+ "href": "/?q=apples",
390
+ "origin": null,
391
+ "pathname": "/",
392
+ "pathnameOriginal": "/",
393
+ "port": null,
394
+ "protocol": null,
395
+ "search": {
396
+ "q": "apples",
397
+ },
398
+ "searchAll": {
399
+ "q": [
400
+ "apples",
401
+ ],
402
+ },
403
+ "searchOriginal": "?q=apples",
404
+ }
405
+ `)
406
+ expect(parseUrl("/shop?fruits=apples&candies=chocolate,lollipop", "/"))
407
+ .toMatchInlineSnapshot(`
408
+ {
409
+ "hasBaseServer": true,
410
+ "hash": "",
411
+ "hashOriginal": null,
412
+ "hostname": null,
413
+ "href": "/shop?fruits=apples&candies=chocolate,lollipop",
414
+ "origin": null,
415
+ "pathname": "/shop",
416
+ "pathnameOriginal": "/shop",
417
+ "port": null,
418
+ "protocol": null,
419
+ "search": {
420
+ "candies": "chocolate,lollipop",
421
+ "fruits": "apples",
422
+ },
423
+ "searchAll": {
424
+ "candies": [
425
+ "chocolate,lollipop",
426
+ ],
427
+ "fruits": [
428
+ "apples",
429
+ ],
430
+ },
431
+ "searchOriginal": "?fruits=apples&candies=chocolate,lollipop",
432
+ }
433
+ `)
434
+ const searchQuery =
435
+ "?fruit=apples&fruit=bananas&candy=chocolate&candy=lollipop&constructor=val1&constructor=val2"
436
+ const { searchOriginal } = parseUrl(`/shop${searchQuery}`, "/")
437
+ assert(searchOriginal)
438
+ const searchParams = new URLSearchParams(searchOriginal)
439
+ expect(searchParams.getAll("fruit")).toMatchInlineSnapshot(`
440
+ [
441
+ "apples",
442
+ "bananas",
443
+ ]
444
+ `)
445
+ expect(searchParams.getAll("candy")).toMatchInlineSnapshot(`
446
+ [
447
+ "chocolate",
448
+ "lollipop",
449
+ ]
450
+ `)
451
+ expect(parseUrl(`/shop${searchQuery}`, "/shop")).toMatchInlineSnapshot(`
452
+ {
453
+ "hasBaseServer": true,
454
+ "hash": "",
455
+ "hashOriginal": null,
456
+ "hostname": null,
457
+ "href": "/?fruit=apples&fruit=bananas&candy=chocolate&candy=lollipop&constructor=val1&constructor=val2",
458
+ "origin": null,
459
+ "pathname": "/",
460
+ "pathnameOriginal": "/shop",
461
+ "port": null,
462
+ "protocol": null,
463
+ "search": {
464
+ "candy": "lollipop",
465
+ "constructor": "val2",
466
+ "fruit": "bananas",
467
+ },
468
+ "searchAll": {
469
+ "candy": [
470
+ "chocolate",
471
+ "lollipop",
472
+ ],
473
+ "constructor": [
474
+ "val1",
475
+ "val2",
476
+ ],
477
+ "fruit": [
478
+ "apples",
479
+ "bananas",
480
+ ],
481
+ },
482
+ "searchOriginal": "?fruit=apples&fruit=bananas&candy=chocolate&candy=lollipop&constructor=val1&constructor=val2",
483
+ }
484
+ `)
485
+ })
486
+
487
+ it("decoding", () => {
488
+ // Pathname
489
+ {
490
+ expect(parseUrl("/user/@rom", "/")).toMatchInlineSnapshot(`
491
+ {
492
+ "hasBaseServer": true,
493
+ "hash": "",
494
+ "hashOriginal": null,
495
+ "hostname": null,
496
+ "href": "/user/@rom",
497
+ "origin": null,
498
+ "pathname": "/user/@rom",
499
+ "pathnameOriginal": "/user/@rom",
500
+ "port": null,
501
+ "protocol": null,
502
+ "search": {},
503
+ "searchAll": {},
504
+ "searchOriginal": null,
505
+ }
506
+ `)
507
+ assert(encodeURIComponent("@") === "%40")
508
+ expect(parseUrl("/user/%40rom", "/")).toMatchInlineSnapshot(`
509
+ {
510
+ "hasBaseServer": true,
511
+ "hash": "",
512
+ "hashOriginal": null,
513
+ "hostname": null,
514
+ "href": "/user/%40rom",
515
+ "origin": null,
516
+ "pathname": "/user/@rom",
517
+ "pathnameOriginal": "/user/%40rom",
518
+ "port": null,
519
+ "protocol": null,
520
+ "search": {},
521
+ "searchAll": {},
522
+ "searchOriginal": null,
523
+ }
524
+ `)
525
+ assert(encodeURIComponent("/") === "%2F")
526
+ assert(decodeURIComponent("%2F") === "/")
527
+ assert(decodeURI("%2F") === "%2F")
528
+ expect(parseUrl(`/r${encodeURIComponent("/")}om`, "/"))
529
+ .toMatchInlineSnapshot(`
530
+ {
531
+ "hasBaseServer": true,
532
+ "hash": "",
533
+ "hashOriginal": null,
534
+ "hostname": null,
535
+ "href": "/r%2Fom",
536
+ "origin": null,
537
+ "pathname": "/r%2Fom",
538
+ "pathnameOriginal": "/r%2Fom",
539
+ "port": null,
540
+ "protocol": null,
541
+ "search": {},
542
+ "searchAll": {},
543
+ "searchOriginal": null,
544
+ }
545
+ `)
546
+ }
547
+
548
+ // Hash
549
+ {
550
+ expect(parseUrl("/#@reviews", "/")).toMatchInlineSnapshot(`
551
+ {
552
+ "hasBaseServer": true,
553
+ "hash": "@reviews",
554
+ "hashOriginal": "#@reviews",
555
+ "hostname": null,
556
+ "href": "/#@reviews",
557
+ "origin": null,
558
+ "pathname": "/",
559
+ "pathnameOriginal": "/",
560
+ "port": null,
561
+ "protocol": null,
562
+ "search": {},
563
+ "searchAll": {},
564
+ "searchOriginal": null,
565
+ }
566
+ `)
567
+ assert(encodeURIComponent("@") === "%40")
568
+ expect(parseUrl(`/#%40reviews`, "/")).toMatchInlineSnapshot(`
569
+ {
570
+ "hasBaseServer": true,
571
+ "hash": "@reviews",
572
+ "hashOriginal": "#%40reviews",
573
+ "hostname": null,
574
+ "href": "/#%40reviews",
575
+ "origin": null,
576
+ "pathname": "/",
577
+ "pathnameOriginal": "/",
578
+ "port": null,
579
+ "protocol": null,
580
+ "search": {},
581
+ "searchAll": {},
582
+ "searchOriginal": null,
583
+ }
584
+ `)
585
+ }
586
+
587
+ // Search
588
+ {
589
+ expect(parseUrl("/?section=@reviews", "/")).toMatchInlineSnapshot(`
590
+ {
591
+ "hasBaseServer": true,
592
+ "hash": "",
593
+ "hashOriginal": null,
594
+ "hostname": null,
595
+ "href": "/?section=@reviews",
596
+ "origin": null,
597
+ "pathname": "/",
598
+ "pathnameOriginal": "/",
599
+ "port": null,
600
+ "protocol": null,
601
+ "search": {
602
+ "section": "@reviews",
603
+ },
604
+ "searchAll": {
605
+ "section": [
606
+ "@reviews",
607
+ ],
608
+ },
609
+ "searchOriginal": "?section=@reviews",
610
+ }
611
+ `)
612
+ assert(encodeURIComponent("@") === "%40")
613
+ expect(parseUrl(`/?section=%40reviews`, "/")).toMatchInlineSnapshot(`
614
+ {
615
+ "hasBaseServer": true,
616
+ "hash": "",
617
+ "hashOriginal": null,
618
+ "hostname": null,
619
+ "href": "/?section=%40reviews",
620
+ "origin": null,
621
+ "pathname": "/",
622
+ "pathnameOriginal": "/",
623
+ "port": null,
624
+ "protocol": null,
625
+ "search": {
626
+ "section": "@reviews",
627
+ },
628
+ "searchAll": {
629
+ "section": [
630
+ "@reviews",
631
+ ],
632
+ },
633
+ "searchOriginal": "?section=%40reviews",
634
+ }
635
+ `)
636
+ }
637
+
638
+ // #291
639
+ {
640
+ try {
641
+ decodeURI(decodeURI(encodeURI("%")))
642
+ assert(false)
643
+ } catch (err) {
644
+ assert((err as Error).message === "URI malformed")
645
+ }
646
+ assert(encodeURIComponent("%") === "%25")
647
+ expect(parseUrl("/user/%25rom", "/")).toMatchInlineSnapshot(`
648
+ {
649
+ "hasBaseServer": true,
650
+ "hash": "",
651
+ "hashOriginal": null,
652
+ "hostname": null,
653
+ "href": "/user/%25rom",
654
+ "origin": null,
655
+ "pathname": "/user/%rom",
656
+ "pathnameOriginal": "/user/%25rom",
657
+ "port": null,
658
+ "protocol": null,
659
+ "search": {},
660
+ "searchAll": {},
661
+ "searchOriginal": null,
662
+ }
663
+ `)
664
+ expect(parseUrl("/user/%rom", "/")).toMatchInlineSnapshot(`
665
+ {
666
+ "hasBaseServer": true,
667
+ "hash": "",
668
+ "hashOriginal": null,
669
+ "hostname": null,
670
+ "href": "/user/%rom",
671
+ "origin": null,
672
+ "pathname": "/user/%rom",
673
+ "pathnameOriginal": "/user/%rom",
674
+ "port": null,
675
+ "protocol": null,
676
+ "search": {},
677
+ "searchAll": {},
678
+ "searchOriginal": null,
679
+ }
680
+ `)
681
+ }
682
+ })
683
+
684
+ it("edge cases", () => {
685
+ expect(parseUrl("/product/ö", "/")).toMatchInlineSnapshot(`
686
+ {
687
+ "hasBaseServer": true,
688
+ "hash": "",
689
+ "hashOriginal": null,
690
+ "hostname": null,
691
+ "href": "/product/ö",
692
+ "origin": null,
693
+ "pathname": "/product/ö",
694
+ "pathnameOriginal": "/product/ö",
695
+ "port": null,
696
+ "protocol": null,
697
+ "search": {},
698
+ "searchAll": {},
699
+ "searchOriginal": null,
700
+ }
701
+ `)
702
+ expect(parseUrl("/product/%C3%B6", "/")).toMatchInlineSnapshot(`
703
+ {
704
+ "hasBaseServer": true,
705
+ "hash": "",
706
+ "hashOriginal": null,
707
+ "hostname": null,
708
+ "href": "/product/%C3%B6",
709
+ "origin": null,
710
+ "pathname": "/product/ö",
711
+ "pathnameOriginal": "/product/%C3%B6",
712
+ "port": null,
713
+ "protocol": null,
714
+ "search": {},
715
+ "searchAll": {},
716
+ "searchOriginal": null,
717
+ }
718
+ `)
719
+ expect(parseUrl("/product/แจ็คเก็ตเดนิม", "/")).toMatchInlineSnapshot(`
720
+ {
721
+ "hasBaseServer": true,
722
+ "hash": "",
723
+ "hashOriginal": null,
724
+ "hostname": null,
725
+ "href": "/product/แจ็คเก็ตเดนิม",
726
+ "origin": null,
727
+ "pathname": "/product/แจ็คเก็ตเดนิม",
728
+ "pathnameOriginal": "/product/แจ็คเก็ตเดนิม",
729
+ "port": null,
730
+ "protocol": null,
731
+ "search": {},
732
+ "searchAll": {},
733
+ "searchOriginal": null,
734
+ }
735
+ `)
736
+
737
+ // #322
738
+ // Remove trailing white space
739
+ expect(parseUrl("/ab ", "/")).toMatchInlineSnapshot(`
740
+ {
741
+ "hasBaseServer": true,
742
+ "hash": "",
743
+ "hashOriginal": null,
744
+ "hostname": null,
745
+ "href": "/ab ",
746
+ "origin": null,
747
+ "pathname": "/ab",
748
+ "pathnameOriginal": "/ab ",
749
+ "port": null,
750
+ "protocol": null,
751
+ "search": {},
752
+ "searchAll": {},
753
+ "searchOriginal": null,
754
+ }
755
+ `)
756
+ // Preserve whitespace otherwise
757
+ assert(encodeURIComponent(" ") === "%20")
758
+ expect(parseUrl("/ab%20", "/")).toMatchInlineSnapshot(`
759
+ {
760
+ "hasBaseServer": true,
761
+ "hash": "",
762
+ "hashOriginal": null,
763
+ "hostname": null,
764
+ "href": "/ab%20",
765
+ "origin": null,
766
+ "pathname": "/ab ",
767
+ "pathnameOriginal": "/ab%20",
768
+ "port": null,
769
+ "protocol": null,
770
+ "search": {},
771
+ "searchAll": {},
772
+ "searchOriginal": null,
773
+ }
774
+ `)
775
+ expect(parseUrl("/a b", "/")).toMatchInlineSnapshot(`
776
+ {
777
+ "hasBaseServer": true,
778
+ "hash": "",
779
+ "hashOriginal": null,
780
+ "hostname": null,
781
+ "href": "/a b",
782
+ "origin": null,
783
+ "pathname": "/a b",
784
+ "pathnameOriginal": "/a b",
785
+ "port": null,
786
+ "protocol": null,
787
+ "search": {},
788
+ "searchAll": {},
789
+ "searchOriginal": null,
790
+ }
791
+ `)
792
+ expect(parseUrl("/a%20b", "/")).toMatchInlineSnapshot(`
793
+ {
794
+ "hasBaseServer": true,
795
+ "hash": "",
796
+ "hashOriginal": null,
797
+ "hostname": null,
798
+ "href": "/a%20b",
799
+ "origin": null,
800
+ "pathname": "/a b",
801
+ "pathnameOriginal": "/a%20b",
802
+ "port": null,
803
+ "protocol": null,
804
+ "search": {},
805
+ "searchAll": {},
806
+ "searchOriginal": null,
807
+ }
808
+ `)
809
+
810
+ assert(encodeURIComponent("#") === "%23")
811
+ assert(encodeURIComponent("?") === "%3F")
812
+ expect(parseUrl("/a%23/b%3Fc", "/a%23")).toMatchInlineSnapshot(`
813
+ {
814
+ "hasBaseServer": true,
815
+ "hash": "",
816
+ "hashOriginal": null,
817
+ "hostname": null,
818
+ "href": "/b%3Fc",
819
+ "origin": null,
820
+ "pathname": "/b?c",
821
+ "pathnameOriginal": "/a%23/b%3Fc",
822
+ "port": null,
823
+ "protocol": null,
824
+ "search": {},
825
+ "searchAll": {},
826
+ "searchOriginal": null,
827
+ }
828
+ `)
829
+ /* Bug, this doesn't work:
830
+ expect(parseUrl('/a%23/b%3Fc', '/a#')).toMatchInlineSnapshot()
831
+ */
832
+
833
+ expect(parseUrl("/a//b", "/")).toMatchInlineSnapshot(`
834
+ {
835
+ "hasBaseServer": true,
836
+ "hash": "",
837
+ "hashOriginal": null,
838
+ "hostname": null,
839
+ "href": "/a//b",
840
+ "origin": null,
841
+ "pathname": "/a//b",
842
+ "pathnameOriginal": "/a//b",
843
+ "port": null,
844
+ "protocol": null,
845
+ "search": {},
846
+ "searchAll": {},
847
+ "searchOriginal": null,
848
+ }
849
+ `)
850
+ expect(parseUrl("http://example.org//", "/")).toMatchInlineSnapshot(`
851
+ {
852
+ "hasBaseServer": true,
853
+ "hash": "",
854
+ "hashOriginal": null,
855
+ "hostname": "example.org",
856
+ "href": "http://example.org//",
857
+ "origin": "http://example.org",
858
+ "pathname": "//",
859
+ "pathnameOriginal": "//",
860
+ "port": null,
861
+ "protocol": "http://",
862
+ "search": {},
863
+ "searchAll": {},
864
+ "searchOriginal": null,
865
+ }
866
+ `)
867
+ expect(parseUrl("//", "/")).toMatchInlineSnapshot(`
868
+ {
869
+ "hasBaseServer": true,
870
+ "hash": "",
871
+ "hashOriginal": null,
872
+ "hostname": null,
873
+ "href": "//",
874
+ "origin": null,
875
+ "pathname": "//",
876
+ "pathnameOriginal": "//",
877
+ "port": null,
878
+ "protocol": null,
879
+ "search": {},
880
+ "searchAll": {},
881
+ "searchOriginal": null,
882
+ }
883
+ `)
884
+ expect(parseUrl("///", "/")).toMatchInlineSnapshot(`
885
+ {
886
+ "hasBaseServer": true,
887
+ "hash": "",
888
+ "hashOriginal": null,
889
+ "hostname": null,
890
+ "href": "///",
891
+ "origin": null,
892
+ "pathname": "///",
893
+ "pathnameOriginal": "///",
894
+ "port": null,
895
+ "protocol": null,
896
+ "search": {},
897
+ "searchAll": {},
898
+ "searchOriginal": null,
899
+ }
900
+ `)
901
+
902
+ // #495
903
+ expect(parseUrl("///en/?redirect_zone=ru", "/")).toMatchInlineSnapshot(`
904
+ {
905
+ "hasBaseServer": true,
906
+ "hash": "",
907
+ "hashOriginal": null,
908
+ "hostname": null,
909
+ "href": "///en/?redirect_zone=ru",
910
+ "origin": null,
911
+ "pathname": "///en/",
912
+ "pathnameOriginal": "///en/",
913
+ "port": null,
914
+ "protocol": null,
915
+ "search": {
916
+ "redirect_zone": "ru",
917
+ },
918
+ "searchAll": {
919
+ "redirect_zone": [
920
+ "ru",
921
+ ],
922
+ },
923
+ "searchOriginal": "?redirect_zone=ru",
924
+ }
925
+ `)
926
+ })
927
+
928
+ it("missing pathname", () => {
929
+ expect(parseUrl("?a=b", "/")).toMatchInlineSnapshot(`
930
+ {
931
+ "hasBaseServer": true,
932
+ "hash": "",
933
+ "hashOriginal": null,
934
+ "hostname": null,
935
+ "href": "/?a=b",
936
+ "origin": null,
937
+ "pathname": "/",
938
+ "pathnameOriginal": "",
939
+ "port": null,
940
+ "protocol": null,
941
+ "search": {
942
+ "a": "b",
943
+ },
944
+ "searchAll": {
945
+ "a": [
946
+ "b",
947
+ ],
948
+ },
949
+ "searchOriginal": "?a=b",
950
+ }
951
+ `)
952
+ expect(parseUrl("#a", "/")).toMatchInlineSnapshot(`
953
+ {
954
+ "hasBaseServer": true,
955
+ "hash": "a",
956
+ "hashOriginal": "#a",
957
+ "hostname": null,
958
+ "href": "/#a",
959
+ "origin": null,
960
+ "pathname": "/",
961
+ "pathnameOriginal": "",
962
+ "port": null,
963
+ "protocol": null,
964
+ "search": {},
965
+ "searchAll": {},
966
+ "searchOriginal": null,
967
+ }
968
+ `)
969
+ expect(parseUrl("", "/")).toMatchInlineSnapshot(`
970
+ {
971
+ "hasBaseServer": true,
972
+ "hash": "",
973
+ "hashOriginal": null,
974
+ "hostname": null,
975
+ "href": "/",
976
+ "origin": null,
977
+ "pathname": "/",
978
+ "pathnameOriginal": "",
979
+ "port": null,
980
+ "protocol": null,
981
+ "search": {},
982
+ "searchAll": {},
983
+ "searchOriginal": null,
984
+ }
985
+ `)
986
+ assert(new URL("", "http://fake.org/base").pathname === "/base")
987
+ expect(parseUrl("", "/base")).toMatchInlineSnapshot(`
988
+ {
989
+ "hasBaseServer": true,
990
+ "hash": "",
991
+ "hashOriginal": null,
992
+ "hostname": null,
993
+ "href": "/",
994
+ "origin": null,
995
+ "pathname": "/",
996
+ "pathnameOriginal": "",
997
+ "port": null,
998
+ "protocol": null,
999
+ "search": {},
1000
+ "searchAll": {},
1001
+ "searchOriginal": null,
1002
+ }
1003
+ `)
1004
+ })
1005
+
1006
+ it("doc example", () => {
1007
+ expect(
1008
+ parseUrl(
1009
+ "https://example.com/some-base-url/hello/s%C3%A9bastien?fruit=%C3%A2pple&fruit=orânge#%C3%A2ge",
1010
+ "/some-base-url"
1011
+ )
1012
+ ).toMatchInlineSnapshot(`
1013
+ {
1014
+ "hasBaseServer": true,
1015
+ "hash": "âge",
1016
+ "hashOriginal": "#%C3%A2ge",
1017
+ "hostname": "example.com",
1018
+ "href": "https://example.com/hello/s%C3%A9bastien?fruit=%C3%A2pple&fruit=orânge#%C3%A2ge",
1019
+ "origin": "https://example.com",
1020
+ "pathname": "/hello/sébastien",
1021
+ "pathnameOriginal": "/some-base-url/hello/s%C3%A9bastien",
1022
+ "port": null,
1023
+ "protocol": "https://",
1024
+ "search": {
1025
+ "fruit": "orânge",
1026
+ },
1027
+ "searchAll": {
1028
+ "fruit": [
1029
+ "âpple",
1030
+ "orânge",
1031
+ ],
1032
+ },
1033
+ "searchOriginal": "?fruit=%C3%A2pple&fruit=orânge",
1034
+ }
1035
+ `)
1036
+ })
1037
+
1038
+ it("tauri", () => {
1039
+ expect(parseUrl("tauri://localhost/", "/")).toMatchInlineSnapshot(`
1040
+ {
1041
+ "hasBaseServer": true,
1042
+ "hash": "",
1043
+ "hashOriginal": null,
1044
+ "hostname": "localhost",
1045
+ "href": "tauri://localhost/",
1046
+ "origin": "tauri://localhost",
1047
+ "pathname": "/",
1048
+ "pathnameOriginal": "/",
1049
+ "port": null,
1050
+ "protocol": "tauri://",
1051
+ "search": {},
1052
+ "searchAll": {},
1053
+ "searchOriginal": null,
1054
+ }
1055
+ `)
1056
+ expect(parseUrl("tauri://localhost", "/")).toMatchInlineSnapshot(`
1057
+ {
1058
+ "hasBaseServer": true,
1059
+ "hash": "",
1060
+ "hashOriginal": null,
1061
+ "hostname": "localhost",
1062
+ "href": "tauri://localhost/",
1063
+ "origin": "tauri://localhost",
1064
+ "pathname": "/",
1065
+ "pathnameOriginal": "",
1066
+ "port": null,
1067
+ "protocol": "tauri://",
1068
+ "search": {},
1069
+ "searchAll": {},
1070
+ "searchOriginal": null,
1071
+ }
1072
+ `)
1073
+ expect(parseUrl("tauri://localhost/somePath", "/")).toMatchInlineSnapshot(`
1074
+ {
1075
+ "hasBaseServer": true,
1076
+ "hash": "",
1077
+ "hashOriginal": null,
1078
+ "hostname": "localhost",
1079
+ "href": "tauri://localhost/somePath",
1080
+ "origin": "tauri://localhost",
1081
+ "pathname": "/somePath",
1082
+ "pathnameOriginal": "/somePath",
1083
+ "port": null,
1084
+ "protocol": "tauri://",
1085
+ "search": {},
1086
+ "searchAll": {},
1087
+ "searchOriginal": null,
1088
+ }
1089
+ `)
1090
+ })
1091
+
1092
+ // https://github.com/revealjs/reveal/issues/1706
1093
+ it("capacitor", () => {
1094
+ expect(
1095
+ parseUrl("capacitor://localhost/assets/chunks/chunk-v3mOCch-.js", "/")
1096
+ ).toMatchInlineSnapshot(`
1097
+ {
1098
+ "hasBaseServer": true,
1099
+ "hash": "",
1100
+ "hashOriginal": null,
1101
+ "hostname": "localhost",
1102
+ "href": "capacitor://localhost/assets/chunks/chunk-v3mOCch-.js",
1103
+ "origin": "capacitor://localhost",
1104
+ "pathname": "/assets/chunks/chunk-v3mOCch-.js",
1105
+ "pathnameOriginal": "/assets/chunks/chunk-v3mOCch-.js",
1106
+ "port": null,
1107
+ "protocol": "capacitor://",
1108
+ "search": {},
1109
+ "searchAll": {},
1110
+ "searchOriginal": null,
1111
+ }
1112
+ `)
1113
+ })
1114
+
1115
+ it("relative paths", () => {
1116
+ // Shouldn't this resolve to `{ pathname: '/b1/b2' }`? I don't remember why I used to be fine with following test.
1117
+ expect(parseUrl(".", "/b1/b2/")).toMatchInlineSnapshot(`
1118
+ {
1119
+ "hasBaseServer": true,
1120
+ "hash": "",
1121
+ "hashOriginal": null,
1122
+ "hostname": null,
1123
+ "href": "/",
1124
+ "origin": null,
1125
+ "pathname": "/",
1126
+ "pathnameOriginal": ".",
1127
+ "port": null,
1128
+ "protocol": null,
1129
+ "search": {},
1130
+ "searchAll": {},
1131
+ "searchOriginal": null,
1132
+ }
1133
+ `)
1134
+ expect(parseUrl("..", "/b1/b2/")).toMatchInlineSnapshot(`
1135
+ {
1136
+ "hasBaseServer": false,
1137
+ "hash": "",
1138
+ "hashOriginal": null,
1139
+ "hostname": null,
1140
+ "href": "/b1/",
1141
+ "origin": null,
1142
+ "pathname": "/b1/",
1143
+ "pathnameOriginal": "..",
1144
+ "port": null,
1145
+ "protocol": null,
1146
+ "search": {},
1147
+ "searchAll": {},
1148
+ "searchOriginal": null,
1149
+ }
1150
+ `)
1151
+ expect(parseUrl("../../", "/b1/b2/")).toMatchInlineSnapshot(`
1152
+ {
1153
+ "hasBaseServer": false,
1154
+ "hash": "",
1155
+ "hashOriginal": null,
1156
+ "hostname": null,
1157
+ "href": "/",
1158
+ "origin": null,
1159
+ "pathname": "/",
1160
+ "pathnameOriginal": "../../",
1161
+ "port": null,
1162
+ "protocol": null,
1163
+ "search": {},
1164
+ "searchAll": {},
1165
+ "searchOriginal": null,
1166
+ }
1167
+ `)
1168
+ expect(parseUrl("./markdown", "/")).toMatchInlineSnapshot(`
1169
+ {
1170
+ "hasBaseServer": true,
1171
+ "hash": "",
1172
+ "hashOriginal": null,
1173
+ "hostname": null,
1174
+ "href": "/markdown",
1175
+ "origin": null,
1176
+ "pathname": "/markdown",
1177
+ "pathnameOriginal": "./markdown",
1178
+ "port": null,
1179
+ "protocol": null,
1180
+ "search": {},
1181
+ "searchAll": {},
1182
+ "searchOriginal": null,
1183
+ }
1184
+ `)
1185
+ })
1186
+ it("relative paths - browser-side", () => {
1187
+ ;(globalThis.window as unknown as { document: Document }) = {
1188
+ document: { baseURI: "http://100.115.92.194:3000/?q=any" } as Document,
1189
+ }
1190
+ expect(parseUrl("?q=any", "/")).toMatchInlineSnapshot(`
1191
+ {
1192
+ "hasBaseServer": true,
1193
+ "hash": "",
1194
+ "hashOriginal": null,
1195
+ "hostname": null,
1196
+ "href": "/?q=any",
1197
+ "origin": null,
1198
+ "pathname": "/",
1199
+ "pathnameOriginal": "",
1200
+ "port": null,
1201
+ "protocol": null,
1202
+ "search": {
1203
+ "q": "any",
1204
+ },
1205
+ "searchAll": {
1206
+ "q": [
1207
+ "any",
1208
+ ],
1209
+ },
1210
+ "searchOriginal": "?q=any",
1211
+ }
1212
+ `)
1213
+ // @ts-ignore
1214
+ globalThis.window = { document: { baseURI: "http://localhost:3000/" } }
1215
+ expect(parseUrl("./markdown", "/")).toMatchInlineSnapshot(`
1216
+ {
1217
+ "hasBaseServer": true,
1218
+ "hash": "",
1219
+ "hashOriginal": null,
1220
+ "hostname": null,
1221
+ "href": "/markdown",
1222
+ "origin": null,
1223
+ "pathname": "/markdown",
1224
+ "pathnameOriginal": "./markdown",
1225
+ "port": null,
1226
+ "protocol": null,
1227
+ "search": {},
1228
+ "searchAll": {},
1229
+ "searchOriginal": null,
1230
+ }
1231
+ `)
1232
+ ;(globalThis as any).window = {
1233
+ document: { baseURI: "http://localhost:3000/some/deep/path" } as Document,
1234
+ }
1235
+ expect(parseUrl("./markdown", "/")).toMatchInlineSnapshot(`
1236
+ {
1237
+ "hasBaseServer": true,
1238
+ "hash": "",
1239
+ "hashOriginal": null,
1240
+ "hostname": null,
1241
+ "href": "/some/deep/markdown",
1242
+ "origin": null,
1243
+ "pathname": "/some/deep/markdown",
1244
+ "pathnameOriginal": "./markdown",
1245
+ "port": null,
1246
+ "protocol": null,
1247
+ "search": {},
1248
+ "searchAll": {},
1249
+ "searchOriginal": null,
1250
+ }
1251
+ `)
1252
+ // @ts-ignore
1253
+ globalThis.window = {
1254
+ document: { baseURI: "http://localhost:3000/some/deep/" } as Document,
1255
+ }
1256
+ expect(parseUrl("..//bla", "/")).toMatchInlineSnapshot(`
1257
+ {
1258
+ "hasBaseServer": true,
1259
+ "hash": "",
1260
+ "hashOriginal": null,
1261
+ "hostname": null,
1262
+ "href": "/some//bla",
1263
+ "origin": null,
1264
+ "pathname": "/some//bla",
1265
+ "pathnameOriginal": "..//bla",
1266
+ "port": null,
1267
+ "protocol": null,
1268
+ "search": {},
1269
+ "searchAll": {},
1270
+ "searchOriginal": null,
1271
+ }
1272
+ `)
1273
+ // @ts-ignore
1274
+ ;(globalThis.window as any) = {
1275
+ document: { baseURI: "http://localhost:3000/some/very/deep/" },
1276
+ }
1277
+ expect(parseUrl("../../../../bla", "/")).toMatchInlineSnapshot(`
1278
+ {
1279
+ "hasBaseServer": true,
1280
+ "hash": "",
1281
+ "hashOriginal": null,
1282
+ "hostname": null,
1283
+ "href": "/bla",
1284
+ "origin": null,
1285
+ "pathname": "/bla",
1286
+ "pathnameOriginal": "../../../../bla",
1287
+ "port": null,
1288
+ "protocol": null,
1289
+ "search": {},
1290
+ "searchAll": {},
1291
+ "searchOriginal": null,
1292
+ }
1293
+ `)
1294
+ // @ts-ignore
1295
+ globalThis.window = undefined
1296
+ })
1297
+
1298
+ it("IPV6", () => {
1299
+ expect(parseUrl("http://[::1]:3000/", "/")).toMatchInlineSnapshot(`
1300
+ {
1301
+ "hasBaseServer": true,
1302
+ "hash": "",
1303
+ "hashOriginal": null,
1304
+ "hostname": "[::1]",
1305
+ "href": "http://[::1]:3000/",
1306
+ "origin": "http://[::1]:3000",
1307
+ "pathname": "/",
1308
+ "pathnameOriginal": "/",
1309
+ "port": 3000,
1310
+ "protocol": "http://",
1311
+ "search": {},
1312
+ "searchAll": {},
1313
+ "searchOriginal": null,
1314
+ }
1315
+ `)
1316
+ expect(parseUrl("https://[::1]:3000/bla#:", "/")).toMatchInlineSnapshot(`
1317
+ {
1318
+ "hasBaseServer": true,
1319
+ "hash": ":",
1320
+ "hashOriginal": "#:",
1321
+ "hostname": "[::1]",
1322
+ "href": "https://[::1]:3000/bla#:",
1323
+ "origin": "https://[::1]:3000",
1324
+ "pathname": "/bla",
1325
+ "pathnameOriginal": "/bla",
1326
+ "port": 3000,
1327
+ "protocol": "https://",
1328
+ "search": {},
1329
+ "searchAll": {},
1330
+ "searchOriginal": null,
1331
+ }
1332
+ `)
1333
+ })
1334
+ })
1335
+ /* Doesn't work
1336
+ declare global {
1337
+ var document: Document & { baseURI: string }
1338
+ }
1339
+ */