@shopify/hydrogen 0.23.0 → 0.25.1
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/CHANGELOG.md +173 -0
- package/dist/esnext/components/AddToCartButton/AddToCartButton.client.d.ts +2 -5
- package/dist/esnext/components/AddToCartButton/AddToCartButton.client.js +15 -14
- package/dist/esnext/components/BaseButton/BaseButton.client.d.ts +14 -0
- package/dist/esnext/components/BaseButton/BaseButton.client.js +15 -0
- package/dist/esnext/components/BaseButton/index.d.ts +1 -0
- package/dist/esnext/components/BaseButton/index.js +1 -0
- package/dist/esnext/components/BuyNowButton/BuyNowButton.client.d.ts +2 -5
- package/dist/esnext/components/BuyNowButton/BuyNowButton.client.js +5 -4
- package/dist/esnext/components/CartEstimatedCost/CartEstimatedCost.client.js +4 -4
- package/dist/esnext/components/CartLinePrice/CartLinePrice.client.js +5 -8
- package/dist/esnext/components/CartLineProvider/context.d.ts +10 -0
- package/dist/esnext/components/CartLineQuantityAdjustButton/CartLineQuantityAdjustButton.d.ts +4 -5
- package/dist/esnext/components/CartLineQuantityAdjustButton/CartLineQuantityAdjustButton.js +16 -14
- package/dist/esnext/components/CartLines/CartLines.client.js +1 -1
- package/dist/esnext/components/CartProvider/CartProvider.client.js +31 -38
- package/dist/esnext/components/CartProvider/cart-queries.d.ts +1 -1
- package/dist/esnext/components/CartProvider/cart-queries.js +11 -0
- package/dist/esnext/components/CartProvider/graphql/CartAttributesUpdateMutation.d.ts +11 -1
- package/dist/esnext/components/CartProvider/graphql/CartBuyerIdentityUpdateMutation.d.ts +11 -1
- package/dist/esnext/components/CartProvider/graphql/CartCreateMutation.d.ts +11 -1
- package/dist/esnext/components/CartProvider/graphql/CartDiscountCodesUpdateMutation.d.ts +11 -1
- package/dist/esnext/components/CartProvider/graphql/CartFragment.d.ts +11 -1
- package/dist/esnext/components/CartProvider/graphql/CartLineAddMutation.d.ts +11 -1
- package/dist/esnext/components/CartProvider/graphql/CartLineRemoveMutation.d.ts +11 -1
- package/dist/esnext/components/CartProvider/graphql/CartLineUpdateMutation.d.ts +11 -1
- package/dist/esnext/components/CartProvider/graphql/CartNoteUpdateMutation.d.ts +11 -1
- package/dist/esnext/components/CartProvider/graphql/CartQuery.d.ts +11 -1
- package/dist/esnext/components/CartProvider/hooks.client.js +5 -8
- package/dist/esnext/components/CartProvider/types.d.ts +2 -0
- package/dist/esnext/components/ExternalVideo/ExternalVideo.js +1 -1
- package/dist/esnext/components/Image/Image.d.ts +13 -0
- package/dist/esnext/components/Image/Image.js +46 -20
- package/dist/esnext/components/Link/Link.client.js +1 -1
- package/dist/esnext/components/LocalizationProvider/LocalizationProvider.server.js +2 -2
- package/dist/esnext/components/Metafield/Metafield.client.d.ts +6 -10
- package/dist/esnext/components/Metafield/Metafield.client.js +67 -31
- package/dist/esnext/components/Metafield/components/StarRating/StarRating.js +1 -1
- package/dist/esnext/components/ModelViewer/ModelViewer.client.js +2 -3
- package/dist/esnext/components/Money/Money.client.js +1 -1
- package/dist/esnext/components/ProductOptionsProvider/ProductOptionsProvider.client.js +22 -29
- package/dist/esnext/components/ProductPrice/ProductPrice.client.js +7 -7
- package/dist/esnext/components/Seo/CollectionSeo.client.js +2 -3
- package/dist/esnext/components/Seo/DefaultPageSeo.client.js +3 -3
- package/dist/esnext/components/Seo/NoIndexSeo.client.js +2 -2
- package/dist/esnext/components/Seo/PageSeo.client.js +2 -3
- package/dist/esnext/components/Seo/ProductSeo.client.js +9 -10
- package/dist/esnext/components/ShopPayButton/ShopPayButton.client.js +2 -3
- package/dist/esnext/components/Video/Video.js +2 -3
- package/dist/esnext/config.d.ts +4 -0
- package/dist/esnext/config.js +4 -0
- package/dist/esnext/constants.d.ts +2 -0
- package/dist/esnext/constants.js +2 -0
- package/dist/esnext/entry-client.js +5 -19
- package/dist/esnext/entry-server.d.ts +1 -17
- package/dist/esnext/entry-server.js +191 -50
- package/dist/esnext/foundation/Analytics/ClientAnalytics.js +4 -4
- package/dist/esnext/foundation/Analytics/ServerAnalyticsRoute.d.ts +4 -0
- package/dist/esnext/foundation/Analytics/{ServerAnalyticsRoute.server.js → ServerAnalyticsRoute.js} +5 -4
- package/dist/esnext/foundation/Analytics/connectors/PerformanceMetrics/ServerAnalyticsConnector.d.ts +3 -0
- package/dist/esnext/foundation/Analytics/connectors/PerformanceMetrics/ServerAnalyticsConnector.js +27 -0
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ServerAnalyticsConnector.d.ts +3 -0
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ServerAnalyticsConnector.js +21 -0
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ShopifyAnalytics.server.js +2 -3
- package/dist/esnext/foundation/BuiltInRoutes/BuiltInRoutes.d.ts +2 -0
- package/dist/esnext/foundation/BuiltInRoutes/BuiltInRoutes.js +23 -0
- package/dist/esnext/foundation/BuiltInRoutes/healthCheck.d.ts +1 -0
- package/dist/esnext/foundation/BuiltInRoutes/healthCheck.js +3 -0
- package/dist/esnext/foundation/Cache/cache-sub-request.js +2 -2
- package/dist/esnext/foundation/Cache/cache.js +2 -2
- package/dist/esnext/foundation/Cache/strategies/index.d.ts +4 -7
- package/dist/esnext/foundation/Cache/strategies/index.js +7 -49
- package/dist/esnext/foundation/Cookie/Cookie.js +5 -0
- package/dist/esnext/foundation/DevTools/DevTools.client.d.ts +3 -0
- package/dist/esnext/foundation/DevTools/DevTools.client.js +17 -0
- package/dist/esnext/foundation/DevTools/DevTools.server.d.ts +1 -0
- package/dist/esnext/foundation/DevTools/DevTools.server.js +14 -0
- package/dist/esnext/foundation/DevTools/components/GraphQL.client.d.ts +1 -0
- package/dist/esnext/foundation/DevTools/components/GraphQL.client.js +25 -0
- package/dist/esnext/foundation/DevTools/components/Heading.d.ts +5 -0
- package/dist/esnext/foundation/DevTools/components/Heading.js +12 -0
- package/dist/esnext/foundation/DevTools/components/Interface.client.d.ts +11 -0
- package/dist/esnext/foundation/DevTools/components/Interface.client.js +47 -0
- package/dist/esnext/foundation/DevTools/components/Panels.d.ts +8 -0
- package/dist/esnext/foundation/DevTools/components/Panels.js +60 -0
- package/dist/esnext/foundation/DevTools/components/Performance.client.d.ts +14 -0
- package/dist/esnext/foundation/DevTools/components/Performance.client.js +26 -0
- package/dist/esnext/foundation/DevTools/components/Settings.client.d.ts +7 -0
- package/dist/esnext/foundation/DevTools/components/Settings.client.js +20 -0
- package/dist/esnext/foundation/DevTools/components/Table.d.ts +9 -0
- package/dist/esnext/foundation/DevTools/components/Table.js +7 -0
- package/dist/esnext/foundation/DevTools/components/icons.d.ts +2 -0
- package/dist/esnext/foundation/DevTools/components/icons.js +13 -0
- package/dist/esnext/foundation/DevTools/components/index.d.ts +2 -0
- package/dist/esnext/foundation/DevTools/components/index.js +2 -0
- package/dist/esnext/foundation/FileRoutes/FileRoutes.server.js +4 -4
- package/dist/esnext/foundation/Html/Html.js +4 -7
- package/dist/esnext/foundation/HydrogenRequest/HydrogenRequest.server.d.ts +10 -4
- package/dist/esnext/foundation/HydrogenRequest/HydrogenRequest.server.js +69 -11
- package/dist/esnext/foundation/HydrogenResponse/HydrogenResponse.server.d.ts +5 -7
- package/dist/esnext/foundation/HydrogenResponse/HydrogenResponse.server.js +22 -20
- package/dist/esnext/foundation/Router/BrowserRouter.client.js +1 -2
- package/dist/esnext/foundation/ServerRequestProvider/ServerRequestProvider.d.ts +1 -2
- package/dist/esnext/foundation/ServerRequestProvider/ServerRequestProvider.js +17 -22
- package/dist/esnext/foundation/ShopifyProvider/ShopifyProvider.server.js +3 -5
- package/dist/esnext/foundation/fetchSync/server/fetchSync.js +1 -1
- package/dist/esnext/foundation/useNavigate/useNavigate.js +3 -4
- package/dist/esnext/foundation/useQuery/hooks.d.ts +1 -0
- package/dist/esnext/foundation/useQuery/hooks.js +25 -17
- package/dist/esnext/foundation/useRequestContext/index.d.ts +15 -0
- package/dist/esnext/foundation/useRequestContext/index.js +23 -0
- package/dist/esnext/foundation/useServerProps/use-server-props.js +2 -2
- package/dist/esnext/foundation/useSession/useSession.js +1 -2
- package/dist/esnext/foundation/useUrl/useUrl.js +1 -2
- package/dist/esnext/framework/cache/in-memory.js +3 -3
- package/dist/esnext/framework/middleware.d.ts +1 -1
- package/dist/esnext/framework/middleware.js +3 -4
- package/dist/esnext/framework/plugin.d.ts +7 -3
- package/dist/esnext/framework/plugin.js +2 -1
- package/dist/esnext/framework/plugins/vite-plugin-client-imports.js +1 -1
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-config.js +70 -67
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-middleware.d.ts +1 -1
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-middleware.js +2 -3
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-rsc.js +1 -1
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-virtual-files.d.ts +1 -1
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-virtual-files.js +6 -4
- package/dist/esnext/framework/types.d.ts +5 -0
- package/dist/esnext/framework/types.js +1 -0
- package/dist/esnext/hooks/index.d.ts +0 -1
- package/dist/esnext/hooks/index.js +0 -1
- package/dist/esnext/hooks/useCartLine/useCartLine.d.ts +10 -0
- package/dist/esnext/hooks/useMoney/hooks.js +53 -39
- package/dist/esnext/hooks/useProductOptions/helpers.js +6 -10
- package/dist/esnext/hooks/useProductOptions/types.d.ts +1 -1
- package/dist/esnext/hooks/useShopQuery/hooks.js +18 -12
- package/dist/esnext/index.d.ts +4 -5
- package/dist/esnext/index.js +2 -5
- package/dist/{node/entry-server.d.ts → esnext/shared-types.d.ts} +11 -7
- package/dist/esnext/shared-types.js +4 -0
- package/dist/esnext/storefront-api-types.d.ts +37 -443
- package/dist/esnext/streaming.server.d.ts +9 -18
- package/dist/esnext/streaming.server.js +2 -7
- package/dist/esnext/types.d.ts +9 -18
- package/dist/esnext/types.js +1 -1
- package/dist/esnext/utilities/apiRoutes.d.ts +7 -3
- package/dist/esnext/utilities/apiRoutes.js +6 -4
- package/dist/esnext/utilities/devtools.d.ts +1 -1
- package/dist/esnext/utilities/devtools.js +3 -3
- package/dist/esnext/utilities/flattenConnection/flattenConnection.d.ts +1 -0
- package/dist/esnext/utilities/flattenConnection/flattenConnection.js +13 -6
- package/dist/esnext/utilities/graphql-tracker.js +6 -8
- package/dist/esnext/utilities/hash.d.ts +2 -2
- package/dist/esnext/utilities/hash.js +29 -6
- package/dist/esnext/utilities/image_size.d.ts +24 -3
- package/dist/esnext/utilities/image_size.js +53 -31
- package/dist/esnext/utilities/index.d.ts +1 -1
- package/dist/esnext/utilities/index.js +1 -1
- package/dist/esnext/utilities/load_script.js +1 -1
- package/dist/esnext/utilities/log/log-cache-api-status.js +3 -2
- package/dist/esnext/utilities/log/log-query-timeline.js +29 -10
- package/dist/esnext/utilities/log/log.js +1 -2
- package/dist/esnext/utilities/log/utils.js +1 -6
- package/dist/esnext/utilities/parseMetafield/index.d.ts +1 -0
- package/dist/esnext/utilities/parseMetafield/index.js +1 -0
- package/dist/esnext/utilities/parseMetafield/parseMetafield.d.ts +15 -0
- package/dist/esnext/utilities/{parseMetafieldValue/parseMetafieldValue.js → parseMetafield/parseMetafield.js} +28 -2
- package/dist/esnext/utilities/storefrontApi.js +9 -5
- package/dist/esnext/utilities/template.js +1 -2
- package/dist/esnext/utilities/web-api-polyfill.js +6 -0
- package/dist/esnext/version.d.ts +1 -1
- package/dist/esnext/version.js +1 -1
- package/dist/node/framework/cache/in-memory.js +3 -3
- package/dist/node/framework/middleware.d.ts +1 -1
- package/dist/node/framework/middleware.js +3 -4
- package/dist/node/framework/plugin.d.ts +4 -3
- package/dist/node/framework/plugin.js +3 -2
- package/dist/node/framework/plugins/vite-plugin-client-imports.js +1 -1
- package/dist/node/framework/plugins/vite-plugin-hydrogen-config.js +70 -67
- package/dist/node/framework/plugins/vite-plugin-hydrogen-middleware.d.ts +1 -1
- package/dist/node/framework/plugins/vite-plugin-hydrogen-middleware.js +2 -3
- package/dist/node/framework/plugins/vite-plugin-hydrogen-rsc.js +2 -2
- package/dist/node/framework/plugins/vite-plugin-hydrogen-virtual-files.d.ts +1 -1
- package/dist/node/framework/plugins/vite-plugin-hydrogen-virtual-files.js +6 -4
- package/dist/node/framework/types.d.ts +5 -0
- package/dist/node/{components/CartProvider → framework}/types.js +0 -0
- package/dist/node/shared-types.d.ts +26 -0
- package/dist/node/shared-types.js +5 -0
- package/dist/node/utilities/web-api-polyfill.js +6 -0
- package/package.json +32 -26
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-plugin.js +100 -36
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.browser.development.server.js +50 -13
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.browser.production.min.server.js +28 -27
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.node.development.server.js +50 -13
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.node.production.min.server.js +28 -28
- package/vendor/react-server-dom-vite/esm/react-server-dom-vite-client-proxy.js +3 -5
- package/vendor/react-server-dom-vite/esm/react-server-dom-vite-plugin.js +100 -36
- package/vendor/react-server-dom-vite/esm/react-server-dom-vite-writer.browser.server.js +50 -13
- package/vendor/react-server-dom-vite/esm/react-server-dom-vite-writer.node.server.js +50 -13
- package/client.d.ts +0 -1
- package/client.js +0 -1
- package/config.d.ts +0 -1
- package/config.js +0 -1
- package/dist/esnext/components/DevTools.client.d.ts +0 -1
- package/dist/esnext/components/DevTools.client.js +0 -129
- package/dist/esnext/foundation/Analytics/ServerAnalyticsRoute.server.d.ts +0 -2
- package/dist/esnext/foundation/Analytics/connectors/PerformanceMetrics/ServerAnalyticsConnector.server.d.ts +0 -1
- package/dist/esnext/foundation/Analytics/connectors/PerformanceMetrics/ServerAnalyticsConnector.server.js +0 -25
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ServerAnalyticsConnector.server.d.ts +0 -1
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ServerAnalyticsConnector.server.js +0 -19
- package/dist/esnext/framework/Hydration/rsc.d.ts +0 -8
- package/dist/esnext/framework/Hydration/rsc.js +0 -102
- package/dist/esnext/hooks/useParsedMetafields/index.d.ts +0 -1
- package/dist/esnext/hooks/useParsedMetafields/index.js +0 -1
- package/dist/esnext/hooks/useParsedMetafields/useParsedMetafields.d.ts +0 -21
- package/dist/esnext/hooks/useParsedMetafields/useParsedMetafields.js +0 -21
- package/dist/esnext/utilities/parseMetafieldValue/index.d.ts +0 -1
- package/dist/esnext/utilities/parseMetafieldValue/index.js +0 -1
- package/dist/esnext/utilities/parseMetafieldValue/parseMetafieldValue.d.ts +0 -6
- package/dist/node/client.d.ts +0 -16
- package/dist/node/client.js +0 -43
- package/dist/node/components/AddToCartButton/AddToCartButton.client.d.ts +0 -23
- package/dist/node/components/AddToCartButton/AddToCartButton.client.js +0 -74
- package/dist/node/components/AddToCartButton/index.d.ts +0 -1
- package/dist/node/components/AddToCartButton/index.js +0 -5
- package/dist/node/components/BuyNowButton/BuyNowButton.client.d.ts +0 -18
- package/dist/node/components/BuyNowButton/BuyNowButton.client.js +0 -53
- package/dist/node/components/BuyNowButton/index.d.ts +0 -1
- package/dist/node/components/BuyNowButton/index.js +0 -5
- package/dist/node/components/CartCheckoutButton/CartCheckoutButton.client.d.ts +0 -11
- package/dist/node/components/CartCheckoutButton/CartCheckoutButton.client.js +0 -44
- package/dist/node/components/CartCheckoutButton/index.d.ts +0 -1
- package/dist/node/components/CartCheckoutButton/index.js +0 -5
- package/dist/node/components/CartEstimatedCost/CartEstimatedCost.client.d.ts +0 -14
- package/dist/node/components/CartEstimatedCost/CartEstimatedCost.client.js +0 -36
- package/dist/node/components/CartEstimatedCost/index.d.ts +0 -1
- package/dist/node/components/CartEstimatedCost/index.js +0 -5
- package/dist/node/components/CartLineImage/CartLineImage.client.d.ts +0 -9
- package/dist/node/components/CartLineImage/CartLineImage.client.js +0 -18
- package/dist/node/components/CartLineImage/index.d.ts +0 -1
- package/dist/node/components/CartLineImage/index.js +0 -5
- package/dist/node/components/CartLinePrice/CartLinePrice.client.d.ts +0 -12
- package/dist/node/components/CartLinePrice/CartLinePrice.client.js +0 -28
- package/dist/node/components/CartLinePrice/index.d.ts +0 -1
- package/dist/node/components/CartLinePrice/index.js +0 -5
- package/dist/node/components/CartLineProductTitle/CartLineProductTitle.client.d.ts +0 -8
- package/dist/node/components/CartLineProductTitle/CartLineProductTitle.client.js +0 -19
- package/dist/node/components/CartLineProductTitle/index.d.ts +0 -1
- package/dist/node/components/CartLineProductTitle/index.js +0 -5
- package/dist/node/components/CartLineProvider/CartLineProvider.client.d.ts +0 -11
- package/dist/node/components/CartLineProvider/CartLineProvider.client.js +0 -15
- package/dist/node/components/CartLineProvider/context.d.ts +0 -26
- package/dist/node/components/CartLineProvider/context.js +0 -5
- package/dist/node/components/CartLineProvider/index.d.ts +0 -2
- package/dist/node/components/CartLineProvider/index.js +0 -7
- package/dist/node/components/CartLineQuantity/CartLineQuantity.client.d.ts +0 -8
- package/dist/node/components/CartLineQuantity/CartLineQuantity.client.js +0 -19
- package/dist/node/components/CartLineQuantity/index.d.ts +0 -1
- package/dist/node/components/CartLineQuantity/index.js +0 -5
- package/dist/node/components/CartLineQuantityAdjustButton/CartLineQuantityAdjustButton.d.ts +0 -14
- package/dist/node/components/CartLineQuantityAdjustButton/CartLineQuantityAdjustButton.js +0 -31
- package/dist/node/components/CartLineQuantityAdjustButton/index.d.ts +0 -1
- package/dist/node/components/CartLineQuantityAdjustButton/index.js +0 -5
- package/dist/node/components/CartLines/CartLines.client.d.ts +0 -15
- package/dist/node/components/CartLines/CartLines.client.js +0 -44
- package/dist/node/components/CartLines/index.d.ts +0 -1
- package/dist/node/components/CartLines/index.js +0 -5
- package/dist/node/components/CartProvider/CartProvider.client.d.ts +0 -41
- package/dist/node/components/CartProvider/CartProvider.client.js +0 -550
- package/dist/node/components/CartProvider/cart-queries.d.ts +0 -10
- package/dist/node/components/CartProvider/cart-queries.js +0 -203
- package/dist/node/components/CartProvider/constants.d.ts +0 -2
- package/dist/node/components/CartProvider/constants.js +0 -5
- package/dist/node/components/CartProvider/context.d.ts +0 -2
- package/dist/node/components/CartProvider/context.js +0 -5
- package/dist/node/components/CartProvider/graphql/CartAttributesUpdateMutation.d.ts +0 -86
- package/dist/node/components/CartProvider/graphql/CartAttributesUpdateMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartBuyerIdentityUpdateMutation.d.ts +0 -86
- package/dist/node/components/CartProvider/graphql/CartBuyerIdentityUpdateMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartCreateMutation.d.ts +0 -85
- package/dist/node/components/CartProvider/graphql/CartCreateMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartDiscountCodesUpdateMutation.d.ts +0 -86
- package/dist/node/components/CartProvider/graphql/CartDiscountCodesUpdateMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartFragment.d.ts +0 -72
- package/dist/node/components/CartProvider/graphql/CartFragment.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartLineAddMutation.d.ts +0 -86
- package/dist/node/components/CartProvider/graphql/CartLineAddMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartLineRemoveMutation.d.ts +0 -86
- package/dist/node/components/CartProvider/graphql/CartLineRemoveMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartLineUpdateMutation.d.ts +0 -86
- package/dist/node/components/CartProvider/graphql/CartLineUpdateMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartNoteUpdateMutation.d.ts +0 -86
- package/dist/node/components/CartProvider/graphql/CartNoteUpdateMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartQuery.d.ts +0 -81
- package/dist/node/components/CartProvider/graphql/CartQuery.js +0 -2
- package/dist/node/components/CartProvider/hooks.client.d.ts +0 -15
- package/dist/node/components/CartProvider/hooks.client.js +0 -90
- package/dist/node/components/CartProvider/index.d.ts +0 -4
- package/dist/node/components/CartProvider/index.js +0 -10
- package/dist/node/components/CartProvider/types.d.ts +0 -102
- package/dist/node/components/CartShopPayButton/CartShopPayButton.client.d.ts +0 -9
- package/dist/node/components/CartShopPayButton/CartShopPayButton.client.js +0 -46
- package/dist/node/components/CartShopPayButton/index.d.ts +0 -1
- package/dist/node/components/CartShopPayButton/index.js +0 -5
- package/dist/node/components/ExternalVideo/ExternalVideo.d.ts +0 -21
- package/dist/node/components/ExternalVideo/ExternalVideo.js +0 -21
- package/dist/node/components/ExternalVideo/index.d.ts +0 -1
- package/dist/node/components/ExternalVideo/index.js +0 -5
- package/dist/node/components/Image/Image.d.ts +0 -92
- package/dist/node/components/Image/Image.js +0 -137
- package/dist/node/components/Image/index.d.ts +0 -2
- package/dist/node/components/Image/index.js +0 -5
- package/dist/node/components/Link/Link.client.d.ts +0 -25
- package/dist/node/components/Link/Link.client.js +0 -165
- package/dist/node/components/Link/index.d.ts +0 -1
- package/dist/node/components/Link/index.js +0 -5
- package/dist/node/components/LocalizationProvider/LocalizationClientProvider.client.d.ts +0 -6
- package/dist/node/components/LocalizationProvider/LocalizationClientProvider.client.js +0 -11
- package/dist/node/components/LocalizationProvider/LocalizationContext.client.d.ts +0 -6
- package/dist/node/components/LocalizationProvider/LocalizationContext.client.js +0 -5
- package/dist/node/components/LocalizationProvider/LocalizationProvider.server.d.ts +0 -33
- package/dist/node/components/LocalizationProvider/LocalizationProvider.server.js +0 -51
- package/dist/node/components/MediaFile/MediaFile.d.ts +0 -19
- package/dist/node/components/MediaFile/MediaFile.js +0 -39
- package/dist/node/components/MediaFile/index.d.ts +0 -1
- package/dist/node/components/MediaFile/index.js +0 -5
- package/dist/node/components/Metafield/Metafield.client.d.ts +0 -21
- package/dist/node/components/Metafield/Metafield.client.js +0 -75
- package/dist/node/components/Metafield/index.d.ts +0 -2
- package/dist/node/components/Metafield/index.js +0 -5
- package/dist/node/components/Metafield/types.d.ts +0 -4
- package/dist/node/components/Metafield/types.js +0 -2
- package/dist/node/components/ModelViewer/ModelViewer.client.d.ts +0 -128
- package/dist/node/components/ModelViewer/ModelViewer.client.js +0 -132
- package/dist/node/components/ModelViewer/index.d.ts +0 -1
- package/dist/node/components/ModelViewer/index.js +0 -5
- package/dist/node/components/Money/Money.client.d.ts +0 -25
- package/dist/node/components/Money/Money.client.js +0 -46
- package/dist/node/components/Money/index.d.ts +0 -1
- package/dist/node/components/Money/index.js +0 -5
- package/dist/node/components/ProductOptionsProvider/ProductOptionsProvider.client.d.ts +0 -21
- package/dist/node/components/ProductOptionsProvider/ProductOptionsProvider.client.js +0 -167
- package/dist/node/components/ProductOptionsProvider/context.d.ts +0 -2
- package/dist/node/components/ProductOptionsProvider/context.js +0 -5
- package/dist/node/components/ProductOptionsProvider/index.d.ts +0 -2
- package/dist/node/components/ProductOptionsProvider/index.js +0 -7
- package/dist/node/components/ProductPrice/ProductPrice.client.d.ts +0 -18
- package/dist/node/components/ProductPrice/ProductPrice.client.js +0 -61
- package/dist/node/components/ProductPrice/index.d.ts +0 -1
- package/dist/node/components/ProductPrice/index.js +0 -5
- package/dist/node/components/Seo/CollectionSeo.client.d.ts +0 -3
- package/dist/node/components/Seo/CollectionSeo.client.js +0 -22
- package/dist/node/components/Seo/DefaultPageSeo.client.d.ts +0 -3
- package/dist/node/components/Seo/DefaultPageSeo.client.js +0 -25
- package/dist/node/components/Seo/DescriptionSeo.client.d.ts +0 -4
- package/dist/node/components/Seo/DescriptionSeo.client.js +0 -17
- package/dist/node/components/Seo/HomePageSeo.client.d.ts +0 -2
- package/dist/node/components/Seo/HomePageSeo.client.js +0 -32
- package/dist/node/components/Seo/ImageSeo.client.d.ts +0 -3
- package/dist/node/components/Seo/ImageSeo.client.js +0 -17
- package/dist/node/components/Seo/NoIndexSeo.client.d.ts +0 -3
- package/dist/node/components/Seo/NoIndexSeo.client.js +0 -17
- package/dist/node/components/Seo/PageSeo.client.d.ts +0 -3
- package/dist/node/components/Seo/PageSeo.client.js +0 -20
- package/dist/node/components/Seo/ProductSeo.client.d.ts +0 -5
- package/dist/node/components/Seo/ProductSeo.client.js +0 -70
- package/dist/node/components/Seo/Seo.client.d.ts +0 -30
- package/dist/node/components/Seo/Seo.client.js +0 -38
- package/dist/node/components/Seo/TitleSeo.client.d.ts +0 -3
- package/dist/node/components/Seo/TitleSeo.client.js +0 -17
- package/dist/node/components/Seo/TwitterSeo.client.d.ts +0 -2
- package/dist/node/components/Seo/TwitterSeo.client.js +0 -16
- package/dist/node/components/Seo/index.d.ts +0 -1
- package/dist/node/components/Seo/index.js +0 -5
- package/dist/node/components/Seo/seo-types.d.ts +0 -17
- package/dist/node/components/Seo/seo-types.js +0 -2
- package/dist/node/components/ShopPayButton/ShopPayButton.client.d.ts +0 -38
- package/dist/node/components/ShopPayButton/ShopPayButton.client.js +0 -60
- package/dist/node/components/ShopPayButton/index.d.ts +0 -1
- package/dist/node/components/ShopPayButton/index.js +0 -5
- package/dist/node/components/Video/Video.d.ts +0 -14
- package/dist/node/components/Video/Video.js +0 -31
- package/dist/node/components/Video/index.d.ts +0 -1
- package/dist/node/components/Video/index.js +0 -5
- package/dist/node/components/index.d.ts +0 -28
- package/dist/node/components/index.js +0 -59
- package/dist/node/components/types.d.ts +0 -71
- package/dist/node/components/types.js +0 -11
- package/dist/node/constants.d.ts +0 -7
- package/dist/node/constants.js +0 -10
- package/dist/node/entry-server.js +0 -495
- package/dist/node/foundation/Analytics/Analytics.client.d.ts +0 -3
- package/dist/node/foundation/Analytics/Analytics.client.js +0 -34
- package/dist/node/foundation/Analytics/Analytics.server.d.ts +0 -1
- package/dist/node/foundation/Analytics/Analytics.server.js +0 -77
- package/dist/node/foundation/Analytics/ClientAnalytics.d.ts +0 -27
- package/dist/node/foundation/Analytics/ClientAnalytics.js +0 -102
- package/dist/node/foundation/Analytics/ServerAnalyticsRoute.server.d.ts +0 -2
- package/dist/node/foundation/Analytics/ServerAnalyticsRoute.server.js +0 -39
- package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetrics.client.d.ts +0 -7
- package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetrics.client.js +0 -68
- package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetricsDebug.client.d.ts +0 -1
- package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetricsDebug.client.js +0 -27
- package/dist/node/foundation/Analytics/const.d.ts +0 -9
- package/dist/node/foundation/Analytics/const.js +0 -12
- package/dist/node/foundation/Analytics/hook.d.ts +0 -1
- package/dist/node/foundation/Analytics/hook.js +0 -13
- package/dist/node/foundation/Analytics/index.d.ts +0 -1
- package/dist/node/foundation/Analytics/index.js +0 -5
- package/dist/node/foundation/Analytics/types.d.ts +0 -5
- package/dist/node/foundation/Analytics/types.js +0 -2
- package/dist/node/foundation/Analytics/utils.d.ts +0 -3
- package/dist/node/foundation/Analytics/utils.js +0 -35
- package/dist/node/foundation/AnalyticsErrorBoundary.client.d.ts +0 -4
- package/dist/node/foundation/AnalyticsErrorBoundary.client.js +0 -14
- package/dist/node/foundation/Cache/cache-sub-request.d.ts +0 -17
- package/dist/node/foundation/Cache/cache-sub-request.js +0 -95
- package/dist/node/foundation/Cache/cache.d.ts +0 -17
- package/dist/node/foundation/Cache/cache.js +0 -135
- package/dist/node/foundation/Cache/strategies/index.d.ts +0 -10
- package/dist/node/foundation/Cache/strategies/index.js +0 -108
- package/dist/node/foundation/Head/Head.client.d.ts +0 -5
- package/dist/node/foundation/Head/Head.client.js +0 -17
- package/dist/node/foundation/Head/index.d.ts +0 -1
- package/dist/node/foundation/Head/index.js +0 -5
- package/dist/node/foundation/Html/Html.d.ts +0 -13
- package/dist/node/foundation/Html/Html.js +0 -107
- package/dist/node/foundation/HydrogenRequest/HydrogenRequest.server.d.ts +0 -62
- package/dist/node/foundation/HydrogenRequest/HydrogenRequest.server.js +0 -150
- package/dist/node/foundation/HydrogenResponse/HydrogenResponse.server.d.ts +0 -23
- package/dist/node/foundation/HydrogenResponse/HydrogenResponse.server.js +0 -53
- package/dist/node/foundation/Redirect/Redirect.client.d.ts +0 -5
- package/dist/node/foundation/Redirect/Redirect.client.js +0 -18
- package/dist/node/foundation/Router/BrowserRouter.client.d.ts +0 -14
- package/dist/node/foundation/Router/BrowserRouter.client.js +0 -166
- package/dist/node/foundation/ServerPropsProvider/ServerPropsProvider.d.ts +0 -41
- package/dist/node/foundation/ServerPropsProvider/ServerPropsProvider.js +0 -90
- package/dist/node/foundation/ServerPropsProvider/index.d.ts +0 -2
- package/dist/node/foundation/ServerPropsProvider/index.js +0 -6
- package/dist/node/foundation/ServerRequestProvider/ServerRequestProvider.d.ts +0 -23
- package/dist/node/foundation/ServerRequestProvider/ServerRequestProvider.js +0 -158
- package/dist/node/foundation/ServerRequestProvider/index.d.ts +0 -1
- package/dist/node/foundation/ServerRequestProvider/index.js +0 -17
- package/dist/node/foundation/ShopifyProvider/ShopifyProvider.client.d.ts +0 -7
- package/dist/node/foundation/ShopifyProvider/ShopifyProvider.client.js +0 -35
- package/dist/node/foundation/ShopifyProvider/index.d.ts +0 -1
- package/dist/node/foundation/ShopifyProvider/index.js +0 -5
- package/dist/node/foundation/ShopifyProvider/types.d.ts +0 -13
- package/dist/node/foundation/ShopifyProvider/types.js +0 -2
- package/dist/node/foundation/fetchSync/client/fetchSync.d.ts +0 -10
- package/dist/node/foundation/fetchSync/client/fetchSync.js +0 -33
- package/dist/node/foundation/fetchSync/server/fetchSync.d.ts +0 -8
- package/dist/node/foundation/fetchSync/server/fetchSync.js +0 -33
- package/dist/node/foundation/fetchSync/types.d.ts +0 -5
- package/dist/node/foundation/fetchSync/types.js +0 -2
- package/dist/node/foundation/index.d.ts +0 -3
- package/dist/node/foundation/index.js +0 -10
- package/dist/node/foundation/runtime.d.ts +0 -2
- package/dist/node/foundation/runtime.js +0 -11
- package/dist/node/foundation/session/session.d.ts +0 -27
- package/dist/node/foundation/session/session.js +0 -43
- package/dist/node/foundation/ssr-interop.d.ts +0 -29
- package/dist/node/foundation/ssr-interop.js +0 -39
- package/dist/node/foundation/useNavigate/useNavigate.d.ts +0 -15
- package/dist/node/foundation/useNavigate/useNavigate.js +0 -25
- package/dist/node/foundation/useQuery/hooks.d.ts +0 -36
- package/dist/node/foundation/useQuery/hooks.js +0 -104
- package/dist/node/foundation/useRouteParams/RouteParamsProvider.client.d.ts +0 -10
- package/dist/node/foundation/useRouteParams/RouteParamsProvider.client.js +0 -34
- package/dist/node/foundation/useRouteParams/useRouteParams.d.ts +0 -4
- package/dist/node/foundation/useRouteParams/useRouteParams.js +0 -13
- package/dist/node/foundation/useServerProps/index.d.ts +0 -1
- package/dist/node/foundation/useServerProps/index.js +0 -5
- package/dist/node/foundation/useServerProps/use-server-props.d.ts +0 -21
- package/dist/node/foundation/useServerProps/use-server-props.js +0 -40
- package/dist/node/foundation/useSession/useSession.d.ts +0 -2
- package/dist/node/foundation/useSession/useSession.js +0 -12
- package/dist/node/foundation/useShop/index.d.ts +0 -1
- package/dist/node/foundation/useShop/index.js +0 -5
- package/dist/node/foundation/useShop/use-shop.d.ts +0 -6
- package/dist/node/foundation/useShop/use-shop.js +0 -18
- package/dist/node/foundation/useUrl/index.d.ts +0 -1
- package/dist/node/foundation/useUrl/index.js +0 -5
- package/dist/node/foundation/useUrl/useUrl.d.ts +0 -4
- package/dist/node/foundation/useUrl/useUrl.js +0 -32
- package/dist/node/framework/Hydration/rsc.d.ts +0 -8
- package/dist/node/framework/Hydration/rsc.js +0 -105
- package/dist/node/hooks/index.d.ts +0 -6
- package/dist/node/hooks/index.js +0 -28
- package/dist/node/hooks/useCart/index.d.ts +0 -1
- package/dist/node/hooks/useCart/index.js +0 -5
- package/dist/node/hooks/useCart/useCart.d.ts +0 -4
- package/dist/node/hooks/useCart/useCart.js +0 -19
- package/dist/node/hooks/useCartLine/index.d.ts +0 -1
- package/dist/node/hooks/useCartLine/index.js +0 -5
- package/dist/node/hooks/useCartLine/useCartLine.d.ts +0 -29
- package/dist/node/hooks/useCartLine/useCartLine.js +0 -16
- package/dist/node/hooks/useCountry/index.d.ts +0 -1
- package/dist/node/hooks/useCountry/index.js +0 -5
- package/dist/node/hooks/useCountry/useCountry.d.ts +0 -7
- package/dist/node/hooks/useCountry/useCountry.js +0 -21
- package/dist/node/hooks/useLoadScript/index.d.ts +0 -1
- package/dist/node/hooks/useLoadScript/index.js +0 -5
- package/dist/node/hooks/useLoadScript/useLoadScript.client.d.ts +0 -8
- package/dist/node/hooks/useLoadScript/useLoadScript.client.js +0 -27
- package/dist/node/hooks/useMeasurement/hooks.d.ts +0 -9
- package/dist/node/hooks/useMeasurement/hooks.js +0 -17
- package/dist/node/hooks/useMeasurement/index.d.ts +0 -1
- package/dist/node/hooks/useMeasurement/index.js +0 -5
- package/dist/node/hooks/useMoney/hooks.d.ts +0 -54
- package/dist/node/hooks/useMoney/hooks.js +0 -70
- package/dist/node/hooks/useMoney/index.d.ts +0 -1
- package/dist/node/hooks/useMoney/index.js +0 -5
- package/dist/node/hooks/useParsedMetafields/index.d.ts +0 -1
- package/dist/node/hooks/useParsedMetafields/index.js +0 -5
- package/dist/node/hooks/useParsedMetafields/useParsedMetafields.d.ts +0 -21
- package/dist/node/hooks/useParsedMetafields/useParsedMetafields.js +0 -25
- package/dist/node/hooks/useProductOptions/helpers.d.ts +0 -6
- package/dist/node/hooks/useProductOptions/helpers.js +0 -46
- package/dist/node/hooks/useProductOptions/index.d.ts +0 -2
- package/dist/node/hooks/useProductOptions/index.js +0 -20
- package/dist/node/hooks/useProductOptions/types.d.ts +0 -44
- package/dist/node/hooks/useProductOptions/types.js +0 -2
- package/dist/node/hooks/useProductOptions/useProductOptions.client.d.ts +0 -1
- package/dist/node/hooks/useProductOptions/useProductOptions.client.js +0 -13
- package/dist/node/hooks/useShopQuery/hooks.d.ts +0 -28
- package/dist/node/hooks/useShopQuery/hooks.js +0 -171
- package/dist/node/hooks/useShopQuery/index.d.ts +0 -1
- package/dist/node/hooks/useShopQuery/index.js +0 -5
- package/dist/node/storefront-api-types.d.ts +0 -6405
- package/dist/node/storefront-api-types.js +0 -1766
- package/dist/node/streaming.server.d.ts +0 -25
- package/dist/node/streaming.server.js +0 -28
- package/dist/node/types.d.ts +0 -114
- package/dist/node/types.js +0 -2
- package/dist/node/utilities/apiRoutes.d.ts +0 -37
- package/dist/node/utilities/apiRoutes.js +0 -157
- package/dist/node/utilities/bot-ua.d.ts +0 -4
- package/dist/node/utilities/bot-ua.js +0 -65
- package/dist/node/utilities/devtools.d.ts +0 -11
- package/dist/node/utilities/devtools.js +0 -15
- package/dist/node/utilities/error.d.ts +0 -1
- package/dist/node/utilities/error.js +0 -10
- package/dist/node/utilities/fetch.d.ts +0 -9
- package/dist/node/utilities/fetch.js +0 -37
- package/dist/node/utilities/flattenConnection/flattenConnection.d.ts +0 -6
- package/dist/node/utilities/flattenConnection/flattenConnection.js +0 -15
- package/dist/node/utilities/flattenConnection/index.d.ts +0 -1
- package/dist/node/utilities/flattenConnection/index.js +0 -5
- package/dist/node/utilities/graphql-tag.d.ts +0 -1
- package/dist/node/utilities/graphql-tag.js +0 -10
- package/dist/node/utilities/graphql-tracker.d.ts +0 -17
- package/dist/node/utilities/graphql-tracker.js +0 -130
- package/dist/node/utilities/hash.d.ts +0 -2
- package/dist/node/utilities/hash.js +0 -11
- package/dist/node/utilities/html-encoding.d.ts +0 -1
- package/dist/node/utilities/html-encoding.js +0 -12
- package/dist/node/utilities/image_size.d.ts +0 -12
- package/dist/node/utilities/image_size.js +0 -68
- package/dist/node/utilities/index.d.ts +0 -12
- package/dist/node/utilities/index.js +0 -33
- package/dist/node/utilities/isBrowser/index.d.ts +0 -1
- package/dist/node/utilities/isBrowser/index.js +0 -5
- package/dist/node/utilities/isBrowser/isBrowser.d.ts +0 -4
- package/dist/node/utilities/isBrowser/isBrowser.js +0 -10
- package/dist/node/utilities/isServer/index.d.ts +0 -1
- package/dist/node/utilities/isServer/index.js +0 -5
- package/dist/node/utilities/isServer/isServer.d.ts +0 -4
- package/dist/node/utilities/isServer/isServer.js +0 -11
- package/dist/node/utilities/load_script.d.ts +0 -3
- package/dist/node/utilities/load_script.js +0 -27
- package/dist/node/utilities/log/index.d.ts +0 -4
- package/dist/node/utilities/log/index.js +0 -16
- package/dist/node/utilities/log/log-cache-api-status.d.ts +0 -1
- package/dist/node/utilities/log/log-cache-api-status.js +0 -17
- package/dist/node/utilities/log/log-cache-header.d.ts +0 -10
- package/dist/node/utilities/log/log-cache-header.js +0 -35
- package/dist/node/utilities/log/log-query-timeline.d.ts +0 -12
- package/dist/node/utilities/log/log-query-timeline.js +0 -88
- package/dist/node/utilities/log/log.d.ts +0 -28
- package/dist/node/utilities/log/log.js +0 -81
- package/dist/node/utilities/log/utils.d.ts +0 -3
- package/dist/node/utilities/log/utils.js +0 -21
- package/dist/node/utilities/matchPath.d.ts +0 -10
- package/dist/node/utilities/matchPath.js +0 -58
- package/dist/node/utilities/measurement.d.ts +0 -3
- package/dist/node/utilities/measurement.js +0 -103
- package/dist/node/utilities/parse.d.ts +0 -1
- package/dist/node/utilities/parse.js +0 -13
- package/dist/node/utilities/parseMetafieldValue/index.d.ts +0 -1
- package/dist/node/utilities/parseMetafieldValue/index.js +0 -5
- package/dist/node/utilities/parseMetafieldValue/parseMetafieldValue.d.ts +0 -6
- package/dist/node/utilities/parseMetafieldValue/parseMetafieldValue.js +0 -40
- package/dist/node/utilities/storefrontApi.d.ts +0 -4
- package/dist/node/utilities/storefrontApi.js +0 -26
- package/dist/node/utilities/suspense.d.ts +0 -12
- package/dist/node/utilities/suspense.js +0 -64
- package/dist/node/utilities/template.d.ts +0 -9
- package/dist/node/utilities/template.js +0 -27
- package/dist/node/utilities/timing.d.ts +0 -7
- package/dist/node/utilities/timing.js +0 -18
- package/dist/node/utilities/video_parameters.d.ts +0 -47
- package/dist/node/utilities/video_parameters.js +0 -27
- package/dist/node/version.d.ts +0 -1
- package/dist/node/version.js +0 -4
- package/entry-client.d.ts +0 -1
- package/entry-client.js +0 -1
- package/entry-server.d.ts +0 -1
- package/entry-server.js +0 -1
- package/middleware.d.ts +0 -1
- package/middleware.js +0 -1
- package/plugin.d.ts +0 -1
- package/plugin.js +0 -1
- package/web-polyfills.js +0 -1
|
@@ -7,15 +7,14 @@ import { useShop } from '../../../useShop';
|
|
|
7
7
|
import { SHOPIFY_S, SHOPIFY_Y } from './const';
|
|
8
8
|
import { ShopifyAnalyticsClient } from './ShopifyAnalytics.client';
|
|
9
9
|
export function ShopifyAnalytics({ cookieDomain }) {
|
|
10
|
-
var _a, _b, _c;
|
|
11
10
|
const { storeDomain } = useShop();
|
|
12
11
|
const request = useServerRequest();
|
|
13
12
|
const cookies = parse(request.headers.get('Cookie') || '');
|
|
14
13
|
const domain = cookieDomain || storeDomain;
|
|
15
14
|
useServerAnalytics({
|
|
16
15
|
shopify: {
|
|
17
|
-
storefrontId:
|
|
18
|
-
acceptedLanguage:
|
|
16
|
+
storefrontId: globalThis.Oxygen?.env?.SHOPIFY_STOREFRONT_ID || '0',
|
|
17
|
+
acceptedLanguage: request.headers.get('Accept-Language')?.replace(/-.*/, '') || 'en',
|
|
19
18
|
isPersistentCookie: !!cookies[SHOPIFY_S] || !!cookies[SHOPIFY_Y],
|
|
20
19
|
},
|
|
21
20
|
});
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { EVENT_PATHNAME, EVENT_PATHNAME_REGEX } from '../../constants';
|
|
2
|
+
import { ServerAnalyticsRoute } from '../Analytics/ServerAnalyticsRoute';
|
|
3
|
+
import { HealthCheck } from './healthCheck';
|
|
4
|
+
const builtInRoutes = [
|
|
5
|
+
{
|
|
6
|
+
pathname: EVENT_PATHNAME,
|
|
7
|
+
regex: EVENT_PATHNAME_REGEX,
|
|
8
|
+
resource: ServerAnalyticsRoute,
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
pathname: '/__health',
|
|
12
|
+
resource: HealthCheck,
|
|
13
|
+
},
|
|
14
|
+
];
|
|
15
|
+
export function getBuiltInRoute(url) {
|
|
16
|
+
for (const route of builtInRoutes) {
|
|
17
|
+
if (url.pathname === route.pathname ||
|
|
18
|
+
(route.regex && route.regex.test(url.pathname))) {
|
|
19
|
+
return route.resource;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
return null;
|
|
23
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function HealthCheck(): Promise<Response>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getCache } from '../runtime';
|
|
2
2
|
import { hashKey } from '../../utilities/hash';
|
|
3
3
|
import * as CacheApi from './cache';
|
|
4
|
-
import {
|
|
4
|
+
import { CacheShort } from './strategies';
|
|
5
5
|
/**
|
|
6
6
|
* Wrapper Cache functions for sub queries
|
|
7
7
|
*/
|
|
@@ -12,7 +12,7 @@ function getKeyUrl(key) {
|
|
|
12
12
|
return `https://shopify.dev/?${key}`;
|
|
13
13
|
}
|
|
14
14
|
function getCacheOption(userCacheOptions) {
|
|
15
|
-
return userCacheOptions ||
|
|
15
|
+
return userCacheOptions || CacheShort();
|
|
16
16
|
}
|
|
17
17
|
export function generateSubRequestCacheControlHeader(userCacheOptions) {
|
|
18
18
|
return CacheApi.generateDefaultCacheControlHeader(getCacheOption(userCacheOptions));
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { getCache } from '../runtime';
|
|
2
|
-
import {
|
|
2
|
+
import { CacheShort, generateCacheControlHeader } from './strategies';
|
|
3
3
|
import { logCacheApiStatus } from '../../utilities/log';
|
|
4
4
|
function getCacheControlSetting(userCacheOptions, options) {
|
|
5
5
|
if (userCacheOptions && options) {
|
|
@@ -9,7 +9,7 @@ function getCacheControlSetting(userCacheOptions, options) {
|
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
11
|
else {
|
|
12
|
-
return userCacheOptions ||
|
|
12
|
+
return userCacheOptions || CacheShort();
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
export function generateDefaultCacheControlHeader(userCacheOptions) {
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import type { CachingStrategy, AllCacheOptions, NoStoreStrategy } from '../../../types';
|
|
2
|
+
export declare const NO_STORE = "no-store";
|
|
2
3
|
export declare function generateCacheControlHeader(cacheOptions: CachingStrategy): string;
|
|
3
|
-
export declare function
|
|
4
|
-
export declare function
|
|
5
|
-
export declare function
|
|
6
|
-
export declare function CacheHours(overrideOptions?: CachingStrategy): AllCacheOptions;
|
|
7
|
-
export declare function CacheDays(overrideOptions?: CachingStrategy): AllCacheOptions;
|
|
8
|
-
export declare function CacheWeeks(overrideOptions?: CachingStrategy): AllCacheOptions;
|
|
9
|
-
export declare function CacheMonths(overrideOptions?: CachingStrategy): AllCacheOptions;
|
|
4
|
+
export declare function CacheNone(): NoStoreStrategy;
|
|
5
|
+
export declare function CacheShort(overrideOptions?: CachingStrategy): AllCacheOptions;
|
|
6
|
+
export declare function CacheLong(overrideOptions?: CachingStrategy): AllCacheOptions;
|
|
10
7
|
export declare function CacheCustom(overrideOptions: CachingStrategy): AllCacheOptions;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const PUBLIC = 'public';
|
|
2
2
|
const PRIVATE = 'private';
|
|
3
|
-
const NO_STORE = 'no-store';
|
|
3
|
+
export const NO_STORE = 'no-store';
|
|
4
4
|
const optionMapping = {
|
|
5
5
|
maxAge: 'max-age',
|
|
6
6
|
staleWhileRevalidate: 'stale-while-revalidate',
|
|
@@ -19,20 +19,19 @@ export function generateCacheControlHeader(cacheOptions) {
|
|
|
19
19
|
});
|
|
20
20
|
return cacheControl.join(', ');
|
|
21
21
|
}
|
|
22
|
-
export function
|
|
22
|
+
export function CacheNone() {
|
|
23
23
|
return {
|
|
24
24
|
mode: NO_STORE,
|
|
25
25
|
};
|
|
26
26
|
}
|
|
27
27
|
function guardExpirableModeType(overrideOptions) {
|
|
28
|
-
if (
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
if (overrideOptions?.mode &&
|
|
29
|
+
overrideOptions?.mode !== PUBLIC &&
|
|
30
|
+
overrideOptions?.mode !== PRIVATE) {
|
|
31
31
|
throw Error("'mode' must be either 'public' or 'private'");
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
|
-
|
|
35
|
-
export function CacheSeconds(overrideOptions) {
|
|
34
|
+
export function CacheShort(overrideOptions) {
|
|
36
35
|
guardExpirableModeType(overrideOptions);
|
|
37
36
|
return {
|
|
38
37
|
mode: PUBLIC,
|
|
@@ -41,28 +40,7 @@ export function CacheSeconds(overrideOptions) {
|
|
|
41
40
|
...overrideOptions,
|
|
42
41
|
};
|
|
43
42
|
}
|
|
44
|
-
|
|
45
|
-
export function CacheMinutes(overrideOptions) {
|
|
46
|
-
guardExpirableModeType(overrideOptions);
|
|
47
|
-
return {
|
|
48
|
-
mode: PUBLIC,
|
|
49
|
-
maxAge: 900,
|
|
50
|
-
staleWhileRevalidate: 900,
|
|
51
|
-
...overrideOptions,
|
|
52
|
-
};
|
|
53
|
-
}
|
|
54
|
-
// 1 hour
|
|
55
|
-
export function CacheHours(overrideOptions) {
|
|
56
|
-
guardExpirableModeType(overrideOptions);
|
|
57
|
-
return {
|
|
58
|
-
mode: PUBLIC,
|
|
59
|
-
maxAge: 1800,
|
|
60
|
-
staleWhileRevalidate: 1800,
|
|
61
|
-
...overrideOptions,
|
|
62
|
-
};
|
|
63
|
-
}
|
|
64
|
-
// 1 day
|
|
65
|
-
export function CacheDays(overrideOptions) {
|
|
43
|
+
export function CacheLong(overrideOptions) {
|
|
66
44
|
guardExpirableModeType(overrideOptions);
|
|
67
45
|
return {
|
|
68
46
|
mode: PUBLIC,
|
|
@@ -71,26 +49,6 @@ export function CacheDays(overrideOptions) {
|
|
|
71
49
|
...overrideOptions,
|
|
72
50
|
};
|
|
73
51
|
}
|
|
74
|
-
// 2 weeks
|
|
75
|
-
export function CacheWeeks(overrideOptions) {
|
|
76
|
-
guardExpirableModeType(overrideOptions);
|
|
77
|
-
return {
|
|
78
|
-
mode: PUBLIC,
|
|
79
|
-
maxAge: 604800,
|
|
80
|
-
staleWhileRevalidate: 604800,
|
|
81
|
-
...overrideOptions,
|
|
82
|
-
};
|
|
83
|
-
}
|
|
84
|
-
// 1 month
|
|
85
|
-
export function CacheMonths(overrideOptions) {
|
|
86
|
-
guardExpirableModeType(overrideOptions);
|
|
87
|
-
return {
|
|
88
|
-
mode: PUBLIC,
|
|
89
|
-
maxAge: 1296000,
|
|
90
|
-
staleWhileRevalidate: 1296000,
|
|
91
|
-
...overrideOptions,
|
|
92
|
-
};
|
|
93
|
-
}
|
|
94
52
|
export function CacheCustom(overrideOptions) {
|
|
95
53
|
return overrideOptions;
|
|
96
54
|
}
|
|
@@ -7,6 +7,11 @@ const reservedCookieNames = ['mac', 'user_session_id'];
|
|
|
7
7
|
* same configuration options as what's available in `Cookie`.
|
|
8
8
|
*/
|
|
9
9
|
export class Cookie {
|
|
10
|
+
/** The name of the cookie stored in the browser. */
|
|
11
|
+
name;
|
|
12
|
+
/** An optional object to configure [how the cookie is persisted in the browser](https://shopify.dev/api/hydrogen/components/framework/cookie#cookie-options). */
|
|
13
|
+
options;
|
|
14
|
+
data;
|
|
10
15
|
constructor(name, options = {}) {
|
|
11
16
|
if (reservedCookieNames.includes(name)) {
|
|
12
17
|
log.warn(`Warning "${name}" is a reserved cookie name by oxygen!`);
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React, { useState, useEffect, useCallback } from 'react';
|
|
2
|
+
import { Interface, Panels } from './components';
|
|
3
|
+
export function DevTools({ dataFromServer }) {
|
|
4
|
+
const [open, setOpen] = useState(false);
|
|
5
|
+
const toggleOpen = useCallback(() => {
|
|
6
|
+
setOpen((state) => !state);
|
|
7
|
+
}, []);
|
|
8
|
+
const [hasMounted, setHasMounted] = useState(false);
|
|
9
|
+
useEffect(() => {
|
|
10
|
+
setHasMounted(true);
|
|
11
|
+
}, []);
|
|
12
|
+
if (hasMounted) {
|
|
13
|
+
return (React.createElement(Interface, { open: open, onClose: toggleOpen, onOpen: toggleOpen },
|
|
14
|
+
React.createElement(Panels, { ...dataFromServer })));
|
|
15
|
+
}
|
|
16
|
+
return null;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function DevTools(): JSX.Element;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { DevTools as DevToolsClient } from './DevTools.client';
|
|
3
|
+
import { useServerRequest } from '../ServerRequestProvider';
|
|
4
|
+
export function DevTools() {
|
|
5
|
+
const serverRequest = useServerRequest();
|
|
6
|
+
const { shopifyConfig } = serverRequest.ctx;
|
|
7
|
+
const { locale, storeDomain, storefrontApiVersion } = shopifyConfig || {};
|
|
8
|
+
const settings = {
|
|
9
|
+
locale,
|
|
10
|
+
storeDomain,
|
|
11
|
+
storefrontApiVersion,
|
|
12
|
+
};
|
|
13
|
+
return React.createElement(DevToolsClient, { dataFromServer: { settings } });
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function GraphQL(): JSX.Element;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React, { useEffect, useState } from 'react';
|
|
2
|
+
export function GraphQL() {
|
|
3
|
+
const [warnings, setWarnings] = useState(null);
|
|
4
|
+
useEffect(() => {
|
|
5
|
+
if (import.meta.hot) {
|
|
6
|
+
import.meta.hot.on('hydrogen-dev-tools', ({ type, data }) => {
|
|
7
|
+
if (type === 'warn') {
|
|
8
|
+
setWarnings((state) => [...(state || []), data]);
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
}
|
|
12
|
+
}, []);
|
|
13
|
+
const warningsMarkup = warnings
|
|
14
|
+
? warnings.map((war, i) => (
|
|
15
|
+
// eslint-disable-next-line react/no-array-index-key
|
|
16
|
+
React.createElement("li", { key: war + i },
|
|
17
|
+
React.createElement("pre", null, war))))
|
|
18
|
+
: null;
|
|
19
|
+
return (React.createElement("div", null,
|
|
20
|
+
React.createElement("ul", { style: {
|
|
21
|
+
fontFamily: 'monospace',
|
|
22
|
+
paddingTop: '1em',
|
|
23
|
+
fontSize: '0.9em',
|
|
24
|
+
} }, warningsMarkup)));
|
|
25
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export function Heading({ linkText, url, children, }) {
|
|
3
|
+
return (React.createElement("span", { style: { display: 'flex', alignItems: 'baseline', padding: '0 0 0.5em' } },
|
|
4
|
+
React.createElement("span", { style: { paddingRight: '0em', flex: 1, fontWeight: 'bold' } },
|
|
5
|
+
children,
|
|
6
|
+
' '),
|
|
7
|
+
React.createElement("a", { style: {
|
|
8
|
+
color: 'blue',
|
|
9
|
+
fontFamily: 'monospace',
|
|
10
|
+
textDecoration: 'underline',
|
|
11
|
+
}, href: url }, linkText)));
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface Props {
|
|
3
|
+
open?: boolean;
|
|
4
|
+
title?: string | React.ReactNode;
|
|
5
|
+
onClose?: () => void;
|
|
6
|
+
onOpen?: () => void;
|
|
7
|
+
activator?: React.ReactElement;
|
|
8
|
+
children?: React.ReactNode;
|
|
9
|
+
}
|
|
10
|
+
export declare function Interface({ children, onClose, onOpen, ...props }: Props): JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CloseIcon, HydrogenIcon } from './icons';
|
|
3
|
+
export function Interface({ children, onClose, onOpen, ...props }) {
|
|
4
|
+
const open = false || props.open;
|
|
5
|
+
return (React.createElement("div", { id: "hydrogen-dev-tools", "aria-hidden": true, style: {
|
|
6
|
+
position: 'fixed',
|
|
7
|
+
zIndex: 100,
|
|
8
|
+
display: 'flex',
|
|
9
|
+
flexDirection: 'column',
|
|
10
|
+
right: 0,
|
|
11
|
+
bottom: 0,
|
|
12
|
+
padding: '1.5em',
|
|
13
|
+
maxWidth: '100%',
|
|
14
|
+
flexWrap: 'wrap',
|
|
15
|
+
} },
|
|
16
|
+
React.createElement("button", { type: "button", style: {
|
|
17
|
+
position: 'relative',
|
|
18
|
+
background: 'white',
|
|
19
|
+
border: '1px solid',
|
|
20
|
+
padding: '0em 0.5em 0.25em 1.25em',
|
|
21
|
+
boxShadow: '10px 10px 0px black',
|
|
22
|
+
display: 'flex',
|
|
23
|
+
alignItems: 'center',
|
|
24
|
+
color: 'black',
|
|
25
|
+
}, onClick: onOpen },
|
|
26
|
+
React.createElement("div", { style: { textAlign: 'left', flex: 1 } },
|
|
27
|
+
React.createElement("span", { style: {
|
|
28
|
+
fontFamily: 'monospace',
|
|
29
|
+
fontWeight: 'bold',
|
|
30
|
+
paddingRight: '0.5em',
|
|
31
|
+
} }, "Dev tools")),
|
|
32
|
+
' ',
|
|
33
|
+
open ? React.createElement(CloseIcon, null) : React.createElement(HydrogenIcon, null)),
|
|
34
|
+
React.createElement("div", { style: {
|
|
35
|
+
display: open ? 'block' : 'none',
|
|
36
|
+
position: 'relative',
|
|
37
|
+
top: '-1px',
|
|
38
|
+
overflow: 'scroll',
|
|
39
|
+
color: 'black',
|
|
40
|
+
background: 'white',
|
|
41
|
+
border: '1px solid',
|
|
42
|
+
boxShadow: '10px 10px 0px black',
|
|
43
|
+
maxWidth: '50em',
|
|
44
|
+
width: '100vw',
|
|
45
|
+
height: '50vh',
|
|
46
|
+
} }, children)));
|
|
47
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
import { Performance } from './Performance.client';
|
|
3
|
+
import { Settings } from './Settings.client';
|
|
4
|
+
export interface Props {
|
|
5
|
+
settings: ComponentProps<typeof Settings>;
|
|
6
|
+
performance: ComponentProps<typeof Performance>;
|
|
7
|
+
}
|
|
8
|
+
export declare function Panels({ settings }: Props): JSX.Element;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import React, { useState, useEffect } from 'react';
|
|
2
|
+
import { ClientAnalytics } from '../../Analytics';
|
|
3
|
+
import { Performance } from './Performance.client';
|
|
4
|
+
import { Settings } from './Settings.client';
|
|
5
|
+
export function Panels({ settings }) {
|
|
6
|
+
const [selectedPanel, setSelectedPanel] = useState(0);
|
|
7
|
+
const [navigations, setNavigations] = useState([]);
|
|
8
|
+
useEffect(() => {
|
|
9
|
+
ClientAnalytics.subscribe(ClientAnalytics.eventNames.PERFORMANCE, ({ response_start, navigation_start, first_contentful_paint, largest_contentful_paint, response_end, page_load_type, url, transfer_size, }) => {
|
|
10
|
+
setNavigations([
|
|
11
|
+
...navigations,
|
|
12
|
+
{
|
|
13
|
+
ttfb: response_start - navigation_start,
|
|
14
|
+
fcp: first_contentful_paint,
|
|
15
|
+
lcp: largest_contentful_paint,
|
|
16
|
+
duration: response_end - navigation_start,
|
|
17
|
+
type: `${page_load_type} load`,
|
|
18
|
+
size: transfer_size,
|
|
19
|
+
url,
|
|
20
|
+
},
|
|
21
|
+
]);
|
|
22
|
+
});
|
|
23
|
+
}, [setNavigations, navigations]);
|
|
24
|
+
const panels = getPanels({ settings, performance: { navigations } });
|
|
25
|
+
const panelComponents = panels.map((obj, index) => (React.createElement("div", { key: obj.content, style: { display: selectedPanel === index ? 'block' : 'none' } }, obj.panel)));
|
|
26
|
+
return (React.createElement("div", { style: { display: 'flex', height: '100%' } },
|
|
27
|
+
React.createElement("div", { style: { borderRight: '1px solid', padding: '1em 0em' } }, panels.map(({ content, icon, id }, index) => {
|
|
28
|
+
const active = selectedPanel === index;
|
|
29
|
+
return (React.createElement("button", { key: id, type: "button", style: {
|
|
30
|
+
lineHeight: 2,
|
|
31
|
+
padding: '0em 1.25em',
|
|
32
|
+
fontWeight: active ? 'bold' : 'normal',
|
|
33
|
+
display: 'flex',
|
|
34
|
+
alignItems: 'center',
|
|
35
|
+
}, onClick: () => setSelectedPanel(index) },
|
|
36
|
+
React.createElement("span", { style: { paddingRight: '0.4em' } }, icon),
|
|
37
|
+
React.createElement("span", { style: { fontFamily: 'monospace' } }, content)));
|
|
38
|
+
})),
|
|
39
|
+
React.createElement("div", { style: { padding: '1.25em', width: '100%' } }, panelComponents[selectedPanel ? selectedPanel : 0])));
|
|
40
|
+
}
|
|
41
|
+
function Panel({ children }) {
|
|
42
|
+
return React.createElement("div", null, children);
|
|
43
|
+
}
|
|
44
|
+
function getPanels({ settings, performance }) {
|
|
45
|
+
const panels = {
|
|
46
|
+
settings: {
|
|
47
|
+
content: 'Settings',
|
|
48
|
+
panel: React.createElement(Settings, { ...settings }),
|
|
49
|
+
icon: '🎛',
|
|
50
|
+
},
|
|
51
|
+
performance: {
|
|
52
|
+
content: 'Performance',
|
|
53
|
+
panel: React.createElement(Performance, { ...performance }),
|
|
54
|
+
icon: '⏱',
|
|
55
|
+
},
|
|
56
|
+
};
|
|
57
|
+
return Object.keys(panels).map((key) => {
|
|
58
|
+
return { ...panels[key], id: key };
|
|
59
|
+
});
|
|
60
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
interface Navigation {
|
|
2
|
+
url: string;
|
|
3
|
+
type: string;
|
|
4
|
+
ttfb: number;
|
|
5
|
+
fcp: number;
|
|
6
|
+
lcp: number;
|
|
7
|
+
duration: number;
|
|
8
|
+
size: number;
|
|
9
|
+
}
|
|
10
|
+
interface Props {
|
|
11
|
+
navigations: Navigation[];
|
|
12
|
+
}
|
|
13
|
+
export declare function Performance({ navigations }: Props): JSX.Element;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Heading } from './Heading';
|
|
3
|
+
export function Performance({ navigations }) {
|
|
4
|
+
const navigationsMarkup = navigations.map(({ url, ttfb, fcp, size, duration, type }) => (React.createElement("li", { key: url, style: { padding: '0.5em 0', borderBottom: '1px solid' } },
|
|
5
|
+
React.createElement(Item, { label: type, value: url.replace('http://localhost:3000', '') }),
|
|
6
|
+
React.createElement("div", { style: { display: 'flex' } },
|
|
7
|
+
React.createElement(Item, { label: "TTFB", value: ttfb }),
|
|
8
|
+
React.createElement(Item, { label: "Duration", value: duration }),
|
|
9
|
+
React.createElement(Item, { label: "FCP", value: fcp })))));
|
|
10
|
+
return (React.createElement(React.Fragment, null,
|
|
11
|
+
React.createElement(Heading, null, "Performance"),
|
|
12
|
+
React.createElement("ul", null, navigationsMarkup)));
|
|
13
|
+
}
|
|
14
|
+
const Item = ({ label, value, unit }) => {
|
|
15
|
+
if (!value) {
|
|
16
|
+
return null;
|
|
17
|
+
}
|
|
18
|
+
const val = typeof value === 'string' ? (React.createElement("span", { style: { fontWeight: 'bold' } }, value)) : (`${Math.round(value)}${unit || 'ms'}`);
|
|
19
|
+
return (React.createElement("span", { style: {
|
|
20
|
+
fontFamily: 'monospace',
|
|
21
|
+
padding: '0 2em 0 0',
|
|
22
|
+
fontSize: '0.75em',
|
|
23
|
+
} },
|
|
24
|
+
label && label.padEnd(10),
|
|
25
|
+
val));
|
|
26
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Heading } from './Heading';
|
|
3
|
+
import { Table } from './Table';
|
|
4
|
+
const KEY_MAP = {
|
|
5
|
+
locale: 'Locale',
|
|
6
|
+
storeDomain: 'Domain',
|
|
7
|
+
storefrontApiVersion: 'API Version',
|
|
8
|
+
};
|
|
9
|
+
export function Settings(props) {
|
|
10
|
+
const items = Object.entries(props).map(([key, value]) => {
|
|
11
|
+
return {
|
|
12
|
+
key: KEY_MAP[key],
|
|
13
|
+
value,
|
|
14
|
+
type: typeof value,
|
|
15
|
+
};
|
|
16
|
+
});
|
|
17
|
+
return (React.createElement(React.Fragment, null,
|
|
18
|
+
React.createElement(Heading, null, "Config"),
|
|
19
|
+
React.createElement(Table, { items: items })));
|
|
20
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export function Table({ items }) {
|
|
3
|
+
const itemsMarkup = items.map(({ key, value }) => (React.createElement("div", { key: key, style: { display: 'flex' } },
|
|
4
|
+
React.createElement("span", { style: { width: '30%', fontFamily: 'monospace', paddingRight: '1em' } }, key),
|
|
5
|
+
React.createElement("span", { style: { width: '70%', fontFamily: 'monospace', fontWeight: 'bold' } }, value))));
|
|
6
|
+
return React.createElement("ul", null, itemsMarkup);
|
|
7
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export const CloseIcon = () => (React.createElement("svg", { style: {
|
|
3
|
+
height: '2.75em',
|
|
4
|
+
width: '2.75em',
|
|
5
|
+
padding: '1em',
|
|
6
|
+
}, viewBox: "0 0 460.775 460.775", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
|
|
7
|
+
React.createElement("path", { fill: "black", d: "M285.08,230.397L456.218,59.27c6.076-6.077,6.076-15.911,0-21.986L423.511,4.565c-2.913-2.911-6.866-4.55-10.992-4.55\n\tc-4.127,0-8.08,1.639-10.993,4.55l-171.138,171.14L59.25,4.565c-2.913-2.911-6.866-4.55-10.993-4.55\n\tc-4.126,0-8.08,1.639-10.992,4.55L4.558,37.284c-6.077,6.075-6.077,15.909,0,21.986l171.138,171.128L4.575,401.505\n\tc-6.074,6.077-6.074,15.911,0,21.986l32.709,32.719c2.911,2.911,6.865,4.55,10.992,4.55c4.127,0,8.08-1.639,10.994-4.55\n\tl171.117-171.12l171.118,171.12c2.913,2.911,6.866,4.55,10.993,4.55c4.128,0,8.081-1.639,10.992-4.55l32.709-32.719\n\tc6.074-6.075,6.074-15.909,0-21.986L285.08,230.397z" })));
|
|
8
|
+
export const HydrogenIcon = () => (React.createElement("svg", { style: {
|
|
9
|
+
height: '2.5em',
|
|
10
|
+
width: '2.5em',
|
|
11
|
+
}, width: "131", height: "130", viewBox: "0 0 131 130", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
|
|
12
|
+
React.createElement("path", { d: "M64.9548 106.281L27.1377 86.1894L40.0714 79.3723L54.6329 87.1049L66.851 80.6638L52.2895 72.9313L65.2231 66.0979L103.04 86.1894L90.1065 93.0064L76.35 85.6989L64.114 92.1563L77.8884 99.4638L64.9548 106.281Z", fill: "black" }),
|
|
13
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M65.2247 25L105.178 46.2267L90.105 54.1716L76.3488 46.8642L66.2525 52.1924L80.028 59.5005L64.9532 67.446L25 46.2196L40.0734 38.2748L54.6349 46.0073L64.713 40.6944L50.1533 32.9628L65.2247 25ZM54.4262 32.9673L68.9896 40.7008L54.6315 48.27L40.0699 40.5374L29.276 46.2267L64.9569 65.1833L75.7495 59.4947L61.9761 52.1878L76.3518 44.6012L90.1087 51.9088L100.902 46.2196L65.2221 27.2634L54.4262 32.9673Z", fill: "black" })));
|
|
@@ -17,10 +17,10 @@ export function FileRoutes({ routes, basePath, dirPrefix }) {
|
|
|
17
17
|
if (!routes) {
|
|
18
18
|
const fileRoutes = request.ctx.hydrogenConfig.routes;
|
|
19
19
|
routes = fileRoutes.files;
|
|
20
|
-
dirPrefix
|
|
21
|
-
basePath
|
|
20
|
+
dirPrefix ??= fileRoutes.dirPrefix;
|
|
21
|
+
basePath ??= fileRoutes.basePath;
|
|
22
22
|
}
|
|
23
|
-
basePath
|
|
23
|
+
basePath ??= '/';
|
|
24
24
|
const pageRoutes = useMemo(() => createPageRoutes(routes, basePath, dirPrefix), [routes, basePath, dirPrefix]);
|
|
25
25
|
let foundRoute, foundRouteDetails;
|
|
26
26
|
for (let i = 0; i < pageRoutes.length; i++) {
|
|
@@ -50,7 +50,7 @@ export function createPageRoutes(pages, topLevelPath = '*', dirPrefix = '') {
|
|
|
50
50
|
*/
|
|
51
51
|
const exact = !/\[(?:[.]{3})(\w+?)\]/.test(key);
|
|
52
52
|
if (!pages[key].default && !pages[key].api) {
|
|
53
|
-
log
|
|
53
|
+
log?.warn(`${key} doesn't export a default React component or an API function`);
|
|
54
54
|
}
|
|
55
55
|
return {
|
|
56
56
|
path: topLevelPrefix + path,
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/// <reference types="vite/client" />
|
|
2
2
|
import React from 'react';
|
|
3
3
|
const HTML_ATTR_SEP_RE = /(?<!=)"\s+/gim;
|
|
4
|
-
const getHtmlAttrs = (template) =>
|
|
5
|
-
const getBodyAttrs = (template) =>
|
|
4
|
+
const getHtmlAttrs = (template) => template.match(/<html\s+([^>]+?)\s*>/s)?.[1] || '';
|
|
5
|
+
const getBodyAttrs = (template) => template.match(/<body\s+([^>]+?)\s*>/s)?.[1] || '';
|
|
6
6
|
const REACT_ATTR_MAP = Object.create(null);
|
|
7
7
|
REACT_ATTR_MAP.class = 'className';
|
|
8
8
|
REACT_ATTR_MAP.style = 'data-style'; // Ignore string styles, it breaks React
|
|
9
9
|
function attrsToProps(attrs) {
|
|
10
|
-
attrs = attrs
|
|
10
|
+
attrs = attrs?.trim();
|
|
11
11
|
// Assume all attributes are surrounded by double quotes.
|
|
12
12
|
return attrs
|
|
13
13
|
? Object.fromEntries(attrs.split(HTML_ATTR_SEP_RE).map((attr) => {
|
|
@@ -21,10 +21,7 @@ function propsToAttrs(props) {
|
|
|
21
21
|
.map(([key, value]) => `${key === REACT_ATTR_MAP.class ? 'class' : key}="${value}"`)
|
|
22
22
|
.join(' ');
|
|
23
23
|
}
|
|
24
|
-
const clientConfigOptions = [
|
|
25
|
-
'strictMode',
|
|
26
|
-
'showDevTools',
|
|
27
|
-
];
|
|
24
|
+
const clientConfigOptions = ['strictMode'];
|
|
28
25
|
export function Html({ children, template, htmlAttrs, bodyAttrs, hydrogenConfig, }) {
|
|
29
26
|
let head = template.match(/<head>(.+?)<\/head>/s)[1] || '';
|
|
30
27
|
// @ts-ignore
|