@jetshop/core 6.3.8-alpha.20 → 6.3.8-alpha.30
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 +361 -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 +2 -2
- 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,98 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
import { addMissingConfig } from '../addMissingConfig';
|
|
11
|
+
import { createGraphqlServerWorker, storeapiExtensionWorker } from './createApolloServerWorker';
|
|
12
|
+
import { createClient } from '../apollo';
|
|
13
|
+
import createRenderer from './createRenderer';
|
|
14
|
+
// Import HTML template and loadable stats as inline strings/objects
|
|
15
|
+
// @ts-ignore
|
|
16
|
+
import template from '@jetshop/react-scripts/config/paths/appBuild/index.html';
|
|
17
|
+
import loadableStats from '@jetshop/react-scripts/config/paths/appBuildPublic/loadable-stats.json';
|
|
18
|
+
function validateBootOptions(opts) {
|
|
19
|
+
var _a, _b;
|
|
20
|
+
const errors = [];
|
|
21
|
+
if ((_b = (_a = opts.server) === null || _a === void 0 ? void 0 : _a.graphql) === null || _b === void 0 ? void 0 : _b.extensions.length) {
|
|
22
|
+
if (opts.schemaExtensions.length || opts.apolloConfig.enableGateway) {
|
|
23
|
+
errors.push(`It looks like you're trying to use both the deprecated and the supported Graphql Gateway configuration. Please remove the legacy implementation that is using "apolloConfig.enableGateway" and "schemaExtensions"`);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
if (opts.schemaExtensions &&
|
|
27
|
+
opts.schemaExtensions.length > 0 &&
|
|
28
|
+
!opts.apolloConfig.enableGateway) {
|
|
29
|
+
errors.push(`We have specified ${opts.schemaExtensions.length} schema extensions but "apolloConfig.enableGateway" is falsy. Remove schema extensions or disable gateway.`);
|
|
30
|
+
}
|
|
31
|
+
if (opts.optimize) {
|
|
32
|
+
if (!opts.optimize.container)
|
|
33
|
+
errors.push('You need to provide a optimize container id in `shop.config.js`.');
|
|
34
|
+
if (!opts.optimize.experimentId)
|
|
35
|
+
errors.push('You need to provide an experiment id in `shop.config.js`.');
|
|
36
|
+
if (!opts.optimize.variantWeights ||
|
|
37
|
+
opts.optimize.variantWeights.length < 2)
|
|
38
|
+
errors.push('You need at least two variants in an experiment. Add at least two `variantWeights` in `shop.config.js`.');
|
|
39
|
+
}
|
|
40
|
+
if (errors.length > 0) {
|
|
41
|
+
throw new Error(`Boot options invalid, check your "shop.config.js". Errors:\n${errors
|
|
42
|
+
.map((str) => `- ${str}`)
|
|
43
|
+
.join('\n')}`);
|
|
44
|
+
}
|
|
45
|
+
return addMissingConfig(opts);
|
|
46
|
+
}
|
|
47
|
+
export const createWorkerApp = (Component, userConfig) => __awaiter(void 0, void 0, void 0, function* () {
|
|
48
|
+
var _a, _b;
|
|
49
|
+
const config = validateBootOptions(userConfig);
|
|
50
|
+
const { apolloConfig, server } = config;
|
|
51
|
+
// Initialize GraphQL server with modern approach
|
|
52
|
+
let graphqlHandler = null;
|
|
53
|
+
if ((_b = (_a = server === null || server === void 0 ? void 0 : server.graphql) === null || _a === void 0 ? void 0 : _a.extensions) === null || _b === void 0 ? void 0 : _b.length) {
|
|
54
|
+
graphqlHandler = yield createGraphqlServerWorker({
|
|
55
|
+
extensions: [
|
|
56
|
+
storeapiExtensionWorker({
|
|
57
|
+
token: apolloConfig.token,
|
|
58
|
+
shopid: apolloConfig.shopid,
|
|
59
|
+
endpoint: apolloConfig.graphQLURI
|
|
60
|
+
})
|
|
61
|
+
].concat(server.graphql.extensions)
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
const { client } = createClient({ apolloConfig });
|
|
65
|
+
const renderer = createRenderer(template, Component, Object.assign({ loadableStats, globalClient: client, trackers: config.trackers || [] }, config));
|
|
66
|
+
// Return Cloudflare Workers fetch handler
|
|
67
|
+
return (request, _, __) => __awaiter(void 0, void 0, void 0, function* () {
|
|
68
|
+
try {
|
|
69
|
+
const url = new URL(request.url);
|
|
70
|
+
// Route: GraphQL endpoint
|
|
71
|
+
if (url.pathname === '/graphql' && graphqlHandler) {
|
|
72
|
+
return yield graphqlHandler(request);
|
|
73
|
+
}
|
|
74
|
+
// Route: Debug headers
|
|
75
|
+
if (url.pathname === '/debug/headers') {
|
|
76
|
+
const headersObj = {};
|
|
77
|
+
request.headers.forEach((value, key) => {
|
|
78
|
+
headersObj[key] = value;
|
|
79
|
+
});
|
|
80
|
+
return new Response(JSON.stringify(headersObj), {
|
|
81
|
+
status: 200,
|
|
82
|
+
headers: { 'Content-Type': 'application/json' }
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
// Route: Tracking endpoint (not implemented - return 501)
|
|
86
|
+
if (url.pathname === '/_event') {
|
|
87
|
+
return new Response('Not Implemented', { status: 501 });
|
|
88
|
+
}
|
|
89
|
+
// Route: All other requests to SSR renderer
|
|
90
|
+
return yield renderer(request);
|
|
91
|
+
}
|
|
92
|
+
catch (error) {
|
|
93
|
+
console.error('Worker error:', error);
|
|
94
|
+
return new Response('Internal Server Error', { status: 500 });
|
|
95
|
+
}
|
|
96
|
+
});
|
|
97
|
+
});
|
|
98
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { FormikProps } from 'formik';
|
|
3
|
+
import { Price, Product, ProductVariant, ProductVariantOption } from '../types';
|
|
4
|
+
import { DocumentNode } from 'graphql';
|
|
5
|
+
import { ApolloError } from '@apollo/client';
|
|
6
|
+
type Comments = Record<string, string>;
|
|
7
|
+
type Options = Record<string, string>;
|
|
8
|
+
interface AddToCartFormikValues {
|
|
9
|
+
quantity: number;
|
|
10
|
+
comments: Comments;
|
|
11
|
+
options?: Options;
|
|
12
|
+
[otherValues: string]: any;
|
|
13
|
+
}
|
|
14
|
+
interface AddToCartCallbackOptions {
|
|
15
|
+
mutationId: string;
|
|
16
|
+
quantity: number;
|
|
17
|
+
product: Product;
|
|
18
|
+
selectedVariation: ProductVariant;
|
|
19
|
+
price: Price;
|
|
20
|
+
}
|
|
21
|
+
interface AddToCartFormikProps {
|
|
22
|
+
product: Product;
|
|
23
|
+
variant?: ProductVariant;
|
|
24
|
+
commentValidators?: {
|
|
25
|
+
[commentName: string]: ({ name, value }: {
|
|
26
|
+
name?: string;
|
|
27
|
+
value: string;
|
|
28
|
+
}) => string;
|
|
29
|
+
};
|
|
30
|
+
getMissingOptions?(): ProductVariantOption[] | null;
|
|
31
|
+
initialValues?: Record<string, any>;
|
|
32
|
+
cartQuery?: DocumentNode;
|
|
33
|
+
cartMutation?: DocumentNode;
|
|
34
|
+
onAddToCartInit?: (opts: AddToCartCallbackOptions) => void;
|
|
35
|
+
onAddToCartSuccess?: (opts: AddToCartCallbackOptions) => void;
|
|
36
|
+
onAddToCartError?: (opts: AddToCartCallbackOptions & {
|
|
37
|
+
error: Error | ApolloError;
|
|
38
|
+
}) => void;
|
|
39
|
+
children: (props: FormikProps<AddToCartFormikValues>) => React.ReactNode;
|
|
40
|
+
}
|
|
41
|
+
export declare function AddToCartFormik({ product, variant, commentValidators, getMissingOptions, initialValues, onAddToCartInit, onAddToCartError, onAddToCartSuccess, cartMutation, children }: AddToCartFormikProps): React.JSX.Element;
|
|
42
|
+
export default AddToCartFormik;
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
import React from 'react';
|
|
11
|
+
import { useAddToCart } from './useAddToCart';
|
|
12
|
+
import { FormikProvider } from 'formik';
|
|
13
|
+
import { useMutation } from '@apollo/client';
|
|
14
|
+
import { addToCartError, addToCartSuccess, useTrackProductAdd } from '../components/Mutation/AddToCart/addToCartUtils';
|
|
15
|
+
import uniqueId from '@jetshop/core/helpers/uniqueId';
|
|
16
|
+
import { useCartId } from '../components/Cart/CartIdContext';
|
|
17
|
+
export function AddToCartFormik({ product, variant, commentValidators = {}, getMissingOptions, initialValues,
|
|
18
|
+
// Apollo specific props
|
|
19
|
+
onAddToCartInit, onAddToCartError, onAddToCartSuccess, cartMutation,
|
|
20
|
+
// Backwards compatability with render props
|
|
21
|
+
children }) {
|
|
22
|
+
const [addToCartMutation] = useMutation(cartMutation, {
|
|
23
|
+
onCompleted: () => localStorage.setItem('cartChange', '1')
|
|
24
|
+
});
|
|
25
|
+
const { cartId, setCartId } = useCartId();
|
|
26
|
+
const trackAddProductVariant = useTrackProductAdd(variant);
|
|
27
|
+
function submit({ input, optimistic }) {
|
|
28
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
29
|
+
trackAddProductVariant(product, input.quantity);
|
|
30
|
+
const mutationId = uniqueId();
|
|
31
|
+
const callbackOptions = {
|
|
32
|
+
product: optimistic.product,
|
|
33
|
+
price: optimistic.price,
|
|
34
|
+
quantity: input.quantity,
|
|
35
|
+
selectedVariation: variant,
|
|
36
|
+
mutationId
|
|
37
|
+
};
|
|
38
|
+
if (onAddToCartInit) {
|
|
39
|
+
onAddToCartInit(callbackOptions);
|
|
40
|
+
}
|
|
41
|
+
return addToCartMutation({
|
|
42
|
+
variables: {
|
|
43
|
+
input
|
|
44
|
+
},
|
|
45
|
+
update: (cache, { data }) => {
|
|
46
|
+
cache.modify({
|
|
47
|
+
fields: {
|
|
48
|
+
cart() {
|
|
49
|
+
var _a;
|
|
50
|
+
return (_a = data === null || data === void 0 ? void 0 : data.addToCart) === null || _a === void 0 ? void 0 : _a.cart;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
})
|
|
56
|
+
.then(addToCartSuccess({
|
|
57
|
+
onAddToCartSuccess,
|
|
58
|
+
callbackOptions,
|
|
59
|
+
cartId,
|
|
60
|
+
setCartId
|
|
61
|
+
}))
|
|
62
|
+
.catch(addToCartError({
|
|
63
|
+
onAddToCartError,
|
|
64
|
+
callbackOptions
|
|
65
|
+
}));
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
const { form } = useAddToCart({
|
|
69
|
+
product,
|
|
70
|
+
variant,
|
|
71
|
+
commentValidators,
|
|
72
|
+
getMissingOptions,
|
|
73
|
+
initialValues,
|
|
74
|
+
submit
|
|
75
|
+
});
|
|
76
|
+
return React.createElement(FormikProvider, { value: form }, children(form));
|
|
77
|
+
}
|
|
78
|
+
export default AddToCartFormik;
|
|
79
|
+
//# sourceMappingURL=AddToCartFormik.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AddToCartFormik.js","sourceRoot":"","sources":["AddToCartFormik.tsx"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAmB,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC/D,OAAO,EAAE,cAAc,EAAe,MAAM,QAAQ,CAAC;AAWrD,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EACL,cAAc,EACd,gBAAgB,EAChB,kBAAkB,EACnB,MAAM,iDAAiD,CAAC;AACzD,OAAO,QAAQ,MAAM,gCAAgC,CAAC;AACtD,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AA6C7D,MAAM,UAAU,eAAe,CAAC,EAC9B,OAAO,EACP,OAAO,EACP,iBAAiB,GAAG,EAAE,EACtB,iBAAiB,EACjB,aAAa;AACb,wBAAwB;AACxB,eAAe,EACf,gBAAgB,EAChB,kBAAkB,EAClB,YAAY;AACZ,4CAA4C;AAC5C,QAAQ,EACa;IACrB,MAAM,CAAC,iBAAiB,CAAC,GAAG,WAAW,CAGrC,YAAY,EAAE;QACd,WAAW,EAAE,GAAG,EAAE,CAAC,YAAY,CAAC,OAAO,CAAC,YAAY,EAAE,GAAG,CAAC;KAC3D,CAAC,CAAC;IAEH,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,GAAG,SAAS,EAAE,CAAC;IAC1C,MAAM,sBAAsB,GAAG,kBAAkB,CAAC,OAAO,CAAC,CAAC;IAE3D,SAAe,MAAM,CAAC,EAAE,KAAK,EAAE,UAAU,EAAmB;;YAC1D,sBAAsB,CAAC,OAAO,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;YAChD,MAAM,UAAU,GAAG,QAAQ,EAAE,CAAC;YAE9B,MAAM,eAAe,GAAG;gBACtB,OAAO,EAAE,UAAU,CAAC,OAAO;gBAC3B,KAAK,EAAE,UAAU,CAAC,KAAK;gBACvB,QAAQ,EAAE,KAAK,CAAC,QAAQ;gBACxB,iBAAiB,EAAE,OAAO;gBAC1B,UAAU;aACX,CAAC;YAEF,IAAI,eAAe,EAAE;gBACnB,eAAe,CAAC,eAAe,CAAC,CAAC;aAClC;YAED,OAAO,iBAAiB,CAAC;gBACvB,SAAS,EAAE;oBACT,KAAK;iBACN;gBACD,MAAM,EAAE,CAAC,KAAK,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE;oBAC1B,KAAK,CAAC,MAAM,CAAC;wBACX,MAAM,EAAE;4BACN,IAAI;;gCACF,OAAO,MAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,SAAS,0CAAE,IAAI,CAAC;4BAC/B,CAAC;yBACF;qBACF,CAAC,CAAC;gBACL,CAAC;aACF,CAAC;iBACC,IAAI,CACH,gBAAgB,CAAC;gBACf,kBAAkB;gBAClB,eAAe;gBACf,MAAM;gBACN,SAAS;aACV,CAAC,CACH;iBACA,KAAK,CACJ,cAAc,CAAC;gBACb,gBAAgB;gBAChB,eAAe;aAChB,CAAC,CACH,CAAC;QACN,CAAC;KAAA;IAED,MAAM,EAAE,IAAI,EAAE,GAAG,YAAY,CAAC;QAC5B,OAAO;QACP,OAAO;QACP,iBAAiB;QACjB,iBAAiB;QACjB,aAAa;QACb,MAAM;KACP,CAAC,CAAC;IAEH,OAAO,oBAAC,cAAc,IAAC,KAAK,EAAE,IAAI,IAAG,QAAQ,CAAC,IAAI,CAAC,CAAkB,CAAC;AACxE,CAAC;AAED,eAAe,eAAe,CAAC"}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AddToCartInput, Price, Product, ProductVariant, ProductVariantOption } from '../types';
|
|
3
|
+
type Comments = Record<string, string>;
|
|
4
|
+
type Options = Record<string, string>;
|
|
5
|
+
export interface AddToCartSubmit {
|
|
6
|
+
input: AddToCartInput;
|
|
7
|
+
optimistic: {
|
|
8
|
+
price?: Price;
|
|
9
|
+
previousPrice?: Price;
|
|
10
|
+
quantity: number;
|
|
11
|
+
product: Product;
|
|
12
|
+
variant?: ProductVariant;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
interface AddToCartOptions {
|
|
16
|
+
product?: Product;
|
|
17
|
+
variant?: ProductVariant;
|
|
18
|
+
commentValidators?: {
|
|
19
|
+
[commentName: string]: ({ name, value }: {
|
|
20
|
+
name?: string;
|
|
21
|
+
value: string;
|
|
22
|
+
}) => string;
|
|
23
|
+
};
|
|
24
|
+
getMissingOptions?(): ProductVariantOption[] | null;
|
|
25
|
+
submit: (data: AddToCartSubmit) => Promise<any>;
|
|
26
|
+
initialValues?: Record<string, any>;
|
|
27
|
+
}
|
|
28
|
+
export interface AddToCartFormikValues {
|
|
29
|
+
quantity: number;
|
|
30
|
+
comments: Comments;
|
|
31
|
+
options?: Options;
|
|
32
|
+
[otherValues: string]: any;
|
|
33
|
+
}
|
|
34
|
+
export interface AddToCartFormikErrors {
|
|
35
|
+
quantity?: string;
|
|
36
|
+
comments?: Comments;
|
|
37
|
+
options?: Options;
|
|
38
|
+
[otherValues: string]: any;
|
|
39
|
+
}
|
|
40
|
+
export declare function useAddToCart({ product, variant, submit, commentValidators, getMissingOptions, initialValues }: AddToCartOptions): {
|
|
41
|
+
form: {
|
|
42
|
+
initialValues: AddToCartFormikValues;
|
|
43
|
+
initialErrors: import("formik").FormikErrors<unknown>;
|
|
44
|
+
initialTouched: import("formik").FormikTouched<unknown>;
|
|
45
|
+
initialStatus: any;
|
|
46
|
+
handleBlur: {
|
|
47
|
+
(e: import("react").FocusEvent<any, Element>): void;
|
|
48
|
+
<T = any>(fieldOrEvent: T): T extends string ? (e: any) => void : void;
|
|
49
|
+
};
|
|
50
|
+
handleChange: {
|
|
51
|
+
(e: import("react").ChangeEvent<any>): void;
|
|
52
|
+
<T_1 = string | import("react").ChangeEvent<any>>(field: T_1): T_1 extends import("react").ChangeEvent<any> ? void : (e: string | import("react").ChangeEvent<any>) => void;
|
|
53
|
+
};
|
|
54
|
+
handleReset: (e: any) => void;
|
|
55
|
+
handleSubmit: (e?: import("react").FormEvent<HTMLFormElement>) => void;
|
|
56
|
+
resetForm: (nextState?: Partial<import("formik").FormikState<AddToCartFormikValues>>) => void;
|
|
57
|
+
setErrors: (errors: import("formik").FormikErrors<AddToCartFormikValues>) => void;
|
|
58
|
+
setFormikState: (stateOrCb: import("formik").FormikState<AddToCartFormikValues> | ((state: import("formik").FormikState<AddToCartFormikValues>) => import("formik").FormikState<AddToCartFormikValues>)) => void;
|
|
59
|
+
setFieldTouched: (field: string, touched?: boolean, shouldValidate?: boolean) => Promise<void> | Promise<import("formik").FormikErrors<AddToCartFormikValues>>;
|
|
60
|
+
setFieldValue: (field: string, value: any, shouldValidate?: boolean) => Promise<void> | Promise<import("formik").FormikErrors<AddToCartFormikValues>>;
|
|
61
|
+
setFieldError: (field: string, value: string) => void;
|
|
62
|
+
setStatus: (status: any) => void;
|
|
63
|
+
setSubmitting: (isSubmitting: boolean) => void;
|
|
64
|
+
setTouched: (touched: import("formik").FormikTouched<AddToCartFormikValues>, shouldValidate?: boolean) => Promise<void> | Promise<import("formik").FormikErrors<AddToCartFormikValues>>;
|
|
65
|
+
setValues: (values: import("react").SetStateAction<AddToCartFormikValues>, shouldValidate?: boolean) => Promise<void> | Promise<import("formik").FormikErrors<AddToCartFormikValues>>;
|
|
66
|
+
submitForm: () => Promise<any>;
|
|
67
|
+
validateForm: (values?: AddToCartFormikValues) => Promise<import("formik").FormikErrors<AddToCartFormikValues>>;
|
|
68
|
+
validateField: (name: string) => Promise<void> | Promise<string>;
|
|
69
|
+
isValid: boolean;
|
|
70
|
+
dirty: boolean;
|
|
71
|
+
unregisterField: (name: string) => void;
|
|
72
|
+
registerField: (name: string, { validate }: any) => void;
|
|
73
|
+
getFieldProps: (nameOrOptions: string | import("formik").FieldConfig<any>) => import("formik").FieldInputProps<any>;
|
|
74
|
+
getFieldMeta: (name: string) => import("formik").FieldMetaProps<any>;
|
|
75
|
+
getFieldHelpers: (name: string) => import("formik").FieldHelperProps<any>;
|
|
76
|
+
validateOnBlur: boolean;
|
|
77
|
+
validateOnChange: boolean;
|
|
78
|
+
validateOnMount: boolean;
|
|
79
|
+
values: AddToCartFormikValues;
|
|
80
|
+
errors: import("formik").FormikErrors<AddToCartFormikValues>;
|
|
81
|
+
touched: import("formik").FormikTouched<AddToCartFormikValues>;
|
|
82
|
+
isSubmitting: boolean;
|
|
83
|
+
isValidating: boolean;
|
|
84
|
+
status?: any;
|
|
85
|
+
submitCount: number;
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
export {};
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { useContext } from 'react';
|
|
2
|
+
import { useCartId } from '../components/Cart/CartIdContext';
|
|
3
|
+
import { getArticleNumber } from '../components/Mutation/AddToCart/addToCartUtils';
|
|
4
|
+
import ProductConfigurationContext from '../components/ProductConfigurationProvider/ProductConfigurationContext';
|
|
5
|
+
import { useDynamicPrice } from '../hooks/useDynamicPrice';
|
|
6
|
+
import { useFormik } from 'formik';
|
|
7
|
+
import { useIntl } from '@jetshop/intl';
|
|
8
|
+
import { useStockStatus } from '../hooks/Product/useStockStatus';
|
|
9
|
+
const useValidate = ({ commentValidators, articleNumber, product, variant, getMissingOptions }) => {
|
|
10
|
+
var _a, _b;
|
|
11
|
+
const t = useIntl();
|
|
12
|
+
const { status, maxOrderQuantity } = useStockStatus(variant || product);
|
|
13
|
+
const isPreOrderRequired = !!((_a = product.preOrder) === null || _a === void 0 ? void 0 : _a.fromDate) && !!((_b = product.preOrder) === null || _b === void 0 ? void 0 : _b.toDate);
|
|
14
|
+
const validate = (values) => {
|
|
15
|
+
const errors = {};
|
|
16
|
+
if (status !== 'inStock') {
|
|
17
|
+
errors.status = t('Product is not in stock');
|
|
18
|
+
}
|
|
19
|
+
if (values.quantity < 1) {
|
|
20
|
+
errors.quantity = t('Please enter a valid quantity');
|
|
21
|
+
}
|
|
22
|
+
if (maxOrderQuantity && values.quantity > maxOrderQuantity) {
|
|
23
|
+
errors.quantity = t('{maxOrderQuantity} is the maximum order quantity', {
|
|
24
|
+
maxOrderQuantity
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
Object.keys(values.comments).forEach((name) => {
|
|
28
|
+
var _a;
|
|
29
|
+
const validator = commentValidators[name];
|
|
30
|
+
if (validator) {
|
|
31
|
+
const error = validator({ value: values.comments[name] });
|
|
32
|
+
if (error) {
|
|
33
|
+
if (typeof errors.comments === 'undefined') {
|
|
34
|
+
errors.comments = {};
|
|
35
|
+
}
|
|
36
|
+
errors.comments[name] = error;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
if (((_a = product.customerComments.find((customerComment) => customerComment.name === name)) === null || _a === void 0 ? void 0 : _a.required) &&
|
|
40
|
+
values.comments[name].length === 0) {
|
|
41
|
+
if (typeof errors.comments === 'undefined') {
|
|
42
|
+
errors.comments = {};
|
|
43
|
+
}
|
|
44
|
+
errors.comments[name] = t(`{customerCommentName} is required`, {
|
|
45
|
+
customerCommentName: name
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
if (!articleNumber) {
|
|
50
|
+
if (typeof errors.options === 'undefined') {
|
|
51
|
+
errors.options = {};
|
|
52
|
+
}
|
|
53
|
+
const missingOptions = getMissingOptions();
|
|
54
|
+
missingOptions.forEach((option) => {
|
|
55
|
+
errors.options[option.name] = t(`{optionName} is required`, {
|
|
56
|
+
optionName: option.name
|
|
57
|
+
});
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
if (!values.preOrder && isPreOrderRequired) {
|
|
61
|
+
errors.preOrder = t('Pre-order date is required');
|
|
62
|
+
}
|
|
63
|
+
return errors;
|
|
64
|
+
};
|
|
65
|
+
return { validate };
|
|
66
|
+
};
|
|
67
|
+
export function useAddToCart({ product, variant, submit, commentValidators = {}, getMissingOptions, initialValues }) {
|
|
68
|
+
var _a, _b;
|
|
69
|
+
if (!product)
|
|
70
|
+
throw new Error('No product was supplied to useAddToCart');
|
|
71
|
+
const productConfigurationContext = useContext(ProductConfigurationContext);
|
|
72
|
+
const configurationIds = productConfigurationContext === null || productConfigurationContext === void 0 ? void 0 : productConfigurationContext.ids;
|
|
73
|
+
const price = useDynamicPrice(product, variant);
|
|
74
|
+
const { cartId } = useCartId();
|
|
75
|
+
const articleNumber = getArticleNumber(product, variant);
|
|
76
|
+
const initialComments = {};
|
|
77
|
+
if (product.customerComments) {
|
|
78
|
+
product.customerComments.forEach(({ name }) => (initialComments[name] = ''));
|
|
79
|
+
}
|
|
80
|
+
const initialOptions = {};
|
|
81
|
+
(_b = (_a = product === null || product === void 0 ? void 0 : product.variants) === null || _a === void 0 ? void 0 : _a.options) === null || _b === void 0 ? void 0 : _b.forEach((option) => {
|
|
82
|
+
initialOptions[option.name] = '';
|
|
83
|
+
});
|
|
84
|
+
const { validate } = useValidate({
|
|
85
|
+
commentValidators,
|
|
86
|
+
articleNumber,
|
|
87
|
+
product,
|
|
88
|
+
variant,
|
|
89
|
+
getMissingOptions
|
|
90
|
+
});
|
|
91
|
+
const formik = useFormik({
|
|
92
|
+
validateOnChange: false,
|
|
93
|
+
validate,
|
|
94
|
+
initialValues: Object.assign({ quantity: 1, comments: initialComments, options: initialOptions }, initialValues),
|
|
95
|
+
onSubmit: (values) => {
|
|
96
|
+
const comments = Object.keys(values.comments).map((name) => ({
|
|
97
|
+
name,
|
|
98
|
+
value: values.comments[name]
|
|
99
|
+
}));
|
|
100
|
+
const preOrderDate = values.preOrder ? new Date(values.preOrder) : null;
|
|
101
|
+
submit({
|
|
102
|
+
input: {
|
|
103
|
+
quantity: values.quantity,
|
|
104
|
+
preOrderDate,
|
|
105
|
+
comments,
|
|
106
|
+
articleNumber,
|
|
107
|
+
cartId,
|
|
108
|
+
configurationIds
|
|
109
|
+
},
|
|
110
|
+
optimistic: Object.assign(Object.assign({}, price), { quantity: values.quantity, product,
|
|
111
|
+
variant })
|
|
112
|
+
});
|
|
113
|
+
}
|
|
114
|
+
});
|
|
115
|
+
return {
|
|
116
|
+
form: formik
|
|
117
|
+
};
|
|
118
|
+
}
|
|
119
|
+
//# sourceMappingURL=useAddToCart.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useAddToCart.js","sourceRoot":"","sources":["useAddToCart.ts"],"names":[],"mappings":"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"}
|
|
File without changes
|
package/cart/useCart.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=useCart.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useCart.js","sourceRoot":"","sources":["useCart.ts"],"names":[],"mappings":""}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=CustomerFormContainer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomerFormContainer.js","sourceRoot":"","sources":["CustomerFormContainer.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { Country, CustomerUpdateInput } from '@jetshop/core/types';
|
|
2
|
+
import { FormikProps } from 'formik';
|
|
3
|
+
import { DocumentNode } from 'graphql';
|
|
4
|
+
import React, { ReactNode } from 'react';
|
|
5
|
+
import { EnhancedCustomerField } from './signup-context';
|
|
6
|
+
export interface CustomerUpdateFormRenderPropsField {
|
|
7
|
+
inputProps: {
|
|
8
|
+
[key in keyof EnhancedCustomerField]: any;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
export type CustomerUpdateFormRenderProps = FormikProps<CustomerUpdateInput> & {
|
|
12
|
+
billingAddressFields: CustomerUpdateFormRenderPropsField[];
|
|
13
|
+
deliveryAddressFields: CustomerUpdateFormRenderPropsField[];
|
|
14
|
+
setCountryCode: (countryCode: string) => void;
|
|
15
|
+
countries: Country[];
|
|
16
|
+
pidField: {
|
|
17
|
+
[key in keyof EnhancedCustomerField]: any;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
export interface CustomerUpdateFormProps {
|
|
21
|
+
deliveryAddressId: number;
|
|
22
|
+
onSubmitSuccess?: () => void;
|
|
23
|
+
onSubmit?: () => void;
|
|
24
|
+
render: (props: CustomerUpdateFormRenderProps) => ReactNode;
|
|
25
|
+
/**
|
|
26
|
+
* The query that will be used for fetching the updated customer fields, once
|
|
27
|
+
* the mutation succeeds */
|
|
28
|
+
customerProfileQuery: DocumentNode;
|
|
29
|
+
}
|
|
30
|
+
export declare function getBillingAddressFieldsToRender(fields: EnhancedCustomerField[]): CustomerUpdateFormRenderPropsField[];
|
|
31
|
+
export declare function getDeliveryAddressFieldsToRender(fields: EnhancedCustomerField[], index: number): CustomerUpdateFormRenderPropsField[];
|
|
32
|
+
export declare const CustomerUpdateFormProvider: React.FunctionComponent<CustomerUpdateFormProps>;
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
import { createValidatorForFields, formFieldsFromSettings, getFieldType } from '@jetshop/core/components/Auth/formFieldsFromSettings';
|
|
2
|
+
import ChannelContext from '@jetshop/core/components/ChannelContext';
|
|
3
|
+
import logError from '@jetshop/core/helpers/logError';
|
|
4
|
+
import t from '@jetshop/intl';
|
|
5
|
+
import { Form, Formik } from 'formik';
|
|
6
|
+
import React, { useContext, useMemo } from 'react';
|
|
7
|
+
import { getAddressInputFieldName, getCustomerUpdateInput, useCustomerQuery, useCustomerUpdateMutation } from './useCustomer';
|
|
8
|
+
export function getBillingAddressFieldsToRender(fields) {
|
|
9
|
+
return fields
|
|
10
|
+
.map((field) => {
|
|
11
|
+
const name = `billingAddress.${getAddressInputFieldName(field.name)}`;
|
|
12
|
+
if (name === `billingAddress.countryCode`) {
|
|
13
|
+
// omit changing `countryCode` for now
|
|
14
|
+
return null;
|
|
15
|
+
}
|
|
16
|
+
const inputProps = {
|
|
17
|
+
name,
|
|
18
|
+
label: field.label,
|
|
19
|
+
id: field.id,
|
|
20
|
+
required: field.required,
|
|
21
|
+
type: getFieldType(field.name)
|
|
22
|
+
};
|
|
23
|
+
return { inputProps };
|
|
24
|
+
})
|
|
25
|
+
.filter(Boolean);
|
|
26
|
+
}
|
|
27
|
+
export function getDeliveryAddressFieldsToRender(fields, index) {
|
|
28
|
+
return fields
|
|
29
|
+
.map((field) => {
|
|
30
|
+
const name = `deliveryAddresses[${index}].${getAddressInputFieldName(field.name)}`;
|
|
31
|
+
if (name === `deliveryAddresses[${index}].countryCode`) {
|
|
32
|
+
// omit changing `countryCode` for now
|
|
33
|
+
return null;
|
|
34
|
+
}
|
|
35
|
+
const inputProps = {
|
|
36
|
+
name,
|
|
37
|
+
label: field.label,
|
|
38
|
+
id: field.id,
|
|
39
|
+
required: field.required,
|
|
40
|
+
type: getFieldType(field.name)
|
|
41
|
+
};
|
|
42
|
+
return { inputProps };
|
|
43
|
+
})
|
|
44
|
+
.filter(Boolean);
|
|
45
|
+
}
|
|
46
|
+
export const CustomerUpdateFormProvider = ({ render, onSubmit, onSubmitSuccess, customerProfileQuery, deliveryAddressId }) => {
|
|
47
|
+
const { customer, countrySettings, setCountryCode, loading } = useCustomerQuery({
|
|
48
|
+
query: customerProfileQuery
|
|
49
|
+
});
|
|
50
|
+
const { selectedChannel } = useContext(ChannelContext);
|
|
51
|
+
const isBusinessCustomer = customer.__typename === 'BusinessCustomer';
|
|
52
|
+
const { billingAddressFields, deliveryAddressFields, pidField } = useMemo(() => formFieldsFromSettings(countrySettings, isBusinessCustomer), [countrySettings, isBusinessCustomer]);
|
|
53
|
+
const billingAddressFieldsToRender = useMemo(() => getBillingAddressFieldsToRender(billingAddressFields), [billingAddressFields]);
|
|
54
|
+
const deliveryAddressIndex = customer &&
|
|
55
|
+
customer.deliveryAddresses.findIndex((a) => a.id === deliveryAddressId);
|
|
56
|
+
const deliveryAddressFieldsToRender = useMemo(() => deliveryAddressIndex > -1
|
|
57
|
+
? getDeliveryAddressFieldsToRender(deliveryAddressFields, deliveryAddressIndex)
|
|
58
|
+
: [], [deliveryAddressFields, deliveryAddressIndex]);
|
|
59
|
+
const initialValues = useMemo(() => getCustomerUpdateInput({
|
|
60
|
+
customer,
|
|
61
|
+
billingAddressFields,
|
|
62
|
+
culture: selectedChannel.language.culture,
|
|
63
|
+
countryCode: selectedChannel.country.code
|
|
64
|
+
}), [
|
|
65
|
+
customer,
|
|
66
|
+
billingAddressFields,
|
|
67
|
+
selectedChannel.language.culture,
|
|
68
|
+
selectedChannel.country.code
|
|
69
|
+
]);
|
|
70
|
+
const billingAddressValidator = useMemo(() => addressValidator(billingAddressFields), [billingAddressFields]);
|
|
71
|
+
const deliveryAddressValidator = useMemo(() => addressValidator(deliveryAddressFields), [deliveryAddressFields]);
|
|
72
|
+
function addressValidator(fields) {
|
|
73
|
+
return createValidatorForFields(fields, {
|
|
74
|
+
getFieldName(name) {
|
|
75
|
+
const fieldName = getAddressInputFieldName(name);
|
|
76
|
+
return fieldName;
|
|
77
|
+
}
|
|
78
|
+
});
|
|
79
|
+
}
|
|
80
|
+
const customerUpdateMutation = useCustomerUpdateMutation({
|
|
81
|
+
customerQuery: customerProfileQuery
|
|
82
|
+
});
|
|
83
|
+
return loading ? null : (React.createElement(Formik, { initialValues: initialValues, validate: (values) => {
|
|
84
|
+
const errors = {};
|
|
85
|
+
const pidFieldName = pidField.name;
|
|
86
|
+
if (pidFieldName in values &&
|
|
87
|
+
pidField.required &&
|
|
88
|
+
(values[pidFieldName] || '').trim().length === 0) {
|
|
89
|
+
errors[pidFieldName] = t('This field is required');
|
|
90
|
+
}
|
|
91
|
+
const billingAddress = billingAddressValidator(values.billingAddress);
|
|
92
|
+
if (Object.keys(billingAddress).length > 0) {
|
|
93
|
+
errors.billingAddress = billingAddress;
|
|
94
|
+
}
|
|
95
|
+
if (deliveryAddressId !== undefined) {
|
|
96
|
+
const deliveryAddress = deliveryAddressValidator(values.deliveryAddresses[deliveryAddressIndex]);
|
|
97
|
+
if (Object.keys(deliveryAddress).length > 0) {
|
|
98
|
+
errors.deliveryAddresses = [];
|
|
99
|
+
errors.deliveryAddresses[deliveryAddressIndex] = deliveryAddress;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
return errors;
|
|
103
|
+
}, onSubmit: (values, actions) => {
|
|
104
|
+
actions.setSubmitting(true);
|
|
105
|
+
onSubmit && onSubmit();
|
|
106
|
+
customerUpdateMutation(values)
|
|
107
|
+
.then(() => {
|
|
108
|
+
actions.setSubmitting(false);
|
|
109
|
+
actions.resetForm();
|
|
110
|
+
onSubmitSuccess && onSubmitSuccess();
|
|
111
|
+
})
|
|
112
|
+
.catch((err) => {
|
|
113
|
+
logError(true, err);
|
|
114
|
+
actions.setSubmitting(false);
|
|
115
|
+
actions.setStatus({
|
|
116
|
+
globalError: t('Something went wrong saving information. Try again?')
|
|
117
|
+
});
|
|
118
|
+
});
|
|
119
|
+
}, render: (props) => (React.createElement(Form, null, render(Object.assign(Object.assign({}, props), { billingAddressFields: billingAddressFieldsToRender, deliveryAddressFields: deliveryAddressFieldsToRender, pidField,
|
|
120
|
+
setCountryCode, countries: selectedChannel.countries })))) }));
|
|
121
|
+
};
|
|
122
|
+
//# sourceMappingURL=CustomerUpdateForm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomerUpdateForm.js","sourceRoot":"","sources":["CustomerUpdateForm.tsx"],"names":[],"mappings":"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"}
|