@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
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { useMemo } from 'react';
|
|
2
|
-
import { flattenConnection, parseMetafieldValue } from '../../utilities';
|
|
3
|
-
/**
|
|
4
|
-
* The `useParsedMetafields` hook transforms a [MetafieldConnection](https://shopify.dev/api/storefront/reference/common-objects/metafieldconnection)
|
|
5
|
-
* in an array of metafields whose `values` have been parsed according to the metafield `type`.
|
|
6
|
-
*/
|
|
7
|
-
export function useParsedMetafields(
|
|
8
|
-
/** A [MetafieldConnection](https://shopify.dev/api/storefront/reference/common-objects/metafieldconnection). */
|
|
9
|
-
metafields) {
|
|
10
|
-
return useMemo(() => {
|
|
11
|
-
if (!metafields) {
|
|
12
|
-
throw new Error(`'useParsedMetafields' needs metafields`);
|
|
13
|
-
}
|
|
14
|
-
return flattenConnection(metafields).map((metafield) => {
|
|
15
|
-
return {
|
|
16
|
-
...metafield,
|
|
17
|
-
value: parseMetafieldValue(metafield),
|
|
18
|
-
};
|
|
19
|
-
});
|
|
20
|
-
}, [metafields]);
|
|
21
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { parseMetafieldValue } from './parseMetafieldValue';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { parseMetafieldValue } from './parseMetafieldValue';
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { Metafield } from '../../storefront-api-types';
|
|
2
|
-
import type { PartialDeep } from 'type-fest';
|
|
3
|
-
/**
|
|
4
|
-
* The `parseMetafieldValue` function parses a [Metafield](https://shopify.dev/api/storefront/reference/common-objects/metafield)'s `value` from a string into a sensible type corresponding to the [Metafield](https://shopify.dev/api/storefront/reference/common-objects/metafield)'s `type`.
|
|
5
|
-
*/
|
|
6
|
-
export declare function parseMetafieldValue(metafield: PartialDeep<Metafield>): any;
|
package/dist/node/client.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export * from './components';
|
|
2
|
-
export * from './hooks';
|
|
3
|
-
export * from './foundation/useServerProps';
|
|
4
|
-
export * from './foundation/useShop';
|
|
5
|
-
export * from './foundation/ServerPropsProvider';
|
|
6
|
-
export * from './foundation/useUrl';
|
|
7
|
-
export { Head } from './foundation/Head';
|
|
8
|
-
export * from './utilities';
|
|
9
|
-
export { gql } from './utilities/graphql-tag';
|
|
10
|
-
export { ClientAnalytics } from './foundation/Analytics';
|
|
11
|
-
export { useRouteParams } from './foundation/useRouteParams/useRouteParams';
|
|
12
|
-
export { useNavigate } from './foundation/useNavigate/useNavigate';
|
|
13
|
-
export { fetchSync } from './foundation/fetchSync/client/fetchSync';
|
|
14
|
-
export { suspendFunction, preloadFunction } from './utilities/suspense';
|
|
15
|
-
export { PerformanceMetrics } from './foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetrics.client';
|
|
16
|
-
export { PerformanceMetricsDebug } from './foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetricsDebug.client';
|
package/dist/node/client.js
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.PerformanceMetricsDebug = exports.PerformanceMetrics = exports.preloadFunction = exports.suspendFunction = exports.fetchSync = exports.useNavigate = exports.useRouteParams = exports.ClientAnalytics = exports.gql = exports.Head = void 0;
|
|
18
|
-
__exportStar(require("./components"), exports);
|
|
19
|
-
__exportStar(require("./hooks"), exports);
|
|
20
|
-
__exportStar(require("./foundation/useServerProps"), exports);
|
|
21
|
-
__exportStar(require("./foundation/useShop"), exports);
|
|
22
|
-
__exportStar(require("./foundation/ServerPropsProvider"), exports);
|
|
23
|
-
__exportStar(require("./foundation/useUrl"), exports);
|
|
24
|
-
var Head_1 = require("./foundation/Head");
|
|
25
|
-
Object.defineProperty(exports, "Head", { enumerable: true, get: function () { return Head_1.Head; } });
|
|
26
|
-
__exportStar(require("./utilities"), exports);
|
|
27
|
-
var graphql_tag_1 = require("./utilities/graphql-tag");
|
|
28
|
-
Object.defineProperty(exports, "gql", { enumerable: true, get: function () { return graphql_tag_1.gql; } });
|
|
29
|
-
var Analytics_1 = require("./foundation/Analytics");
|
|
30
|
-
Object.defineProperty(exports, "ClientAnalytics", { enumerable: true, get: function () { return Analytics_1.ClientAnalytics; } });
|
|
31
|
-
var useRouteParams_1 = require("./foundation/useRouteParams/useRouteParams");
|
|
32
|
-
Object.defineProperty(exports, "useRouteParams", { enumerable: true, get: function () { return useRouteParams_1.useRouteParams; } });
|
|
33
|
-
var useNavigate_1 = require("./foundation/useNavigate/useNavigate");
|
|
34
|
-
Object.defineProperty(exports, "useNavigate", { enumerable: true, get: function () { return useNavigate_1.useNavigate; } });
|
|
35
|
-
var fetchSync_1 = require("./foundation/fetchSync/client/fetchSync");
|
|
36
|
-
Object.defineProperty(exports, "fetchSync", { enumerable: true, get: function () { return fetchSync_1.fetchSync; } });
|
|
37
|
-
var suspense_1 = require("./utilities/suspense");
|
|
38
|
-
Object.defineProperty(exports, "suspendFunction", { enumerable: true, get: function () { return suspense_1.suspendFunction; } });
|
|
39
|
-
Object.defineProperty(exports, "preloadFunction", { enumerable: true, get: function () { return suspense_1.preloadFunction; } });
|
|
40
|
-
var PerformanceMetrics_client_1 = require("./foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetrics.client");
|
|
41
|
-
Object.defineProperty(exports, "PerformanceMetrics", { enumerable: true, get: function () { return PerformanceMetrics_client_1.PerformanceMetrics; } });
|
|
42
|
-
var PerformanceMetricsDebug_client_1 = require("./foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetricsDebug.client");
|
|
43
|
-
Object.defineProperty(exports, "PerformanceMetricsDebug", { enumerable: true, get: function () { return PerformanceMetricsDebug_client_1.PerformanceMetricsDebug; } });
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
interface AddToCartButtonProps {
|
|
3
|
-
/** An array of cart line attributes that belong to the item being added to the cart. */
|
|
4
|
-
attributes?: {
|
|
5
|
-
key: string;
|
|
6
|
-
value: string;
|
|
7
|
-
}[];
|
|
8
|
-
/** The ID of the variant. */
|
|
9
|
-
variantId?: string | null;
|
|
10
|
-
/** The item quantity. */
|
|
11
|
-
quantity?: number;
|
|
12
|
-
/** Any ReactNode elements. */
|
|
13
|
-
children: ReactNode;
|
|
14
|
-
/** The text that is announced by the screen reader when the item is being added to the cart. Used for accessibility purposes only and not displayed on the page. */
|
|
15
|
-
accessibleAddingToCartLabel?: string;
|
|
16
|
-
}
|
|
17
|
-
declare type PropsWeControl = 'onClick';
|
|
18
|
-
/**
|
|
19
|
-
* The `AddToCartButton` component renders a button that adds an item to the cart when pressed.
|
|
20
|
-
* It must be a descendent of the `CartProvider` component.
|
|
21
|
-
*/
|
|
22
|
-
export declare function AddToCartButton(props: Omit<JSX.IntrinsicElements['button'], PropsWeControl> & AddToCartButtonProps): JSX.Element;
|
|
23
|
-
export {};
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.AddToCartButton = void 0;
|
|
27
|
-
const react_1 = __importStar(require("react"));
|
|
28
|
-
const CartProvider_1 = require("../CartProvider");
|
|
29
|
-
const ProductOptionsProvider_1 = require("../ProductOptionsProvider");
|
|
30
|
-
/**
|
|
31
|
-
* The `AddToCartButton` component renders a button that adds an item to the cart when pressed.
|
|
32
|
-
* It must be a descendent of the `CartProvider` component.
|
|
33
|
-
*/
|
|
34
|
-
function AddToCartButton(props) {
|
|
35
|
-
var _a;
|
|
36
|
-
const [addingItem, setAddingItem] = (0, react_1.useState)(false);
|
|
37
|
-
const { variantId: explicitVariantId, quantity = 1, attributes, children, accessibleAddingToCartLabel, ...passthroughProps } = props;
|
|
38
|
-
const { status, linesAdd } = (0, CartProvider_1.useCart)();
|
|
39
|
-
const { selectedVariant } = (0, ProductOptionsProvider_1.useProductOptions)();
|
|
40
|
-
const variantId = (_a = explicitVariantId !== null && explicitVariantId !== void 0 ? explicitVariantId : selectedVariant === null || selectedVariant === void 0 ? void 0 : selectedVariant.id) !== null && _a !== void 0 ? _a : '';
|
|
41
|
-
const disabled = explicitVariantId === null ||
|
|
42
|
-
variantId === '' ||
|
|
43
|
-
selectedVariant === null ||
|
|
44
|
-
addingItem ||
|
|
45
|
-
passthroughProps.disabled;
|
|
46
|
-
(0, react_1.useEffect)(() => {
|
|
47
|
-
if (addingItem && status === 'idle') {
|
|
48
|
-
setAddingItem(false);
|
|
49
|
-
}
|
|
50
|
-
}, [status, addingItem]);
|
|
51
|
-
return (react_1.default.createElement(react_1.default.Fragment, null,
|
|
52
|
-
react_1.default.createElement("button", { ...passthroughProps, disabled: disabled, onClick: () => {
|
|
53
|
-
setAddingItem(true);
|
|
54
|
-
linesAdd([
|
|
55
|
-
{
|
|
56
|
-
quantity,
|
|
57
|
-
merchandiseId: variantId,
|
|
58
|
-
attributes,
|
|
59
|
-
},
|
|
60
|
-
]);
|
|
61
|
-
} }, children),
|
|
62
|
-
accessibleAddingToCartLabel ? (react_1.default.createElement("p", { style: {
|
|
63
|
-
position: 'absolute',
|
|
64
|
-
width: '1px',
|
|
65
|
-
height: '1px',
|
|
66
|
-
padding: '0',
|
|
67
|
-
margin: '-1px',
|
|
68
|
-
overflow: 'hidden',
|
|
69
|
-
clip: 'rect(0, 0, 0, 0)',
|
|
70
|
-
whiteSpace: 'nowrap',
|
|
71
|
-
borderWidth: '0',
|
|
72
|
-
}, role: "alert", "aria-live": "assertive" }, addingItem ? accessibleAddingToCartLabel : null)) : null));
|
|
73
|
-
}
|
|
74
|
-
exports.AddToCartButton = AddToCartButton;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { AddToCartButton } from './AddToCartButton.client';
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AddToCartButton = void 0;
|
|
4
|
-
var AddToCartButton_client_1 = require("./AddToCartButton.client");
|
|
5
|
-
Object.defineProperty(exports, "AddToCartButton", { enumerable: true, get: function () { return AddToCartButton_client_1.AddToCartButton; } });
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import type { ReactNode } from 'react';
|
|
2
|
-
interface BuyNowButtonProps {
|
|
3
|
-
/** The item quantity. Defaults to 1. */
|
|
4
|
-
quantity?: number;
|
|
5
|
-
/** The ID of the variant. */
|
|
6
|
-
variantId: string;
|
|
7
|
-
/** An array of cart line attributes that belong to the item being added to the cart. */
|
|
8
|
-
attributes?: {
|
|
9
|
-
key: string;
|
|
10
|
-
value: string;
|
|
11
|
-
}[];
|
|
12
|
-
/** Any `ReactNode` elements. */
|
|
13
|
-
children: ReactNode;
|
|
14
|
-
}
|
|
15
|
-
declare type PropsWeControl = 'onClick';
|
|
16
|
-
/** The `BuyNowButton` component renders a button that adds an item to the cart and redirects the customer to checkout. */
|
|
17
|
-
export declare function BuyNowButton(props: Omit<JSX.IntrinsicElements['button'], PropsWeControl> & BuyNowButtonProps): JSX.Element;
|
|
18
|
-
export {};
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.BuyNowButton = void 0;
|
|
27
|
-
const react_1 = __importStar(require("react"));
|
|
28
|
-
const CartProvider_1 = require("../CartProvider");
|
|
29
|
-
/** The `BuyNowButton` component renders a button that adds an item to the cart and redirects the customer to checkout. */
|
|
30
|
-
function BuyNowButton(props) {
|
|
31
|
-
const { createInstantCheckout, checkoutUrl } = (0, CartProvider_1.useInstantCheckout)();
|
|
32
|
-
const [loading, setLoading] = (0, react_1.useState)(false);
|
|
33
|
-
const { quantity, variantId, attributes, children, ...passthroughProps } = props;
|
|
34
|
-
(0, react_1.useEffect)(() => {
|
|
35
|
-
if (checkoutUrl) {
|
|
36
|
-
window.location.href = checkoutUrl;
|
|
37
|
-
}
|
|
38
|
-
}, [checkoutUrl]);
|
|
39
|
-
const handleBuyNow = (0, react_1.useCallback)(() => {
|
|
40
|
-
setLoading(true);
|
|
41
|
-
createInstantCheckout({
|
|
42
|
-
lines: [
|
|
43
|
-
{
|
|
44
|
-
quantity: quantity !== null && quantity !== void 0 ? quantity : 1,
|
|
45
|
-
merchandiseId: variantId,
|
|
46
|
-
attributes,
|
|
47
|
-
},
|
|
48
|
-
],
|
|
49
|
-
});
|
|
50
|
-
}, [setLoading, createInstantCheckout, quantity, variantId, attributes]);
|
|
51
|
-
return (react_1.default.createElement("button", { disabled: loading !== null && loading !== void 0 ? loading : passthroughProps.disabled, ...passthroughProps, onClick: handleBuyNow }, children));
|
|
52
|
-
}
|
|
53
|
-
exports.BuyNowButton = BuyNowButton;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { BuyNowButton } from './BuyNowButton.client';
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BuyNowButton = void 0;
|
|
4
|
-
var BuyNowButton_client_1 = require("./BuyNowButton.client");
|
|
5
|
-
Object.defineProperty(exports, "BuyNowButton", { enumerable: true, get: function () { return BuyNowButton_client_1.BuyNowButton; } });
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
declare type PropsWeControl = 'onClick';
|
|
3
|
-
/**
|
|
4
|
-
* The `CartCheckoutButton` component renders a button that redirects to the checkout URL for the cart.
|
|
5
|
-
* It must be a descendent of a `CartProvider` component.
|
|
6
|
-
*/
|
|
7
|
-
export declare function CartCheckoutButton(props: Omit<JSX.IntrinsicElements['button'], PropsWeControl> & {
|
|
8
|
-
/** A `ReactNode` element. */
|
|
9
|
-
children: ReactNode;
|
|
10
|
-
}): JSX.Element;
|
|
11
|
-
export {};
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.CartCheckoutButton = void 0;
|
|
27
|
-
const react_1 = __importStar(require("react"));
|
|
28
|
-
const CartProvider_1 = require("../CartProvider");
|
|
29
|
-
/**
|
|
30
|
-
* The `CartCheckoutButton` component renders a button that redirects to the checkout URL for the cart.
|
|
31
|
-
* It must be a descendent of a `CartProvider` component.
|
|
32
|
-
*/
|
|
33
|
-
function CartCheckoutButton(props) {
|
|
34
|
-
const [requestedCheckout, setRequestedCheckout] = (0, react_1.useState)(false);
|
|
35
|
-
const { status, checkoutUrl } = (0, CartProvider_1.useCart)();
|
|
36
|
-
const { children, ...passthroughProps } = props;
|
|
37
|
-
(0, react_1.useEffect)(() => {
|
|
38
|
-
if (requestedCheckout && checkoutUrl && status === 'idle') {
|
|
39
|
-
window.location.href = checkoutUrl;
|
|
40
|
-
}
|
|
41
|
-
}, [requestedCheckout, status, checkoutUrl]);
|
|
42
|
-
return (react_1.default.createElement("button", { ...passthroughProps, disabled: requestedCheckout || passthroughProps.disabled, onClick: () => setRequestedCheckout(true) }, children));
|
|
43
|
-
}
|
|
44
|
-
exports.CartCheckoutButton = CartCheckoutButton;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { CartCheckoutButton } from './CartCheckoutButton.client';
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CartCheckoutButton = void 0;
|
|
4
|
-
var CartCheckoutButton_client_1 = require("./CartCheckoutButton.client");
|
|
5
|
-
Object.defineProperty(exports, "CartCheckoutButton", { enumerable: true, get: function () { return CartCheckoutButton_client_1.CartCheckoutButton; } });
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { Money } from '../Money';
|
|
3
|
-
export interface CartEstimatedCostProps {
|
|
4
|
-
/** A string type that defines the type of cost needed. Valid values: `total`, `subtotal`, `tax`, or `duty`. */
|
|
5
|
-
amountType?: 'total' | 'subtotal' | 'tax' | 'duty';
|
|
6
|
-
/** A function that takes an object return by the `useMoney` hook and returns a `ReactNode`. */
|
|
7
|
-
children?: React.ReactNode;
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* The `CartEstimatedCost` component renders a `Money` component with the
|
|
11
|
-
* cost associated with the `amountType` prop. If no `amountType` prop is specified, then it defaults to `totalAmount`.
|
|
12
|
-
* If `children` is a function, then it will pass down the render props provided by the parent component.
|
|
13
|
-
*/
|
|
14
|
-
export declare function CartEstimatedCost(props: Omit<React.ComponentProps<typeof Money>, 'data'> & CartEstimatedCostProps): JSX.Element | null;
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.CartEstimatedCost = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const CartProvider_1 = require("../CartProvider");
|
|
9
|
-
const Money_1 = require("../Money");
|
|
10
|
-
/**
|
|
11
|
-
* The `CartEstimatedCost` component renders a `Money` component with the
|
|
12
|
-
* cost associated with the `amountType` prop. If no `amountType` prop is specified, then it defaults to `totalAmount`.
|
|
13
|
-
* If `children` is a function, then it will pass down the render props provided by the parent component.
|
|
14
|
-
*/
|
|
15
|
-
function CartEstimatedCost(props) {
|
|
16
|
-
const { estimatedCost } = (0, CartProvider_1.useCart)();
|
|
17
|
-
const { amountType = 'total', children, ...passthroughProps } = props;
|
|
18
|
-
let amount;
|
|
19
|
-
if (amountType == 'total') {
|
|
20
|
-
amount = estimatedCost === null || estimatedCost === void 0 ? void 0 : estimatedCost.totalAmount;
|
|
21
|
-
}
|
|
22
|
-
else if (amountType == 'subtotal') {
|
|
23
|
-
amount = estimatedCost === null || estimatedCost === void 0 ? void 0 : estimatedCost.subtotalAmount;
|
|
24
|
-
}
|
|
25
|
-
else if (amountType == 'tax') {
|
|
26
|
-
amount = estimatedCost === null || estimatedCost === void 0 ? void 0 : estimatedCost.totalTaxAmount;
|
|
27
|
-
}
|
|
28
|
-
else if (amountType == 'duty') {
|
|
29
|
-
amount = estimatedCost === null || estimatedCost === void 0 ? void 0 : estimatedCost.totalDutyAmount;
|
|
30
|
-
}
|
|
31
|
-
if (amount == null) {
|
|
32
|
-
return null;
|
|
33
|
-
}
|
|
34
|
-
return (react_1.default.createElement(Money_1.Money, { ...passthroughProps, data: amount }, children));
|
|
35
|
-
}
|
|
36
|
-
exports.CartEstimatedCost = CartEstimatedCost;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { CartEstimatedCost } from './CartEstimatedCost.client';
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CartEstimatedCost = void 0;
|
|
4
|
-
var CartEstimatedCost_client_1 = require("./CartEstimatedCost.client");
|
|
5
|
-
Object.defineProperty(exports, "CartEstimatedCost", { enumerable: true, get: function () { return CartEstimatedCost_client_1.CartEstimatedCost; } });
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type ShopifyImageProps } from '../Image';
|
|
2
|
-
import type { Simplify } from 'type-fest';
|
|
3
|
-
declare type PropsWeControl = 'data';
|
|
4
|
-
/**
|
|
5
|
-
* The `CartLineImage` component renders an `Image` component for the cart line merchandise's image.
|
|
6
|
-
* It must be a descendent of a `CartLineProvider` component.
|
|
7
|
-
*/
|
|
8
|
-
export declare function CartLineImage(props: Simplify<Omit<ShopifyImageProps, PropsWeControl>>): JSX.Element | null;
|
|
9
|
-
export {};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.CartLineImage = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const CartLineProvider_1 = require("../CartLineProvider");
|
|
9
|
-
const Image_1 = require("../Image");
|
|
10
|
-
/**
|
|
11
|
-
* The `CartLineImage` component renders an `Image` component for the cart line merchandise's image.
|
|
12
|
-
* It must be a descendent of a `CartLineProvider` component.
|
|
13
|
-
*/
|
|
14
|
-
function CartLineImage(props) {
|
|
15
|
-
const cartLine = (0, CartLineProvider_1.useCartLine)();
|
|
16
|
-
return cartLine.merchandise.image ? (react_1.default.createElement(Image_1.Image, { ...props, data: cartLine.merchandise.image })) : null;
|
|
17
|
-
}
|
|
18
|
-
exports.CartLineImage = CartLineImage;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { CartLineImage } from './CartLineImage.client';
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CartLineImage = void 0;
|
|
4
|
-
var CartLineImage_client_1 = require("./CartLineImage.client");
|
|
5
|
-
Object.defineProperty(exports, "CartLineImage", { enumerable: true, get: function () { return CartLineImage_client_1.CartLineImage; } });
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { Money } from '../Money';
|
|
3
|
-
interface CartLinePriceProps {
|
|
4
|
-
/** The type of price. Valid values:`regular` (default) or `compareAt`. */
|
|
5
|
-
priceType?: 'regular' | 'compareAt';
|
|
6
|
-
}
|
|
7
|
-
/**
|
|
8
|
-
* The `CartLinePrice` component renders a `Money` component for the cart line merchandise's price or
|
|
9
|
-
* compare at price. It must be a descendent of a `CartLineProvider` component.
|
|
10
|
-
*/
|
|
11
|
-
export declare function CartLinePrice(props: Omit<React.ComponentProps<typeof Money>, 'data'> & CartLinePriceProps): JSX.Element | null;
|
|
12
|
-
export {};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.CartLinePrice = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const CartLineProvider_1 = require("../CartLineProvider");
|
|
9
|
-
const Money_1 = require("../Money");
|
|
10
|
-
/**
|
|
11
|
-
* The `CartLinePrice` component renders a `Money` component for the cart line merchandise's price or
|
|
12
|
-
* compare at price. It must be a descendent of a `CartLineProvider` component.
|
|
13
|
-
*/
|
|
14
|
-
function CartLinePrice(props) {
|
|
15
|
-
const cartLine = (0, CartLineProvider_1.useCartLine)();
|
|
16
|
-
const { priceType = 'regular', ...passthroughProps } = props;
|
|
17
|
-
const price = priceType === 'regular'
|
|
18
|
-
? cartLine.merchandise.priceV2
|
|
19
|
-
: cartLine.merchandise.compareAtPriceV2;
|
|
20
|
-
if (price == null) {
|
|
21
|
-
return null;
|
|
22
|
-
}
|
|
23
|
-
return (react_1.default.createElement(Money_1.Money, { ...passthroughProps, data: {
|
|
24
|
-
amount: `${parseFloat(price.amount) * cartLine.quantity}`,
|
|
25
|
-
currencyCode: price.currencyCode,
|
|
26
|
-
} }));
|
|
27
|
-
}
|
|
28
|
-
exports.CartLinePrice = CartLinePrice;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { CartLinePrice } from './CartLinePrice.client';
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CartLinePrice = void 0;
|
|
4
|
-
var CartLinePrice_client_1 = require("./CartLinePrice.client");
|
|
5
|
-
Object.defineProperty(exports, "CartLinePrice", { enumerable: true, get: function () { return CartLinePrice_client_1.CartLinePrice; } });
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* The `CartLineProductTitle` component renders a `span` element (or the type of HTML element specified by
|
|
3
|
-
* the `as` prop) with the cart line merchandise's title. It must be a descendent of a `CartLineProvider` component.
|
|
4
|
-
*/
|
|
5
|
-
export declare function CartLineProductTitle<TTag extends keyof JSX.IntrinsicElements = 'span'>(props: JSX.IntrinsicElements[TTag] & {
|
|
6
|
-
/** An HTML tag to be rendered as the base element wrapper. The default is `span`. */
|
|
7
|
-
as?: TTag;
|
|
8
|
-
}): JSX.Element;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.CartLineProductTitle = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const CartLineProvider_1 = require("../CartLineProvider");
|
|
9
|
-
/**
|
|
10
|
-
* The `CartLineProductTitle` component renders a `span` element (or the type of HTML element specified by
|
|
11
|
-
* the `as` prop) with the cart line merchandise's title. It must be a descendent of a `CartLineProvider` component.
|
|
12
|
-
*/
|
|
13
|
-
function CartLineProductTitle(props) {
|
|
14
|
-
const cartLine = (0, CartLineProvider_1.useCartLine)();
|
|
15
|
-
const { as, ...passthroughProps } = props;
|
|
16
|
-
const Wrapper = as ? as : 'span';
|
|
17
|
-
return (react_1.default.createElement(Wrapper, { ...passthroughProps }, cartLine.merchandise.product.title));
|
|
18
|
-
}
|
|
19
|
-
exports.CartLineProductTitle = CartLineProductTitle;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { CartLineProductTitle } from './CartLineProductTitle.client';
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CartLineProductTitle = void 0;
|
|
4
|
-
var CartLineProductTitle_client_1 = require("./CartLineProductTitle.client");
|
|
5
|
-
Object.defineProperty(exports, "CartLineProductTitle", { enumerable: true, get: function () { return CartLineProductTitle_client_1.CartLineProductTitle; } });
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
import { Cart } from '../CartProvider';
|
|
3
|
-
/**
|
|
4
|
-
* The `CartLineProvider` component creates a context for using a cart line.
|
|
5
|
-
*/
|
|
6
|
-
export declare function CartLineProvider({ children, line, }: {
|
|
7
|
-
/** Any `ReactNode` elements. */
|
|
8
|
-
children: ReactNode;
|
|
9
|
-
/** A cart line object. */
|
|
10
|
-
line: Cart['lines'][1];
|
|
11
|
-
}): JSX.Element;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.CartLineProvider = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const context_1 = require("./context");
|
|
9
|
-
/**
|
|
10
|
-
* The `CartLineProvider` component creates a context for using a cart line.
|
|
11
|
-
*/
|
|
12
|
-
function CartLineProvider({ children, line, }) {
|
|
13
|
-
return (react_1.default.createElement(context_1.CartLineContext.Provider, { value: line }, children));
|
|
14
|
-
}
|
|
15
|
-
exports.CartLineProvider = CartLineProvider;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
export declare const CartLineContext: import("react").Context<({
|
|
2
|
-
__typename?: "CartLine" | undefined;
|
|
3
|
-
} & Pick<import("../../storefront-api-types").CartLine, "id" | "quantity"> & {
|
|
4
|
-
attributes: ({
|
|
5
|
-
__typename?: "Attribute" | undefined;
|
|
6
|
-
} & Pick<import("../../storefront-api-types").Attribute, "key" | "value">)[];
|
|
7
|
-
merchandise: {
|
|
8
|
-
__typename?: "ProductVariant" | undefined;
|
|
9
|
-
} & Pick<import("../../storefront-api-types").ProductVariant, "id" | "title" | "availableForSale" | "requiresShipping"> & {
|
|
10
|
-
compareAtPriceV2?: import("../../storefront-api-types").Maybe<{
|
|
11
|
-
__typename?: "MoneyV2" | undefined;
|
|
12
|
-
} & Pick<import("../../storefront-api-types").MoneyV2, "currencyCode" | "amount">> | undefined;
|
|
13
|
-
priceV2: {
|
|
14
|
-
__typename?: "MoneyV2" | undefined;
|
|
15
|
-
} & Pick<import("../../storefront-api-types").MoneyV2, "currencyCode" | "amount">;
|
|
16
|
-
image?: import("../../storefront-api-types").Maybe<{
|
|
17
|
-
__typename?: "Image" | undefined;
|
|
18
|
-
} & Pick<import("../../storefront-api-types").Image, "id" | "height" | "width" | "url" | "altText">> | undefined;
|
|
19
|
-
product: {
|
|
20
|
-
__typename?: "Product" | undefined;
|
|
21
|
-
} & Pick<import("../../storefront-api-types").Product, "title" | "handle">;
|
|
22
|
-
selectedOptions: ({
|
|
23
|
-
__typename?: "SelectedOption" | undefined;
|
|
24
|
-
} & Pick<import("../../storefront-api-types").SelectedOption, "name" | "value">)[];
|
|
25
|
-
};
|
|
26
|
-
}) | null>;
|