@jetshop/core 7.0.0-alpha-2 → 7.0.1-canary
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/ChannelHandler/ChannelHandler.d.ts +53 -0
- package/ChannelHandler/ChannelHandler.js +114 -0
- package/ChannelHandler/ChannelHandler.js.map +1 -0
- package/ChannelHandler/channelUtils.d.ts +73 -0
- package/ChannelHandler/channelUtils.js +313 -0
- package/ChannelHandler/channelUtils.js.map +1 -0
- package/ChannelHandler/redirectUtils.d.ts +4 -0
- package/ChannelHandler/redirectUtils.js +53 -0
- package/ChannelHandler/redirectUtils.js.map +1 -0
- package/analytics/Analytics.d.ts +18 -0
- package/analytics/Analytics.js +57 -0
- package/analytics/Analytics.js.map +1 -0
- package/analytics/AnalyticsProvider.d.ts +54 -0
- package/analytics/AnalyticsProvider.js +229 -0
- package/analytics/AnalyticsProvider.js.map +1 -0
- package/analytics/deprecatedTracking.d.ts +17 -0
- package/analytics/deprecatedTracking.js +33 -0
- package/analytics/deprecatedTracking.js.map +1 -0
- package/analytics/integrations/ga4.d.ts +28 -0
- package/analytics/integrations/ga4.js +189 -0
- package/analytics/integrations/ga4.js.map +1 -0
- package/analytics/integrations/gtag/gtag.d.ts +8 -0
- package/analytics/integrations/gtag/gtag.js +209 -0
- package/analytics/integrations/gtag/gtag.js.map +1 -0
- package/analytics/integrations/gtag/index.d.ts +1 -0
- package/analytics/integrations/gtag/index.js +2 -0
- package/analytics/integrations/gtag/index.js.map +1 -0
- package/analytics/integrations/gtm/gtm.d.ts +12 -0
- package/analytics/integrations/gtm/gtm.js +227 -0
- package/analytics/integrations/gtm/gtm.js.map +1 -0
- package/analytics/integrations/gtm/index.d.ts +1 -0
- package/analytics/integrations/gtm/index.js +2 -0
- package/analytics/integrations/gtm/index.js.map +1 -0
- package/analytics/integrations/gtm/referrerModifier.d.ts +1 -0
- package/analytics/integrations/gtm/referrerModifier.js +62 -0
- package/analytics/integrations/gtm/referrerModifier.js.map +1 -0
- package/analytics/integrations/releware/index.d.ts +3 -0
- package/analytics/integrations/releware/index.js +39 -0
- package/analytics/integrations/releware/index.js.map +1 -0
- package/analytics/integrations/unslugify.d.ts +1 -0
- package/analytics/integrations/unslugify.js +16 -0
- package/analytics/integrations/unslugify.js.map +1 -0
- package/analytics/trackerRegistry.d.ts +113 -0
- package/analytics/trackerRegistry.js +234 -0
- package/analytics/trackerRegistry.js.map +1 -0
- package/analytics/tracking.d.ts +14 -0
- package/analytics/tracking.js +72 -0
- package/analytics/tracking.js.map +1 -0
- package/analytics/utils/breadcrumbsWithoutProduct.d.ts +1 -0
- package/analytics/utils/breadcrumbsWithoutProduct.js +9 -0
- package/analytics/utils/breadcrumbsWithoutProduct.js.map +1 -0
- package/analytics/utils/script.d.ts +8 -0
- package/analytics/utils/script.js +40 -0
- package/analytics/utils/script.js.map +1 -0
- package/boot/AuthHandler.d.ts +14 -0
- package/boot/AuthHandler.js +39 -0
- package/boot/AuthHandler.js.map +1 -0
- package/boot/NetworkStatusNotifier.d.ts +2 -0
- package/boot/NetworkStatusNotifier.js +4 -0
- package/boot/NetworkStatusNotifier.js.map +1 -0
- package/boot/PreviewHandler.d.ts +7 -0
- package/boot/PreviewHandler.js +14 -0
- package/boot/PreviewHandler.js.map +1 -0
- package/boot/SharedTree.d.ts +23 -0
- package/boot/SharedTree.js +27 -0
- package/boot/SharedTree.js.map +1 -0
- package/boot/addMissingConfig.d.ts +5 -0
- package/boot/addMissingConfig.js +34 -0
- package/boot/addMissingConfig.js.map +1 -0
- package/boot/apollo.d.ts +20 -0
- package/boot/apollo.js +167 -0
- package/boot/apollo.js.map +1 -0
- package/boot/client/entrypoint.d.ts +1 -0
- package/boot/client/entrypoint.js +5 -0
- package/boot/client/entrypoint.js.map +1 -0
- package/boot/client/index.d.ts +1 -0
- package/boot/client/index.js +2 -0
- package/boot/client/index.js.map +1 -0
- package/boot/client/startClient.d.ts +4 -0
- package/boot/client/startClient.js +139 -0
- package/boot/client/startClient.js.map +1 -0
- package/boot/server/asyncErrorHandler.d.ts +3 -0
- package/boot/server/asyncErrorHandler.js +5 -0
- package/boot/server/asyncErrorHandler.js.map +1 -0
- package/boot/server/breakpointMiddleware.d.ts +3 -0
- package/boot/server/breakpointMiddleware.js +10 -0
- package/boot/server/breakpointMiddleware.js.map +1 -0
- package/boot/server/createApolloServer.d.ts +29 -0
- package/boot/server/createApolloServer.js +138 -0
- package/boot/server/createApolloServer.js.map +1 -0
- package/boot/server/createDevServer.d.ts +14 -0
- package/boot/server/createDevServer.js +30 -0
- package/boot/server/createDevServer.js.map +1 -0
- package/boot/server/createRenderer.d.ts +28 -0
- package/boot/server/createRenderer.js +233 -0
- package/boot/server/createRenderer.js.map +1 -0
- package/boot/server/createServer.d.ts +14 -0
- package/boot/server/createServer.js +31 -0
- package/boot/server/createServer.js.map +1 -0
- package/boot/server/entrypoint.d.ts +1 -0
- package/boot/server/entrypoint.js +39 -0
- package/boot/server/entrypoint.js.map +1 -0
- package/boot/server/getPrefetchFiles.d.ts +10 -0
- package/boot/server/getPrefetchFiles.js +20 -0
- package/boot/server/getPrefetchFiles.js.map +1 -0
- package/boot/server/getPreloadAssets.d.ts +10 -0
- package/boot/server/getPreloadAssets.js +18 -0
- package/boot/server/getPreloadAssets.js.map +1 -0
- package/boot/server/index.d.ts +7 -0
- package/boot/server/index.js +114 -0
- package/boot/server/index.js.map +1 -0
- package/boot/server/listen.d.ts +13 -0
- package/boot/server/listen.js +17 -0
- package/boot/server/listen.js.map +1 -0
- package/boot/utils/createIntOptions.d.ts +6 -0
- package/boot/utils/createIntOptions.js +19 -0
- package/boot/utils/createIntOptions.js.map +1 -0
- package/boot/utils/queryLoggingMiddleware.d.ts +2 -0
- package/boot/utils/queryLoggingMiddleware.js +15 -0
- package/boot/utils/queryLoggingMiddleware.js.map +1 -0
- package/boot/utils/uid.d.ts +3 -0
- package/boot/utils/uid.js +20 -0
- package/boot/utils/uid.js.map +1 -0
- package/boot/worker/createApolloServerWorker.d.ts +18 -0
- package/boot/worker/createApolloServerWorker.js +119 -0
- package/boot/worker/createApolloServerWorker.js.map +1 -0
- package/boot/worker/createRenderer.d.ts +23 -0
- package/boot/worker/createRenderer.js +242 -0
- package/boot/worker/createRenderer.js.map +1 -0
- package/boot/worker/getPrefetchFiles.d.ts +10 -0
- package/boot/worker/getPrefetchFiles.js +20 -0
- package/boot/worker/getPrefetchFiles.js.map +1 -0
- package/boot/worker/getPreloadAssets.d.ts +10 -0
- package/boot/worker/getPreloadAssets.js +18 -0
- package/boot/worker/getPreloadAssets.js.map +1 -0
- package/boot/worker/index.d.ts +6 -0
- package/boot/worker/index.js +98 -0
- package/boot/worker/index.js.map +1 -0
- package/cart/AddToCartFormik.d.ts +42 -0
- package/cart/AddToCartFormik.js +79 -0
- package/cart/AddToCartFormik.js.map +1 -0
- package/cart/useAddToCart.d.ts +88 -0
- package/cart/useAddToCart.js +119 -0
- package/cart/useAddToCart.js.map +1 -0
- package/cart/useCart.d.ts +0 -0
- package/cart/useCart.js +1 -0
- package/cart/useCart.js.map +1 -0
- package/components/Auth/CustomerFormContainer.d.ts +0 -0
- package/components/Auth/CustomerFormContainer.js +1 -0
- package/components/Auth/CustomerFormContainer.js.map +1 -0
- package/components/Auth/CustomerUpdateForm.d.ts +32 -0
- package/components/Auth/CustomerUpdateForm.js +122 -0
- package/components/Auth/CustomerUpdateForm.js.map +1 -0
- package/components/Auth/ForgotPasswordProvider.d.ts +69 -0
- package/components/Auth/ForgotPasswordProvider.js +57 -0
- package/components/Auth/ForgotPasswordProvider.js.map +1 -0
- package/components/Auth/ResetPasswordProvider.d.ts +90 -0
- package/components/Auth/ResetPasswordProvider.js +78 -0
- package/components/Auth/ResetPasswordProvider.js.map +1 -0
- package/components/Auth/SSN.d.ts +12 -0
- package/components/Auth/SSN.js +35 -0
- package/components/Auth/SSN.js.map +1 -0
- package/components/Auth/SSNLookupContainer.d.ts +15 -0
- package/components/Auth/SSNLookupContainer.js +20 -0
- package/components/Auth/SSNLookupContainer.js.map +1 -0
- package/components/Auth/SignupFormContainer.d.ts +16 -0
- package/components/Auth/SignupFormContainer.js +82 -0
- package/components/Auth/SignupFormContainer.js.map +1 -0
- package/components/Auth/UpdatePasswordForm.d.ts +44 -0
- package/components/Auth/UpdatePasswordForm.js +98 -0
- package/components/Auth/UpdatePasswordForm.js.map +1 -0
- package/components/Auth/formFieldsFromSettings.d.ts +65 -0
- package/components/Auth/formFieldsFromSettings.js +77 -0
- package/components/Auth/formFieldsFromSettings.js.map +1 -0
- package/components/Auth/formatSignupInput.d.ts +8 -0
- package/components/Auth/formatSignupInput.js +43 -0
- package/components/Auth/formatSignupInput.js.map +1 -0
- package/components/Auth/signup-context.d.ts +36 -0
- package/components/Auth/signup-context.js +71 -0
- package/components/Auth/signup-context.js.map +1 -0
- package/components/Auth/signup-field-translations.d.ts +3 -0
- package/components/Auth/signup-field-translations.js +44 -0
- package/components/Auth/signup-field-translations.js.map +1 -0
- package/components/Auth/signupSubmit.d.ts +6 -0
- package/components/Auth/signupSubmit.js +65 -0
- package/components/Auth/signupSubmit.js.map +1 -0
- package/components/Auth/useAddressFields.d.ts +22 -0
- package/components/Auth/useAddressFields.js +33 -0
- package/components/Auth/useAddressFields.js.map +1 -0
- package/components/Auth/useCustomer.d.ts +116 -0
- package/components/Auth/useCustomer.js +189 -0
- package/components/Auth/useCustomer.js.map +1 -0
- package/components/Auth/useLoginFields.d.ts +20 -0
- package/components/Auth/useLoginFields.js +21 -0
- package/components/Auth/useLoginFields.js.map +1 -0
- package/components/Auth/useSignupForm.d.ts +7 -0
- package/components/Auth/useSignupForm.js +15 -0
- package/components/Auth/useSignupForm.js.map +1 -0
- package/components/AuthContext/AuthContext.d.ts +12 -0
- package/components/AuthContext/AuthContext.js +11 -0
- package/components/AuthContext/AuthContext.js.map +1 -0
- package/components/AuthContext/AuthProvider.d.ts +6 -0
- package/components/AuthContext/AuthProvider.js +100 -0
- package/components/AuthContext/AuthProvider.js.map +1 -0
- package/components/AuthContext/LogOut.d.ts +5 -0
- package/components/AuthContext/LogOut.js +17 -0
- package/components/AuthContext/LogOut.js.map +1 -0
- package/components/AuthContext/useAuth.d.ts +6 -0
- package/components/AuthContext/useAuth.js +20 -0
- package/components/AuthContext/useAuth.js.map +1 -0
- package/components/BreakpointProvider.d.ts +21 -0
- package/components/BreakpointProvider.js +24 -0
- package/components/BreakpointProvider.js.map +1 -0
- package/components/Cart/CartIdContext.d.ts +11 -0
- package/components/Cart/CartIdContext.js +61 -0
- package/components/Cart/CartIdContext.js.map +1 -0
- package/components/ChannelContext/ChannelContext.d.ts +21 -0
- package/components/ChannelContext/ChannelContext.js +4 -0
- package/components/ChannelContext/ChannelContext.js.map +1 -0
- package/components/ChannelContext/ChannelProvider.d.ts +10 -0
- package/components/ChannelContext/ChannelProvider.js +45 -0
- package/components/ChannelContext/ChannelProvider.js.map +1 -0
- package/components/ChannelContext/index.d.ts +2 -0
- package/components/ChannelContext/index.js +3 -0
- package/components/ChannelContext/index.js.map +1 -0
- package/components/ChannelContext/useCountrySettings.d.ts +8 -0
- package/components/ChannelContext/useCountrySettings.js +24 -0
- package/components/ChannelContext/useCountrySettings.js.map +1 -0
- package/components/ConfigProvider.d.ts +104 -0
- package/components/ConfigProvider.js +20 -0
- package/components/ConfigProvider.js.map +1 -0
- package/components/DynamicRoute/CategoryRoute.d.ts +13 -0
- package/components/DynamicRoute/CategoryRoute.js +59 -0
- package/components/DynamicRoute/CategoryRoute.js.map +1 -0
- package/components/DynamicRoute/ContentRoute.d.ts +14 -0
- package/components/DynamicRoute/ContentRoute.js +28 -0
- package/components/DynamicRoute/ContentRoute.js.map +1 -0
- package/components/DynamicRoute/CustomerRoute.d.ts +0 -0
- package/components/DynamicRoute/CustomerRoute.js +1 -0
- package/components/DynamicRoute/CustomerRoute.js.map +1 -0
- package/components/DynamicRoute/GenericError.d.ts +18 -0
- package/components/DynamicRoute/GenericError.js +57 -0
- package/components/DynamicRoute/GenericError.js.map +1 -0
- package/components/DynamicRoute/PreviewRoute.d.ts +17 -0
- package/components/DynamicRoute/PreviewRoute.js +58 -0
- package/components/DynamicRoute/PreviewRoute.js.map +1 -0
- package/components/DynamicRoute/ProductByArticlenumber.d.ts +5 -0
- package/components/DynamicRoute/ProductByArticlenumber.js +22 -0
- package/components/DynamicRoute/ProductByArticlenumber.js.map +1 -0
- package/components/DynamicRoute/ProductRoute.d.ts +15 -0
- package/components/DynamicRoute/ProductRoute.js +68 -0
- package/components/DynamicRoute/ProductRoute.js.map +1 -0
- package/components/DynamicRoute/RouteResolver.d.ts +22 -0
- package/components/DynamicRoute/RouteResolver.js +64 -0
- package/components/DynamicRoute/RouteResolver.js.map +1 -0
- package/components/DynamicRoute/Status.d.ts +15 -0
- package/components/DynamicRoute/Status.js +20 -0
- package/components/DynamicRoute/Status.js.map +1 -0
- package/components/DynamicRoute/index.d.ts +17 -0
- package/components/DynamicRoute/index.js +101 -0
- package/components/DynamicRoute/index.js.map +1 -0
- package/components/Filters/index.d.ts +1 -0
- package/components/Filters/index.js +2 -0
- package/components/Filters/index.js.map +1 -0
- package/components/Filters/utils/replaceInSearch.d.ts +14 -0
- package/components/Filters/utils/replaceInSearch.js +23 -0
- package/components/Filters/utils/replaceInSearch.js.map +1 -0
- package/components/Filters/utils/updateHistory.d.ts +25 -0
- package/components/Filters/utils/updateHistory.js +30 -0
- package/components/Filters/utils/updateHistory.js.map +1 -0
- package/components/Fonts/CustomFont.d.ts +14 -0
- package/components/Fonts/CustomFont.js +17 -0
- package/components/Fonts/CustomFont.js.map +1 -0
- package/components/Fonts/injectFont.d.ts +11 -0
- package/components/Fonts/injectFont.js +30 -0
- package/components/Fonts/injectFont.js.map +1 -0
- package/components/Head.d.ts +11 -0
- package/components/Head.js +86 -0
- package/components/Head.js.map +1 -0
- package/components/Mutation/AddToCart/addToCartUtils.d.ts +18 -0
- package/components/Mutation/AddToCart/addToCartUtils.js +52 -0
- package/components/Mutation/AddToCart/addToCartUtils.js.map +1 -0
- package/components/Mutation/AddToCartFormik.d.ts +53 -0
- package/components/Mutation/AddToCartFormik.js +183 -0
- package/components/Mutation/AddToCartFormik.js.map +1 -0
- package/components/Mutation/DecrementQuantity.d.ts +4 -0
- package/components/Mutation/DecrementQuantity.js +35 -0
- package/components/Mutation/DecrementQuantity.js.map +1 -0
- package/components/Mutation/IncrementQuantity.d.ts +4 -0
- package/components/Mutation/IncrementQuantity.js +35 -0
- package/components/Mutation/IncrementQuantity.js.map +1 -0
- package/components/Mutation/RemoveFromCart.d.ts +5 -0
- package/components/Mutation/RemoveFromCart.js +52 -0
- package/components/Mutation/RemoveFromCart.js.map +1 -0
- package/components/Mutation/SetQuantity.d.ts +4 -0
- package/components/Mutation/SetQuantity.js +37 -0
- package/components/Mutation/SetQuantity.js.map +1 -0
- package/components/Mutation/SubscribeToNewsletter.d.ts +4 -0
- package/components/Mutation/SubscribeToNewsletter.js +30 -0
- package/components/Mutation/SubscribeToNewsletter.js.map +1 -0
- package/components/Mutation/SubscribeToStockNotifications.d.ts +4 -0
- package/components/Mutation/SubscribeToStockNotifications.js +35 -0
- package/components/Mutation/SubscribeToStockNotifications.js.map +1 -0
- package/components/Mutation/cartMutationUtils.d.ts +27 -0
- package/components/Mutation/cartMutationUtils.js +106 -0
- package/components/Mutation/cartMutationUtils.js.map +1 -0
- package/components/Mutation/useDecrementQuantity.d.ts +11 -0
- package/components/Mutation/useDecrementQuantity.js +50 -0
- package/components/Mutation/useDecrementQuantity.js.map +1 -0
- package/components/Mutation/useIncrementQuantity.d.ts +11 -0
- package/components/Mutation/useIncrementQuantity.js +50 -0
- package/components/Mutation/useIncrementQuantity.js.map +1 -0
- package/components/Mutation/useRemoveFromCart.d.ts +13 -0
- package/components/Mutation/useRemoveFromCart.js +45 -0
- package/components/Mutation/useRemoveFromCart.js.map +1 -0
- package/components/Mutation/useSetQuantity.d.ts +12 -0
- package/components/Mutation/useSetQuantity.js +38 -0
- package/components/Mutation/useSetQuantity.js.map +1 -0
- package/components/Notifications/Notifications.d.ts +15 -0
- package/components/Notifications/Notifications.js +26 -0
- package/components/Notifications/Notifications.js.map +1 -0
- package/components/Notifications/index.d.ts +2 -0
- package/components/Notifications/index.js +3 -0
- package/components/Notifications/index.js.map +1 -0
- package/components/Notifications/notificationMachine.d.ts +30 -0
- package/components/Notifications/notificationMachine.js +74 -0
- package/components/Notifications/notificationMachine.js.map +1 -0
- package/components/Notifications/notificationsMachine.d.ts +37 -0
- package/components/Notifications/notificationsMachine.js +66 -0
- package/components/Notifications/notificationsMachine.js.map +1 -0
- package/components/Notifications/useNotification.d.ts +9 -0
- package/components/Notifications/useNotification.js +27 -0
- package/components/Notifications/useNotification.js.map +1 -0
- package/components/OpenGraph/OpenGraphGeneralPageData.d.ts +25 -0
- package/components/OpenGraph/OpenGraphGeneralPageData.js +37 -0
- package/components/OpenGraph/OpenGraphGeneralPageData.js.map +1 -0
- package/components/OpenGraph/OpenGraphProductData.d.ts +25 -0
- package/components/OpenGraph/OpenGraphProductData.js +49 -0
- package/components/OpenGraph/OpenGraphProductData.js.map +1 -0
- package/components/OpenGraph/index.d.ts +2 -0
- package/components/OpenGraph/index.js +3 -0
- package/components/OpenGraph/index.js.map +1 -0
- package/components/Pagination/PaginationContainer.d.ts +2 -0
- package/components/Pagination/PaginationContainer.js +5 -0
- package/components/Pagination/PaginationContainer.js.map +1 -0
- package/components/Pagination/PaginationContext.d.ts +14 -0
- package/components/Pagination/PaginationContext.js +4 -0
- package/components/Pagination/PaginationContext.js.map +1 -0
- package/components/Pagination/PaginationProvider.d.ts +17 -0
- package/components/Pagination/PaginationProvider.js +86 -0
- package/components/Pagination/PaginationProvider.js.map +1 -0
- package/components/PreviewContext.d.ts +10 -0
- package/components/PreviewContext.js +27 -0
- package/components/PreviewContext.js.map +1 -0
- package/components/ProductConfigurationProvider/ProductConfigurationContext.d.ts +13 -0
- package/components/ProductConfigurationProvider/ProductConfigurationContext.js +5 -0
- package/components/ProductConfigurationProvider/ProductConfigurationContext.js.map +1 -0
- package/components/ProductConfigurationProvider/ProductConfigurationProvider.d.ts +6 -0
- package/components/ProductConfigurationProvider/ProductConfigurationProvider.js +50 -0
- package/components/ProductConfigurationProvider/ProductConfigurationProvider.js.map +1 -0
- package/components/Query/CartProvider.d.ts +22 -0
- package/components/Query/CartProvider.js +68 -0
- package/components/Query/CartProvider.js.map +1 -0
- package/components/SortOrder/SortOrderContainer.d.ts +40 -0
- package/components/SortOrder/SortOrderContainer.js +108 -0
- package/components/SortOrder/SortOrderContainer.js.map +1 -0
- package/components/SortOrder/SortOrderContext.d.ts +9 -0
- package/components/SortOrder/SortOrderContext.js +9 -0
- package/components/SortOrder/SortOrderContext.js.map +1 -0
- package/components/StructuredData/SiteLinksSearchStructuredData.d.ts +3 -0
- package/components/StructuredData/SiteLinksSearchStructuredData.js +25 -0
- package/components/StructuredData/SiteLinksSearchStructuredData.js.map +1 -0
- package/components/StructuredData/StructuredBreadcrumbData.d.ts +12 -0
- package/components/StructuredData/StructuredBreadcrumbData.js +55 -0
- package/components/StructuredData/StructuredBreadcrumbData.js.map +1 -0
- package/components/StructuredData/StructuredCategoryData.d.ts +16 -0
- package/components/StructuredData/StructuredCategoryData.js +18 -0
- package/components/StructuredData/StructuredCategoryData.js.map +1 -0
- package/components/StructuredData/StructuredData.d.ts +9 -0
- package/components/StructuredData/StructuredData.js +7 -0
- package/components/StructuredData/StructuredData.js.map +1 -0
- package/components/StructuredData/StructuredPageData.d.ts +16 -0
- package/components/StructuredData/StructuredPageData.js +17 -0
- package/components/StructuredData/StructuredPageData.js.map +1 -0
- package/components/StructuredData/StructuredProductData.d.ts +18 -0
- package/components/StructuredData/StructuredProductData.js +43 -0
- package/components/StructuredData/StructuredProductData.js.map +1 -0
- package/components/StructuredData/index.d.ts +5 -0
- package/components/StructuredData/index.js +6 -0
- package/components/StructuredData/index.js.map +1 -0
- package/data/cache.d.ts +3 -0
- package/data/cache.js +71 -0
- package/data/cache.js.map +1 -0
- package/data/fragmentTypes.d.ts +8 -0
- package/data/fragmentTypes.js +84 -0
- package/data/fragmentTypes.js.map +1 -0
- package/data/fragments/index.d.ts +1 -0
- package/data/fragments/index.js +2 -0
- package/data/fragments/index.js.map +1 -0
- package/experiments/ExperimentsProvider.d.ts +4 -0
- package/experiments/ExperimentsProvider.js +29 -0
- package/experiments/ExperimentsProvider.js.map +1 -0
- package/experiments/selectExperimentVariant.d.ts +3 -0
- package/experiments/selectExperimentVariant.js +35 -0
- package/experiments/selectExperimentVariant.js.map +1 -0
- package/experiments/useExperiment.d.ts +2 -0
- package/experiments/useExperiment.js +11 -0
- package/experiments/useExperiment.js.map +1 -0
- package/helpers/decodeUrlQuery.d.ts +9 -0
- package/helpers/decodeUrlQuery.js +27 -0
- package/helpers/decodeUrlQuery.js.map +1 -0
- package/helpers/distance.d.ts +7 -0
- package/helpers/distance.js +13 -0
- package/helpers/distance.js.map +1 -0
- package/helpers/encodeVariant.d.ts +3 -0
- package/helpers/encodeVariant.js +25 -0
- package/helpers/encodeVariant.js.map +1 -0
- package/helpers/getBreakpointsFromValues.d.ts +6 -0
- package/helpers/getBreakpointsFromValues.js +15 -0
- package/helpers/getBreakpointsFromValues.js.map +1 -0
- package/helpers/getCartItemVariant.d.ts +7 -0
- package/helpers/getCartItemVariant.js +9 -0
- package/helpers/getCartItemVariant.js.map +1 -0
- package/helpers/getErrorDetail.d.ts +7 -0
- package/helpers/getErrorDetail.js +12 -0
- package/helpers/getErrorDetail.js.map +1 -0
- package/helpers/getHeaders.d.ts +6 -0
- package/helpers/getHeaders.js +4 -0
- package/helpers/getHeaders.js.map +1 -0
- package/helpers/isRelativeUrl.d.ts +1 -0
- package/helpers/isRelativeUrl.js +4 -0
- package/helpers/isRelativeUrl.js.map +1 -0
- package/helpers/logError.d.ts +1 -0
- package/helpers/logError.js +17 -0
- package/helpers/logError.js.map +1 -0
- package/helpers/logWarningInDev.d.ts +1 -0
- package/helpers/logWarningInDev.js +7 -0
- package/helpers/logWarningInDev.js.map +1 -0
- package/helpers/throwErrorInDev.d.ts +6 -0
- package/helpers/throwErrorInDev.js +20 -0
- package/helpers/throwErrorInDev.js.map +1 -0
- package/helpers/uniqueId.d.ts +5 -0
- package/helpers/uniqueId.js +10 -0
- package/helpers/uniqueId.js.map +1 -0
- package/hooks/Channels/useChannelSettings.d.ts +7 -0
- package/hooks/Channels/useChannelSettings.js +12 -0
- package/hooks/Channels/useChannelSettings.js.map +1 -0
- package/hooks/Filters/useBooleanFilter.d.ts +8 -0
- package/hooks/Filters/useBooleanFilter.js +20 -0
- package/hooks/Filters/useBooleanFilter.js.map +1 -0
- package/hooks/Filters/useFilters.d.ts +3 -0
- package/hooks/Filters/useFilters.js +15 -0
- package/hooks/Filters/useFilters.js.map +1 -0
- package/hooks/Filters/useListFilter.d.ts +10 -0
- package/hooks/Filters/useListFilter.js +37 -0
- package/hooks/Filters/useListFilter.js.map +1 -0
- package/hooks/Filters/useMultiFilter.d.ts +13 -0
- package/hooks/Filters/useMultiFilter.js +49 -0
- package/hooks/Filters/useMultiFilter.js.map +1 -0
- package/hooks/Filters/useRangeFilter.d.ts +10 -0
- package/hooks/Filters/useRangeFilter.js +35 -0
- package/hooks/Filters/useRangeFilter.js.map +1 -0
- package/hooks/Filters/useSortOrder.d.ts +16 -0
- package/hooks/Filters/useSortOrder.js +23 -0
- package/hooks/Filters/useSortOrder.js.map +1 -0
- package/hooks/PackageProducts/index.d.ts +2 -0
- package/hooks/PackageProducts/index.js +3 -0
- package/hooks/PackageProducts/index.js.map +1 -0
- package/hooks/PackageProducts/usePackageProductItem.d.ts +17 -0
- package/hooks/PackageProducts/usePackageProductItem.js +27 -0
- package/hooks/PackageProducts/usePackageProductItem.js.map +1 -0
- package/hooks/PackageProducts/usePackageProducts.d.ts +19 -0
- package/hooks/PackageProducts/usePackageProducts.js +346 -0
- package/hooks/PackageProducts/usePackageProducts.js.map +1 -0
- package/hooks/Product/index.d.ts +1 -0
- package/hooks/Product/index.js +2 -0
- package/hooks/Product/index.js.map +1 -0
- package/hooks/Product/useStockStatus.d.ts +9 -0
- package/hooks/Product/useStockStatus.js +26 -0
- package/hooks/Product/useStockStatus.js.map +1 -0
- package/hooks/Product/useSwitchToVariantImage.d.ts +9 -0
- package/hooks/Product/useSwitchToVariantImage.js +21 -0
- package/hooks/Product/useSwitchToVariantImage.js.map +1 -0
- package/hooks/ProductList/ProductListContext.d.ts +12 -0
- package/hooks/ProductList/ProductListContext.js +129 -0
- package/hooks/ProductList/ProductListContext.js.map +1 -0
- package/hooks/ProductList/action-creators.d.ts +46 -0
- package/hooks/ProductList/action-creators.js +295 -0
- package/hooks/ProductList/action-creators.js.map +1 -0
- package/hooks/ProductList/index.d.ts +119 -0
- package/hooks/ProductList/index.js +22 -0
- package/hooks/ProductList/index.js.map +1 -0
- package/hooks/ProductList/list-transforms.d.ts +75 -0
- package/hooks/ProductList/list-transforms.js +107 -0
- package/hooks/ProductList/list-transforms.js.map +1 -0
- package/hooks/ProductList/product-list-reducer.d.ts +76 -0
- package/hooks/ProductList/product-list-reducer.js +192 -0
- package/hooks/ProductList/product-list-reducer.js.map +1 -0
- package/hooks/ProductList/useProductList.d.ts +13 -0
- package/hooks/ProductList/useProductList.js +94 -0
- package/hooks/ProductList/useProductList.js.map +1 -0
- package/hooks/ProductList/useProductListItems.d.ts +10 -0
- package/hooks/ProductList/useProductListItems.js +50 -0
- package/hooks/ProductList/useProductListItems.js.map +1 -0
- package/hooks/ProductList/validate-product.d.ts +6 -0
- package/hooks/ProductList/validate-product.js +41 -0
- package/hooks/ProductList/validate-product.js.map +1 -0
- package/hooks/Subscriptions/useNewsletterSubscription.d.ts +38 -0
- package/hooks/Subscriptions/useNewsletterSubscription.js +42 -0
- package/hooks/Subscriptions/useNewsletterSubscription.js.map +1 -0
- package/hooks/Subscriptions/useStockNotifications.d.ts +36 -0
- package/hooks/Subscriptions/useStockNotifications.js +38 -0
- package/hooks/Subscriptions/useStockNotifications.js.map +1 -0
- package/hooks/Subscriptions/useStoreSubscriptions.d.ts +48 -0
- package/hooks/Subscriptions/useStoreSubscriptions.js +148 -0
- package/hooks/Subscriptions/useStoreSubscriptions.js.map +1 -0
- package/hooks/useAddMultipleToCart.d.ts +27 -0
- package/hooks/useAddMultipleToCart.js +113 -0
- package/hooks/useAddMultipleToCart.js.map +1 -0
- package/hooks/useChannels.d.ts +1 -0
- package/hooks/useChannels.js +10 -0
- package/hooks/useChannels.js.map +1 -0
- package/hooks/useCustomerOrdersQuery.d.ts +21 -0
- package/hooks/useCustomerOrdersQuery.js +21 -0
- package/hooks/useCustomerOrdersQuery.js.map +1 -0
- package/hooks/useDeleteAccountMutation.d.ts +15 -0
- package/hooks/useDeleteAccountMutation.js +39 -0
- package/hooks/useDeleteAccountMutation.js.map +1 -0
- package/hooks/useDynamicPrice.d.ts +3 -0
- package/hooks/useDynamicPrice.js +25 -0
- package/hooks/useDynamicPrice.js.map +1 -0
- package/hooks/useFreeShippingCheck.d.ts +15 -0
- package/hooks/useFreeShippingCheck.js +31 -0
- package/hooks/useFreeShippingCheck.js.map +1 -0
- package/hooks/useGeolocation.d.ts +11 -0
- package/hooks/useGeolocation.js +34 -0
- package/hooks/useGeolocation.js.map +1 -0
- package/hooks/useInfinitePagination.d.ts +37 -0
- package/hooks/useInfinitePagination.js +142 -0
- package/hooks/useInfinitePagination.js.map +1 -0
- package/hooks/useLogError.d.ts +1 -0
- package/hooks/useLogError.js +8 -0
- package/hooks/useLogError.js.map +1 -0
- package/hooks/useLoginMutation.d.ts +13 -0
- package/hooks/useLoginMutation.js +19 -0
- package/hooks/useLoginMutation.js.map +1 -0
- package/hooks/useLoginRedirect.d.ts +4 -0
- package/hooks/useLoginRedirect.js +37 -0
- package/hooks/useLoginRedirect.js.map +1 -0
- package/hooks/useOrderDetailQuery.d.ts +20 -0
- package/hooks/useOrderDetailQuery.js +29 -0
- package/hooks/useOrderDetailQuery.js.map +1 -0
- package/hooks/usePreconnectLinks.d.ts +10 -0
- package/hooks/usePreconnectLinks.js +26 -0
- package/hooks/usePreconnectLinks.js.map +1 -0
- package/hooks/usePrice.d.ts +41 -0
- package/hooks/usePrice.js +73 -0
- package/hooks/usePrice.js.map +1 -0
- package/hooks/useProductVariants/index.d.ts +1 -0
- package/hooks/useProductVariants/index.js +2 -0
- package/hooks/useProductVariants/index.js.map +1 -0
- package/hooks/useProductVariants/useProductVariants.d.ts +19 -0
- package/hooks/useProductVariants/useProductVariants.js +203 -0
- package/hooks/useProductVariants/useProductVariants.js.map +1 -0
- package/hooks/useProductVariants/useVariantFromUrl.d.ts +5 -0
- package/hooks/useProductVariants/useVariantFromUrl.js +16 -0
- package/hooks/useProductVariants/useVariantFromUrl.js.map +1 -0
- package/hooks/useRoutePreload.d.ts +24 -0
- package/hooks/useRoutePreload.js +45 -0
- package/hooks/useRoutePreload.js.map +1 -0
- package/hooks/useShopConfig.d.ts +1 -0
- package/hooks/useShopConfig.js +11 -0
- package/hooks/useShopConfig.js.map +1 -0
- package/hooks/useStockStatus.d.ts +8 -0
- package/hooks/useStockStatus.js +26 -0
- package/hooks/useStockStatus.js.map +1 -0
- package/hooks/useThrowErrorInDev.d.ts +1 -0
- package/hooks/useThrowErrorInDev.js +8 -0
- package/hooks/useThrowErrorInDev.js.map +1 -0
- package/hooks/useThunkReducer.d.ts +7 -0
- package/hooks/useThunkReducer.js +24 -0
- package/hooks/useThunkReducer.js.map +1 -0
- package/hooks/useWarningInDev.d.ts +1 -0
- package/hooks/useWarningInDev.js +10 -0
- package/hooks/useWarningInDev.js.map +1 -0
- package/inServer.d.ts +1 -0
- package/inServer.js +3 -0
- package/inServer.js.map +1 -0
- package/index.d.ts +1 -0
- package/index.js +2 -0
- package/index.js.map +1 -0
- package/integrations/sluggishSchemaExtension.d.ts +2 -0
- package/integrations/sluggishSchemaExtension.js +27 -0
- package/integrations/sluggishSchemaExtension.js.map +1 -0
- package/package.json +1 -1
- package/resolvers/filters/boolFilter.d.ts +3 -0
- package/resolvers/filters/boolFilter.js +82 -0
- package/resolvers/filters/boolFilter.js.map +1 -0
- package/resolvers/filters/defaultActiveFilters.d.ts +3 -0
- package/resolvers/filters/defaultActiveFilters.js +9 -0
- package/resolvers/filters/defaultActiveFilters.js.map +1 -0
- package/resolvers/filters/filterParams.d.ts +3 -0
- package/resolvers/filters/filterParams.js +85 -0
- package/resolvers/filters/filterParams.js.map +1 -0
- package/resolvers/filters/filters.d.ts +5 -0
- package/resolvers/filters/filters.js +79 -0
- package/resolvers/filters/filters.js.map +1 -0
- package/resolvers/filters/index.d.ts +23 -0
- package/resolvers/filters/index.js +8 -0
- package/resolvers/filters/index.js.map +1 -0
- package/resolvers/filters/listFilter.d.ts +7 -0
- package/resolvers/filters/listFilter.js +69 -0
- package/resolvers/filters/listFilter.js.map +1 -0
- package/resolvers/filters/listFilterItem.d.ts +3 -0
- package/resolvers/filters/listFilterItem.js +118 -0
- package/resolvers/filters/listFilterItem.js.map +1 -0
- package/resolvers/filters/multiListFilter.d.ts +5 -0
- package/resolvers/filters/multiListFilter.js +195 -0
- package/resolvers/filters/multiListFilter.js.map +1 -0
- package/resolvers/filters/multiListFilterList.d.ts +3 -0
- package/resolvers/filters/multiListFilterList.js +56 -0
- package/resolvers/filters/multiListFilterList.js.map +1 -0
- package/resolvers/filters/rangeFilter.d.ts +5 -0
- package/resolvers/filters/rangeFilter.js +122 -0
- package/resolvers/filters/rangeFilter.js.map +1 -0
- package/resolvers/filters/updateQueryString.d.ts +12 -0
- package/resolvers/filters/updateQueryString.js +117 -0
- package/resolvers/filters/updateQueryString.js.map +1 -0
- package/resolvers/index.d.ts +37 -0
- package/resolvers/index.js +38 -0
- package/resolvers/index.js.map +1 -0
- package/server/graphql.d.ts +20 -0
- package/server/graphql.js +118 -0
- package/server/graphql.js.map +1 -0
- package/server/index.d.ts +2 -0
- package/server/index.js +3 -0
- package/server/index.js.map +1 -0
- package/server/tracking/facebook.d.ts +5 -0
- package/server/tracking/facebook.js +148 -0
- package/server/tracking/facebook.js.map +1 -0
- package/server/tracking/middleware.d.ts +8 -0
- package/server/tracking/middleware.js +15 -0
- package/server/tracking/middleware.js.map +1 -0
- package/time.d.ts +1 -0
- package/time.js +6 -0
- package/time.js.map +1 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ListFilter } from '../../types';
|
|
2
|
+
export declare function useListFilter(args: {
|
|
3
|
+
filter: ListFilter;
|
|
4
|
+
}): {
|
|
5
|
+
apply: ({ value, set }: {
|
|
6
|
+
value: string;
|
|
7
|
+
set?: boolean;
|
|
8
|
+
}) => Promise<import("@apollo/client").FetchResult<ListFilter, Record<string, any>, Record<string, any>>>;
|
|
9
|
+
clear: () => Promise<import("@apollo/client").FetchResult<any, Record<string, any>, Record<string, any>>>;
|
|
10
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { useMutation, gql } from '@apollo/client';
|
|
2
|
+
export function useListFilter(args) {
|
|
3
|
+
const [toggleActiveMutation] = useMutation(gql `
|
|
4
|
+
mutation toggleActiveListItem(
|
|
5
|
+
$value: String!
|
|
6
|
+
$parentId: String!
|
|
7
|
+
$set: Boolean
|
|
8
|
+
) {
|
|
9
|
+
toggleListFilterItem(value: $value, parentId: $parentId, set: $set)
|
|
10
|
+
@client {
|
|
11
|
+
isActive @client
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
`);
|
|
15
|
+
const [clearFilterMutation] = useMutation(gql `
|
|
16
|
+
mutation ClearListFilter($id: String!) {
|
|
17
|
+
clearListFilter(id: $id) @client
|
|
18
|
+
}
|
|
19
|
+
`);
|
|
20
|
+
function clear() {
|
|
21
|
+
const filter = args.filter;
|
|
22
|
+
return clearFilterMutation({ variables: { id: filter.id } });
|
|
23
|
+
}
|
|
24
|
+
function apply({ value, set }) {
|
|
25
|
+
const filter = args.filter;
|
|
26
|
+
// Update filters in the client state
|
|
27
|
+
return toggleActiveMutation({
|
|
28
|
+
variables: {
|
|
29
|
+
parentId: filter.id,
|
|
30
|
+
value,
|
|
31
|
+
set
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
return { apply, clear };
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=useListFilter.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useListFilter.js","sourceRoot":"","sources":["useListFilter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAC;AAOlD,MAAM,UAAU,aAAa,CAAC,IAA4B;IACxD,MAAM,CAAC,oBAAoB,CAAC,GAAG,WAAW,CAGxC,GAAG,CAAA;;;;;;;;;;;GAWJ,CAAC,CAAC;IAEH,MAAM,CAAC,mBAAmB,CAAC,GAAG,WAAW,CAAC,GAAG,CAAA;;;;GAI5C,CAAC,CAAC;IAEH,SAAS,KAAK;QACZ,MAAM,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;QAE3B,OAAO,mBAAmB,CAAC,EAAE,SAAS,EAAE,EAAE,EAAE,EAAE,MAAM,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;IAC/D,CAAC;IAED,SAAS,KAAK,CAAC,EAAE,KAAK,EAAE,GAAG,EAAoC;QAC7D,MAAM,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;QAC3B,qCAAqC;QACrC,OAAO,oBAAoB,CAAC;YAC1B,SAAS,EAAE;gBACT,QAAQ,EAAE,MAAM,CAAC,EAAE;gBACnB,KAAK;gBACL,GAAG;aACJ;SACF,CAAC,CAAC;IACL,CAAC;IAED,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC;AAC1B,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { MultiListFilter } from '../../types';
|
|
2
|
+
export declare function useMultiFilter(args: {
|
|
3
|
+
filter: MultiListFilter;
|
|
4
|
+
}): {
|
|
5
|
+
apply: ({ value, listIndex }: {
|
|
6
|
+
value: string;
|
|
7
|
+
listIndex: number;
|
|
8
|
+
}) => Promise<import("@apollo/client").FetchResult<MultiListFilter, Record<string, any>, Record<string, any>>>;
|
|
9
|
+
clearList: ({ listIndex }: {
|
|
10
|
+
listIndex: number;
|
|
11
|
+
}) => Promise<import("@apollo/client").FetchResult<MultiListFilter, Record<string, any>, Record<string, any>>>;
|
|
12
|
+
clearFilter: () => Promise<import("@apollo/client").FetchResult<MultiListFilter, Record<string, any>, Record<string, any>>>;
|
|
13
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { useMutation, gql } from '@apollo/client';
|
|
2
|
+
export function useMultiFilter(args) {
|
|
3
|
+
const [toggleMultiListFilterItemMutation] = useMutation(gql `
|
|
4
|
+
mutation toggleMultiListItem {
|
|
5
|
+
toggleMultiListFilterItem(
|
|
6
|
+
value: $value
|
|
7
|
+
filter: $filter
|
|
8
|
+
listIndex: $listIndex
|
|
9
|
+
) @client {
|
|
10
|
+
isActive @client
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
`);
|
|
14
|
+
/** Applies a value at the given listIndex */
|
|
15
|
+
function apply({ value, listIndex }) {
|
|
16
|
+
const filter = args.filter;
|
|
17
|
+
return toggleMultiListFilterItemMutation({
|
|
18
|
+
variables: {
|
|
19
|
+
filter,
|
|
20
|
+
listIndex,
|
|
21
|
+
value
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
const [clearMultiListFilterListMutation] = useMutation(gql `
|
|
26
|
+
mutation ClearMultiList {
|
|
27
|
+
clearMultiListFilterList(listIndex: $listIndex, filter: $filter) @client
|
|
28
|
+
}
|
|
29
|
+
`);
|
|
30
|
+
/** Clears a specific list of the filter */
|
|
31
|
+
function clearList({ listIndex }) {
|
|
32
|
+
return clearMultiListFilterListMutation({
|
|
33
|
+
variables: { listIndex, filter: args.filter }
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
const [clearMultiListFilterMutation] = useMutation(gql `
|
|
37
|
+
mutation ClearMultiFilter {
|
|
38
|
+
clearMultiListFilter(id: $id) @client
|
|
39
|
+
}
|
|
40
|
+
`);
|
|
41
|
+
/** Clears the entire list filter, resetting it */
|
|
42
|
+
function clearFilter() {
|
|
43
|
+
return clearMultiListFilterMutation({
|
|
44
|
+
variables: { id: args.filter.id }
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
return { apply, clearList, clearFilter };
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=useMultiFilter.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useMultiFilter.js","sourceRoot":"","sources":["useMultiFilter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAC;AASlD,MAAM,UAAU,cAAc,CAAC,IAAiC;IAC9D,MAAM,CAAC,iCAAiC,CAAC,GAAG,WAAW,CAGrD,GAAG,CAAA;;;;;;;;;;GAUJ,CAAC,CAAC;IAEH,6CAA6C;IAC7C,SAAS,KAAK,CAAC,EAAE,KAAK,EAAE,SAAS,EAAwC;QACvE,MAAM,MAAM,GAAG,IAAI,CAAC,MAAyB,CAAC;QAC9C,OAAO,iCAAiC,CAAC;YACvC,SAAS,EAAE;gBACT,MAAM;gBACN,SAAS;gBACT,KAAK;aACN;SACF,CAAC,CAAC;IACL,CAAC;IAED,MAAM,CAAC,gCAAgC,CAAC,GAAG,WAAW,CAGpD,GAAG,CAAA;;;;GAIJ,CAAC,CAAC;IAEH,2CAA2C;IAC3C,SAAS,SAAS,CAAC,EAAE,SAAS,EAAyB;QACrD,OAAO,gCAAgC,CAAC;YACtC,SAAS,EAAE,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;SAC9C,CAAC,CAAC;IACL,CAAC;IAED,MAAM,CAAC,4BAA4B,CAAC,GAAG,WAAW,CAGhD,GAAG,CAAA;;;;GAIJ,CAAC,CAAC;IAEH,kDAAkD;IAClD,SAAS,WAAW;QAClB,OAAO,4BAA4B,CAAC;YAClC,SAAS,EAAE,EAAE,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,EAAE,EAAE;SAClC,CAAC,CAAC;IACL,CAAC;IAED,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,WAAW,EAAE,CAAC;AAC3C,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { NumericRangeFilter } from '../../types';
|
|
2
|
+
export declare function useRangeFilter(args: {
|
|
3
|
+
filter: NumericRangeFilter;
|
|
4
|
+
}): {
|
|
5
|
+
apply: ({ min, max }: {
|
|
6
|
+
min: number;
|
|
7
|
+
max: number;
|
|
8
|
+
}) => Promise<import("@apollo/client").FetchResult<NumericRangeFilter, Record<string, any>, Record<string, any>>>;
|
|
9
|
+
clear: () => Promise<import("@apollo/client").FetchResult<NumericRangeFilter, Record<string, any>, Record<string, any>>>;
|
|
10
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { useMutation, gql } from '@apollo/client';
|
|
2
|
+
import throwErrorInDev from '../../helpers/throwErrorInDev';
|
|
3
|
+
export function useRangeFilter(args) {
|
|
4
|
+
const [applyRangeFilterMutation] = useMutation(gql `
|
|
5
|
+
mutation setRange {
|
|
6
|
+
setRangeFilter(id: $id, value: $value) @client {
|
|
7
|
+
isActive @client
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
`);
|
|
11
|
+
const [clearRangeFilterMutation] = useMutation(gql `
|
|
12
|
+
mutation ClearRangeFilter($id: String!) {
|
|
13
|
+
clearRangeFilter(id: $id) @client
|
|
14
|
+
}
|
|
15
|
+
`);
|
|
16
|
+
function apply({ min, max }) {
|
|
17
|
+
if (!min || !min)
|
|
18
|
+
throwErrorInDev(true, 'You must provide a min and max to applyRangeFilter');
|
|
19
|
+
return applyRangeFilterMutation({
|
|
20
|
+
variables: {
|
|
21
|
+
id: args.filter.id,
|
|
22
|
+
value: [min, max]
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
function clear() {
|
|
27
|
+
return clearRangeFilterMutation({
|
|
28
|
+
variables: {
|
|
29
|
+
id: args.filter.id
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
return { apply, clear };
|
|
34
|
+
}
|
|
35
|
+
//# sourceMappingURL=useRangeFilter.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useRangeFilter.js","sourceRoot":"","sources":["useRangeFilter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAC;AAMlD,OAAO,eAAe,MAAM,+BAA+B,CAAC;AAE5D,MAAM,UAAU,cAAc,CAAC,IAAoC;IACjE,MAAM,CAAC,wBAAwB,CAAC,GAAG,WAAW,CAG5C,GAAG,CAAA;;;;;;GAMJ,CAAC,CAAC;IAEH,MAAM,CAAC,wBAAwB,CAAC,GAAG,WAAW,CAG5C,GAAG,CAAA;;;;GAIJ,CAAC,CAAC;IAEH,SAAS,KAAK,CAAC,EAAE,GAAG,EAAE,GAAG,EAAgC;QACvD,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG;YACd,eAAe,CACb,IAAI,EACJ,oDAAoD,CACrD,CAAC;QACJ,OAAO,wBAAwB,CAAC;YAC9B,SAAS,EAAE;gBACT,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,EAAE;gBAClB,KAAK,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC;aAClB;SACF,CAAC,CAAC;IACL,CAAC;IAED,SAAS,KAAK;QACZ,OAAO,wBAAwB,CAAC;YAC9B,SAAS,EAAE;gBACT,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,EAAE;aACnB;SACF,CAAC,CAAC;IACL,CAAC;IAED,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC;AAC1B,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ProductSortOrder } from '@jetshop/core/types';
|
|
2
|
+
interface MappedSortOrder {
|
|
3
|
+
direction: 'ASCENDING' | 'DESCENDING';
|
|
4
|
+
value: string;
|
|
5
|
+
text: string;
|
|
6
|
+
}
|
|
7
|
+
export declare function useSortOrder({ sortOrders }: {
|
|
8
|
+
sortOrders: ProductSortOrder[];
|
|
9
|
+
}): {
|
|
10
|
+
changeSortOrder: (value: string, direction: import("@jetshop/core/components/SortOrder/SortOrderContext").Direction) => void;
|
|
11
|
+
direction: import("@jetshop/core/components/SortOrder/SortOrderContext").Direction;
|
|
12
|
+
sortOrder: string;
|
|
13
|
+
mappedSortOrder: MappedSortOrder[];
|
|
14
|
+
};
|
|
15
|
+
export declare function getMappedSortOrder(sortOrders: ProductSortOrder[]): MappedSortOrder[];
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { sortTypes, sortValues } from '@jetshop/core/components/SortOrder/SortOrderContainer';
|
|
2
|
+
import SortOrderContext from '@jetshop/core/components/SortOrder/SortOrderContext';
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
export function useSortOrder({ sortOrders }) {
|
|
5
|
+
// Mutate sort order obj to include asc/desc & appropriate text
|
|
6
|
+
// eg { text: 'Price low to high', direction: 'ASCENDING' }
|
|
7
|
+
const { changeSortOrder, direction, sortOrder } = React.useContext(SortOrderContext);
|
|
8
|
+
const mappedSortOrder = getMappedSortOrder(sortOrders);
|
|
9
|
+
return { changeSortOrder, direction, sortOrder, mappedSortOrder };
|
|
10
|
+
}
|
|
11
|
+
export function getMappedSortOrder(sortOrders) {
|
|
12
|
+
return sortOrders.reduce((sorts, curr) => {
|
|
13
|
+
const mutatedSorts = sortValues[sortTypes[curr.value]].map((type) => {
|
|
14
|
+
return Object.assign(Object.assign({}, curr), { text: (React.createElement("span", null,
|
|
15
|
+
React.createElement(React.Fragment, null,
|
|
16
|
+
curr['text'],
|
|
17
|
+
" ",
|
|
18
|
+
type.text))), direction: type.direction });
|
|
19
|
+
});
|
|
20
|
+
return [...sorts, ...mutatedSorts];
|
|
21
|
+
}, []);
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=useSortOrder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useSortOrder.js","sourceRoot":"","sources":["useSortOrder.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,SAAS,EACT,UAAU,EACX,MAAM,uDAAuD,CAAC;AAC/D,OAAO,gBAAgB,MAAM,qDAAqD,CAAC;AAEnF,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAQ/B,MAAM,UAAU,YAAY,CAAC,EAC3B,UAAU,EAGX;IACC,+DAA+D;IAC/D,2DAA2D;IAC3D,MAAM,EAAE,eAAe,EAAE,SAAS,EAAE,SAAS,EAAE,GAC7C,KAAK,CAAC,UAAU,CAAC,gBAAgB,CAAC,CAAC;IACrC,MAAM,eAAe,GAAG,kBAAkB,CAAC,UAAU,CAAC,CAAC;IACvD,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,SAAS,EAAE,eAAe,EAAE,CAAC;AACpE,CAAC;AAED,MAAM,UAAU,kBAAkB,CAChC,UAA8B;IAE9B,OAAO,UAAU,CAAC,MAAM,CAAC,CAAC,KAAK,EAAE,IAAI,EAAE,EAAE;QACvC,MAAM,YAAY,GAAG,UAAU,CAAC,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE;YAClE,uCACK,IAAI,KACP,IAAI,EAAE,CACJ;oBACE;wBACG,IAAI,CAAC,MAAM,CAAC;;wBAAG,IAAI,CAAC,IAAI,CACxB,CACE,CACR,EACD,SAAS,EAAE,IAAI,CAAC,SAAS,IACzB;QACJ,CAAC,CAAC,CAAC;QACH,OAAO,CAAC,GAAG,KAAK,EAAE,GAAG,YAAY,CAAC,CAAC;IACrC,CAAC,EAAE,EAAE,CAAC,CAAC;AACT,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { PackageItem } from '../../types';
|
|
2
|
+
export type UpdateItem = (articleNumber: string, variantArticleNumber: string, valid: boolean) => void;
|
|
3
|
+
export declare function usePackageProductItem(item: PackageItem, updateItem: UpdateItem, { preselectCheapest }?: {
|
|
4
|
+
preselectCheapest?: boolean;
|
|
5
|
+
}): {
|
|
6
|
+
stockStatus: import("@jetshop/core/hooks/useStockStatus").StockStatusContainerRender;
|
|
7
|
+
variantHandler: {
|
|
8
|
+
selectedVariant: import("../../types").ProductVariant;
|
|
9
|
+
validation: import("../useProductVariants/useProductVariants").VariantValidation;
|
|
10
|
+
getSelectedValue: (option: import("../../types").ProductVariantOption) => string;
|
|
11
|
+
selectValue: (value: string, option: import("../../types").ProductVariantOption) => void;
|
|
12
|
+
validateSelection: (value: string, option: import("../../types").ProductVariantOption) => import("../useProductVariants/useProductVariants").VariantValidation;
|
|
13
|
+
getVariantForSelection: (value: string, option: import("../../types").ProductVariantOption) => import("../../types").ProductVariant;
|
|
14
|
+
missingOptions: import("../../types").ProductVariantOption[];
|
|
15
|
+
getMissingOptions: () => import("../../types").ProductVariantOption[];
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { useProductVariants } from '../useProductVariants';
|
|
2
|
+
import { useStockStatus } from '@jetshop/core/hooks/useStockStatus';
|
|
3
|
+
import { useEffect } from 'react';
|
|
4
|
+
export function usePackageProductItem(item, updateItem, { preselectCheapest } = {}) {
|
|
5
|
+
var _a;
|
|
6
|
+
const { product } = item;
|
|
7
|
+
const variantHandler = useProductVariants(product, {
|
|
8
|
+
preselectCheapest: preselectCheapest
|
|
9
|
+
});
|
|
10
|
+
const variantValidation = variantHandler.validation;
|
|
11
|
+
const selectedVariantArticleNumber = (_a = variantHandler.selectedVariant) === null || _a === void 0 ? void 0 : _a.articleNumber;
|
|
12
|
+
const stockStatus = useStockStatus(variantHandler.selectedVariant || product);
|
|
13
|
+
useEffect(() => {
|
|
14
|
+
updateItem(product.articleNumber, selectedVariantArticleNumber, variantValidation === 'valid');
|
|
15
|
+
}, [
|
|
16
|
+
product.articleNumber,
|
|
17
|
+
selectedVariantArticleNumber,
|
|
18
|
+
updateItem,
|
|
19
|
+
variantHandler.selectedVariant,
|
|
20
|
+
variantValidation
|
|
21
|
+
]);
|
|
22
|
+
return {
|
|
23
|
+
stockStatus,
|
|
24
|
+
variantHandler
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=usePackageProductItem.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"usePackageProductItem.js","sourceRoot":"","sources":["usePackageProductItem.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACpE,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AASlC,MAAM,UAAU,qBAAqB,CACnC,IAAiB,EACjB,UAAsB,EACtB,EACE,iBAAiB,KAGf,EAAE;;IAEN,MAAM,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;IACzB,MAAM,cAAc,GAAG,kBAAkB,CAAC,OAAO,EAAE;QACjD,iBAAiB,EAAE,iBAAiB;KACrC,CAAC,CAAC;IACH,MAAM,iBAAiB,GAAG,cAAc,CAAC,UAAU,CAAC;IACpD,MAAM,4BAA4B,GAChC,MAAA,cAAc,CAAC,eAAe,0CAAE,aAAa,CAAC;IAChD,MAAM,WAAW,GAAG,cAAc,CAAC,cAAc,CAAC,eAAe,IAAI,OAAO,CAAC,CAAC;IAE9E,SAAS,CAAC,GAAG,EAAE;QACb,UAAU,CACR,OAAO,CAAC,aAAa,EACrB,4BAA4B,EAC5B,iBAAiB,KAAK,OAAO,CAC9B,CAAC;IACJ,CAAC,EAAE;QACD,OAAO,CAAC,aAAa;QACrB,4BAA4B;QAC5B,UAAU;QACV,cAAc,CAAC,eAAe;QAC9B,iBAAiB;KAClB,CAAC,CAAC;IAEH,OAAO;QACL,WAAW;QACX,cAAc;KACf,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Package, Product } from '../../types';
|
|
2
|
+
import { AddMultipleToCartQueries } from '../useAddMultipleToCart';
|
|
3
|
+
import { DocumentNode } from 'graphql';
|
|
4
|
+
export declare function usePackageProduct({ product, packageProductQuery, priceQuery }: {
|
|
5
|
+
product: Product;
|
|
6
|
+
packageProductQuery?: DocumentNode;
|
|
7
|
+
priceQuery?: DocumentNode;
|
|
8
|
+
}): {
|
|
9
|
+
status: string;
|
|
10
|
+
price: Partial<Package>;
|
|
11
|
+
addPackageToCart: (queries: AddMultipleToCartQueries) => void;
|
|
12
|
+
updatePackageItem: (articleNumber: string, variantArticleNumber: string, valid: boolean) => void;
|
|
13
|
+
packageProduct: Product;
|
|
14
|
+
error: {
|
|
15
|
+
fromState: string;
|
|
16
|
+
messages: string[];
|
|
17
|
+
};
|
|
18
|
+
retry: () => void;
|
|
19
|
+
};
|
|
@@ -0,0 +1,346 @@
|
|
|
1
|
+
import { useMachine } from '@xstate/react';
|
|
2
|
+
import { useApolloClient, useQuery } from '@apollo/client';
|
|
3
|
+
import { produce } from 'immer';
|
|
4
|
+
import { useCallback, useEffect, useMemo, useRef } from 'react';
|
|
5
|
+
import { assign, Machine } from 'xstate';
|
|
6
|
+
import { useAddMultipleToCart } from '../useAddMultipleToCart';
|
|
7
|
+
import packagePriceQuery from './packagePriceQuery.gql';
|
|
8
|
+
// defaults to valid state if items have no variants
|
|
9
|
+
// defaults to invalid if items have variants or are out of stock
|
|
10
|
+
// selecting a variant triggers validate
|
|
11
|
+
// (validate GUARD validates all items)
|
|
12
|
+
// if valid, move to fetching_price state
|
|
13
|
+
// once resolved, move to buyable state
|
|
14
|
+
// if invalid, remain in invalid state
|
|
15
|
+
//
|
|
16
|
+
function itemHasVariants(item) {
|
|
17
|
+
return item.product.hasVariants;
|
|
18
|
+
}
|
|
19
|
+
function itemIsOutOfStock(item) {
|
|
20
|
+
return !item.product.stockStatus.buyable;
|
|
21
|
+
}
|
|
22
|
+
const stateMachine = Machine({
|
|
23
|
+
id: 'package',
|
|
24
|
+
initial: 'loading',
|
|
25
|
+
context: { packageProduct: null, items: {}, price: {}, error: null },
|
|
26
|
+
on: {
|
|
27
|
+
UPDATE_ITEM: {
|
|
28
|
+
actions: 'updateItems',
|
|
29
|
+
target: 'validating',
|
|
30
|
+
cond: (context) => Object.keys(context.items).length > 0
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
states: {
|
|
34
|
+
loading: {
|
|
35
|
+
// During SSR, we already have the package and can head right on to
|
|
36
|
+
// validating.
|
|
37
|
+
always: [
|
|
38
|
+
{
|
|
39
|
+
target: 'validating',
|
|
40
|
+
actions: assign({
|
|
41
|
+
items: (context) => {
|
|
42
|
+
return getInitialState(context.packageProduct).items;
|
|
43
|
+
},
|
|
44
|
+
price: (context) => {
|
|
45
|
+
return getInitialState(context.packageProduct).price;
|
|
46
|
+
}
|
|
47
|
+
}),
|
|
48
|
+
cond: (context) => {
|
|
49
|
+
return !!context.packageProduct.package;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
on: {
|
|
54
|
+
// On the client, we need to wait for the LOADED event to tell us
|
|
55
|
+
// that the package has been retrieved
|
|
56
|
+
LOADED: {
|
|
57
|
+
target: 'validating',
|
|
58
|
+
actions: assign({
|
|
59
|
+
items: (_, event) => {
|
|
60
|
+
return getInitialState(event.packageProduct).items;
|
|
61
|
+
},
|
|
62
|
+
price: (_, event) => {
|
|
63
|
+
return getInitialState(event.packageProduct).price;
|
|
64
|
+
},
|
|
65
|
+
packageProduct: (_, event) => {
|
|
66
|
+
return event.packageProduct;
|
|
67
|
+
}
|
|
68
|
+
})
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
invalid: {},
|
|
73
|
+
validating: {
|
|
74
|
+
always: [
|
|
75
|
+
{
|
|
76
|
+
target: 'valid',
|
|
77
|
+
cond: (context) => {
|
|
78
|
+
return deriveStatus(context.items) === 'valid';
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
target: 'invalid',
|
|
83
|
+
cond: (context) => {
|
|
84
|
+
return deriveStatus(context.items) !== 'valid';
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
valid: {
|
|
90
|
+
initial: 'fetchingPrice',
|
|
91
|
+
states: {
|
|
92
|
+
fetchingPrice: {
|
|
93
|
+
invoke: {
|
|
94
|
+
id: 'fetchPrice',
|
|
95
|
+
src: 'fetchPrice',
|
|
96
|
+
onDone: {
|
|
97
|
+
target: 'buyable',
|
|
98
|
+
actions: assign({
|
|
99
|
+
price: (_, event) => {
|
|
100
|
+
return event.data;
|
|
101
|
+
}
|
|
102
|
+
})
|
|
103
|
+
},
|
|
104
|
+
onError: {
|
|
105
|
+
target: 'error',
|
|
106
|
+
actions: assign({
|
|
107
|
+
error: (_, event) => {
|
|
108
|
+
const errors = event.data;
|
|
109
|
+
return {
|
|
110
|
+
fromState: 'fetchingPrice',
|
|
111
|
+
messages: errors
|
|
112
|
+
.map((err) => err.message)
|
|
113
|
+
.filter(Boolean)
|
|
114
|
+
};
|
|
115
|
+
}
|
|
116
|
+
})
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
buyable: {
|
|
121
|
+
on: {
|
|
122
|
+
ADD_TO_CART: 'adding',
|
|
123
|
+
ERROR: 'error'
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
adding: {
|
|
127
|
+
invoke: {
|
|
128
|
+
id: 'add-to-cart',
|
|
129
|
+
src: 'addToCart',
|
|
130
|
+
onDone: 'added',
|
|
131
|
+
onError: {
|
|
132
|
+
target: 'error',
|
|
133
|
+
actions: assign({
|
|
134
|
+
error: (_, event) => {
|
|
135
|
+
const errors = event.data;
|
|
136
|
+
return {
|
|
137
|
+
fromState: 'adding',
|
|
138
|
+
messages: errors
|
|
139
|
+
.map((err) => err.message)
|
|
140
|
+
.filter(Boolean)
|
|
141
|
+
};
|
|
142
|
+
}
|
|
143
|
+
})
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
added: {
|
|
148
|
+
invoke: {
|
|
149
|
+
id: 'added-refetch',
|
|
150
|
+
src: () => {
|
|
151
|
+
return new Promise((resolve) => {
|
|
152
|
+
setTimeout(() => {
|
|
153
|
+
resolve(400);
|
|
154
|
+
}, 800);
|
|
155
|
+
});
|
|
156
|
+
},
|
|
157
|
+
onDone: {
|
|
158
|
+
target: '#package.validating'
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
error: {
|
|
163
|
+
on: {
|
|
164
|
+
RETRY: '#package.validating'
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}, {
|
|
171
|
+
actions: {
|
|
172
|
+
updateItems: assign({
|
|
173
|
+
items: (context, event) => {
|
|
174
|
+
if (event.type === 'UPDATE_ITEM') {
|
|
175
|
+
const item = context.items[event.articleNumber];
|
|
176
|
+
if (!item) {
|
|
177
|
+
throw new Error('article does not exist in package');
|
|
178
|
+
}
|
|
179
|
+
if (event.variantArticleNumber) {
|
|
180
|
+
const match = item.variants.includes(event.variantArticleNumber);
|
|
181
|
+
if (!match) {
|
|
182
|
+
throw new Error('variant does not exist on article');
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
const { articleNumber, valid, variantArticleNumber } = event;
|
|
186
|
+
const items = produce(context.items, (draft) => {
|
|
187
|
+
draft[articleNumber] = Object.assign(Object.assign({}, draft[articleNumber]), { valid,
|
|
188
|
+
variantArticleNumber });
|
|
189
|
+
});
|
|
190
|
+
return items;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
})
|
|
194
|
+
}
|
|
195
|
+
});
|
|
196
|
+
function getInitialState(packageProduct) {
|
|
197
|
+
var _a, _b;
|
|
198
|
+
const items = (_b = (_a = packageProduct === null || packageProduct === void 0 ? void 0 : packageProduct.package) === null || _a === void 0 ? void 0 : _a.items) === null || _b === void 0 ? void 0 : _b.reduce((dict, item) => {
|
|
199
|
+
var _a;
|
|
200
|
+
dict[item.product.articleNumber] = {
|
|
201
|
+
product: item.product,
|
|
202
|
+
articleNumber: item.product.articleNumber,
|
|
203
|
+
hasVariants: item.product.hasVariants,
|
|
204
|
+
variantArticleNumber: null,
|
|
205
|
+
variants: item.product.hasVariants
|
|
206
|
+
? (_a = item.product.variants) === null || _a === void 0 ? void 0 : _a.values.map((variant) => variant.articleNumber)
|
|
207
|
+
: null,
|
|
208
|
+
valid: !itemHasVariants(item) && !itemIsOutOfStock(item),
|
|
209
|
+
quantity: item.minQuantity
|
|
210
|
+
};
|
|
211
|
+
return dict;
|
|
212
|
+
}, {});
|
|
213
|
+
const price = packageProduct.package;
|
|
214
|
+
return { items, price };
|
|
215
|
+
}
|
|
216
|
+
function flattenItems(items) {
|
|
217
|
+
// perhaps we need the rest of the product detail?
|
|
218
|
+
// Or otherwise the types need to be changed
|
|
219
|
+
return Object.entries(items).map((entry) => {
|
|
220
|
+
const { articleNumber, variantArticleNumber, quantity, product } = entry[1];
|
|
221
|
+
return Object.assign(Object.assign({}, product), { articleNumber: variantArticleNumber || articleNumber, quantity });
|
|
222
|
+
});
|
|
223
|
+
}
|
|
224
|
+
function deriveStatus(packageItems) {
|
|
225
|
+
const packageIsValid = Object.values(packageItems).every((item) => item.valid);
|
|
226
|
+
if (packageIsValid) {
|
|
227
|
+
return 'valid';
|
|
228
|
+
}
|
|
229
|
+
return 'invalid';
|
|
230
|
+
}
|
|
231
|
+
function fetchPrice(packageArticleNumber, items, opts) {
|
|
232
|
+
return opts.apolloClient
|
|
233
|
+
.query({
|
|
234
|
+
query: opts.query || packagePriceQuery,
|
|
235
|
+
variables: {
|
|
236
|
+
articleNumber: packageArticleNumber,
|
|
237
|
+
products: Object.entries(items).map((entry) => {
|
|
238
|
+
// This should be cleaned up - we have to transform to the structure
|
|
239
|
+
// that the API expects
|
|
240
|
+
const { articleNumber, variantArticleNumber } = entry[1];
|
|
241
|
+
return {
|
|
242
|
+
product: articleNumber,
|
|
243
|
+
// if you want to test error handling, just pass a random string for variant
|
|
244
|
+
// variant: 'sdfgsdfg'
|
|
245
|
+
variant: variantArticleNumber
|
|
246
|
+
};
|
|
247
|
+
})
|
|
248
|
+
}
|
|
249
|
+
})
|
|
250
|
+
.then(({ data }) => {
|
|
251
|
+
return data.product.package;
|
|
252
|
+
}, (err) => {
|
|
253
|
+
return Promise.reject(err.graphQLErrors);
|
|
254
|
+
});
|
|
255
|
+
}
|
|
256
|
+
export function usePackageProduct({ product, packageProductQuery, priceQuery }) {
|
|
257
|
+
const mounted = useRef(false);
|
|
258
|
+
useEffect(() => {
|
|
259
|
+
mounted.current = true;
|
|
260
|
+
}, []);
|
|
261
|
+
const client = useApolloClient();
|
|
262
|
+
const { data } = useQuery(packageProductQuery, {
|
|
263
|
+
variables: { articleNumber: product.articleNumber }
|
|
264
|
+
});
|
|
265
|
+
const [current, send] = useMachine(stateMachine, {
|
|
266
|
+
// During SSR, data.product will have resolved, and we can initialise with
|
|
267
|
+
// it. Otherwise, use the product passed in
|
|
268
|
+
context: { packageProduct: (data === null || data === void 0 ? void 0 : data.product) || product },
|
|
269
|
+
services: {
|
|
270
|
+
fetchPrice: (context) => {
|
|
271
|
+
return fetchPrice(product.articleNumber, context.items, {
|
|
272
|
+
apolloClient: client,
|
|
273
|
+
query: priceQuery
|
|
274
|
+
});
|
|
275
|
+
},
|
|
276
|
+
addToCart: (_, event) => {
|
|
277
|
+
// eslint-disable-next-line
|
|
278
|
+
return addToCartMutation(event.queries).then((result) => {
|
|
279
|
+
if (result.errors) {
|
|
280
|
+
return Promise.reject(result.errors);
|
|
281
|
+
}
|
|
282
|
+
else {
|
|
283
|
+
return result;
|
|
284
|
+
}
|
|
285
|
+
});
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
});
|
|
289
|
+
useEffect(() => {
|
|
290
|
+
// On the client we send the LOADED event once the package query resolves
|
|
291
|
+
if (current.value !== 'loading')
|
|
292
|
+
return;
|
|
293
|
+
if (!(data === null || data === void 0 ? void 0 : data.product))
|
|
294
|
+
return;
|
|
295
|
+
send({ type: 'LOADED', packageProduct: data.product });
|
|
296
|
+
}, [current.value, data, send]);
|
|
297
|
+
const [addToCartMutation] = useAddMultipleToCart(flattenItems(current.context.items));
|
|
298
|
+
const addPackageToCart = (queries) => {
|
|
299
|
+
// invokes addToCart
|
|
300
|
+
send({ type: 'ADD_TO_CART', queries });
|
|
301
|
+
};
|
|
302
|
+
const updatePackageItem = useCallback(function updatePackageItem(articleNumber, variantArticleNumber, valid) {
|
|
303
|
+
send({
|
|
304
|
+
type: 'UPDATE_ITEM',
|
|
305
|
+
articleNumber,
|
|
306
|
+
variantArticleNumber,
|
|
307
|
+
valid
|
|
308
|
+
});
|
|
309
|
+
}, [send]);
|
|
310
|
+
// Just doing this to simplify the status we expose
|
|
311
|
+
const status = useMemo(() => {
|
|
312
|
+
switch (true) {
|
|
313
|
+
case current.matches({ valid: 'fetchingPrice' }):
|
|
314
|
+
return 'fetching_price';
|
|
315
|
+
case current.matches({ valid: 'buyable' }):
|
|
316
|
+
return 'buyable';
|
|
317
|
+
case current.matches({ valid: 'adding' }):
|
|
318
|
+
return 'adding';
|
|
319
|
+
case current.matches({ valid: 'added' }):
|
|
320
|
+
return 'added';
|
|
321
|
+
case current.matches({ valid: 'error' }):
|
|
322
|
+
return 'error';
|
|
323
|
+
case current.matches('loading'):
|
|
324
|
+
return 'loading';
|
|
325
|
+
default:
|
|
326
|
+
return 'invalid';
|
|
327
|
+
}
|
|
328
|
+
}, [current]);
|
|
329
|
+
const retry = useCallback(function retry() {
|
|
330
|
+
if (status === 'error') {
|
|
331
|
+
send({
|
|
332
|
+
type: 'RETRY'
|
|
333
|
+
});
|
|
334
|
+
}
|
|
335
|
+
}, [send, status]);
|
|
336
|
+
return {
|
|
337
|
+
status,
|
|
338
|
+
price: current.context.price,
|
|
339
|
+
addPackageToCart,
|
|
340
|
+
updatePackageItem,
|
|
341
|
+
packageProduct: current.context.packageProduct,
|
|
342
|
+
error: current.context.error,
|
|
343
|
+
retry
|
|
344
|
+
};
|
|
345
|
+
}
|
|
346
|
+
//# sourceMappingURL=usePackageProducts.js.map
|