roxxie-proxy-u-prod 0.1.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/LICENSE +661 -0
- package/README.md +123 -0
- package/SOURCE.md +29 -0
- package/THIRD_PARTY_NOTICES.md +24 -0
- package/dist/assets/filters-Bu_3nHVy.bin +0 -0
- package/dist/assets/index-BdRlQ7d_.css +1 -0
- package/dist/assets/index-DcvPYWS3.js +3621 -0
- package/dist/assets/inject-BnVzMVpl.js +40 -0
- package/dist/assets/scramjet-C9HLwI-y.wasm +0 -0
- package/dist/defaultfavicon.png +0 -0
- package/dist/icon.png +0 -0
- package/dist/roxxie-icon.svg +12 -0
- package/embed.js +70 -0
- package/examples/single-page.html +25 -0
- package/package.json +42 -0
- package/runtime/controller.sw.js +273 -0
- package/runtime/index.html +18 -0
- package/runtime/localcontrollersw.js +7 -0
- package/runtime/roxxie-network.json +13 -0
- package/runtime/sw.js +6 -0
- package/scripts/build.mjs +344 -0
- package/scripts/smoke.mjs +123 -0
- package/scripts/verify.mjs +122 -0
- package/source/external/dreamlandjs/LICENSE +21 -0
- package/source/external/dreamlandjs/README.md +22 -0
- package/source/external/dreamlandjs/dist/core.d.ts +167 -0
- package/source/external/dreamlandjs/dist/core.js +2 -0
- package/source/external/dreamlandjs/dist/core.js.map +1 -0
- package/source/external/dreamlandjs/dist/core.size.html +4950 -0
- package/source/external/dreamlandjs/dist/js-runtime.d.ts +3 -0
- package/source/external/dreamlandjs/dist/js-runtime.js +2 -0
- package/source/external/dreamlandjs/dist/js-runtime.js.map +1 -0
- package/source/external/dreamlandjs/dist/jsx-runtime.d.ts +1 -0
- package/source/external/dreamlandjs/dist/jsx-runtime.js +2 -0
- package/source/external/dreamlandjs/dist/jsx-runtime.js.map +1 -0
- package/source/external/dreamlandjs/dist/motion.d.ts +19 -0
- package/source/external/dreamlandjs/dist/motion.js +2 -0
- package/source/external/dreamlandjs/dist/motion.js.map +1 -0
- package/source/external/dreamlandjs/dist/router.d.ts +48 -0
- package/source/external/dreamlandjs/dist/router.js +2 -0
- package/source/external/dreamlandjs/dist/router.js.map +1 -0
- package/source/external/dreamlandjs/dist/ssr.client.d.ts +3 -0
- package/source/external/dreamlandjs/dist/ssr.client.js +2 -0
- package/source/external/dreamlandjs/dist/ssr.client.js.map +1 -0
- package/source/external/dreamlandjs/dist/ssr.client.size.html +4950 -0
- package/source/external/dreamlandjs/dist/ssr.hybrid.d.ts +7 -0
- package/source/external/dreamlandjs/dist/ssr.hybrid.js +2 -0
- package/source/external/dreamlandjs/dist/ssr.hybrid.js.map +1 -0
- package/source/external/dreamlandjs/dist/ssr.hybrid.size.html +4950 -0
- package/source/external/dreamlandjs/dist/ssr.server.d.ts +11 -0
- package/source/external/dreamlandjs/dist/ssr.server.js +2373 -0
- package/source/external/dreamlandjs/dist/ssr.server.js.map +1 -0
- package/source/external/dreamlandjs/dist/types/core/consts.d.ts +16 -0
- package/source/external/dreamlandjs/dist/types/core/css/index.d.ts +11 -0
- package/source/external/dreamlandjs/dist/types/core/css/selectorParser.d.ts +50 -0
- package/source/external/dreamlandjs/dist/types/core/delegate.d.ts +10 -0
- package/source/external/dreamlandjs/dist/types/core/index.d.ts +9 -0
- package/source/external/dreamlandjs/dist/types/core/jsx/child.d.ts +2 -0
- package/source/external/dreamlandjs/dist/types/core/jsx/definitions.d.ts +76 -0
- package/source/external/dreamlandjs/dist/types/core/jsx/dom.d.ts +28 -0
- package/source/external/dreamlandjs/dist/types/core/jsx/index.d.ts +14 -0
- package/source/external/dreamlandjs/dist/types/core/state/index.d.ts +1 -0
- package/source/external/dreamlandjs/dist/types/core/state/pointers.d.ts +37 -0
- package/source/external/dreamlandjs/dist/types/core/state/state.d.ts +13 -0
- package/source/external/dreamlandjs/dist/types/core/state/use.d.ts +11 -0
- package/source/external/dreamlandjs/dist/types/core/utils.d.ts +4 -0
- package/source/external/dreamlandjs/dist/types/js-runtime/index.d.ts +1 -0
- package/source/external/dreamlandjs/dist/types/jsx-runtime/index.d.ts +2 -0
- package/source/external/dreamlandjs/dist/types/motion/index.d.ts +15 -0
- package/source/external/dreamlandjs/dist/types/router/index.d.ts +45 -0
- package/source/external/dreamlandjs/dist/types/ssr/client/index.d.ts +1 -0
- package/source/external/dreamlandjs/dist/types/ssr/common/consts.d.ts +4 -0
- package/source/external/dreamlandjs/dist/types/ssr/common/serialize.d.ts +4 -0
- package/source/external/dreamlandjs/dist/types/ssr/common/types.d.ts +21 -0
- package/source/external/dreamlandjs/dist/types/ssr/hybrid/index.d.ts +4 -0
- package/source/external/dreamlandjs/dist/types/ssr/server/index.d.ts +7 -0
- package/source/external/dreamlandjs/dist/types/ssr/server/vdom.d.ts +71 -0
- package/source/external/dreamlandjs/dist/types/util/index.d.ts +1 -0
- package/source/external/dreamlandjs/dist/types/util/store.d.ts +26 -0
- package/source/external/dreamlandjs/dist/types/vite/css-minifier.d.ts +7 -0
- package/source/external/dreamlandjs/dist/types/vite/index.d.ts +11 -0
- package/source/external/dreamlandjs/dist/util.d.ts +29 -0
- package/source/external/dreamlandjs/dist/util.js +2 -0
- package/source/external/dreamlandjs/dist/util.js.map +1 -0
- package/source/external/dreamlandjs/dist/vite.d.ts +19 -0
- package/source/external/dreamlandjs/dist/vite.js +2 -0
- package/source/external/dreamlandjs/dist/vite.js.map +1 -0
- package/source/external/dreamlandjs/package.json +101 -0
- package/source/external/dreamlandjs/rollup.config.ts +302 -0
- package/source/external/dreamlandjs/rollup.plugins.ts +1134 -0
- package/source/external/dreamlandjs/src/core/consts.d.ts +16 -0
- package/source/external/dreamlandjs/src/core/consts.js +18 -0
- package/source/external/dreamlandjs/src/core/css/index.ts +111 -0
- package/source/external/dreamlandjs/src/core/css/selectorParser.ts +313 -0
- package/source/external/dreamlandjs/src/core/delegate.ts +28 -0
- package/source/external/dreamlandjs/src/core/index.ts +31 -0
- package/source/external/dreamlandjs/src/core/jsx/child.ts +91 -0
- package/source/external/dreamlandjs/src/core/jsx/definitions.ts +125 -0
- package/source/external/dreamlandjs/src/core/jsx/dom.ts +49 -0
- package/source/external/dreamlandjs/src/core/jsx/index.ts +289 -0
- package/source/external/dreamlandjs/src/core/state/index.ts +1 -0
- package/source/external/dreamlandjs/src/core/state/pointers.ts +310 -0
- package/source/external/dreamlandjs/src/core/state/state.ts +112 -0
- package/source/external/dreamlandjs/src/core/state/use.ts +82 -0
- package/source/external/dreamlandjs/src/core/utils.ts +48 -0
- package/source/external/dreamlandjs/src/js-runtime/index.ts +4 -0
- package/source/external/dreamlandjs/src/jsx-runtime/index.ts +3 -0
- package/source/external/dreamlandjs/src/motion/index.ts +156 -0
- package/source/external/dreamlandjs/src/router/index.tsx +394 -0
- package/source/external/dreamlandjs/src/router/tsconfig.json +9 -0
- package/source/external/dreamlandjs/src/ssr/client/index.ts +193 -0
- package/source/external/dreamlandjs/src/ssr/common/consts.ts +5 -0
- package/source/external/dreamlandjs/src/ssr/common/serialize.ts +115 -0
- package/source/external/dreamlandjs/src/ssr/common/types.ts +28 -0
- package/source/external/dreamlandjs/src/ssr/hybrid/index.ts +144 -0
- package/source/external/dreamlandjs/src/ssr/server/index.ts +157 -0
- package/source/external/dreamlandjs/src/ssr/server/tsconfig.json +7 -0
- package/source/external/dreamlandjs/src/ssr/server/vdom.ts +285 -0
- package/source/external/dreamlandjs/src/util/index.ts +10 -0
- package/source/external/dreamlandjs/src/util/store.ts +134 -0
- package/source/external/dreamlandjs/src/vite/css-minifier.ts +222 -0
- package/source/external/dreamlandjs/src/vite/index.ts +60 -0
- package/source/external/dreamlandjs/src/vite/tsconfig.json +7 -0
- package/source/external/dreamlandjs/tsconfig.json +15 -0
- package/source/package.json +48 -0
- package/source/packages/adrift-protocol/package.json +31 -0
- package/source/packages/adrift-protocol/src/index.ts +348 -0
- package/source/packages/adrift-protocol/tsconfig.json +18 -0
- package/source/packages/cdp/LICENSE +21 -0
- package/source/packages/cdp/README.md +47 -0
- package/source/packages/cdp/dist/chobitsu.js +2 -0
- package/source/packages/cdp/dist/chobitsu.js.map +1 -0
- package/source/packages/cdp/package.json +73 -0
- package/source/packages/cdp/script/build.js +15 -0
- package/source/packages/cdp/src/Chobitsu.ts +110 -0
- package/source/packages/cdp/src/domains/CSS.ts +378 -0
- package/source/packages/cdp/src/domains/CacheStorage.ts +8 -0
- package/source/packages/cdp/src/domains/DOM.ts +487 -0
- package/source/packages/cdp/src/domains/DOMDebugger.ts +109 -0
- package/source/packages/cdp/src/domains/DOMStorage.ts +122 -0
- package/source/packages/cdp/src/domains/Debugger.ts +25 -0
- package/source/packages/cdp/src/domains/IndexedDB.ts +207 -0
- package/source/packages/cdp/src/domains/Input.ts +177 -0
- package/source/packages/cdp/src/domains/Network.ts +251 -0
- package/source/packages/cdp/src/domains/Overlay.ts +230 -0
- package/source/packages/cdp/src/domains/Page.ts +296 -0
- package/source/packages/cdp/src/domains/Runtime.ts +273 -0
- package/source/packages/cdp/src/domains/Storage.ts +71 -0
- package/source/packages/cdp/src/index.d.ts +8 -0
- package/source/packages/cdp/src/index.ts +153 -0
- package/source/packages/cdp/src/lib/connector.ts +15 -0
- package/source/packages/cdp/src/lib/constants.ts +1 -0
- package/source/packages/cdp/src/lib/evaluate.ts +59 -0
- package/source/packages/cdp/src/lib/mutationObserver.ts +39 -0
- package/source/packages/cdp/src/lib/nodeManager.ts +142 -0
- package/source/packages/cdp/src/lib/objManager.ts +422 -0
- package/source/packages/cdp/src/lib/request.ts +313 -0
- package/source/packages/cdp/src/lib/resources.ts +59 -0
- package/source/packages/cdp/src/lib/scriptMananger.ts +62 -0
- package/source/packages/cdp/src/lib/stylesheet.ts +146 -0
- package/source/packages/cdp/src/lib/util.ts +105 -0
- package/source/packages/cdp/tsconfig.json +16 -0
- package/source/packages/cdp/webpack.config.js +48 -0
- package/source/packages/chrome/index.html +17 -0
- package/source/packages/chrome/package.json +41 -0
- package/source/packages/chrome/public/ROXXIE_NETWORK.md +22 -0
- package/source/packages/chrome/public/controller.sw.js +273 -0
- package/source/packages/chrome/public/defaultfavicon.png +0 -0
- package/source/packages/chrome/public/icon.png +0 -0
- package/source/packages/chrome/public/localcontrollersw.js +7 -0
- package/source/packages/chrome/public/roxxie-icon.svg +12 -0
- package/source/packages/chrome/public/roxxie-network.json +13 -0
- package/source/packages/chrome/public/sw.js +6 -0
- package/source/packages/chrome/src/App.tsx +269 -0
- package/source/packages/chrome/src/CDP.ts +285 -0
- package/source/packages/chrome/src/Tab/History.ts +186 -0
- package/source/packages/chrome/src/Tab/Tab.tsx +219 -0
- package/source/packages/chrome/src/Tab/screenshot.ts +66 -0
- package/source/packages/chrome/src/Tab/serialize.ts +221 -0
- package/source/packages/chrome/src/adblock/AdBlockPlugin.test.ts +159 -0
- package/source/packages/chrome/src/adblock/AdBlockPlugin.ts +232 -0
- package/source/packages/chrome/src/adblock/AdBlockService.test.ts +148 -0
- package/source/packages/chrome/src/adblock/AdBlockService.ts +166 -0
- package/source/packages/chrome/src/adblock/NOTICE.md +14 -0
- package/source/packages/chrome/src/adblock/assets/filters.bin +0 -0
- package/source/packages/chrome/src/adblock/index.ts +18 -0
- package/source/packages/chrome/src/assets/favicon.ts +4 -0
- package/source/packages/chrome/src/components/BookmarkPopup.tsx +101 -0
- package/source/packages/chrome/src/components/BookmarksStrip.tsx +150 -0
- package/source/packages/chrome/src/components/Button.tsx +99 -0
- package/source/packages/chrome/src/components/Checkbox.tsx +89 -0
- package/source/packages/chrome/src/components/DownloadsPopup.tsx +230 -0
- package/source/packages/chrome/src/components/Favicon.tsx +65 -0
- package/source/packages/chrome/src/components/Icon.tsx +29 -0
- package/source/packages/chrome/src/components/Input.tsx +82 -0
- package/source/packages/chrome/src/components/Menu.tsx +287 -0
- package/source/packages/chrome/src/components/Omnibar/BookmarkButton.tsx +73 -0
- package/source/packages/chrome/src/components/Omnibar/CircularProgress.tsx +83 -0
- package/source/packages/chrome/src/components/Omnibar/Omnibar.tsx +455 -0
- package/source/packages/chrome/src/components/Omnibar/OmnibarButton.tsx +48 -0
- package/source/packages/chrome/src/components/Omnibar/Omnibox.tsx +466 -0
- package/source/packages/chrome/src/components/Omnibar/SiteOptionsButton.tsx +52 -0
- package/source/packages/chrome/src/components/Omnibar/Suggestion.tsx +186 -0
- package/source/packages/chrome/src/components/Omnibar/UrlInput.tsx +198 -0
- package/source/packages/chrome/src/components/Omnibar/suggestions.ts +468 -0
- package/source/packages/chrome/src/components/Omnibar/utils.ts +11 -0
- package/source/packages/chrome/src/components/ReportBrokenSiteModal.tsx +279 -0
- package/source/packages/chrome/src/components/Shell.tsx +191 -0
- package/source/packages/chrome/src/components/SiteInformationPopup.tsx +96 -0
- package/source/packages/chrome/src/components/SmallIconButton.tsx +36 -0
- package/source/packages/chrome/src/components/StartScreen.tsx +386 -0
- package/source/packages/chrome/src/components/TabStrip/DragTab.tsx +546 -0
- package/source/packages/chrome/src/components/TabStrip/Sidebar.tsx +820 -0
- package/source/packages/chrome/src/components/TabStrip/TabHoverCard.tsx +87 -0
- package/source/packages/chrome/src/components/TabStrip/TabStrip.tsx +510 -0
- package/source/packages/chrome/src/components/TopSiteButton.tsx +234 -0
- package/source/packages/chrome/src/consts.ts +3 -0
- package/source/packages/chrome/src/icons.ts +70 -0
- package/source/packages/chrome/src/index.ts +168 -0
- package/source/packages/chrome/src/migrations/0-from-legacy.ts +6 -0
- package/source/packages/chrome/src/migrations/1-vertical-tab-settings.ts +15 -0
- package/source/packages/chrome/src/migrations/index.ts +42 -0
- package/source/packages/chrome/src/pages/AboutPage.tsx +37 -0
- package/source/packages/chrome/src/pages/DownloadsPage.tsx +133 -0
- package/source/packages/chrome/src/pages/HistoryPage.tsx +99 -0
- package/source/packages/chrome/src/pages/NewTabPage.tsx +264 -0
- package/source/packages/chrome/src/pages/PlaygroundPage.tsx +43 -0
- package/source/packages/chrome/src/pages/SettingsPage.tsx +1931 -0
- package/source/packages/chrome/src/proxy/Controller.ts +331 -0
- package/source/packages/chrome/src/proxy/ProxyFrame.ts +26 -0
- package/source/packages/chrome/src/proxy/cache.ts +487 -0
- package/source/packages/chrome/src/proxy/codec.ts +11 -0
- package/source/packages/chrome/src/proxy/contextitems.ts +180 -0
- package/source/packages/chrome/src/proxy/index.ts +5 -0
- package/source/packages/chrome/src/proxy/roxxie.ts +85 -0
- package/source/packages/chrome/src/proxy/scramjet.ts +642 -0
- package/source/packages/chrome/src/reset.css +124 -0
- package/source/packages/chrome/src/runtime-base.ts +16 -0
- package/source/packages/chrome/src/sentry.tsx +45 -0
- package/source/packages/chrome/src/services/DownloadsService.ts +136 -0
- package/source/packages/chrome/src/services/FaviconService.ts +161 -0
- package/source/packages/chrome/src/services/KVWrapper.ts +169 -0
- package/source/packages/chrome/src/services/ProfileService.ts +94 -0
- package/source/packages/chrome/src/services/Service.ts +10 -0
- package/source/packages/chrome/src/services/SettingsService.ts +108 -0
- package/source/packages/chrome/src/services/TabsService.ts +161 -0
- package/source/packages/chrome/src/startup.test.ts +129 -0
- package/source/packages/chrome/src/startup.ts +161 -0
- package/source/packages/chrome/src/style.css +229 -0
- package/source/packages/chrome/src/themes.ts +756 -0
- package/source/packages/chrome/src/util/StatefulClass.ts +31 -0
- package/source/packages/chrome/src/util/index.ts +74 -0
- package/source/packages/chrome/src/util/memoize.ts +13 -0
- package/source/packages/chrome/src/vite-env.d.ts +16 -0
- package/source/packages/chrome/tsconfig.json +30 -0
- package/source/packages/chrome/vite.config.ts +47 -0
- package/source/packages/inject/package.json +20 -0
- package/source/packages/inject/src/context.ts +194 -0
- package/source/packages/inject/src/emulators/alwaysLastBubble.ts +168 -0
- package/source/packages/inject/src/emulators/anchors.ts +55 -0
- package/source/packages/inject/src/emulators/contextmenu.ts +46 -0
- package/source/packages/inject/src/emulators/history.ts +51 -0
- package/source/packages/inject/src/emulators/titlewatcher.ts +42 -0
- package/source/packages/inject/src/emulators/windowopen.ts +134 -0
- package/source/packages/inject/src/errorpage/errorpage.css +234 -0
- package/source/packages/inject/src/errorpage/errorpage.html +29 -0
- package/source/packages/inject/src/errorpage/errorpage.ts +76 -0
- package/source/packages/inject/src/index.ts +62 -0
- package/source/packages/inject/src/transport.ts +97 -0
- package/source/packages/inject/src/types.d.ts +136 -0
- package/source/packages/roxxie-transport/package.json +36 -0
- package/source/packages/roxxie-transport/src/binary.ts +398 -0
- package/source/packages/roxxie-transport/src/config.ts +254 -0
- package/source/packages/roxxie-transport/src/connection.ts +767 -0
- package/source/packages/roxxie-transport/src/index.ts +5 -0
- package/source/packages/roxxie-transport/src/tracker.ts +651 -0
- package/source/packages/roxxie-transport/src/transport.ts +414 -0
- package/source/packages/roxxie-transport/tsconfig.json +18 -0
- package/source/packages/scramjet/packages/controller/package.json +37 -0
- package/source/packages/scramjet/packages/controller/src/index.ts +861 -0
- package/source/packages/scramjet/packages/controller/src/inject.ts +365 -0
- package/source/packages/scramjet/packages/controller/src/sw.ts +231 -0
- package/source/packages/scramjet/packages/controller/src/symbols.ts +1 -0
- package/source/packages/scramjet/packages/controller/src/types.d.ts +140 -0
- package/source/packages/scramjet/packages/controller/src/typesEntry.ts +6 -0
- package/source/packages/scramjet/packages/controller/src/version.ts +30 -0
- package/source/packages/scramjet/packages/controller/tsconfig.json +24 -0
- package/source/packages/scramjet/packages/core/dist/scramjet-external.mjs +57 -0
- package/source/packages/scramjet/packages/core/dist/scramjet.js +13599 -0
- package/source/packages/scramjet/packages/core/dist/scramjet.js.map +1 -0
- package/source/packages/scramjet/packages/core/dist/scramjet.mjs +13649 -0
- package/source/packages/scramjet/packages/core/dist/scramjet.mjs.map +1 -0
- package/source/packages/scramjet/packages/core/dist/scramjet.wasm +0 -0
- package/source/packages/scramjet/packages/core/dist/scramjet_bundled.js +13601 -0
- package/source/packages/scramjet/packages/core/dist/scramjet_bundled.js.map +1 -0
- package/source/packages/scramjet/packages/core/dist/scramjet_bundled.mjs +13651 -0
- package/source/packages/scramjet/packages/core/dist/scramjet_bundled.mjs.map +1 -0
- package/source/packages/scramjet/packages/core/dist/temp-types-build/index.js +23 -0
- package/source/packages/scramjet/packages/core/dist/temp-types-build/index.js.map +1 -0
- package/source/packages/scramjet/packages/core/dist/types/Tap.d.ts +39 -0
- package/source/packages/scramjet/packages/core/dist/types/client/client.d.ts +115 -0
- package/source/packages/scramjet/packages/core/dist/types/client/entry.d.ts +5 -0
- package/source/packages/scramjet/packages/core/dist/types/client/events.d.ts +10 -0
- package/source/packages/scramjet/packages/core/dist/types/client/helpers.d.ts +1 -0
- package/source/packages/scramjet/packages/core/dist/types/client/index.d.ts +7 -0
- package/source/packages/scramjet/packages/core/dist/types/client/location.d.ts +2 -0
- package/source/packages/scramjet/packages/core/dist/types/client/shared/eval.d.ts +3 -0
- package/source/packages/scramjet/packages/core/dist/types/client/shared/sourcemaps.d.ts +19 -0
- package/source/packages/scramjet/packages/core/dist/types/client/shared/wrap.d.ts +4 -0
- package/source/packages/scramjet/packages/core/dist/types/client/singletonbox.d.ts +18 -0
- package/source/packages/scramjet/packages/core/dist/types/fetch/body.d.ts +3 -0
- package/source/packages/scramjet/packages/core/dist/types/fetch/fetch.d.ts +7 -0
- package/source/packages/scramjet/packages/core/dist/types/fetch/headers.d.ts +19 -0
- package/source/packages/scramjet/packages/core/dist/types/fetch/index.d.ts +128 -0
- package/source/packages/scramjet/packages/core/dist/types/fetch/parse.d.ts +23 -0
- package/source/packages/scramjet/packages/core/dist/types/fetch/util.d.ts +7 -0
- package/source/packages/scramjet/packages/core/dist/types/index.d.ts +12 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/cookie.d.ts +26 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/headers.d.ts +13 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/htmlRules.d.ts +6 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/index.d.ts +50 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/mime.d.ts +53 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/refresh.d.ts +7 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/rewriters/css.d.ts +4 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/rewriters/html.d.ts +33 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/rewriters/index.d.ts +6 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/rewriters/js.d.ts +11 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/rewriters/url.d.ts +24 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/rewriters/wasm.d.ts +7 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/rewriters/worker.d.ts +3 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/set-cookie-parser.d.ts +20 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/snapshot.d.ts +186 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/sniffEncoding.d.ts +65 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/util.d.ts +2 -0
- package/source/packages/scramjet/packages/core/dist/types/symbols.d.ts +6 -0
- package/source/packages/scramjet/packages/core/dist/types/types.d.ts +60 -0
- package/source/packages/scramjet/packages/core/dist/types/typesEntry.d.ts +5 -0
- package/source/packages/scramjet/packages/core/lib/index.cjs +7 -0
- package/source/packages/scramjet/packages/core/lib/index.d.ts +8 -0
- package/source/packages/scramjet/packages/core/package.json +69 -0
- package/source/packages/scramjet/packages/core/rewriter/Cargo.lock +1985 -0
- package/source/packages/scramjet/packages/core/rewriter/Cargo.toml +20 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/Cargo.toml +15 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/src/analyze.rs +1118 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/src/ast_table.rs +927 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/src/helper_index.rs +556 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/src/lib.rs +455 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/src/reachability.rs +85 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/src/templates.rs +192 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/src/witness.rs +597 -0
- package/source/packages/scramjet/packages/core/rewriter/js/Cargo.toml +18 -0
- package/source/packages/scramjet/packages/core/rewriter/js/src/cfg.rs +45 -0
- package/source/packages/scramjet/packages/core/rewriter/js/src/changes.rs +379 -0
- package/source/packages/scramjet/packages/core/rewriter/js/src/lib.rs +171 -0
- package/source/packages/scramjet/packages/core/rewriter/js/src/rewrite.rs +290 -0
- package/source/packages/scramjet/packages/core/rewriter/js/src/visitor.rs +967 -0
- package/source/packages/scramjet/packages/core/rewriter/native/Cargo.toml +22 -0
- package/source/packages/scramjet/packages/core/rewriter/native/src/main.rs +166 -0
- package/source/packages/scramjet/packages/core/rewriter/native/src/rewriter.rs +161 -0
- package/source/packages/scramjet/packages/core/rewriter/native/src/test_runner.rs +156 -0
- package/source/packages/scramjet/packages/core/rewriter/rust-toolchain.toml +5 -0
- package/source/packages/scramjet/packages/core/rewriter/rustfmt.toml +2 -0
- package/source/packages/scramjet/packages/core/rewriter/transform/Cargo.toml +16 -0
- package/source/packages/scramjet/packages/core/rewriter/transform/src/lib.rs +242 -0
- package/source/packages/scramjet/packages/core/rewriter/transform/src/transform.rs +123 -0
- package/source/packages/scramjet/packages/core/rewriter/wasm/Cargo.toml +22 -0
- package/source/packages/scramjet/packages/core/rewriter/wasm/build.sh +128 -0
- package/source/packages/scramjet/packages/core/rewriter/wasm/src/error.rs +56 -0
- package/source/packages/scramjet/packages/core/rewriter/wasm/src/jsr.rs +125 -0
- package/source/packages/scramjet/packages/core/rewriter/wasm/src/lib.rs +144 -0
- package/source/packages/scramjet/packages/core/src/Tap.ts +166 -0
- package/source/packages/scramjet/packages/core/src/client/client.ts +916 -0
- package/source/packages/scramjet/packages/core/src/client/dom/attr.ts +94 -0
- package/source/packages/scramjet/packages/core/src/client/dom/beacon.ts +11 -0
- package/source/packages/scramjet/packages/core/src/client/dom/cookie.ts +21 -0
- package/source/packages/scramjet/packages/core/src/client/dom/css.ts +106 -0
- package/source/packages/scramjet/packages/core/src/client/dom/document.ts +140 -0
- package/source/packages/scramjet/packages/core/src/client/dom/element.ts +783 -0
- package/source/packages/scramjet/packages/core/src/client/dom/fontface.ts +11 -0
- package/source/packages/scramjet/packages/core/src/client/dom/fragments.ts +32 -0
- package/source/packages/scramjet/packages/core/src/client/dom/history.ts +35 -0
- package/source/packages/scramjet/packages/core/src/client/dom/open.ts +59 -0
- package/source/packages/scramjet/packages/core/src/client/dom/origin.ts +13 -0
- package/source/packages/scramjet/packages/core/src/client/dom/performance.ts +50 -0
- package/source/packages/scramjet/packages/core/src/client/dom/protocol.ts +17 -0
- package/source/packages/scramjet/packages/core/src/client/dom/storage.ts +107 -0
- package/source/packages/scramjet/packages/core/src/client/entry.ts +12 -0
- package/source/packages/scramjet/packages/core/src/client/events.ts +10 -0
- package/source/packages/scramjet/packages/core/src/client/helpers.ts +7 -0
- package/source/packages/scramjet/packages/core/src/client/index.ts +7 -0
- package/source/packages/scramjet/packages/core/src/client/location.ts +139 -0
- package/source/packages/scramjet/packages/core/src/client/shared/antiantidebugger.ts +20 -0
- package/source/packages/scramjet/packages/core/src/client/shared/blob.ts +35 -0
- package/source/packages/scramjet/packages/core/src/client/shared/caches.ts +31 -0
- package/source/packages/scramjet/packages/core/src/client/shared/chrome.ts +90 -0
- package/source/packages/scramjet/packages/core/src/client/shared/err.ts +55 -0
- package/source/packages/scramjet/packages/core/src/client/shared/error.ts +42 -0
- package/source/packages/scramjet/packages/core/src/client/shared/eval.ts +40 -0
- package/source/packages/scramjet/packages/core/src/client/shared/event.ts +215 -0
- package/source/packages/scramjet/packages/core/src/client/shared/function.ts +59 -0
- package/source/packages/scramjet/packages/core/src/client/shared/import.ts +46 -0
- package/source/packages/scramjet/packages/core/src/client/shared/indexeddb.ts +18 -0
- package/source/packages/scramjet/packages/core/src/client/shared/opfs.ts +27 -0
- package/source/packages/scramjet/packages/core/src/client/shared/postmessage.ts +113 -0
- package/source/packages/scramjet/packages/core/src/client/shared/realm.ts +26 -0
- package/source/packages/scramjet/packages/core/src/client/shared/requests/eventsource.ts +17 -0
- package/source/packages/scramjet/packages/core/src/client/shared/requests/fetch.ts +67 -0
- package/source/packages/scramjet/packages/core/src/client/shared/requests/websocket.ts +389 -0
- package/source/packages/scramjet/packages/core/src/client/shared/requests/xmlhttprequest.ts +163 -0
- package/source/packages/scramjet/packages/core/src/client/shared/settimeout.ts +20 -0
- package/source/packages/scramjet/packages/core/src/client/shared/sourcemaps.ts +203 -0
- package/source/packages/scramjet/packages/core/src/client/shared/worker.ts +72 -0
- package/source/packages/scramjet/packages/core/src/client/shared/wrap.ts +197 -0
- package/source/packages/scramjet/packages/core/src/client/singletonbox.ts +52 -0
- package/source/packages/scramjet/packages/core/src/client/worker/importScripts.ts +13 -0
- package/source/packages/scramjet/packages/core/src/fetch/body.ts +93 -0
- package/source/packages/scramjet/packages/core/src/fetch/fetch.ts +323 -0
- package/source/packages/scramjet/packages/core/src/fetch/headers.ts +528 -0
- package/source/packages/scramjet/packages/core/src/fetch/index.ts +198 -0
- package/source/packages/scramjet/packages/core/src/fetch/parse.ts +149 -0
- package/source/packages/scramjet/packages/core/src/fetch/util.ts +81 -0
- package/source/packages/scramjet/packages/core/src/global.d.ts +32 -0
- package/source/packages/scramjet/packages/core/src/index.ts +78 -0
- package/source/packages/scramjet/packages/core/src/log.ts +117 -0
- package/source/packages/scramjet/packages/core/src/shared/cookie.ts +199 -0
- package/source/packages/scramjet/packages/core/src/shared/headers.ts +76 -0
- package/source/packages/scramjet/packages/core/src/shared/htmlRules.ts +154 -0
- package/source/packages/scramjet/packages/core/src/shared/index.ts +79 -0
- package/source/packages/scramjet/packages/core/src/shared/mime.ts +234 -0
- package/source/packages/scramjet/packages/core/src/shared/refresh.ts +164 -0
- package/source/packages/scramjet/packages/core/src/shared/rewriters/css.ts +67 -0
- package/source/packages/scramjet/packages/core/src/shared/rewriters/html.ts +603 -0
- package/source/packages/scramjet/packages/core/src/shared/rewriters/index.ts +6 -0
- package/source/packages/scramjet/packages/core/src/shared/rewriters/js.ts +158 -0
- package/source/packages/scramjet/packages/core/src/shared/rewriters/url.ts +248 -0
- package/source/packages/scramjet/packages/core/src/shared/rewriters/wasm.ts +58 -0
- package/source/packages/scramjet/packages/core/src/shared/rewriters/worker.ts +37 -0
- package/source/packages/scramjet/packages/core/src/shared/set-cookie-parser.ts +195 -0
- package/source/packages/scramjet/packages/core/src/shared/snapshot.ts +245 -0
- package/source/packages/scramjet/packages/core/src/shared/sniffEncoding.ts +1061 -0
- package/source/packages/scramjet/packages/core/src/shared/util.ts +35 -0
- package/source/packages/scramjet/packages/core/src/symbols.ts +9 -0
- package/source/packages/scramjet/packages/core/src/sync.ts +63 -0
- package/source/packages/scramjet/packages/core/src/types.ts +66 -0
- package/source/packages/scramjet/packages/core/src/typesEntry.ts +6 -0
- package/source/packages/scramjet/packages/core/tsconfig.json +21 -0
- package/source/packages/scramjet/packages/rpc/index.ts +100 -0
- package/source/packages/scramjet/packages/rpc/package.json +7 -0
- package/source/packages/scramjet/packages/utils/package.json +39 -0
- package/source/packages/scramjet/packages/utils/src/alwaysLastBubble.ts +172 -0
- package/source/packages/scramjet/packages/utils/src/catch-escaped-links.ts +34 -0
- package/source/packages/scramjet/packages/utils/src/event-handler-plugin.ts +86 -0
- package/source/packages/scramjet/packages/utils/src/global.d.ts +8 -0
- package/source/packages/scramjet/packages/utils/src/http-cache-plugin.ts +475 -0
- package/source/packages/scramjet/packages/utils/src/index.ts +26 -0
- package/source/packages/scramjet/packages/utils/src/link-handler-plugin.ts +75 -0
- package/source/packages/scramjet/packages/utils/src/typesEntry.ts +5 -0
- package/source/packages/scramjet/packages/utils/src/url-watcher.ts +37 -0
- package/source/packages/scramjet/packages/utils/src/version.ts +40 -0
- package/source/packages/scramjet/packages/utils/tsconfig.json +11 -0
- package/source/packages/scramjet/patches/htmlparser2@12.0.0.patch +124 -0
- package/source/packages/scramjet/rspack.config.ts +613 -0
- package/source/packages/scramjet/tsconfig.json +11 -0
- package/source/packages/tracker-protocol/package.json +31 -0
- package/source/packages/tracker-protocol/src/index.ts +745 -0
- package/source/packages/tracker-protocol/tsconfig.json +18 -0
- package/source/pnpm-lock.yaml +12018 -0
- package/source/pnpm-workspace.yaml +31 -0
- package/source/rspack.config.ts +103 -0
- package/source/scripts/update-adblock-assets.mjs +164 -0
- package/third_party/filter-lists/LICENSE-CC-BY-SA-3.0.txt +359 -0
- package/third_party/filter-lists/LICENSE-GPL-3.0.txt +674 -0
- package/third_party/filter-lists/LICENSE-MPL-2.0.txt +375 -0
- package/third_party/filter-lists/README.md +24 -0
- package/third_party/filter-lists/easylist.txt +83088 -0
- package/third_party/filter-lists/easyprivacy.txt +56361 -0
- package/third_party/filter-lists/manifest.json +56 -0
- package/third_party/filter-lists/ublock-filters.txt +10937 -0
- package/third_party/filter-lists/ublock-privacy.txt +3209 -0
- package/third_party/filter-lists/ublock-resources.json +1852 -0
- package/third_party/filter-lists/ublock-unbreak.txt +6026 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const html: (strings: TemplateStringsArray, ...values: any[]) => HTMLElement | HTMLElement[];
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Pointer, Stateful } from "dreamland/core";
|
|
2
|
+
export interface SpringOptions {
|
|
3
|
+
stiffness?: number;
|
|
4
|
+
damping?: number;
|
|
5
|
+
precision?: number;
|
|
6
|
+
}
|
|
7
|
+
export interface SpringState<T> {
|
|
8
|
+
stiffness: number;
|
|
9
|
+
damping: number;
|
|
10
|
+
precision: number;
|
|
11
|
+
target: T;
|
|
12
|
+
current: T;
|
|
13
|
+
}
|
|
14
|
+
export type Spring<T> = Stateful<SpringState<T>>;
|
|
15
|
+
export declare let createSpring: <T>(val: T | Pointer<T>, opts?: SpringOptions) => Spring<T>;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { ComponentChild, Component, ComponentState, FC, ComponentInstance, NO_CHANGE } from "dreamland/core";
|
|
2
|
+
export type RouteParams = Record<string, string> & {
|
|
3
|
+
[NO_CHANGE]: true;
|
|
4
|
+
};
|
|
5
|
+
export interface RouterState {
|
|
6
|
+
params: RouteParams;
|
|
7
|
+
path: string;
|
|
8
|
+
outlet?: HTMLElement;
|
|
9
|
+
error?: any;
|
|
10
|
+
loading: boolean;
|
|
11
|
+
initial: boolean;
|
|
12
|
+
[NO_CHANGE]: true;
|
|
13
|
+
}
|
|
14
|
+
export type LayoutComponent = Component<{
|
|
15
|
+
routerState: RouterState;
|
|
16
|
+
}>;
|
|
17
|
+
export type ShowElement = ComponentInstance<Component<{}, {
|
|
18
|
+
routerParams: RouteParams;
|
|
19
|
+
}>> | HTMLElement;
|
|
20
|
+
type _MaybePromiseShowEl = Promise<ShowElement> | ShowElement;
|
|
21
|
+
export type ShowTarget = _MaybePromiseShowEl | (() => _MaybePromiseShowEl);
|
|
22
|
+
export declare function Route(this: FC<{
|
|
23
|
+
path?: string;
|
|
24
|
+
show?: ShowTarget;
|
|
25
|
+
layout?: LayoutComponent;
|
|
26
|
+
cork?: boolean;
|
|
27
|
+
children?: ComponentChild;
|
|
28
|
+
}>): any;
|
|
29
|
+
export declare function Link(this: FC<{
|
|
30
|
+
href: string;
|
|
31
|
+
class?: string;
|
|
32
|
+
children?: ComponentChild;
|
|
33
|
+
"on:click"?: () => void;
|
|
34
|
+
}>): HTMLElement;
|
|
35
|
+
export declare let router: ComponentState<typeof Router>;
|
|
36
|
+
export declare function Router(this: FC<{
|
|
37
|
+
initial?: [path: string, origin: string] | [path: string] | [];
|
|
38
|
+
children: HTMLElement | HTMLElement[];
|
|
39
|
+
}, {
|
|
40
|
+
el?: ShowElement;
|
|
41
|
+
navigate: (path: string) => Promise<string | undefined>;
|
|
42
|
+
ssgables: () => [string, string][];
|
|
43
|
+
[NO_CHANGE]: true;
|
|
44
|
+
}>): HTMLElement;
|
|
45
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare let hydrate: (component: () => any, ssr: HTMLElement, head: HTMLElement, dataEl: HTMLElement) => Promise<any>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { SsrData, SsrObject } from "./types";
|
|
2
|
+
export declare let Json: JSON;
|
|
3
|
+
export declare let serializeState: (data: SsrData, object: object, isNode: (x: any) => boolean) => SsrObject;
|
|
4
|
+
export declare let hydrateState: (data: SsrData, state: SsrObject, target: any) => void;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export type SsrValue = number | [0 | 1, SsrObject] | [2 | 3, SsrValue[]] | [4, SsrPointer] | undefined;
|
|
2
|
+
export type SsrPointer = SsrPointer[] | {
|
|
3
|
+
v: SsrValue;
|
|
4
|
+
};
|
|
5
|
+
export type SsrObject = [
|
|
6
|
+
number,
|
|
7
|
+
SsrValue
|
|
8
|
+
][];
|
|
9
|
+
export type Node = SsrObject | [
|
|
10
|
+
number,
|
|
11
|
+
number,
|
|
12
|
+
string?
|
|
13
|
+
];
|
|
14
|
+
export interface SsrData {
|
|
15
|
+
k: string[];
|
|
16
|
+
v: any[];
|
|
17
|
+
n: Record<number, Node>;
|
|
18
|
+
i: Record<number, string>;
|
|
19
|
+
t: [number, number, number][];
|
|
20
|
+
p?: (number | [number, number])[];
|
|
21
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Component } from "dreamland/core";
|
|
2
|
+
export declare let mountOne: (root: HTMLElement, component: Component<any, any>, data?: any) => void;
|
|
3
|
+
export declare let mount: (roots: string | HTMLElement[], component: Component<any, any>, getData?: (x: HTMLElement) => any) => void;
|
|
4
|
+
export declare let discover: (controllers: Record<string, () => Promise<any>>) => Promise<void>;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { ComponentContext } from "dreamland/core";
|
|
2
|
+
import { Element as DomElement, Comment as DomComment, Text as DomText, AnyNode as DomNode } from "domhandler";
|
|
3
|
+
export declare class Node {
|
|
4
|
+
_id: number;
|
|
5
|
+
nodeType: number;
|
|
6
|
+
parent?: Node;
|
|
7
|
+
childNodes: Node[];
|
|
8
|
+
appendChild(node: Node): Node;
|
|
9
|
+
append(node: Node): Node;
|
|
10
|
+
removeChild(node: Node): void;
|
|
11
|
+
insertBefore(node: Node, anchor: Node): void;
|
|
12
|
+
toStandard(): DomNode;
|
|
13
|
+
get parentNode(): Node | undefined;
|
|
14
|
+
get firstChild(): Node;
|
|
15
|
+
get nextSibling(): Node | undefined;
|
|
16
|
+
}
|
|
17
|
+
declare class ClassList extends Array {
|
|
18
|
+
constructor();
|
|
19
|
+
add(...classes: string[]): void;
|
|
20
|
+
remove(...classes: string[]): void;
|
|
21
|
+
empty(): boolean;
|
|
22
|
+
toString(): string;
|
|
23
|
+
_replace(classes: string[]): void;
|
|
24
|
+
}
|
|
25
|
+
export declare class Element extends Node {
|
|
26
|
+
nodeType: number;
|
|
27
|
+
namespace?: string;
|
|
28
|
+
type: string;
|
|
29
|
+
attributes: Map<string, string>;
|
|
30
|
+
classList: ClassList;
|
|
31
|
+
component: ComponentContext<any> | undefined;
|
|
32
|
+
style: any;
|
|
33
|
+
constructor(type: string, namespace?: string);
|
|
34
|
+
addEventListener(): void;
|
|
35
|
+
setAttribute(key: string, value: any): void;
|
|
36
|
+
removeAttribute(key: string): void;
|
|
37
|
+
replaceWith(el: Element): void;
|
|
38
|
+
get $(): any;
|
|
39
|
+
set $(value: any);
|
|
40
|
+
get innerHTML(): string;
|
|
41
|
+
set innerHTML(value: string);
|
|
42
|
+
set innerText(value: string);
|
|
43
|
+
toStandard(): DomElement;
|
|
44
|
+
}
|
|
45
|
+
export declare class Style extends Element {
|
|
46
|
+
constructor();
|
|
47
|
+
sheet: any;
|
|
48
|
+
set innerText(value: string);
|
|
49
|
+
toStandard(): DomElement;
|
|
50
|
+
}
|
|
51
|
+
export declare class Comment extends Node {
|
|
52
|
+
nodeType: number;
|
|
53
|
+
data: string;
|
|
54
|
+
constructor(text: string);
|
|
55
|
+
toStandard(): DomComment;
|
|
56
|
+
}
|
|
57
|
+
export declare class Text extends Node {
|
|
58
|
+
nodeType: number;
|
|
59
|
+
data: string;
|
|
60
|
+
constructor(text: string);
|
|
61
|
+
toStandard(): DomText;
|
|
62
|
+
}
|
|
63
|
+
export declare let newVDom: () => [{
|
|
64
|
+
readonly createElement: (type: string) => Node;
|
|
65
|
+
readonly createElementNS: (ns: string, type: string) => Node;
|
|
66
|
+
readonly elArr: Node[];
|
|
67
|
+
readonly identArr: Map<number, string>;
|
|
68
|
+
readonly promises: any[];
|
|
69
|
+
readonly head: Element;
|
|
70
|
+
}, typeof Node, (text?: any) => Node, (text?: any) => Node, () => string, Map<any, any>, undefined, undefined, undefined, any[], any[]];
|
|
71
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { serializeState, deserializeState, createStore, saveAllStores, StoreSyncBacking, StoreAsyncBacking, StoreAsyncOptions, StoreSyncOptions, } from "./store";
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Stateful } from "dreamland/core";
|
|
2
|
+
export declare let serializeState: (state: Stateful<any>) => any;
|
|
3
|
+
export declare let deserializeState: (saved: any) => Stateful<any>;
|
|
4
|
+
export type StoreSyncBacking = {
|
|
5
|
+
read: (ident: string) => string | undefined;
|
|
6
|
+
write: (ident: string, data: string) => void;
|
|
7
|
+
};
|
|
8
|
+
export type StoreAsyncBacking = {
|
|
9
|
+
read: (ident: string) => Promise<string | undefined>;
|
|
10
|
+
write: (ident: string, data: string) => Promise<void>;
|
|
11
|
+
};
|
|
12
|
+
export type StoreSyncOptions = {
|
|
13
|
+
ident: string;
|
|
14
|
+
backing: "localstorage" | StoreSyncBacking | StoreAsyncBacking;
|
|
15
|
+
autosave: "auto" | "manual" | "beforeunload";
|
|
16
|
+
};
|
|
17
|
+
export type StoreAsyncOptions = {
|
|
18
|
+
ident: string;
|
|
19
|
+
backing: StoreAsyncBacking;
|
|
20
|
+
autosave: "auto" | "manual" | "beforeunload";
|
|
21
|
+
};
|
|
22
|
+
declare function _createStore<T extends object>(target: T, options: StoreAsyncOptions): Promise<Stateful<T>>;
|
|
23
|
+
declare function _createStore<T extends object>(target: T, options: StoreSyncOptions): Stateful<T>;
|
|
24
|
+
export declare let createStore: typeof _createStore;
|
|
25
|
+
export declare let saveAllStores: () => void;
|
|
26
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Plugin } from "vite";
|
|
2
|
+
import type { RenderedComponent } from "dreamland/ssr/server";
|
|
3
|
+
export { cssMinifier } from "./css-minifier";
|
|
4
|
+
export type { CssMinifierOptions } from "./css-minifier";
|
|
5
|
+
export declare let jsxPlugin: () => Plugin;
|
|
6
|
+
export declare let renderSsr: (html: string, render: () => Promise<RenderedComponent> | RenderedComponent, transform?: (html: string) => Promise<string> | string) => Promise<string>;
|
|
7
|
+
export type DevSsrPluginOptions = {
|
|
8
|
+
entry: string;
|
|
9
|
+
transform?: (html: string) => string;
|
|
10
|
+
};
|
|
11
|
+
export declare let devSsr: (options: DevSsrPluginOptions) => any;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Stateful } from 'dreamland/core';
|
|
2
|
+
|
|
3
|
+
declare let serializeState: (state: Stateful<any>) => any;
|
|
4
|
+
declare let deserializeState: (saved: any) => Stateful<any>;
|
|
5
|
+
type StoreSyncBacking = {
|
|
6
|
+
read: (ident: string) => string | undefined;
|
|
7
|
+
write: (ident: string, data: string) => void;
|
|
8
|
+
};
|
|
9
|
+
type StoreAsyncBacking = {
|
|
10
|
+
read: (ident: string) => Promise<string | undefined>;
|
|
11
|
+
write: (ident: string, data: string) => Promise<void>;
|
|
12
|
+
};
|
|
13
|
+
type StoreSyncOptions = {
|
|
14
|
+
ident: string;
|
|
15
|
+
backing: "localstorage" | StoreSyncBacking | StoreAsyncBacking;
|
|
16
|
+
autosave: "auto" | "manual" | "beforeunload";
|
|
17
|
+
};
|
|
18
|
+
type StoreAsyncOptions = {
|
|
19
|
+
ident: string;
|
|
20
|
+
backing: StoreAsyncBacking;
|
|
21
|
+
autosave: "auto" | "manual" | "beforeunload";
|
|
22
|
+
};
|
|
23
|
+
declare function _createStore<T extends object>(target: T, options: StoreAsyncOptions): Promise<Stateful<T>>;
|
|
24
|
+
declare function _createStore<T extends object>(target: T, options: StoreSyncOptions): Stateful<T>;
|
|
25
|
+
declare let createStore: typeof _createStore;
|
|
26
|
+
declare let saveAllStores: () => void;
|
|
27
|
+
|
|
28
|
+
export { createStore, deserializeState, saveAllStores, serializeState };
|
|
29
|
+
export type { StoreAsyncBacking, StoreAsyncOptions, StoreSyncBacking, StoreSyncOptions };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{isStateful as e,createState as t,stateListen as a}from"dreamland/core";let o="__dls_ty",l=globalThis.localStorage||{},r=t=>{let a=new Set([t]);return JSON.stringify(t,(t,l)=>a.has(l)?l:e(l)?(a.add(l),{[o]:"s",v:l}):l)},n=e=>t(JSON.parse(e,(e,a)=>a&&"object"==typeof a&&o in a&&"s"==a[o]?t(a.v):a)),i=[],s=(o,{ident:s,backing:c,autosave:b})=>{s="dls-"+s,"localstorage"===c&&(c={read:e=>l[e],write:(e,t)=>l[e]=t});let d,f="auto"===b,u="",O=()=>{d=(async()=>{await d;let e=r(o);e!==u&&(await c.write(s,e),u=e)})()},g=t=>{e(t)&&f&&a(t,g),O()},j=(t,o)=>{for(let l in o){let r=o[l];e(r)&&f&&a(r,g),r instanceof Object&&l in t&&Object.assign(r,j(t[l],r))}Object.assign(t,o)},m=e=>{e&&j(o,n(e));let l=t(o);return i.push(O),f?a(l,g):"beforeunload"===b&&globalThis?.addEventListener(b,O),l},w=c.read(s);return w instanceof Promise?w.then(m):m(w)},c=()=>{i.forEach(e=>e())};export{s as createStore,n as deserializeState,c as saveAllStores,r as serializeState};
|
|
2
|
+
//# sourceMappingURL=util.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"util.js","sources":["../src/util/store.ts"],"sourcesContent":["import { Stateful, createState, isStateful, stateListen } from \"dreamland/core\";\n\nlet DLS_TY = \"__dls_ty\";\nlet LOCALSTORAGE = globalThis.localStorage || {};\n\nexport let serializeState = (state: Stateful<any>): any => {\n\tlet set = new Set([state]);\n\treturn JSON.stringify(state, (_, v) => {\n\t\tif (set.has(v)) return v;\n\n\t\tif (isStateful(v)) {\n\t\t\tset.add(v);\n\t\t\treturn { [DLS_TY]: \"s\", v };\n\t\t}\n\n\t\treturn v;\n\t});\n};\n\nexport let deserializeState = (saved: any): Stateful<any> => {\n\treturn createState(\n\t\tJSON.parse(saved, (_, v) => {\n\t\t\tif (v && typeof v === \"object\" && DLS_TY in v) {\n\t\t\t\tif (v[DLS_TY] == \"s\") {\n\t\t\t\t\treturn createState(v.v);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn v;\n\t\t})\n\t);\n};\n\nexport type StoreSyncBacking = {\n\tread: (ident: string) => string | undefined;\n\twrite: (ident: string, data: string) => void;\n};\nexport type StoreAsyncBacking = {\n\tread: (ident: string) => Promise<string | undefined>;\n\twrite: (ident: string, data: string) => Promise<void>;\n};\nexport type StoreSyncOptions = {\n\tident: string;\n\tbacking: \"localstorage\" | StoreSyncBacking | StoreAsyncBacking;\n\tautosave: \"auto\" | \"manual\" | \"beforeunload\";\n};\nexport type StoreAsyncOptions = {\n\tident: string;\n\tbacking: StoreAsyncBacking;\n\tautosave: \"auto\" | \"manual\" | \"beforeunload\";\n};\n\nlet saveDelegates: (() => void)[] = [];\n\nfunction _createStore<T extends object>(\n\ttarget: T,\n\toptions: StoreAsyncOptions\n): Promise<Stateful<T>>;\nfunction _createStore<T extends object>(\n\ttarget: T,\n\toptions: StoreSyncOptions\n): Stateful<T>;\nfunction _createStore<T extends object>(\n\ttarget: T,\n\t{ ident, backing, autosave }: StoreAsyncOptions | StoreSyncOptions\n): Stateful<T> | Promise<Stateful<T>> {\n\tident = \"dls-\" + ident;\n\n\tif (backing === \"localstorage\") {\n\t\tbacking = {\n\t\t\tread: (ident) => LOCALSTORAGE[ident],\n\t\t\twrite: (ident, data) => (LOCALSTORAGE[ident] = data),\n\t\t};\n\t}\n\n\tlet isAuto = autosave === \"auto\";\n\tlet last = \"\";\n\tlet saving: Promise<void> | undefined;\n\tlet asyncSave = async () => {\n\t\tawait saving;\n\n\t\tlet serialized = serializeState(target);\n\t\tif (serialized === last) return;\n\t\tdev: {\n\t\t\tconsole.info(\"[dreamland.js]: saving \" + ident);\n\t\t}\n\t\tawait backing.write(ident, serialized);\n\t\tlast = serialized;\n\t};\n\tlet save = () => {\n\t\tsaving = asyncSave();\n\t};\n\n\tlet saveHook = (value: any) => {\n\t\tif (isStateful(value) && isAuto) stateListen(value, saveHook);\n\t\tsave();\n\t};\n\n\tlet deepMerge = (target: object, source: any) => {\n\t\tfor (let key in source) {\n\t\t\tlet val = source[key];\n\t\t\tif (isStateful(val) && isAuto) stateListen(val, saveHook);\n\t\t\tif (val instanceof Object && key in target) {\n\t\t\t\tObject.assign(val, deepMerge((target as any)[key], val));\n\t\t\t}\n\t\t}\n\n\t\tObject.assign(target, source);\n\t};\n\n\tlet finish = (data?: string): Stateful<T> => {\n\t\tif (data) {\n\t\t\tdeepMerge(target, deserializeState(data));\n\t\t}\n\n\t\tlet state = createState(target);\n\t\tsaveDelegates.push(save);\n\n\t\tif (isAuto) {\n\t\t\tstateListen(state, saveHook);\n\t\t} else if (autosave === \"beforeunload\") {\n\t\t\tglobalThis?.addEventListener(autosave, save);\n\t\t}\n\n\t\treturn state;\n\t};\n\n\tlet data = backing.read(ident);\n\treturn data instanceof Promise ? data.then(finish) : finish(data);\n}\nexport let createStore = _createStore;\n\nexport let saveAllStores = () => {\n\tsaveDelegates.forEach((cb) => cb());\n};\n"],"names":["DLS_TY","LOCALSTORAGE","globalThis","localStorage","serializeState","state","set","Set","JSON","stringify","_","v","has","isStateful","add","deserializeState","saved","createState","parse","saveDelegates","createStore","target","ident","backing","autosave","read","write","data","saving","isAuto","last","save","async","serialized","asyncSave","saveHook","value","stateListen","deepMerge","source","key","val","Object","assign","finish","push","addEventListener","Promise","then","saveAllStores","forEach","cb"],"mappings":"8EAEA,IAAIA,EAAS,WACTC,EAAeC,WAAWC,cAAgB,CAAA,EAEnCC,EAAkBC,IAC5B,IAAIC,EAAM,IAAIC,IAAI,CAACF,IACnB,OAAOG,KAAKC,UAAUJ,EAAO,CAACK,EAAGC,IAC5BL,EAAIM,IAAID,GAAWA,EAEnBE,EAAWF,IACdL,EAAIQ,IAAIH,GACD,CAAEX,CAACA,GAAS,IAAKW,MAGlBA,IAIEI,EAAoBC,GACvBC,EACNT,KAAKU,MAAMF,EAAO,CAACN,EAAGC,IACjBA,GAAkB,iBAANA,GAAkBX,KAAUW,GAC1B,KAAbA,EAAEX,GACEiB,EAAYN,EAAEA,GAGhBA,IAwBNQ,EAAgC,GA8EzBC,EApEX,CACCC,GACAC,MAAEA,EAAKC,QAAEA,EAAOC,SAAEA,MAElBF,EAAQ,OAASA,EAED,iBAAZC,IACHA,EAAU,CACTE,KAAOH,GAAUrB,EAAaqB,GAC9BI,MAAO,CAACJ,EAAOK,IAAU1B,EAAaqB,GAASK,IAIjD,IAEIC,EAFAC,EAAsB,SAAbL,EACTM,EAAO,GAaPC,EAAO,KACVH,EAZeI,iBACTJ,EAEN,IAAIK,EAAa7B,EAAeiB,GAC5BY,IAAeH,UAIbP,EAAQG,MAAMJ,EAAOW,GAC3BH,EAAOG,IAGEC,IAGNC,EAAYC,IACXvB,EAAWuB,IAAUP,GAAQQ,EAAYD,EAAOD,GACpDJ,KAGGO,EAAY,CAACjB,EAAgBkB,KAChC,IAAK,IAAIC,KAAOD,EAAQ,CACvB,IAAIE,EAAMF,EAAOC,GACb3B,EAAW4B,IAAQZ,GAAQQ,EAAYI,EAAKN,GAC5CM,aAAeC,QAAUF,KAAOnB,GACnCqB,OAAOC,OAAOF,EAAKH,EAAWjB,EAAemB,GAAMC,IAIrDC,OAAOC,OAAOtB,EAAQkB,IAGnBK,EAAUjB,IACTA,GACHW,EAAUjB,EAAQN,EAAiBY,IAGpC,IAAItB,EAAQY,EAAYI,GASxB,OARAF,EAAc0B,KAAKd,GAEfF,EACHQ,EAAYhC,EAAO8B,GACI,iBAAbX,GACVtB,YAAY4C,iBAAiBtB,EAAUO,GAGjC1B,GAGJsB,EAAOJ,EAAQE,KAAKH,GACxB,OAAOK,aAAgBoB,QAAUpB,EAAKqB,KAAKJ,GAAUA,EAAOjB,EAC7D,EAGWsB,EAAgB,KAC1B9B,EAAc+B,QAASC,GAAOA"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { FilterPattern, Plugin } from 'vite';
|
|
2
|
+
import { RenderedComponent } from 'dreamland/ssr/server';
|
|
3
|
+
|
|
4
|
+
type CssMinifierOptions = {
|
|
5
|
+
include?: FilterPattern;
|
|
6
|
+
exclude?: FilterPattern;
|
|
7
|
+
};
|
|
8
|
+
declare let cssMinifier: (options?: CssMinifierOptions) => Plugin;
|
|
9
|
+
|
|
10
|
+
declare let jsxPlugin: () => Plugin;
|
|
11
|
+
declare let renderSsr: (html: string, render: () => Promise<RenderedComponent> | RenderedComponent, transform?: (html: string) => Promise<string> | string) => Promise<string>;
|
|
12
|
+
type DevSsrPluginOptions = {
|
|
13
|
+
entry: string;
|
|
14
|
+
transform?: (html: string) => string;
|
|
15
|
+
};
|
|
16
|
+
declare let devSsr: (options: DevSsrPluginOptions) => any;
|
|
17
|
+
|
|
18
|
+
export { cssMinifier, devSsr, jsxPlugin, renderSsr };
|
|
19
|
+
export type { CssMinifierOptions, DevSsrPluginOptions };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"dom-serializer";import{transform as t}from"lightningcss";import i from"magic-string";import{createFilter as r}from"vite";let n=(e={})=>{let n=r(e.include||["**/*.tsx","**/*.ts","**/*.jsx","**/*.js"],e.exclude);return{name:"dreamland/vite/css-minifier",transform(e,r){if(!n(r))return;if(!e.includes("css`")&&!/css\s+`/.test(e))return;let s;for(let n=0;n<e.length;n++){if('"'===e[n]||"'"===e[n]){let t=e[n];for(n++;n<e.length&&e[n]!==t;)"\\"===e[n]&&n++,n++;continue}if("/"!==e[n]||"/"!==e[n+1])if("/"!==e[n]||"*"!==e[n+1]){if("c"===e[n]&&"s"===e[n+1]&&"s"===e[n+2]){if(n>0&&/[a-zA-Z0-9_$]/.test(e[n-1]))continue;let l=n+3;for(;l<e.length&&(" "===e[l]||"\t"===e[l]||"\n"===e[l]||"\r"===e[l]);)l++;if("`"!==e[l])continue;let f=[],o=l+1,a=o,c=0;for(;a<e.length;)if("\\"===e[a]&&a+1<e.length)a+=2;else{if(0===c){if("`"===e[a]){f.push({start:o,end:a});break}if("$"===e[a]&&"{"===e[a+1]){f.push({start:o,end:a}),c=1,a+=2;continue}}else if("{"===e[a])c++;else if("}"===e[a])c--,0===c&&(o=a+1);else if("`"===e[a]){a++;let t=0;for(;a<e.length;)if("\\"===e[a]&&a+1<e.length)a+=2;else if("$"!==e[a]||"{"!==e[a+1]||0!==t)if("{"===e[a]&&t>0)t++,a++;else if("}"===e[a]&&t>0)t--,a++;else{if("`"===e[a]&&0===t)break;a++}else t=1,a+=2}else if('"'===e[a]||"'"===e[a]){let t=e[a];for(a++;a<e.length&&e[a]!==t;)"\\"===e[a]&&a++,a++}a++}if(0===f.length)continue;let m="__DLEXPR__",d=f.map(t=>e.slice(t.start,t.end)).join(m);try{let o=t({filename:r,code:Buffer.from(d),minify:!0}).code.toString().split(m);if(o.length!==f.length){let t=e.slice(0,l).split("\n").length;this.warn(`css\` literal could not be minified: placeholder count mismatch (expected ${f.length}, got ${o.length})`,{line:t,column:0}),n=a;continue}let c=!1;for(let t=0;t<f.length;t++)if(o[t]!==e.slice(f[t].start,f[t].end)){c=!0;break}if(!c){n=a;continue}s||(s=new i(e));for(let t=0;t<f.length;t++){let i=e.slice(f[t].start,f[t].end);o[t]!==i&&s.overwrite(f[t].start,f[t].end,o[t])}}catch(t){let i=e.slice(0,l).split("\n").length;this.warn("css` literal could not be minified: "+(t instanceof Error?t.message:t),{line:i,column:0})}n=a}}else{if(n=e.indexOf("*/",n+2),-1===n)break;n++}else if(n=e.indexOf("\n",n),-1===n)break}return s?{code:s.toString(),map:s.generateMap({hires:!0})}:void 0}}},s=()=>({name:"dreamland/vite/jsx",config(e){e.esbuild||={},e.esbuild.jsx="automatic",e.esbuild.jsxImportSource="dreamland"}}),l=async(t,i,r)=>{r&&(t=await r(t));let n={encodeEntities:"utf8",decodeEntities:!1},s=await i(),l=e([s.data,...s.head],n),f=e(s.component,n);return t.replace("\x3c!--ssr-head--\x3e",l).replace("\x3c!--ssr-body--\x3e",f)},f=e=>({name:"dreamland/vite/dev-ssr",apply:"serve",async transformIndexHtml(t,i){let r=i.server;try{let n=await r.ssrLoadModule(e.entry);return await l(t,()=>n.default(i.originalUrl),e.transform)}catch(e){throw r.ssrFixStacktrace(e),e}}});export{n as cssMinifier,f as devSsr,s as jsxPlugin,l as renderSsr};
|
|
2
|
+
//# sourceMappingURL=vite.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vite.js","sources":["../src/vite/css-minifier.ts","../src/vite/index.ts"],"sourcesContent":["import type { Plugin } from \"vite\";\nimport { transform } from \"lightningcss\";\nimport MagicString from \"magic-string\";\nimport type { FilterPattern } from \"vite\";\nimport { createFilter } from \"vite\";\n\nexport type CssMinifierOptions = {\n\tinclude?: FilterPattern;\n\texclude?: FilterPattern;\n};\n\nexport let cssMinifier = (options: CssMinifierOptions = {}): Plugin => {\n\tlet filter = createFilter(\n\t\toptions.include || [\"**/*.tsx\", \"**/*.ts\", \"**/*.jsx\", \"**/*.js\"],\n\t\toptions.exclude\n\t);\n\n\treturn {\n\t\tname: \"dreamland/vite/css-minifier\",\n\t\ttransform(code, id) {\n\t\t\tif (!filter(id)) return;\n\t\t\tif (!code.includes(\"css`\") && !/css\\s+`/.test(code)) return;\n\n\t\t\tlet s: MagicString | undefined;\n\n\t\t\t// find css`...` tagged template literals\n\t\t\t// we scan character by character to correctly handle nesting\n\t\t\tfor (let i = 0; i < code.length; i++) {\n\t\t\t\t// skip strings\n\t\t\t\tif (code[i] === '\"' || code[i] === \"'\") {\n\t\t\t\t\tlet quote = code[i];\n\t\t\t\t\ti++;\n\t\t\t\t\twhile (i < code.length && code[i] !== quote) {\n\t\t\t\t\t\tif (code[i] === \"\\\\\") i++;\n\t\t\t\t\t\ti++;\n\t\t\t\t\t}\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// skip line comments\n\t\t\t\tif (code[i] === \"/\" && code[i + 1] === \"/\") {\n\t\t\t\t\ti = code.indexOf(\"\\n\", i);\n\t\t\t\t\tif (i === -1) break;\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// skip block comments\n\t\t\t\tif (code[i] === \"/\" && code[i + 1] === \"*\") {\n\t\t\t\t\ti = code.indexOf(\"*/\", i + 2);\n\t\t\t\t\tif (i === -1) break;\n\t\t\t\t\ti++;\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// look for css` or css ` (TypeScript may insert whitespace)\n\t\t\t\tif (code[i] === \"c\" && code[i + 1] === \"s\" && code[i + 2] === \"s\") {\n\t\t\t\t\t// make sure \"css\" is not part of a larger identifier\n\t\t\t\t\tif (i > 0 && /[a-zA-Z0-9_$]/.test(code[i - 1])) continue;\n\n\t\t\t\t\t// skip optional whitespace between css and backtick\n\t\t\t\t\tlet backtickStart = i + 3;\n\t\t\t\t\twhile (\n\t\t\t\t\t\tbacktickStart < code.length &&\n\t\t\t\t\t\t(code[backtickStart] === \" \" ||\n\t\t\t\t\t\t\tcode[backtickStart] === \"\\t\" ||\n\t\t\t\t\t\t\tcode[backtickStart] === \"\\n\" ||\n\t\t\t\t\t\t\tcode[backtickStart] === \"\\r\")\n\t\t\t\t\t) {\n\t\t\t\t\t\tbacktickStart++;\n\t\t\t\t\t}\n\t\t\t\t\tif (code[backtickStart] !== \"`\") continue;\n\n\t\t\t\t\t// parse the template literal, collecting quasis and expression ranges\n\t\t\t\t\tlet quasis: { start: number; end: number }[] = [];\n\t\t\t\t\tlet quasiStart = backtickStart + 1; // after opening backtick\n\t\t\t\t\tlet j = quasiStart;\n\t\t\t\t\tlet depth = 0;\n\n\t\t\t\t\twhile (j < code.length) {\n\t\t\t\t\t\tif (code[j] === \"\\\\\" && j + 1 < code.length) {\n\t\t\t\t\t\t\tj += 2;\n\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (depth === 0) {\n\t\t\t\t\t\t\tif (code[j] === \"`\") {\n\t\t\t\t\t\t\t\t// end of template literal\n\t\t\t\t\t\t\t\tquasis.push({ start: quasiStart, end: j });\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (code[j] === \"$\" && code[j + 1] === \"{\") {\n\t\t\t\t\t\t\t\tquasis.push({ start: quasiStart, end: j });\n\t\t\t\t\t\t\t\tdepth = 1;\n\t\t\t\t\t\t\t\tj += 2;\n\t\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tif (code[j] === \"{\") {\n\t\t\t\t\t\t\t\tdepth++;\n\t\t\t\t\t\t\t} else if (code[j] === \"}\") {\n\t\t\t\t\t\t\t\tdepth--;\n\t\t\t\t\t\t\t\tif (depth === 0) {\n\t\t\t\t\t\t\t\t\tquasiStart = j + 1;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if (code[j] === \"`\") {\n\t\t\t\t\t\t\t\t// nested template literal inside expression\n\t\t\t\t\t\t\t\tj++;\n\t\t\t\t\t\t\t\tlet nestedDepth = 0;\n\t\t\t\t\t\t\t\twhile (j < code.length) {\n\t\t\t\t\t\t\t\t\tif (code[j] === \"\\\\\" && j + 1 < code.length) {\n\t\t\t\t\t\t\t\t\t\tj += 2;\n\t\t\t\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\tcode[j] === \"$\" &&\n\t\t\t\t\t\t\t\t\t\tcode[j + 1] === \"{\" &&\n\t\t\t\t\t\t\t\t\t\tnestedDepth === 0\n\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\tnestedDepth = 1;\n\t\t\t\t\t\t\t\t\t\tj += 2;\n\t\t\t\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (code[j] === \"{\" && nestedDepth > 0) {\n\t\t\t\t\t\t\t\t\t\tnestedDepth++;\n\t\t\t\t\t\t\t\t\t\tj++;\n\t\t\t\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (code[j] === \"}\" && nestedDepth > 0) {\n\t\t\t\t\t\t\t\t\t\tnestedDepth--;\n\t\t\t\t\t\t\t\t\t\tj++;\n\t\t\t\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (code[j] === \"`\" && nestedDepth === 0) {\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tj++;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if (code[j] === '\"' || code[j] === \"'\") {\n\t\t\t\t\t\t\t\tlet q = code[j];\n\t\t\t\t\t\t\t\tj++;\n\t\t\t\t\t\t\t\twhile (j < code.length && code[j] !== q) {\n\t\t\t\t\t\t\t\t\tif (code[j] === \"\\\\\") j++;\n\t\t\t\t\t\t\t\t\tj++;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tj++;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (quasis.length === 0) continue;\n\n\t\t\t\t\t// build a combined CSS string with placeholders for expressions\n\t\t\t\t\t// use an identifier placeholder that lightningcss won't strip (unlike comments)\n\t\t\t\t\tlet PLACEHOLDER = \"__DLEXPR__\";\n\t\t\t\t\tlet combined = quasis\n\t\t\t\t\t\t.map((q) => code.slice(q.start, q.end))\n\t\t\t\t\t\t.join(PLACEHOLDER);\n\n\t\t\t\t\t// minify with lightningcss\n\t\t\t\t\ttry {\n\t\t\t\t\t\tlet result = transform({\n\t\t\t\t\t\t\tfilename: id,\n\t\t\t\t\t\t\tcode: Buffer.from(combined),\n\t\t\t\t\t\t\tminify: true,\n\t\t\t\t\t\t});\n\t\t\t\t\t\tlet minified = result.code.toString();\n\n\t\t\t\t\t\t// split back on placeholders\n\t\t\t\t\t\tlet parts = minified.split(PLACEHOLDER);\n\t\t\t\t\t\tif (parts.length !== quasis.length) {\n\t\t\t\t\t\t\t// lightningcss removed or merged a placeholder;\n\t\t\t\t\t\t\t// skip this literal to avoid corruption\n\t\t\t\t\t\t\tlet line = code.slice(0, backtickStart).split(\"\\n\").length;\n\t\t\t\t\t\t\tthis.warn(\n\t\t\t\t\t\t\t\t`css\\` literal could not be minified: placeholder count mismatch (expected ${quasis.length}, got ${parts.length})`,\n\t\t\t\t\t\t\t\t{ line, column: 0 }\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\ti = j;\n\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// check if anything actually changed\n\t\t\t\t\t\tlet changed = false;\n\t\t\t\t\t\tfor (let k = 0; k < quasis.length; k++) {\n\t\t\t\t\t\t\tif (parts[k] !== code.slice(quasis[k].start, quasis[k].end)) {\n\t\t\t\t\t\t\t\tchanged = true;\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (!changed) {\n\t\t\t\t\t\t\ti = j;\n\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (!s) s = new MagicString(code);\n\n\t\t\t\t\t\tfor (let k = 0; k < quasis.length; k++) {\n\t\t\t\t\t\t\tlet orig = code.slice(quasis[k].start, quasis[k].end);\n\t\t\t\t\t\t\tif (parts[k] !== orig) {\n\t\t\t\t\t\t\t\ts.overwrite(quasis[k].start, quasis[k].end, parts[k]);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} catch (e) {\n\t\t\t\t\t\tlet line = code.slice(0, backtickStart).split(\"\\n\").length;\n\t\t\t\t\t\tthis.warn(\n\t\t\t\t\t\t\t`css\\` literal could not be minified: ${e instanceof Error ? e.message : e}`,\n\t\t\t\t\t\t\t{ line, column: 0 }\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\n\t\t\t\t\ti = j;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (!s) return;\n\t\t\treturn {\n\t\t\t\tcode: s.toString(),\n\t\t\t\tmap: s.generateMap({ hires: true }),\n\t\t\t};\n\t\t},\n\t};\n};\n","import type { Plugin, PluginOption, UserConfig } from \"vite\";\nimport renderToString, { DomSerializerOptions } from \"dom-serializer\";\nimport type { RenderedComponent } from \"dreamland/ssr/server\";\n\nexport { cssMinifier } from \"./css-minifier\";\nexport type { CssMinifierOptions } from \"./css-minifier\";\n\nexport let jsxPlugin = (): Plugin => ({\n\tname: \"dreamland/vite/jsx\",\n\tconfig(config: UserConfig) {\n\t\tconfig.esbuild ||= {};\n\t\tconfig.esbuild.jsx = \"automatic\";\n\t\tconfig.esbuild.jsxImportSource = \"dreamland\";\n\t},\n});\n\nexport let renderSsr = async (\n\thtml: string,\n\trender: () => Promise<RenderedComponent> | RenderedComponent,\n\ttransform?: (html: string) => Promise<string> | string\n): Promise<string> => {\n\tif (transform) html = await transform(html);\n\n\tlet cfg: DomSerializerOptions = {\n\t\tencodeEntities: \"utf8\",\n\t\tdecodeEntities: false,\n\t};\n\tlet dom = await render();\n\tlet head = renderToString([dom.data, ...dom.head], cfg);\n\tlet body = renderToString(dom.component, cfg);\n\n\treturn html.replace(`<!--ssr-head-->`, head).replace(`<!--ssr-body-->`, body);\n};\n\nexport type DevSsrPluginOptions = {\n\tentry: string;\n\ttransform?: (html: string) => string;\n};\nlet _devSsr = (options: DevSsrPluginOptions): PluginOption => ({\n\tname: \"dreamland/vite/dev-ssr\",\n\tapply: \"serve\",\n\tasync transformIndexHtml(input, ctx) {\n\t\tlet server = ctx.server!;\n\t\ttry {\n\t\t\tlet entry = await server.ssrLoadModule(options.entry);\n\t\t\tlet html = await renderSsr(\n\t\t\t\tinput,\n\t\t\t\t() => entry.default(ctx.originalUrl!),\n\t\t\t\toptions.transform\n\t\t\t);\n\n\t\t\treturn html;\n\t\t} catch (e) {\n\t\t\tserver.ssrFixStacktrace(e as Error);\n\t\t\tthrow e;\n\t\t}\n\t},\n});\n// vite types are broken\nexport let devSsr: (options: DevSsrPluginOptions) => any = _devSsr;\n"],"names":["cssMinifier","options","filter","createFilter","include","exclude","name","transform","code","id","includes","test","s","i","length","quote","backtickStart","quasis","quasiStart","j","depth","push","start","end","nestedDepth","q","PLACEHOLDER","combined","map","slice","join","parts","filename","Buffer","from","minify","toString","split","line","this","warn","column","changed","k","MagicString","orig","overwrite","e","Error","message","indexOf","generateMap","hires","jsxPlugin","config","esbuild","jsx","jsxImportSource","renderSsr","async","html","render","cfg","encodeEntities","decodeEntities","dom","head","renderToString","data","body","component","replace","devSsr","apply","transformIndexHtml","input","ctx","server","entry","ssrLoadModule","default","originalUrl","ssrFixStacktrace"],"mappings":"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"}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dreamland",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "A utilitarian HTML rendering library",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/MercuryWorkshop/dreamlandjs.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://dreamland.js.org/",
|
|
11
|
+
"author": "Mercury Workshop",
|
|
12
|
+
"bugs": "https://github.com/MercuryWorkshop/dreamlandjs/issues",
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "rollup -c",
|
|
16
|
+
"watch": "rollup -cw --config-dev",
|
|
17
|
+
"format": "prettier -w .",
|
|
18
|
+
"lint": "eslint",
|
|
19
|
+
"test": "bash tests/run.sh tests/core/ tests/util/",
|
|
20
|
+
"all": "pnpm format && pnpm lint && pnpm build && pnpm test && dust -sbo b dist/{core,{js,jsx}-runtime,router,ssr.{client,hybrid,server},motion,vite,util}.js",
|
|
21
|
+
"prepack": "npm run build"
|
|
22
|
+
},
|
|
23
|
+
"exports": {
|
|
24
|
+
"./core": {
|
|
25
|
+
"types": "./dist/core.d.ts",
|
|
26
|
+
"default": "./dist/core.js"
|
|
27
|
+
},
|
|
28
|
+
"./js-runtime": {
|
|
29
|
+
"types": "./dist/js-runtime.d.ts",
|
|
30
|
+
"default": "./dist/js-runtime.js"
|
|
31
|
+
},
|
|
32
|
+
"./jsx-runtime": {
|
|
33
|
+
"types": "./dist/jsx-runtime.d.ts",
|
|
34
|
+
"default": "./dist/jsx-runtime.js"
|
|
35
|
+
},
|
|
36
|
+
"./jsx-dev-runtime": {
|
|
37
|
+
"types": "./dist/jsx-runtime.d.ts",
|
|
38
|
+
"default": "./dist/jsx-runtime.js"
|
|
39
|
+
},
|
|
40
|
+
"./ssr/server": {
|
|
41
|
+
"types": "./dist/ssr.server.d.ts",
|
|
42
|
+
"default": "./dist/ssr.server.js"
|
|
43
|
+
},
|
|
44
|
+
"./ssr/hybrid": {
|
|
45
|
+
"types": "./dist/ssr.hybrid.d.ts",
|
|
46
|
+
"default": "./dist/ssr.hybrid.js"
|
|
47
|
+
},
|
|
48
|
+
"./ssr/client": {
|
|
49
|
+
"types": "./dist/ssr.client.d.ts",
|
|
50
|
+
"default": "./dist/ssr.client.js"
|
|
51
|
+
},
|
|
52
|
+
"./router": {
|
|
53
|
+
"types": "./dist/router.d.ts",
|
|
54
|
+
"default": "./dist/router.js"
|
|
55
|
+
},
|
|
56
|
+
"./motion": {
|
|
57
|
+
"types": "./dist/motion.d.ts",
|
|
58
|
+
"default": "./dist/motion.js"
|
|
59
|
+
},
|
|
60
|
+
"./vite": {
|
|
61
|
+
"types": "./dist/vite.d.ts",
|
|
62
|
+
"default": "./dist/vite.js"
|
|
63
|
+
},
|
|
64
|
+
"./util": {
|
|
65
|
+
"types": "./dist/util.d.ts",
|
|
66
|
+
"default": "./dist/util.js"
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"files": [
|
|
70
|
+
"dist/*.d.ts",
|
|
71
|
+
"dist/*.js",
|
|
72
|
+
"dist/*.js.map"
|
|
73
|
+
],
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"@eslint/js": "^10.0.1",
|
|
76
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
77
|
+
"@rollup/plugin-strip": "^3.0.4",
|
|
78
|
+
"@rollup/plugin-terser": "^1.0.0",
|
|
79
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
80
|
+
"@types/node": "^25.5.0",
|
|
81
|
+
"eslint": "^10.0.3",
|
|
82
|
+
"globals": "^17.4.0",
|
|
83
|
+
"magic-string": "^0.30.21",
|
|
84
|
+
"prettier": "^3.8.1",
|
|
85
|
+
"rollup": "^4.59.0",
|
|
86
|
+
"rollup-plugin-dts": "^6.4.0",
|
|
87
|
+
"rollup-plugin-visualizer": "^7.0.1",
|
|
88
|
+
"tslib": "^2.8.1",
|
|
89
|
+
"typescript": "^5.9.3",
|
|
90
|
+
"typescript-eslint": "^8.57.0",
|
|
91
|
+
"vite": "^8.0.0"
|
|
92
|
+
},
|
|
93
|
+
"dependencies": {
|
|
94
|
+
"dom-serializer": "^2.0.0",
|
|
95
|
+
"domhandler": "^5.0.3",
|
|
96
|
+
"htm": "^3.1.1",
|
|
97
|
+
"htmlparser2": "^10.1.0",
|
|
98
|
+
"lightningcss": "^1.32.0",
|
|
99
|
+
"rrweb-cssom": "^0.8.0"
|
|
100
|
+
}
|
|
101
|
+
}
|