@shopify/hydrogen 0.22.0 → 0.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +240 -0
- package/dist/esnext/components/AddToCartButton/AddToCartButton.client.js +5 -5
- package/dist/esnext/components/CartLinePrice/CartLinePrice.client.js +5 -8
- package/dist/esnext/components/CartLineProvider/context.d.ts +12 -2
- package/dist/esnext/components/CartLines/{CartLines.d.ts → CartLines.client.d.ts} +0 -0
- package/dist/esnext/components/CartLines/{CartLines.js → CartLines.client.js} +0 -0
- package/dist/esnext/components/CartLines/index.d.ts +1 -1
- package/dist/esnext/components/CartLines/index.js +1 -1
- package/dist/esnext/components/CartProvider/CartProvider.client.js +2 -5
- 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 +3 -5
- package/dist/esnext/components/CartProvider/types.d.ts +2 -0
- package/dist/esnext/components/DevTools.client.js +1 -1
- package/dist/esnext/components/Image/Image.d.ts +8 -0
- package/dist/esnext/components/Image/Image.js +58 -10
- package/dist/esnext/components/Link/Link.client.d.ts +2 -0
- package/dist/esnext/components/Link/Link.client.js +7 -4
- package/dist/esnext/components/LocalizationProvider/LocalizationProvider.server.js +1 -1
- package/dist/esnext/components/ProductOptionsProvider/ProductOptionsProvider.client.d.ts +21 -0
- package/dist/esnext/components/ProductOptionsProvider/ProductOptionsProvider.client.js +141 -0
- package/dist/esnext/components/ProductOptionsProvider/context.d.ts +2 -0
- package/dist/esnext/components/{ProductProvider → ProductOptionsProvider}/context.js +0 -1
- package/dist/esnext/components/ProductOptionsProvider/index.d.ts +2 -0
- package/dist/esnext/components/ProductOptionsProvider/index.js +2 -0
- package/dist/esnext/components/ProductPrice/ProductPrice.client.d.ts +5 -2
- package/dist/esnext/components/ProductPrice/ProductPrice.client.js +10 -12
- package/dist/esnext/components/index.d.ts +1 -1
- package/dist/esnext/components/index.js +1 -1
- package/dist/esnext/entry-client.js +106 -6
- package/dist/esnext/entry-server.d.ts +2 -15
- package/dist/esnext/entry-server.js +246 -322
- package/dist/esnext/foundation/Analytics/Analytics.client.js +15 -13
- package/dist/esnext/foundation/Analytics/Analytics.server.js +27 -20
- package/dist/esnext/foundation/Analytics/ClientAnalytics.d.ts +4 -2
- package/dist/esnext/foundation/Analytics/ClientAnalytics.js +16 -14
- package/dist/esnext/foundation/Analytics/ServerAnalyticsRoute.server.js +7 -5
- package/dist/esnext/foundation/Analytics/connectors/PerformanceMetrics/ServerAnalyticsConnector.server.d.ts +1 -0
- package/dist/esnext/foundation/Analytics/connectors/PerformanceMetrics/{PerformanceMetrics.server.js → ServerAnalyticsConnector.server.js} +7 -6
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ServerAnalyticsConnector.server.d.ts +1 -0
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ServerAnalyticsConnector.server.js +19 -0
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ShopifyAnalytics.client.d.ts +3 -0
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ShopifyAnalytics.client.js +190 -0
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ShopifyAnalytics.server.d.ts +3 -0
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ShopifyAnalytics.server.js +24 -0
- package/dist/esnext/foundation/Analytics/connectors/Shopify/const.d.ts +28 -0
- package/dist/esnext/foundation/Analytics/connectors/Shopify/const.js +51 -0
- package/dist/esnext/foundation/Analytics/connectors/Shopify/utils.d.ts +3 -0
- package/dist/esnext/foundation/Analytics/connectors/Shopify/utils.js +56 -0
- package/dist/esnext/foundation/Analytics/hook.js +4 -2
- package/dist/esnext/foundation/Analytics/utils.d.ts +2 -0
- package/dist/esnext/foundation/Analytics/utils.js +21 -0
- package/dist/{node/framework → esnext/foundation/Cache}/cache-sub-request.d.ts +1 -1
- package/dist/esnext/{framework → foundation/Cache}/cache-sub-request.js +3 -3
- package/dist/esnext/{framework → foundation/Cache}/cache.d.ts +1 -1
- package/dist/esnext/{framework → foundation/Cache}/cache.js +3 -3
- package/dist/{node/framework/CachingStrategy → esnext/foundation/Cache/strategies}/index.d.ts +2 -1
- package/dist/esnext/{framework/CachingStrategy → foundation/Cache/strategies}/index.js +1 -1
- package/dist/esnext/foundation/Cookie/Cookie.d.ts +3 -3
- package/dist/{node/framework/Hydration → esnext/foundation/Html}/Html.d.ts +3 -1
- package/dist/esnext/{framework/Hydration → foundation/Html}/Html.js +15 -2
- package/dist/{node/framework/Hydration/ServerComponentRequest.server.d.ts → esnext/foundation/HydrogenRequest/HydrogenRequest.server.d.ts} +8 -3
- package/dist/esnext/{framework/Hydration/ServerComponentRequest.server.js → foundation/HydrogenRequest/HydrogenRequest.server.js} +3 -2
- package/dist/{node/framework/Hydration/ServerComponentResponse.server.d.ts → esnext/foundation/HydrogenResponse/HydrogenResponse.server.d.ts} +7 -10
- package/dist/esnext/{framework/Hydration/ServerComponentResponse.server.js → foundation/HydrogenResponse/HydrogenResponse.server.js} +19 -15
- package/dist/esnext/foundation/Router/BrowserRouter.client.js +16 -9
- package/dist/esnext/foundation/ServerPropsProvider/ServerPropsProvider.d.ts +2 -1
- package/dist/esnext/foundation/ServerPropsProvider/ServerPropsProvider.js +1 -1
- package/dist/esnext/foundation/ServerRequestProvider/ServerRequestProvider.d.ts +5 -6
- package/dist/esnext/foundation/ServerRequestProvider/ServerRequestProvider.js +18 -21
- package/dist/esnext/foundation/ServerStateProvider/ServerStateProvider.d.ts +1 -1
- package/dist/esnext/foundation/ServerStateProvider/ServerStateProvider.js +1 -1
- package/dist/esnext/foundation/ShopifyProvider/ShopifyProvider.server.js +1 -0
- package/dist/esnext/foundation/index.d.ts +1 -1
- package/dist/esnext/foundation/index.js +1 -1
- package/dist/esnext/foundation/runtime.d.ts +2 -0
- package/dist/esnext/foundation/runtime.js +6 -0
- package/dist/esnext/foundation/session/session.d.ts +3 -3
- package/dist/esnext/foundation/ssr-interop.d.ts +2 -2
- package/dist/esnext/foundation/useNavigate/useNavigate.d.ts +2 -0
- package/dist/esnext/foundation/useNavigate/useNavigate.js +11 -4
- package/dist/esnext/foundation/useQuery/hooks.d.ts +1 -0
- package/dist/esnext/foundation/useQuery/hooks.js +24 -7
- package/dist/esnext/foundation/useRequestContext/index.d.ts +15 -0
- package/dist/esnext/foundation/useRequestContext/index.js +23 -0
- package/dist/esnext/framework/Hydration/rsc.js +2 -0
- package/dist/esnext/framework/plugin.js +2 -0
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-config.js +5 -2
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-middleware.js +1 -1
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-rsc.js +4 -12
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-suppress-warnings.d.ts +3 -0
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-suppress-warnings.js +19 -0
- package/dist/esnext/hooks/useCartLine/useCartLine.d.ts +12 -2
- package/dist/esnext/hooks/useParsedMetafields/useParsedMetafields.d.ts +2 -2
- package/dist/esnext/hooks/useProductOptions/types.d.ts +17 -15
- package/dist/esnext/hooks/useProductOptions/useProductOptions.client.d.ts +1 -15
- package/dist/esnext/hooks/useProductOptions/useProductOptions.client.js +8 -107
- package/dist/esnext/hooks/useShopQuery/hooks.js +12 -6
- package/dist/esnext/index.d.ts +9 -3
- package/dist/esnext/index.js +7 -3
- package/dist/esnext/storefront-api-types.d.ts +10 -339
- package/dist/esnext/streaming.server.d.ts +0 -1
- package/dist/esnext/streaming.server.js +0 -4
- package/dist/esnext/types.d.ts +32 -23
- package/dist/esnext/utilities/apiRoutes.d.ts +2 -2
- package/dist/esnext/utilities/graphql-tracker.js +1 -1
- package/dist/esnext/utilities/index.d.ts +1 -1
- package/dist/esnext/utilities/index.js +1 -1
- package/dist/esnext/utilities/isBrowser/index.d.ts +1 -0
- package/dist/esnext/utilities/isBrowser/index.js +1 -0
- package/dist/esnext/utilities/isBrowser/isBrowser.d.ts +4 -0
- package/dist/esnext/utilities/isBrowser/isBrowser.js +6 -0
- package/dist/esnext/utilities/isServer/isServer.js +2 -2
- package/dist/esnext/utilities/log/index.d.ts +1 -1
- package/dist/esnext/utilities/log/index.js +1 -1
- package/dist/esnext/utilities/log/log-cache-header.d.ts +4 -4
- package/dist/esnext/utilities/log/log-query-timeline.d.ts +3 -3
- package/dist/esnext/utilities/log/log.d.ts +17 -11
- package/dist/esnext/utilities/log/log.js +29 -20
- package/dist/esnext/version.d.ts +1 -1
- package/dist/esnext/version.js +1 -1
- package/dist/node/client.d.ts +16 -0
- package/dist/node/client.js +43 -0
- package/dist/node/components/AddToCartButton/AddToCartButton.client.d.ts +23 -0
- package/dist/node/components/AddToCartButton/AddToCartButton.client.js +74 -0
- package/dist/node/components/AddToCartButton/index.d.ts +1 -0
- package/dist/node/components/AddToCartButton/index.js +5 -0
- package/dist/node/components/BuyNowButton/BuyNowButton.client.d.ts +18 -0
- package/dist/node/components/BuyNowButton/BuyNowButton.client.js +53 -0
- package/dist/node/components/BuyNowButton/index.d.ts +1 -0
- package/dist/node/components/BuyNowButton/index.js +5 -0
- package/dist/node/components/CartCheckoutButton/CartCheckoutButton.client.d.ts +11 -0
- package/dist/node/components/CartCheckoutButton/CartCheckoutButton.client.js +44 -0
- package/dist/node/components/CartCheckoutButton/index.d.ts +1 -0
- package/dist/node/components/CartCheckoutButton/index.js +5 -0
- package/dist/node/components/CartEstimatedCost/CartEstimatedCost.client.d.ts +14 -0
- package/dist/node/components/CartEstimatedCost/CartEstimatedCost.client.js +36 -0
- package/dist/node/components/CartEstimatedCost/index.d.ts +1 -0
- package/dist/node/components/CartEstimatedCost/index.js +5 -0
- package/dist/node/components/CartLineImage/CartLineImage.client.d.ts +9 -0
- package/dist/node/components/CartLineImage/CartLineImage.client.js +18 -0
- package/dist/node/components/CartLineImage/index.d.ts +1 -0
- package/dist/node/components/CartLineImage/index.js +5 -0
- package/dist/node/components/CartLinePrice/CartLinePrice.client.d.ts +12 -0
- package/dist/node/components/CartLinePrice/CartLinePrice.client.js +25 -0
- package/dist/node/components/CartLinePrice/index.d.ts +1 -0
- package/dist/node/components/CartLinePrice/index.js +5 -0
- package/dist/node/components/CartLineProductTitle/CartLineProductTitle.client.d.ts +8 -0
- package/dist/node/components/CartLineProductTitle/CartLineProductTitle.client.js +19 -0
- package/dist/node/components/CartLineProductTitle/index.d.ts +1 -0
- package/dist/node/components/CartLineProductTitle/index.js +5 -0
- package/dist/node/components/CartLineProvider/CartLineProvider.client.d.ts +11 -0
- package/dist/node/components/CartLineProvider/CartLineProvider.client.js +15 -0
- package/dist/node/components/CartLineProvider/context.d.ts +36 -0
- package/dist/node/components/CartLineProvider/context.js +5 -0
- package/dist/node/components/CartLineProvider/index.d.ts +2 -0
- package/dist/node/components/CartLineProvider/index.js +7 -0
- package/dist/node/components/CartLineQuantity/CartLineQuantity.client.d.ts +8 -0
- package/dist/node/components/CartLineQuantity/CartLineQuantity.client.js +19 -0
- package/dist/node/components/CartLineQuantity/index.d.ts +1 -0
- package/dist/node/components/CartLineQuantity/index.js +5 -0
- package/dist/node/components/CartLineQuantityAdjustButton/CartLineQuantityAdjustButton.d.ts +14 -0
- package/dist/node/components/CartLineQuantityAdjustButton/CartLineQuantityAdjustButton.js +31 -0
- package/dist/node/components/CartLineQuantityAdjustButton/index.d.ts +1 -0
- package/dist/node/components/CartLineQuantityAdjustButton/index.js +5 -0
- package/dist/node/components/CartLines/CartLines.client.d.ts +15 -0
- package/dist/node/components/CartLines/CartLines.client.js +44 -0
- package/dist/node/components/CartLines/index.d.ts +1 -0
- package/dist/node/components/CartLines/index.js +5 -0
- package/dist/node/components/CartProvider/CartProvider.client.d.ts +41 -0
- package/dist/node/components/CartProvider/CartProvider.client.js +547 -0
- package/dist/node/components/CartProvider/cart-queries.d.ts +10 -0
- package/dist/node/components/CartProvider/cart-queries.js +214 -0
- package/dist/node/components/CartProvider/constants.d.ts +2 -0
- package/dist/node/components/CartProvider/constants.js +5 -0
- package/dist/node/components/CartProvider/context.d.ts +2 -0
- package/dist/node/components/CartProvider/context.js +5 -0
- package/dist/node/components/CartProvider/graphql/CartAttributesUpdateMutation.d.ts +96 -0
- package/dist/node/components/CartProvider/graphql/CartAttributesUpdateMutation.js +2 -0
- package/dist/node/components/CartProvider/graphql/CartBuyerIdentityUpdateMutation.d.ts +96 -0
- package/dist/node/components/CartProvider/graphql/CartBuyerIdentityUpdateMutation.js +2 -0
- package/dist/node/components/CartProvider/graphql/CartCreateMutation.d.ts +95 -0
- package/dist/node/components/CartProvider/graphql/CartCreateMutation.js +2 -0
- package/dist/node/components/CartProvider/graphql/CartDiscountCodesUpdateMutation.d.ts +96 -0
- package/dist/node/components/CartProvider/graphql/CartDiscountCodesUpdateMutation.js +2 -0
- package/dist/node/components/CartProvider/graphql/CartFragment.d.ts +82 -0
- package/dist/node/components/CartProvider/graphql/CartFragment.js +2 -0
- package/dist/node/components/CartProvider/graphql/CartLineAddMutation.d.ts +96 -0
- package/dist/node/components/CartProvider/graphql/CartLineAddMutation.js +2 -0
- package/dist/node/components/CartProvider/graphql/CartLineRemoveMutation.d.ts +96 -0
- package/dist/node/components/CartProvider/graphql/CartLineRemoveMutation.js +2 -0
- package/dist/node/components/CartProvider/graphql/CartLineUpdateMutation.d.ts +96 -0
- package/dist/node/components/CartProvider/graphql/CartLineUpdateMutation.js +2 -0
- package/dist/node/components/CartProvider/graphql/CartNoteUpdateMutation.d.ts +96 -0
- package/dist/node/components/CartProvider/graphql/CartNoteUpdateMutation.js +2 -0
- package/dist/node/components/CartProvider/graphql/CartQuery.d.ts +91 -0
- package/dist/node/components/CartProvider/graphql/CartQuery.js +2 -0
- package/dist/node/components/CartProvider/hooks.client.d.ts +15 -0
- package/dist/node/components/CartProvider/hooks.client.js +88 -0
- package/dist/node/components/CartProvider/index.d.ts +4 -0
- package/dist/node/components/CartProvider/index.js +10 -0
- package/dist/node/components/CartProvider/types.d.ts +104 -0
- package/dist/node/components/CartProvider/types.js +2 -0
- package/dist/node/components/CartShopPayButton/CartShopPayButton.client.d.ts +9 -0
- package/dist/node/components/CartShopPayButton/CartShopPayButton.client.js +46 -0
- package/dist/node/components/CartShopPayButton/index.d.ts +1 -0
- package/dist/node/components/CartShopPayButton/index.js +5 -0
- package/dist/node/components/ExternalVideo/ExternalVideo.d.ts +21 -0
- package/dist/node/components/ExternalVideo/ExternalVideo.js +21 -0
- package/dist/node/components/ExternalVideo/index.d.ts +1 -0
- package/dist/node/components/ExternalVideo/index.js +5 -0
- package/dist/node/components/Image/Image.d.ts +8 -0
- package/dist/node/components/Image/Image.js +57 -9
- package/dist/node/components/Link/Link.client.d.ts +25 -0
- package/dist/node/components/Link/Link.client.js +165 -0
- package/dist/node/components/Link/index.d.ts +1 -0
- package/dist/node/components/Link/index.js +5 -0
- package/dist/node/components/LocalizationProvider/LocalizationClientProvider.client.d.ts +6 -0
- package/dist/node/components/LocalizationProvider/LocalizationClientProvider.client.js +11 -0
- package/dist/node/components/LocalizationProvider/LocalizationContext.client.d.ts +6 -0
- package/dist/node/components/LocalizationProvider/LocalizationContext.client.js +5 -0
- package/dist/node/components/LocalizationProvider/LocalizationProvider.server.d.ts +33 -0
- package/dist/node/components/LocalizationProvider/LocalizationProvider.server.js +51 -0
- package/dist/node/components/MediaFile/MediaFile.d.ts +19 -0
- package/dist/node/components/MediaFile/MediaFile.js +39 -0
- package/dist/node/components/MediaFile/index.d.ts +1 -0
- package/dist/node/components/MediaFile/index.js +5 -0
- package/dist/node/components/Metafield/Metafield.client.d.ts +21 -0
- package/dist/node/components/Metafield/Metafield.client.js +75 -0
- package/dist/node/components/Metafield/index.d.ts +2 -0
- package/dist/node/components/Metafield/index.js +5 -0
- package/dist/node/components/Metafield/types.d.ts +4 -0
- package/dist/node/components/Metafield/types.js +2 -0
- package/dist/node/components/ModelViewer/ModelViewer.client.d.ts +128 -0
- package/dist/node/components/ModelViewer/ModelViewer.client.js +132 -0
- package/dist/node/components/ModelViewer/index.d.ts +1 -0
- package/dist/node/components/ModelViewer/index.js +5 -0
- package/dist/node/components/Money/Money.client.d.ts +25 -0
- package/dist/node/components/Money/Money.client.js +46 -0
- package/dist/node/components/Money/index.d.ts +1 -0
- package/dist/node/components/Money/index.js +5 -0
- package/dist/node/components/ProductOptionsProvider/ProductOptionsProvider.client.d.ts +21 -0
- package/dist/node/components/ProductOptionsProvider/ProductOptionsProvider.client.js +168 -0
- package/dist/node/components/ProductOptionsProvider/context.d.ts +2 -0
- package/dist/node/components/ProductOptionsProvider/context.js +5 -0
- package/dist/node/components/ProductOptionsProvider/index.d.ts +2 -0
- package/dist/node/components/ProductOptionsProvider/index.js +7 -0
- package/dist/node/components/ProductPrice/ProductPrice.client.d.ts +18 -0
- package/dist/node/components/ProductPrice/ProductPrice.client.js +61 -0
- package/dist/node/components/ProductPrice/index.d.ts +1 -0
- package/dist/node/components/ProductPrice/index.js +5 -0
- package/dist/node/components/Seo/CollectionSeo.client.d.ts +3 -0
- package/dist/node/components/Seo/CollectionSeo.client.js +22 -0
- package/dist/node/components/Seo/DefaultPageSeo.client.d.ts +3 -0
- package/dist/node/components/Seo/DefaultPageSeo.client.js +25 -0
- package/dist/node/components/Seo/DescriptionSeo.client.d.ts +4 -0
- package/dist/node/components/Seo/DescriptionSeo.client.js +17 -0
- package/dist/node/components/Seo/HomePageSeo.client.d.ts +2 -0
- package/dist/node/components/Seo/HomePageSeo.client.js +32 -0
- package/dist/node/components/Seo/ImageSeo.client.d.ts +3 -0
- package/dist/node/components/Seo/ImageSeo.client.js +17 -0
- package/dist/node/components/Seo/NoIndexSeo.client.d.ts +3 -0
- package/dist/node/components/Seo/NoIndexSeo.client.js +17 -0
- package/dist/node/components/Seo/PageSeo.client.d.ts +3 -0
- package/dist/node/components/Seo/PageSeo.client.js +20 -0
- package/dist/node/components/Seo/ProductSeo.client.d.ts +5 -0
- package/dist/node/components/Seo/ProductSeo.client.js +70 -0
- package/dist/node/components/Seo/Seo.client.d.ts +30 -0
- package/dist/node/components/Seo/Seo.client.js +38 -0
- package/dist/node/components/Seo/TitleSeo.client.d.ts +3 -0
- package/dist/node/components/Seo/TitleSeo.client.js +17 -0
- package/dist/node/components/Seo/TwitterSeo.client.d.ts +2 -0
- package/dist/node/components/Seo/TwitterSeo.client.js +16 -0
- package/dist/node/components/Seo/index.d.ts +1 -0
- package/dist/node/components/Seo/index.js +5 -0
- package/dist/node/components/Seo/seo-types.d.ts +17 -0
- package/dist/node/components/Seo/seo-types.js +2 -0
- package/dist/node/components/ShopPayButton/ShopPayButton.client.d.ts +38 -0
- package/dist/node/components/ShopPayButton/ShopPayButton.client.js +60 -0
- package/dist/node/components/ShopPayButton/index.d.ts +1 -0
- package/dist/node/components/ShopPayButton/index.js +5 -0
- package/dist/node/components/Video/Video.d.ts +14 -0
- package/dist/node/components/Video/Video.js +31 -0
- package/dist/node/components/Video/index.d.ts +1 -0
- package/dist/node/components/Video/index.js +5 -0
- package/dist/node/components/index.d.ts +28 -0
- package/dist/node/components/index.js +59 -0
- package/dist/node/components/types.d.ts +71 -0
- package/dist/node/components/types.js +11 -0
- package/dist/node/entry-server.d.ts +2 -15
- package/dist/node/entry-server.js +245 -321
- package/dist/node/foundation/Analytics/Analytics.client.js +15 -13
- package/dist/node/foundation/Analytics/Analytics.server.js +27 -20
- package/dist/node/foundation/Analytics/ClientAnalytics.d.ts +4 -2
- package/dist/node/foundation/Analytics/ClientAnalytics.js +15 -13
- package/dist/node/foundation/Analytics/ServerAnalyticsRoute.server.js +7 -5
- package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetrics.client.d.ts +7 -0
- package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetrics.client.js +68 -0
- package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetricsDebug.client.d.ts +1 -0
- package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetricsDebug.client.js +27 -0
- package/dist/node/foundation/Analytics/hook.js +4 -2
- package/dist/node/foundation/Analytics/index.d.ts +1 -0
- package/dist/node/foundation/Analytics/index.js +5 -0
- package/dist/node/foundation/Analytics/utils.d.ts +2 -0
- package/dist/node/foundation/Analytics/utils.js +24 -1
- package/dist/{esnext/framework → node/foundation/Cache}/cache-sub-request.d.ts +1 -1
- package/dist/node/{framework → foundation/Cache}/cache-sub-request.js +4 -4
- package/dist/node/{framework → foundation/Cache}/cache.d.ts +1 -1
- package/dist/node/{framework → foundation/Cache}/cache.js +5 -5
- package/dist/{esnext/framework/CachingStrategy → node/foundation/Cache/strategies}/index.d.ts +2 -1
- package/dist/node/{framework/CachingStrategy → foundation/Cache/strategies}/index.js +3 -3
- package/dist/node/foundation/Head/Head.client.d.ts +5 -0
- package/dist/node/foundation/Head/Head.client.js +17 -0
- package/dist/node/foundation/Head/index.d.ts +1 -0
- package/dist/node/foundation/Head/index.js +5 -0
- package/dist/{esnext/framework/Hydration → node/foundation/Html}/Html.d.ts +3 -1
- package/dist/node/{framework/Hydration → foundation/Html}/Html.js +15 -2
- package/dist/{esnext/framework/Hydration/ServerComponentRequest.server.d.ts → node/foundation/HydrogenRequest/HydrogenRequest.server.d.ts} +8 -3
- package/dist/node/{framework/Hydration/ServerComponentRequest.server.js → foundation/HydrogenRequest/HydrogenRequest.server.js} +5 -4
- package/dist/{esnext/framework/Hydration/ServerComponentResponse.server.d.ts → node/foundation/HydrogenResponse/HydrogenResponse.server.d.ts} +7 -10
- package/dist/node/{framework/Hydration/ServerComponentResponse.server.js → foundation/HydrogenResponse/HydrogenResponse.server.js} +23 -19
- package/dist/node/foundation/Router/BrowserRouter.client.js +16 -9
- package/dist/node/foundation/ServerPropsProvider/ServerPropsProvider.d.ts +2 -1
- package/dist/node/foundation/ServerPropsProvider/ServerPropsProvider.js +1 -1
- package/dist/node/foundation/ServerRequestProvider/ServerRequestProvider.d.ts +5 -6
- package/dist/node/foundation/ServerRequestProvider/ServerRequestProvider.js +18 -21
- package/dist/node/foundation/ShopifyProvider/ShopifyProvider.client.d.ts +7 -0
- package/dist/node/foundation/ShopifyProvider/ShopifyProvider.client.js +35 -0
- package/dist/node/foundation/ShopifyProvider/index.d.ts +1 -0
- package/dist/node/foundation/ShopifyProvider/index.js +5 -0
- package/dist/node/foundation/fetchSync/client/fetchSync.d.ts +10 -0
- package/dist/node/foundation/fetchSync/client/fetchSync.js +33 -0
- package/dist/node/foundation/fetchSync/server/fetchSync.d.ts +8 -0
- package/dist/node/foundation/fetchSync/server/fetchSync.js +33 -0
- package/dist/node/foundation/fetchSync/types.d.ts +5 -0
- package/dist/node/foundation/fetchSync/types.js +2 -0
- package/dist/node/foundation/index.d.ts +3 -0
- package/dist/node/foundation/index.js +10 -0
- package/dist/node/foundation/runtime.d.ts +2 -0
- package/dist/node/foundation/runtime.js +11 -0
- package/dist/node/foundation/session/session.d.ts +3 -3
- package/dist/node/foundation/ssr-interop.d.ts +2 -2
- package/dist/node/foundation/useNavigate/useNavigate.d.ts +2 -0
- package/dist/node/foundation/useNavigate/useNavigate.js +11 -4
- package/dist/node/foundation/useQuery/hooks.d.ts +37 -0
- package/dist/node/foundation/useQuery/hooks.js +119 -0
- package/dist/node/foundation/useRouteParams/RouteParamsProvider.client.d.ts +10 -0
- package/dist/node/foundation/useRouteParams/RouteParamsProvider.client.js +34 -0
- package/dist/node/foundation/useRouteParams/useRouteParams.d.ts +4 -0
- package/dist/node/foundation/useRouteParams/useRouteParams.js +13 -0
- package/dist/node/foundation/useServerProps/index.d.ts +1 -0
- package/dist/node/foundation/useServerProps/index.js +5 -0
- package/dist/node/foundation/useSession/useSession.d.ts +2 -0
- package/dist/node/foundation/useSession/useSession.js +12 -0
- package/dist/node/foundation/useShop/index.d.ts +1 -0
- package/dist/node/foundation/useShop/index.js +5 -0
- package/dist/node/foundation/useShop/use-shop.d.ts +6 -0
- package/dist/node/foundation/useShop/use-shop.js +18 -0
- package/dist/node/foundation/useUrl/index.d.ts +1 -0
- package/dist/node/foundation/useUrl/index.js +5 -0
- package/dist/node/foundation/useUrl/useUrl.d.ts +4 -0
- package/dist/node/foundation/useUrl/useUrl.js +32 -0
- package/dist/node/framework/Hydration/rsc.js +2 -0
- package/dist/node/framework/plugin.js +2 -0
- package/dist/node/framework/plugins/vite-plugin-hydrogen-config.js +5 -2
- package/dist/node/framework/plugins/vite-plugin-hydrogen-middleware.js +1 -1
- package/dist/node/framework/plugins/vite-plugin-hydrogen-rsc.js +4 -12
- package/dist/node/framework/plugins/vite-plugin-hydrogen-suppress-warnings.d.ts +3 -0
- package/dist/node/framework/plugins/vite-plugin-hydrogen-suppress-warnings.js +21 -0
- package/dist/node/hooks/index.d.ts +6 -0
- package/dist/node/hooks/index.js +28 -0
- package/dist/node/hooks/useCart/index.d.ts +1 -0
- package/dist/node/hooks/useCart/index.js +5 -0
- package/dist/node/hooks/useCart/useCart.d.ts +4 -0
- package/dist/node/hooks/useCart/useCart.js +19 -0
- package/dist/node/hooks/useCartLine/index.d.ts +1 -0
- package/dist/node/hooks/useCartLine/index.js +5 -0
- package/dist/node/hooks/useCartLine/useCartLine.d.ts +39 -0
- package/dist/node/hooks/useCartLine/useCartLine.js +16 -0
- package/dist/node/hooks/useCountry/index.d.ts +1 -0
- package/dist/node/hooks/useCountry/index.js +5 -0
- package/dist/node/hooks/useCountry/useCountry.d.ts +7 -0
- package/dist/node/hooks/useCountry/useCountry.js +21 -0
- package/dist/node/hooks/useLoadScript/index.d.ts +1 -0
- package/dist/node/hooks/useLoadScript/index.js +5 -0
- package/dist/node/hooks/useLoadScript/useLoadScript.client.d.ts +8 -0
- package/dist/node/hooks/useLoadScript/useLoadScript.client.js +27 -0
- package/dist/node/hooks/useMeasurement/hooks.d.ts +9 -0
- package/dist/node/hooks/useMeasurement/hooks.js +17 -0
- package/dist/node/hooks/useMeasurement/index.d.ts +1 -0
- package/dist/node/hooks/useMeasurement/index.js +5 -0
- package/dist/node/hooks/useMoney/hooks.d.ts +54 -0
- package/dist/node/hooks/useMoney/hooks.js +70 -0
- package/dist/node/hooks/useMoney/index.d.ts +1 -0
- package/dist/node/hooks/useMoney/index.js +5 -0
- package/dist/node/hooks/useParsedMetafields/index.d.ts +1 -0
- package/dist/node/hooks/useParsedMetafields/index.js +5 -0
- package/dist/node/hooks/useParsedMetafields/useParsedMetafields.d.ts +21 -0
- package/dist/node/hooks/useParsedMetafields/useParsedMetafields.js +25 -0
- package/dist/node/hooks/useProductOptions/helpers.d.ts +6 -0
- package/dist/node/hooks/useProductOptions/helpers.js +46 -0
- package/dist/node/hooks/useProductOptions/index.d.ts +2 -0
- package/dist/node/hooks/useProductOptions/index.js +20 -0
- package/dist/node/hooks/useProductOptions/types.d.ts +44 -0
- package/dist/node/hooks/useProductOptions/types.js +2 -0
- package/dist/node/hooks/useProductOptions/useProductOptions.client.d.ts +1 -0
- package/dist/node/hooks/useProductOptions/useProductOptions.client.js +13 -0
- package/dist/node/hooks/useShopQuery/hooks.d.ts +28 -0
- package/dist/node/hooks/useShopQuery/hooks.js +171 -0
- package/dist/node/hooks/useShopQuery/index.d.ts +1 -0
- package/dist/node/hooks/useShopQuery/index.js +5 -0
- package/dist/node/storefront-api-types.d.ts +10 -339
- package/dist/node/streaming.server.d.ts +0 -1
- package/dist/node/streaming.server.js +1 -6
- package/dist/node/types.d.ts +32 -23
- package/dist/node/utilities/apiRoutes.d.ts +2 -2
- package/dist/node/utilities/devtools.d.ts +11 -0
- package/dist/node/utilities/devtools.js +15 -0
- package/dist/node/utilities/graphql-tag.d.ts +1 -0
- package/dist/node/utilities/graphql-tag.js +10 -0
- package/dist/node/utilities/graphql-tracker.d.ts +17 -0
- package/dist/node/utilities/graphql-tracker.js +130 -0
- package/dist/node/utilities/index.d.ts +1 -1
- package/dist/node/utilities/index.js +3 -3
- package/dist/node/utilities/isBrowser/index.d.ts +1 -0
- package/dist/node/utilities/isBrowser/index.js +5 -0
- package/dist/node/utilities/isBrowser/isBrowser.d.ts +4 -0
- package/dist/node/utilities/isBrowser/isBrowser.js +10 -0
- package/dist/node/utilities/isServer/isServer.js +2 -2
- package/dist/node/utilities/log/index.d.ts +1 -1
- package/dist/node/utilities/log/index.js +1 -3
- package/dist/node/utilities/log/log-cache-header.d.ts +4 -4
- package/dist/node/utilities/log/log-query-timeline.d.ts +3 -3
- package/dist/node/utilities/log/log.d.ts +17 -11
- package/dist/node/utilities/log/log.js +30 -23
- package/dist/node/version.d.ts +1 -1
- package/dist/node/version.js +1 -1
- package/package.json +4 -2
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-plugin.js +234 -53
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.browser.development.server.js +77 -59
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.browser.production.min.server.js +30 -30
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.node.development.server.js +199 -70
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.node.production.min.server.js +38 -35
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite.development.js +9 -8
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite.production.min.js +3 -3
- package/vendor/react-server-dom-vite/esm/react-server-dom-vite-client-proxy.js +3 -7
- package/vendor/react-server-dom-vite/esm/react-server-dom-vite-plugin.js +235 -54
- package/vendor/react-server-dom-vite/esm/react-server-dom-vite-writer.browser.server.js +77 -59
- package/vendor/react-server-dom-vite/esm/react-server-dom-vite-writer.node.server.js +199 -70
- package/vendor/react-server-dom-vite/esm/react-server-dom-vite.js +9 -8
- package/vendor/react-server-dom-vite/package.json +1 -1
- package/dist/esnext/components/ProductProvider/ProductOptionsProvider.client.d.ts +0 -8
- package/dist/esnext/components/ProductProvider/ProductOptionsProvider.client.js +0 -12
- package/dist/esnext/components/ProductProvider/ProductProvider.client.d.ts +0 -24
- package/dist/esnext/components/ProductProvider/ProductProvider.client.js +0 -34
- package/dist/esnext/components/ProductProvider/context.d.ts +0 -29
- package/dist/esnext/components/ProductProvider/index.d.ts +0 -2
- package/dist/esnext/components/ProductProvider/index.js +0 -2
- package/dist/esnext/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetrics.server.d.ts +0 -1
- package/dist/esnext/framework/config.d.ts +0 -6
- package/dist/esnext/framework/config.js +0 -6
- package/dist/esnext/framework/runtime.d.ts +0 -13
- package/dist/esnext/framework/runtime.js +0 -27
- package/dist/esnext/hooks/useProduct/index.d.ts +0 -1
- package/dist/esnext/hooks/useProduct/index.js +0 -1
- package/dist/esnext/hooks/useProduct/useProduct.d.ts +0 -52
- package/dist/esnext/hooks/useProduct/useProduct.js +0 -43
- package/dist/esnext/utilities/isClient/index.d.ts +0 -1
- package/dist/esnext/utilities/isClient/index.js +0 -1
- package/dist/esnext/utilities/isClient/isClient.d.ts +0 -4
- package/dist/esnext/utilities/isClient/isClient.js +0 -6
- package/dist/node/framework/config.d.ts +0 -6
- package/dist/node/framework/config.js +0 -11
- package/dist/node/framework/runtime.d.ts +0 -13
- package/dist/node/framework/runtime.js +0 -35
- package/dist/node/utilities/defer.d.ts +0 -6
- package/dist/node/utilities/defer.js +0 -18
- package/dist/node/utilities/isClient/index.d.ts +0 -1
- package/dist/node/utilities/isClient/index.js +0 -5
- package/dist/node/utilities/isClient/isClient.d.ts +0 -4
- package/dist/node/utilities/isClient/isClient.js +0 -10
|
@@ -0,0 +1,132 @@
|
|
|
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.ModelViewer = void 0;
|
|
27
|
+
const react_1 = __importStar(require("react"));
|
|
28
|
+
const useLoadScript_client_1 = require("../../hooks/useLoadScript/useLoadScript.client");
|
|
29
|
+
/**
|
|
30
|
+
* The `ModelViewer` component renders a 3D model (with the `model-viewer` tag) for
|
|
31
|
+
* the Storefront API's [Model3d object](https://shopify.dev/api/storefront/reference/products/model3d).
|
|
32
|
+
*/
|
|
33
|
+
function ModelViewer(props) {
|
|
34
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
35
|
+
const [modelViewer, setModelViewer] = (0, react_1.useState)(undefined);
|
|
36
|
+
const callbackRef = (0, react_1.useCallback)((node) => {
|
|
37
|
+
setModelViewer(node);
|
|
38
|
+
}, []);
|
|
39
|
+
const { data, id = data.id, children, className, ...passthroughProps } = props;
|
|
40
|
+
const modelViewerLoadedStatus = (0, useLoadScript_client_1.useLoadScript)('https://unpkg.com/@google/model-viewer@v1.8.0/dist/model-viewer.min.js', {
|
|
41
|
+
module: true,
|
|
42
|
+
});
|
|
43
|
+
(0, react_1.useEffect)(() => {
|
|
44
|
+
if (modelViewer == null) {
|
|
45
|
+
return;
|
|
46
|
+
}
|
|
47
|
+
if (passthroughProps.onError)
|
|
48
|
+
modelViewer.addEventListener('error', passthroughProps.onError);
|
|
49
|
+
if (passthroughProps.onLoad)
|
|
50
|
+
modelViewer.addEventListener('load', passthroughProps.onLoad);
|
|
51
|
+
if (passthroughProps.onPreload)
|
|
52
|
+
modelViewer.addEventListener('preload', passthroughProps.onPreload);
|
|
53
|
+
if (passthroughProps.onModelVisibility)
|
|
54
|
+
modelViewer.addEventListener('model-visibility', passthroughProps.onModelVisibility);
|
|
55
|
+
if (passthroughProps.onProgress)
|
|
56
|
+
modelViewer.addEventListener('progress', passthroughProps.onProgress);
|
|
57
|
+
if (passthroughProps.onArStatus)
|
|
58
|
+
modelViewer.addEventListener('ar-status', passthroughProps.onArStatus);
|
|
59
|
+
if (passthroughProps.onArTracking)
|
|
60
|
+
modelViewer.addEventListener('ar-tracking', passthroughProps.onArTracking);
|
|
61
|
+
if (passthroughProps.onQuickLookButtonTapped)
|
|
62
|
+
modelViewer.addEventListener('quick-look-button-tapped', passthroughProps.onQuickLookButtonTapped);
|
|
63
|
+
if (passthroughProps.onCameraChange)
|
|
64
|
+
modelViewer.addEventListener('camera-change', passthroughProps.onCameraChange);
|
|
65
|
+
if (passthroughProps.onEnvironmentChange)
|
|
66
|
+
modelViewer.addEventListener('environment-change', passthroughProps.onEnvironmentChange);
|
|
67
|
+
if (passthroughProps.onPlay)
|
|
68
|
+
modelViewer.addEventListener('play', passthroughProps.onPlay);
|
|
69
|
+
if (passthroughProps.onPause)
|
|
70
|
+
modelViewer.addEventListener('ar-status', passthroughProps.onPause);
|
|
71
|
+
if (passthroughProps.onSceneGraphReady)
|
|
72
|
+
modelViewer.addEventListener('scene-graph-ready', passthroughProps.onSceneGraphReady);
|
|
73
|
+
return () => {
|
|
74
|
+
if (modelViewer == null) {
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
if (passthroughProps.onError)
|
|
78
|
+
modelViewer.removeEventListener('error', passthroughProps.onError);
|
|
79
|
+
if (passthroughProps.onLoad)
|
|
80
|
+
modelViewer.removeEventListener('load', passthroughProps.onLoad);
|
|
81
|
+
if (passthroughProps.onPreload)
|
|
82
|
+
modelViewer.removeEventListener('preload', passthroughProps.onPreload);
|
|
83
|
+
if (passthroughProps.onModelVisibility)
|
|
84
|
+
modelViewer.removeEventListener('model-visibility', passthroughProps.onModelVisibility);
|
|
85
|
+
if (passthroughProps.onProgress)
|
|
86
|
+
modelViewer.removeEventListener('progress', passthroughProps.onProgress);
|
|
87
|
+
if (passthroughProps.onArStatus)
|
|
88
|
+
modelViewer.removeEventListener('ar-status', passthroughProps.onArStatus);
|
|
89
|
+
if (passthroughProps.onArTracking)
|
|
90
|
+
modelViewer.removeEventListener('ar-tracking', passthroughProps.onArTracking);
|
|
91
|
+
if (passthroughProps.onQuickLookButtonTapped)
|
|
92
|
+
modelViewer.removeEventListener('quick-look-button-tapped', passthroughProps.onQuickLookButtonTapped);
|
|
93
|
+
if (passthroughProps.onCameraChange)
|
|
94
|
+
modelViewer.removeEventListener('camera-change', passthroughProps.onCameraChange);
|
|
95
|
+
if (passthroughProps.onEnvironmentChange)
|
|
96
|
+
modelViewer.removeEventListener('environment-change', passthroughProps.onEnvironmentChange);
|
|
97
|
+
if (passthroughProps.onPlay)
|
|
98
|
+
modelViewer.removeEventListener('play', passthroughProps.onPlay);
|
|
99
|
+
if (passthroughProps.onPause)
|
|
100
|
+
modelViewer.removeEventListener('ar-status', passthroughProps.onPause);
|
|
101
|
+
if (passthroughProps.onSceneGraphReady)
|
|
102
|
+
modelViewer.removeEventListener('scene-graph-ready', passthroughProps.onSceneGraphReady);
|
|
103
|
+
};
|
|
104
|
+
}, [
|
|
105
|
+
modelViewer,
|
|
106
|
+
passthroughProps.onArStatus,
|
|
107
|
+
passthroughProps.onArTracking,
|
|
108
|
+
passthroughProps.onCameraChange,
|
|
109
|
+
passthroughProps.onEnvironmentChange,
|
|
110
|
+
passthroughProps.onError,
|
|
111
|
+
passthroughProps.onLoad,
|
|
112
|
+
passthroughProps.onModelVisibility,
|
|
113
|
+
passthroughProps.onPause,
|
|
114
|
+
passthroughProps.onPlay,
|
|
115
|
+
passthroughProps.onPreload,
|
|
116
|
+
passthroughProps.onProgress,
|
|
117
|
+
passthroughProps.onQuickLookButtonTapped,
|
|
118
|
+
passthroughProps.onSceneGraphReady,
|
|
119
|
+
]);
|
|
120
|
+
if (modelViewerLoadedStatus !== 'done') {
|
|
121
|
+
// TODO: What do we want to display while the model-viewer library loads?
|
|
122
|
+
return null;
|
|
123
|
+
}
|
|
124
|
+
if (!((_b = (_a = data.sources) === null || _a === void 0 ? void 0 : _a[0]) === null || _b === void 0 ? void 0 : _b.url)) {
|
|
125
|
+
throw new Error(`<ModelViewer/> requires 'data.sources' prop to be an array, with an object that has a property 'url' on it`);
|
|
126
|
+
}
|
|
127
|
+
if (!data.alt) {
|
|
128
|
+
console.warn(`<ModelViewer/> requires the 'data.alt' prop for accessibility`);
|
|
129
|
+
}
|
|
130
|
+
return (react_1.default.createElement("model-viewer", { ref: callbackRef, ...passthroughProps, class: className, id: id, src: data.sources[0].url, alt: data.alt, "camera-controls": (_c = passthroughProps.cameraControls) !== null && _c !== void 0 ? _c : true, poster: passthroughProps.poster || ((_d = data.previewImage) === null || _d === void 0 ? void 0 : _d.url), autoplay: (_e = passthroughProps.autoplay) !== null && _e !== void 0 ? _e : true, loading: passthroughProps.loading, reveal: passthroughProps.reveal, ar: passthroughProps.ar, "ar-modes": passthroughProps.arModes, "ar-scale": passthroughProps.arScale, "ar-placement": passthroughProps.arPlacement, "ios-src": passthroughProps.iosSrc, "touch-action": passthroughProps.touchAction, "disable-zoom": passthroughProps.disableZoom, "orbit-sensitivity": passthroughProps.orbitSensitivity, "auto-rotate": passthroughProps.autoRotate, "auto-rotate-delay": passthroughProps.autoRotateDelay, "rotation-per-second": passthroughProps.rotationPerSecond, "interaction-policy": passthroughProps.interactionPolicy, "interaction-prompt": passthroughProps.interactionPrompt, "interaction-prompt-style": passthroughProps.interactionPromptStyle, "interaction-prompt-threshold": passthroughProps.interactionPromptThreshold, "camera-orbit": passthroughProps.cameraOrbit, "camera-target": passthroughProps.cameraTarget, "field-of-view": passthroughProps.fieldOfView, "max-camera-orbit": passthroughProps.maxCameraOrbit, "min-camera-orbit": passthroughProps.minCameraOrbit, "max-field-of-view": passthroughProps.maxFieldOfView, "min-field-of-view": passthroughProps.minFieldOfView, bounds: passthroughProps.bounds, "interpolation-decay": (_f = passthroughProps.interpolationDecay) !== null && _f !== void 0 ? _f : 100, "skybox-image": passthroughProps.skyboxImage, "environment-image": passthroughProps.environmentImage, exposure: passthroughProps.exposure, "shadow-intensity": (_g = passthroughProps.shadowIntensity) !== null && _g !== void 0 ? _g : 0, "shadow-softness": (_h = passthroughProps.shadowSoftness) !== null && _h !== void 0 ? _h : 0, "animation-name": passthroughProps.animationName, "animation-crossfade-duration": passthroughProps.animationCrossfadeDuration, "variant-name": passthroughProps.variantName, orientation: passthroughProps.orientation, scale: passthroughProps.scale }, children));
|
|
131
|
+
}
|
|
132
|
+
exports.ModelViewer = ModelViewer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ModelViewer } from './ModelViewer.client';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ModelViewer = void 0;
|
|
4
|
+
var ModelViewer_client_1 = require("./ModelViewer.client");
|
|
5
|
+
Object.defineProperty(exports, "ModelViewer", { enumerable: true, get: function () { return ModelViewer_client_1.ModelViewer; } });
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React, { type ReactNode } from 'react';
|
|
2
|
+
import type { MoneyV2, UnitPriceMeasurement } from '../../storefront-api-types';
|
|
3
|
+
import type { PartialDeep } from 'type-fest';
|
|
4
|
+
interface CustomProps<ComponentGeneric extends React.ElementType> {
|
|
5
|
+
/** An HTML tag or React Component to be rendered as the base element wrapper. The default is `div`. */
|
|
6
|
+
as?: ComponentGeneric;
|
|
7
|
+
/** An object with fields that correspond to the Storefront API's [MoneyV2 object](https://shopify.dev/api/storefront/reference/common-objects/moneyv2). */
|
|
8
|
+
data: PartialDeep<MoneyV2>;
|
|
9
|
+
/** Whether to remove the currency symbol from the output. */
|
|
10
|
+
withoutCurrency?: boolean;
|
|
11
|
+
/** Whether to remove trailing zeros (fractional money) from the output. */
|
|
12
|
+
withoutTrailingZeros?: boolean;
|
|
13
|
+
/** A [UnitPriceMeasurement object](https://shopify.dev/api/storefront/latest/objects/unitpricemeasurement). */
|
|
14
|
+
measurement?: PartialDeep<UnitPriceMeasurement>;
|
|
15
|
+
/** Customizes the separator between the money output and the measurement output. Used with the `measurement` prop. Defaults to `'/'`. */
|
|
16
|
+
measurementSeparator?: ReactNode;
|
|
17
|
+
}
|
|
18
|
+
declare type MoneyProps<ComponentGeneric extends React.ElementType> = CustomProps<ComponentGeneric> & Omit<React.ComponentPropsWithoutRef<ComponentGeneric>, keyof CustomProps<ComponentGeneric>>;
|
|
19
|
+
/**
|
|
20
|
+
* The `Money` component renders a string of the Storefront API's
|
|
21
|
+
* [MoneyV2 object](https://shopify.dev/api/storefront/reference/common-objects/moneyv2) according to the
|
|
22
|
+
* `defaultLocale` in [the `hydrogen.config.js` file](https://shopify.dev/custom-storefronts/hydrogen/framework/hydrogen-config).
|
|
23
|
+
*/
|
|
24
|
+
export declare function Money<TTag extends React.ElementType>({ data, as, withoutCurrency, withoutTrailingZeros, measurement, measurementSeparator, ...passthroughProps }: MoneyProps<TTag>): JSX.Element;
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,46 @@
|
|
|
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.Money = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const hooks_1 = require("../../hooks");
|
|
9
|
+
/**
|
|
10
|
+
* The `Money` component renders a string of the Storefront API's
|
|
11
|
+
* [MoneyV2 object](https://shopify.dev/api/storefront/reference/common-objects/moneyv2) according to the
|
|
12
|
+
* `defaultLocale` in [the `hydrogen.config.js` file](https://shopify.dev/custom-storefronts/hydrogen/framework/hydrogen-config).
|
|
13
|
+
*/
|
|
14
|
+
function Money({ data, as, withoutCurrency, withoutTrailingZeros, measurement, measurementSeparator = '/', ...passthroughProps }) {
|
|
15
|
+
if (!isMoney(data)) {
|
|
16
|
+
throw new Error(`<Money/> needs a valid 'data' prop that has 'amount' and 'currencyCode'`);
|
|
17
|
+
}
|
|
18
|
+
const moneyObject = (0, hooks_1.useMoney)(data);
|
|
19
|
+
const Wrapper = as !== null && as !== void 0 ? as : 'div';
|
|
20
|
+
let output = moneyObject.localizedString;
|
|
21
|
+
if (withoutCurrency || withoutTrailingZeros) {
|
|
22
|
+
if (withoutCurrency && !withoutTrailingZeros) {
|
|
23
|
+
output = moneyObject.amount;
|
|
24
|
+
}
|
|
25
|
+
else if (!withoutCurrency && withoutTrailingZeros) {
|
|
26
|
+
output = moneyObject.withoutTrailingZeros;
|
|
27
|
+
}
|
|
28
|
+
else {
|
|
29
|
+
// both
|
|
30
|
+
output = moneyObject.withoutTrailingZerosAndCurrency;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
return (react_1.default.createElement(Wrapper, { ...passthroughProps },
|
|
34
|
+
output,
|
|
35
|
+
measurement && measurement.referenceUnit && (react_1.default.createElement(react_1.default.Fragment, null,
|
|
36
|
+
measurementSeparator,
|
|
37
|
+
measurement.referenceUnit))));
|
|
38
|
+
}
|
|
39
|
+
exports.Money = Money;
|
|
40
|
+
// required in order to narrow the money object down and make TS happy
|
|
41
|
+
function isMoney(maybeMoney) {
|
|
42
|
+
return (typeof maybeMoney.amount === 'string' &&
|
|
43
|
+
!!maybeMoney.amount &&
|
|
44
|
+
typeof maybeMoney.currencyCode === 'string' &&
|
|
45
|
+
!!maybeMoney.currencyCode);
|
|
46
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Money } from './Money.client';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { Product, ProductVariant as ProductVariantType } from '../../storefront-api-types';
|
|
3
|
+
import type { PartialDeep } from 'type-fest';
|
|
4
|
+
declare type InitialVariantId = ProductVariantType['id'] | null;
|
|
5
|
+
interface ProductOptionsProviderProps {
|
|
6
|
+
/** A [Product object](https://shopify.dev/api/storefront/reference/products/product). */
|
|
7
|
+
data: PartialDeep<Product>;
|
|
8
|
+
/** A `ReactNode` element. */
|
|
9
|
+
children: React.ReactNode;
|
|
10
|
+
/**
|
|
11
|
+
* The initially selected variant.
|
|
12
|
+
* The following logic applies to `initialVariantId`:
|
|
13
|
+
* 1. If `initialVariantId` is provided, then it's used even if it's out of stock.
|
|
14
|
+
* 2. If `initialVariantId` is provided but is `null`, then no variant is used.
|
|
15
|
+
* 3. If nothing is passed to `initialVariantId` then the first available / in-stock variant is used.
|
|
16
|
+
* 4. If nothing is passed to `initialVariantId` and no variants are in stock, then the first variant is used.
|
|
17
|
+
*/
|
|
18
|
+
initialVariantId?: InitialVariantId;
|
|
19
|
+
}
|
|
20
|
+
export declare function ProductOptionsProvider({ children, data: product, initialVariantId: explicitVariantId, }: ProductOptionsProviderProps): JSX.Element;
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,168 @@
|
|
|
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.ProductOptionsProvider = void 0;
|
|
27
|
+
const react_1 = __importStar(require("react"));
|
|
28
|
+
const context_1 = require("./context");
|
|
29
|
+
const helpers_1 = require("../../hooks/useProductOptions/helpers");
|
|
30
|
+
function ProductOptionsProvider({ children, data: product, initialVariantId: explicitVariantId, }) {
|
|
31
|
+
var _a, _b;
|
|
32
|
+
// The flattened variants
|
|
33
|
+
const variants = (0, react_1.useMemo)(() => { var _a; return (_a = product.variants) === null || _a === void 0 ? void 0 : _a.nodes; }, [(_a = product.variants) === null || _a === void 0 ? void 0 : _a.nodes]);
|
|
34
|
+
if (!isProductVariantArray(variants)) {
|
|
35
|
+
throw new Error(`<ProductOptionsProvider/> requires product.variants.nodes`);
|
|
36
|
+
}
|
|
37
|
+
// All the options available for a product, based on all the variants
|
|
38
|
+
const options = (0, react_1.useMemo)(() => (0, helpers_1.getOptions)(variants), [variants]);
|
|
39
|
+
/**
|
|
40
|
+
* Track the selectedVariant within the provider.
|
|
41
|
+
*/
|
|
42
|
+
const [selectedVariant, setSelectedVariant] = (0, react_1.useState)(() => getVariantBasedOnIdProp(explicitVariantId, variants));
|
|
43
|
+
/**
|
|
44
|
+
* Track the selectedOptions within the provider. If a `initialVariantId`
|
|
45
|
+
* is passed, use that to select initial options.
|
|
46
|
+
*/
|
|
47
|
+
const [selectedOptions, setSelectedOptions] = (0, react_1.useState)(() => getSelectedOptions(selectedVariant));
|
|
48
|
+
/**
|
|
49
|
+
* When the initialVariantId changes, we need to make sure we
|
|
50
|
+
* update the selected variant and selected options. If not,
|
|
51
|
+
* then the selected variant and options will reference incorrect
|
|
52
|
+
* values.
|
|
53
|
+
*/
|
|
54
|
+
(0, react_1.useEffect)(() => {
|
|
55
|
+
const newSelectedVariant = getVariantBasedOnIdProp(explicitVariantId, variants);
|
|
56
|
+
setSelectedVariant(newSelectedVariant);
|
|
57
|
+
setSelectedOptions(getSelectedOptions(newSelectedVariant));
|
|
58
|
+
}, [explicitVariantId, variants]);
|
|
59
|
+
/**
|
|
60
|
+
* Allow the developer to select an option.
|
|
61
|
+
*/
|
|
62
|
+
const setSelectedOption = (0, react_1.useCallback)((name, value) => {
|
|
63
|
+
setSelectedOptions((selectedOptions) => {
|
|
64
|
+
const opts = { ...selectedOptions, [name]: value };
|
|
65
|
+
setSelectedVariant((0, helpers_1.getSelectedVariant)(variants, opts));
|
|
66
|
+
return opts;
|
|
67
|
+
});
|
|
68
|
+
}, [setSelectedOptions, variants]);
|
|
69
|
+
const isOptionInStock = (0, react_1.useCallback)((option, value) => {
|
|
70
|
+
var _a;
|
|
71
|
+
const proposedVariant = (0, helpers_1.getSelectedVariant)(variants, {
|
|
72
|
+
...selectedOptions,
|
|
73
|
+
...{ [option]: value },
|
|
74
|
+
});
|
|
75
|
+
return (_a = proposedVariant === null || proposedVariant === void 0 ? void 0 : proposedVariant.availableForSale) !== null && _a !== void 0 ? _a : true;
|
|
76
|
+
}, [selectedOptions, variants]);
|
|
77
|
+
const sellingPlanGroups = (0, react_1.useMemo)(() => {
|
|
78
|
+
var _a, _b;
|
|
79
|
+
return (_b = (_a = product.sellingPlanGroups) === null || _a === void 0 ? void 0 : _a.nodes) === null || _b === void 0 ? void 0 : _b.map((sellingPlanGroup) => {
|
|
80
|
+
var _a, _b;
|
|
81
|
+
return ({
|
|
82
|
+
...sellingPlanGroup,
|
|
83
|
+
sellingPlans: (_b = (_a = sellingPlanGroup === null || sellingPlanGroup === void 0 ? void 0 : sellingPlanGroup.sellingPlans) === null || _a === void 0 ? void 0 : _a.nodes) !== null && _b !== void 0 ? _b : [],
|
|
84
|
+
});
|
|
85
|
+
});
|
|
86
|
+
}, [(_b = product.sellingPlanGroups) === null || _b === void 0 ? void 0 : _b.nodes]);
|
|
87
|
+
/**
|
|
88
|
+
* Track the selectedSellingPlan within the hook. If `initialSellingPlanId`
|
|
89
|
+
* is passed, use that as an initial value. Look it up from the `selectedVariant`, since
|
|
90
|
+
* that is also a requirement.
|
|
91
|
+
*/
|
|
92
|
+
const [selectedSellingPlan, setSelectedSellingPlan] = (0, react_1.useState)(undefined);
|
|
93
|
+
const selectedSellingPlanAllocation = (0, react_1.useMemo)(() => {
|
|
94
|
+
var _a, _b;
|
|
95
|
+
if (!selectedVariant || !selectedSellingPlan) {
|
|
96
|
+
return;
|
|
97
|
+
}
|
|
98
|
+
if (!((_a = selectedVariant.sellingPlanAllocations) === null || _a === void 0 ? void 0 : _a.nodes)) {
|
|
99
|
+
throw new Error(`<ProductOptionsProvider/>: You must include 'sellingPlanAllocations.nodes' in your variants in order to calculate selectedSellingPlanAllocation`);
|
|
100
|
+
}
|
|
101
|
+
return (_b = selectedVariant.sellingPlanAllocations.nodes) === null || _b === void 0 ? void 0 : _b.find((allocation) => { var _a; return ((_a = allocation === null || allocation === void 0 ? void 0 : allocation.sellingPlan) === null || _a === void 0 ? void 0 : _a.id) === selectedSellingPlan.id; });
|
|
102
|
+
}, [selectedVariant, selectedSellingPlan]);
|
|
103
|
+
const value = (0, react_1.useMemo)(() => ({
|
|
104
|
+
variants,
|
|
105
|
+
variantsConnection: product.variants,
|
|
106
|
+
options,
|
|
107
|
+
selectedVariant,
|
|
108
|
+
setSelectedVariant,
|
|
109
|
+
selectedOptions,
|
|
110
|
+
setSelectedOption,
|
|
111
|
+
setSelectedOptions,
|
|
112
|
+
isOptionInStock,
|
|
113
|
+
selectedSellingPlan,
|
|
114
|
+
setSelectedSellingPlan,
|
|
115
|
+
selectedSellingPlanAllocation,
|
|
116
|
+
sellingPlanGroups,
|
|
117
|
+
sellingPlanGroupsConnection: product.sellingPlanGroups,
|
|
118
|
+
}), [
|
|
119
|
+
isOptionInStock,
|
|
120
|
+
options,
|
|
121
|
+
product.sellingPlanGroups,
|
|
122
|
+
product.variants,
|
|
123
|
+
selectedOptions,
|
|
124
|
+
selectedSellingPlan,
|
|
125
|
+
selectedSellingPlanAllocation,
|
|
126
|
+
selectedVariant,
|
|
127
|
+
sellingPlanGroups,
|
|
128
|
+
setSelectedOption,
|
|
129
|
+
variants,
|
|
130
|
+
]);
|
|
131
|
+
return (react_1.default.createElement(context_1.ProductOptionsContext.Provider, { value: value }, children));
|
|
132
|
+
}
|
|
133
|
+
exports.ProductOptionsProvider = ProductOptionsProvider;
|
|
134
|
+
function getVariantBasedOnIdProp(explicitVariantId, variants) {
|
|
135
|
+
// get the initial variant based on the logic outlined in the comments for 'initialVariantId' above
|
|
136
|
+
// * 1. If `initialVariantId` is provided, then it's used even if it's out of stock.
|
|
137
|
+
if (explicitVariantId) {
|
|
138
|
+
const foundVariant = variants.find((variant) => (variant === null || variant === void 0 ? void 0 : variant.id) === explicitVariantId);
|
|
139
|
+
if (!foundVariant) {
|
|
140
|
+
console.warn(`<ProductOptionsProvider/> received a 'initialVariantId' prop, but could not actually find a variant with that ID`);
|
|
141
|
+
}
|
|
142
|
+
return foundVariant;
|
|
143
|
+
}
|
|
144
|
+
// * 2. If `initialVariantId` is provided but is `null`, then no variant is used.
|
|
145
|
+
if (explicitVariantId === null) {
|
|
146
|
+
return null;
|
|
147
|
+
}
|
|
148
|
+
// * 3. If nothing is passed to `initialVariantId` then the first available / in-stock variant is used.
|
|
149
|
+
// * 4. If nothing is passed to `initialVariantId` and no variants are in stock, then the first variant is used.
|
|
150
|
+
if (explicitVariantId === undefined) {
|
|
151
|
+
return variants.find((variant) => variant === null || variant === void 0 ? void 0 : variant.availableForSale) || variants[0];
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
function getSelectedOptions(selectedVariant) {
|
|
155
|
+
return (selectedVariant === null || selectedVariant === void 0 ? void 0 : selectedVariant.selectedOptions)
|
|
156
|
+
? selectedVariant.selectedOptions.reduce((memo, optionSet) => {
|
|
157
|
+
var _a, _b;
|
|
158
|
+
memo[(_a = optionSet === null || optionSet === void 0 ? void 0 : optionSet.name) !== null && _a !== void 0 ? _a : ''] = (_b = optionSet === null || optionSet === void 0 ? void 0 : optionSet.value) !== null && _b !== void 0 ? _b : '';
|
|
159
|
+
return memo;
|
|
160
|
+
}, {})
|
|
161
|
+
: {};
|
|
162
|
+
}
|
|
163
|
+
function isProductVariantArray(maybeVariantArray) {
|
|
164
|
+
if (!maybeVariantArray || !Array.isArray(maybeVariantArray)) {
|
|
165
|
+
return false;
|
|
166
|
+
}
|
|
167
|
+
return true;
|
|
168
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useProductOptions = exports.ProductOptionsProvider = void 0;
|
|
4
|
+
var ProductOptionsProvider_client_1 = require("./ProductOptionsProvider.client");
|
|
5
|
+
Object.defineProperty(exports, "ProductOptionsProvider", { enumerable: true, get: function () { return ProductOptionsProvider_client_1.ProductOptionsProvider; } });
|
|
6
|
+
var useProductOptions_client_1 = require("../../hooks/useProductOptions/useProductOptions.client");
|
|
7
|
+
Object.defineProperty(exports, "useProductOptions", { enumerable: true, get: function () { return useProductOptions_client_1.useProductOptions; } });
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { Product } from '../../storefront-api-types';
|
|
3
|
+
import { Money } from '../Money';
|
|
4
|
+
import type { PartialDeep } from 'type-fest';
|
|
5
|
+
export interface ProductPriceProps {
|
|
6
|
+
data: PartialDeep<Product>;
|
|
7
|
+
/** The type of price. Valid values: `regular` (default) or `compareAt`. */
|
|
8
|
+
priceType?: 'regular' | 'compareAt';
|
|
9
|
+
/** The type of value. Valid values: `min` (default), `max` or `unit`. */
|
|
10
|
+
valueType?: 'max' | 'min' | 'unit';
|
|
11
|
+
/** The ID of the variant. */
|
|
12
|
+
variantId?: string;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* The `ProductPrice` component renders a `Money` component with the product
|
|
16
|
+
* [`priceRange`](https://shopify.dev/api/storefront/reference/products/productpricerange)'s `maxVariantPrice` or `minVariantPrice`, for either the regular price or compare at price range.
|
|
17
|
+
*/
|
|
18
|
+
export declare function ProductPrice(props: Omit<React.ComponentProps<typeof Money>, 'data' | 'measurement'> & ProductPriceProps): JSX.Element | null;
|
|
@@ -0,0 +1,61 @@
|
|
|
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.ProductPrice = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Money_1 = require("../Money");
|
|
9
|
+
/**
|
|
10
|
+
* The `ProductPrice` component renders a `Money` component with the product
|
|
11
|
+
* [`priceRange`](https://shopify.dev/api/storefront/reference/products/productpricerange)'s `maxVariantPrice` or `minVariantPrice`, for either the regular price or compare at price range.
|
|
12
|
+
*/
|
|
13
|
+
function ProductPrice(props) {
|
|
14
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
15
|
+
const { priceType = 'regular', variantId, valueType = 'min', data: product, ...passthroughProps } = props;
|
|
16
|
+
if (product == null) {
|
|
17
|
+
throw new Error(`<ProductPrice/> requires a product as the 'data' prop`);
|
|
18
|
+
}
|
|
19
|
+
let price;
|
|
20
|
+
let measurement;
|
|
21
|
+
const variant = variantId
|
|
22
|
+
? (_c = (_b = (_a = product === null || product === void 0 ? void 0 : product.variants) === null || _a === void 0 ? void 0 : _a.nodes) === null || _b === void 0 ? void 0 : _b.find((variant) => (variant === null || variant === void 0 ? void 0 : variant.id) === variantId)) !== null && _c !== void 0 ? _c : null
|
|
23
|
+
: null;
|
|
24
|
+
if (priceType === 'compareAt') {
|
|
25
|
+
if (variantId && variant) {
|
|
26
|
+
if (((_d = variant.compareAtPriceV2) === null || _d === void 0 ? void 0 : _d.amount) === ((_e = variant.priceV2) === null || _e === void 0 ? void 0 : _e.amount)) {
|
|
27
|
+
return null;
|
|
28
|
+
}
|
|
29
|
+
price = variant.compareAtPriceV2;
|
|
30
|
+
}
|
|
31
|
+
else if (valueType === 'max') {
|
|
32
|
+
price = (_f = product === null || product === void 0 ? void 0 : product.compareAtPriceRange) === null || _f === void 0 ? void 0 : _f.maxVariantPrice;
|
|
33
|
+
}
|
|
34
|
+
else {
|
|
35
|
+
price = (_g = product === null || product === void 0 ? void 0 : product.compareAtPriceRange) === null || _g === void 0 ? void 0 : _g.minVariantPrice;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
else {
|
|
39
|
+
if (variantId && variant) {
|
|
40
|
+
price = variant.priceV2;
|
|
41
|
+
if (valueType === 'unit') {
|
|
42
|
+
price = variant.unitPrice;
|
|
43
|
+
measurement = variant.unitPriceMeasurement;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
else if (valueType === 'max') {
|
|
47
|
+
price = (_h = product.priceRange) === null || _h === void 0 ? void 0 : _h.maxVariantPrice;
|
|
48
|
+
}
|
|
49
|
+
else {
|
|
50
|
+
price = (_j = product.priceRange) === null || _j === void 0 ? void 0 : _j.minVariantPrice;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
if (!price) {
|
|
54
|
+
return null;
|
|
55
|
+
}
|
|
56
|
+
if (measurement) {
|
|
57
|
+
return (react_1.default.createElement(Money_1.Money, { ...passthroughProps, data: price, measurement: measurement }));
|
|
58
|
+
}
|
|
59
|
+
return react_1.default.createElement(Money_1.Money, { ...passthroughProps, data: price });
|
|
60
|
+
}
|
|
61
|
+
exports.ProductPrice = ProductPrice;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ProductPrice } from './ProductPrice.client';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ProductPrice = void 0;
|
|
4
|
+
var ProductPrice_client_1 = require("./ProductPrice.client");
|
|
5
|
+
Object.defineProperty(exports, "ProductPrice", { enumerable: true, get: function () { return ProductPrice_client_1.ProductPrice; } });
|
|
@@ -0,0 +1,22 @@
|
|
|
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.CollectionSeo = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const TitleSeo_client_1 = require("./TitleSeo.client");
|
|
9
|
+
const DescriptionSeo_client_1 = require("./DescriptionSeo.client");
|
|
10
|
+
const TwitterSeo_client_1 = require("./TwitterSeo.client");
|
|
11
|
+
const ImageSeo_client_1 = require("./ImageSeo.client");
|
|
12
|
+
function CollectionSeo({ title, description, seo, image, }) {
|
|
13
|
+
var _a, _b;
|
|
14
|
+
const seoTitle = (_a = seo === null || seo === void 0 ? void 0 : seo.title) !== null && _a !== void 0 ? _a : title;
|
|
15
|
+
const seoDescription = (_b = seo === null || seo === void 0 ? void 0 : seo.description) !== null && _b !== void 0 ? _b : description;
|
|
16
|
+
return (react_1.default.createElement(react_1.default.Fragment, null,
|
|
17
|
+
react_1.default.createElement(TitleSeo_client_1.TitleSeo, { title: seoTitle }),
|
|
18
|
+
react_1.default.createElement(DescriptionSeo_client_1.DescriptionSeo, { description: seoDescription }),
|
|
19
|
+
react_1.default.createElement(TwitterSeo_client_1.TwitterSeo, { title: seoTitle, description: seoDescription }),
|
|
20
|
+
image && react_1.default.createElement(ImageSeo_client_1.ImageSeo, { ...image })));
|
|
21
|
+
}
|
|
22
|
+
exports.CollectionSeo = CollectionSeo;
|
|
@@ -0,0 +1,25 @@
|
|
|
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.DefaultPageSeo = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const foundation_1 = require("../../foundation");
|
|
9
|
+
const client_1 = require("../../client");
|
|
10
|
+
const TitleSeo_client_1 = require("./TitleSeo.client");
|
|
11
|
+
const DescriptionSeo_client_1 = require("./DescriptionSeo.client");
|
|
12
|
+
const TwitterSeo_client_1 = require("./TwitterSeo.client");
|
|
13
|
+
function DefaultPageSeo({ title, description, url, titleTemplate, lang, }) {
|
|
14
|
+
const { languageCode: fallBacklang } = (0, foundation_1.useShop)();
|
|
15
|
+
return (react_1.default.createElement(react_1.default.Fragment, null,
|
|
16
|
+
react_1.default.createElement(client_1.Head, { defaultTitle: title !== null && title !== void 0 ? title : '', titleTemplate: titleTemplate !== null && titleTemplate !== void 0 ? titleTemplate : `%s - ${title}` },
|
|
17
|
+
react_1.default.createElement("html", { lang: lang !== null && lang !== void 0 ? lang : fallBacklang }),
|
|
18
|
+
react_1.default.createElement("meta", { property: "og:type", content: "website" }),
|
|
19
|
+
react_1.default.createElement("meta", { property: "og:site_name", content: title !== null && title !== void 0 ? title : '' }),
|
|
20
|
+
react_1.default.createElement("meta", { property: "og:url", content: url })),
|
|
21
|
+
react_1.default.createElement(TitleSeo_client_1.TitleSeo, { title: title }),
|
|
22
|
+
react_1.default.createElement(DescriptionSeo_client_1.DescriptionSeo, { description: description }),
|
|
23
|
+
react_1.default.createElement(TwitterSeo_client_1.TwitterSeo, { title: title, description: description })));
|
|
24
|
+
}
|
|
25
|
+
exports.DefaultPageSeo = DefaultPageSeo;
|
|
@@ -0,0 +1,17 @@
|
|
|
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.DescriptionSeo = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const client_1 = require("../../client");
|
|
9
|
+
function DescriptionSeo({ description, }) {
|
|
10
|
+
if (!description) {
|
|
11
|
+
return null;
|
|
12
|
+
}
|
|
13
|
+
return (react_1.default.createElement(client_1.Head, null,
|
|
14
|
+
react_1.default.createElement("meta", { name: "description", content: description }),
|
|
15
|
+
react_1.default.createElement("meta", { property: "og:description", content: description })));
|
|
16
|
+
}
|
|
17
|
+
exports.DescriptionSeo = DescriptionSeo;
|