@jetshop/core 7.0.0-canary → 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 @@
|
|
|
1
|
+
{"version":3,"file":"formatSignupInput.js","sourceRoot":"","sources":["formatSignupInput.ts"],"names":[],"mappings":";;;;;;;;;;;AAOA,2EAA2E;AAC3E,wCAAwC;AACxC,MAAM,UAAU,iBAAiB,CAC/B,MAAuB,EACvB,EAAE,QAAQ,EAAuC;IAEjD,MAAM,EACJ,YAAY,EACZ,QAAQ,EACR,GAAG,EACH,kBAAkB,EAClB,OAAO,EACP,UAAU,GAAG,EAAE,EACf,kBAAkB,GAAG,SAAS,EAC9B,mBAAmB,GAAG,SAAS,EAC/B,cAAc,GAAG,SAAS,EAC1B,WAAW,GAAG,SAAS,EACvB,QAAQ,GAAG,EAAE,KAEX,MAAM,EADL,IAAI,UACL,MAAM,EAbJ,4KAaL,CAAS,CAAC;IAEX,sEAAsE;IACtE,wEAAwE;IACxE,MAAM,CAAC,WAAW,EAAE,WAAW,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IAEtD,MAAM,YAAY,GAEd;QACF,WAAW,EAAE,EAAE,KAAK,EAAE,WAAW,EAAE;KACpC,CAAC;IAEF,MAAM,SAAS,GAAG,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IAEvC,KAAK,MAAM,CAAC,KAAK,EAAE,KAAK,CAAC,IAAI,SAAS,EAAE;QACtC,YAAY,CAAC,KAAK,CAAC,GAAG;YACpB,KAAK,EAAE,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,KAAK;SACjD,CAAC;KACH;IAED,OAAO;QACL,IAAI,EAAE,QAAwB;QAC9B,cAAc,EAAE,YAAY;QAC5B,YAAY;QACZ,QAAQ;QACR,GAAG;QACH,kBAAkB;QAClB,mBAAmB;QACnB,kBAAkB;QAClB,UAAU;QACV,cAAc;QACd,WAAW;QACX,QAAQ;KACT,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Country, CustomerField, SignUpInput } from '@jetshop/core/types';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { FormikProps } from 'formik';
|
|
4
|
+
export interface EnhancedCustomerField extends CustomerField {
|
|
5
|
+
type: string;
|
|
6
|
+
label: string;
|
|
7
|
+
placeholder?: string;
|
|
8
|
+
}
|
|
9
|
+
type ISignupContext = {
|
|
10
|
+
isUserTypeBusiness: boolean;
|
|
11
|
+
billingAddressFields: EnhancedCustomerField[];
|
|
12
|
+
loginFields: EnhancedCustomerField[];
|
|
13
|
+
allFields: EnhancedCustomerField[];
|
|
14
|
+
countries: Country[];
|
|
15
|
+
selectedCountry: Country;
|
|
16
|
+
setCountry: React.Dispatch<React.SetStateAction<Country>>;
|
|
17
|
+
loading: boolean;
|
|
18
|
+
} | undefined;
|
|
19
|
+
export declare const SignupContext: React.Context<{
|
|
20
|
+
isUserTypeBusiness: boolean;
|
|
21
|
+
billingAddressFields: EnhancedCustomerField[];
|
|
22
|
+
loginFields: EnhancedCustomerField[];
|
|
23
|
+
allFields: EnhancedCustomerField[];
|
|
24
|
+
countries: Country[];
|
|
25
|
+
selectedCountry: Country;
|
|
26
|
+
setCountry: React.Dispatch<React.SetStateAction<Country>>;
|
|
27
|
+
loading: boolean;
|
|
28
|
+
}>;
|
|
29
|
+
declare const SignupProvider: React.FC<{
|
|
30
|
+
value?: ISignupContext;
|
|
31
|
+
LoadingComponent?: JSX.Element;
|
|
32
|
+
}>;
|
|
33
|
+
export declare const SignupFormikContext: React.Context<{
|
|
34
|
+
formik: FormikProps<SignUpInput>;
|
|
35
|
+
}>;
|
|
36
|
+
export default SignupProvider;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2
|
+
var t = {};
|
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
4
|
+
t[p] = s[p];
|
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8
|
+
t[p[i]] = s[p[i]];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
import * as React from 'react';
|
|
13
|
+
import ChannelContext from '@jetshop/core/components/ChannelContext';
|
|
14
|
+
import { formFieldsFromSettings } from '@jetshop/core/components/Auth/formFieldsFromSettings';
|
|
15
|
+
import throwErrorInDev from '@jetshop/core/helpers/throwErrorInDev';
|
|
16
|
+
import { useCountrySettings } from '../ChannelContext/useCountrySettings';
|
|
17
|
+
// Holds fields and other API data
|
|
18
|
+
export const SignupContext = React.createContext(undefined);
|
|
19
|
+
const SignupProvider = function SignupContextProvider(_a) {
|
|
20
|
+
var { LoadingComponent } = _a, props = __rest(_a, ["LoadingComponent"]);
|
|
21
|
+
// We will use the selectedChannel to build the form to begin with.
|
|
22
|
+
// However, if the user changes country in the form, we should also change all
|
|
23
|
+
// of the fields and validation
|
|
24
|
+
const { selectedChannel } = React.useContext(ChannelContext);
|
|
25
|
+
const [isUserTypeBusiness, setIsUserTypeBusiness] = React.useState(false);
|
|
26
|
+
throwErrorInDev(!selectedChannel, 'Must be wrapped in ChannelContext Provider');
|
|
27
|
+
// Initialise country to the selected channel country. This will be selected
|
|
28
|
+
// by default in the form, and its settings will be used to build the form
|
|
29
|
+
// inputs and validation
|
|
30
|
+
const [country, setCountry] = React.useState(selectedChannel.country);
|
|
31
|
+
const { countrySettings, loading } = useCountrySettings();
|
|
32
|
+
const selectedCountrySettings = countrySettings &&
|
|
33
|
+
countrySettings.find((c) => c.countryCode === country.code);
|
|
34
|
+
// Get all the billing address fields from the country settings
|
|
35
|
+
const { allFields, billingAddressFields, loginFields } = !loading
|
|
36
|
+
? formFieldsFromSettings(selectedCountrySettings, isUserTypeBusiness)
|
|
37
|
+
: {
|
|
38
|
+
allFields: null,
|
|
39
|
+
billingAddressFields: null,
|
|
40
|
+
loginFields: null
|
|
41
|
+
};
|
|
42
|
+
const value = React.useMemo(() => {
|
|
43
|
+
return {
|
|
44
|
+
billingAddressFields,
|
|
45
|
+
loginFields,
|
|
46
|
+
allFields,
|
|
47
|
+
selectedCountry: country,
|
|
48
|
+
countries: selectedChannel.countries,
|
|
49
|
+
setCountry,
|
|
50
|
+
loading,
|
|
51
|
+
isUserTypeBusiness,
|
|
52
|
+
setIsUserTypeBusiness
|
|
53
|
+
};
|
|
54
|
+
}, [
|
|
55
|
+
billingAddressFields,
|
|
56
|
+
loginFields,
|
|
57
|
+
allFields,
|
|
58
|
+
country,
|
|
59
|
+
selectedChannel.countries,
|
|
60
|
+
loading,
|
|
61
|
+
isUserTypeBusiness
|
|
62
|
+
]);
|
|
63
|
+
if (loading) {
|
|
64
|
+
return LoadingComponent || null;
|
|
65
|
+
}
|
|
66
|
+
return React.createElement(SignupContext.Provider, Object.assign({ value: value }, props));
|
|
67
|
+
};
|
|
68
|
+
// Holds formik state
|
|
69
|
+
export const SignupFormikContext = React.createContext(undefined);
|
|
70
|
+
export default SignupProvider;
|
|
71
|
+
//# sourceMappingURL=signup-context.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"signup-context.js","sourceRoot":"","sources":["signup-context.tsx"],"names":[],"mappings":";;;;;;;;;;;AACA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,cAAc,MAAM,yCAAyC,CAAC;AACrE,OAAO,EAAE,sBAAsB,EAAE,MAAM,sDAAsD,CAAC;AAC9F,OAAO,eAAe,MAAM,uCAAuC,CAAC;AAEpE,OAAO,EAAE,kBAAkB,EAAE,MAAM,sCAAsC,CAAC;AAqB1E,kCAAkC;AAClC,MAAM,CAAC,MAAM,aAAa,GAAG,KAAK,CAAC,aAAa,CAAiB,SAAS,CAAC,CAAC;AAE5E,MAAM,cAAc,GAGf,SAAS,qBAAqB,CAAC,EAA8B;QAA9B,EAAE,gBAAgB,OAAY,EAAP,KAAK,cAA5B,oBAA8B,CAAF;IAC9D,mEAAmE;IACnE,8EAA8E;IAC9E,+BAA+B;IAC/B,MAAM,EAAE,eAAe,EAAE,GAAG,KAAK,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC;IAE7D,MAAM,CAAC,kBAAkB,EAAE,qBAAqB,CAAC,GAAG,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;IAE1E,eAAe,CACb,CAAC,eAAe,EAChB,4CAA4C,CAC7C,CAAC;IAEF,4EAA4E;IAC5E,0EAA0E;IAC1E,wBAAwB;IACxB,MAAM,CAAC,OAAO,EAAE,UAAU,CAAC,GAAG,KAAK,CAAC,QAAQ,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC;IACtE,MAAM,EAAE,eAAe,EAAE,OAAO,EAAE,GAAG,kBAAkB,EAAE,CAAC;IAC1D,MAAM,uBAAuB,GAC3B,eAAe;QACf,eAAe,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAE9D,+DAA+D;IAC/D,MAAM,EAAE,SAAS,EAAE,oBAAoB,EAAE,WAAW,EAAE,GAAG,CAAC,OAAO;QAC/D,CAAC,CAAC,sBAAsB,CAAC,uBAAuB,EAAE,kBAAkB,CAAC;QACrE,CAAC,CAAC;YACE,SAAS,EAAE,IAAI;YACf,oBAAoB,EAAE,IAAI;YAC1B,WAAW,EAAE,IAAI;SAClB,CAAC;IAEN,MAAM,KAAK,GAAG,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE;QAC/B,OAAO;YACL,oBAAoB;YACpB,WAAW;YACX,SAAS;YACT,eAAe,EAAE,OAAO;YACxB,SAAS,EAAE,eAAe,CAAC,SAAS;YACpC,UAAU;YACV,OAAO;YACP,kBAAkB;YAClB,qBAAqB;SACtB,CAAC;IACJ,CAAC,EAAE;QACD,oBAAoB;QACpB,WAAW;QACX,SAAS;QACT,OAAO;QACP,eAAe,CAAC,SAAS;QACzB,OAAO;QACP,kBAAkB;KACnB,CAAC,CAAC;IAEH,IAAI,OAAO,EAAE;QACX,OAAO,gBAAgB,IAAI,IAAI,CAAC;KACjC;IACD,OAAO,oBAAC,aAAa,CAAC,QAAQ,kBAAC,KAAK,EAAE,KAAK,IAAM,KAAK,EAAI,CAAC;AAC7D,CAAC,CAAC;AAEF,qBAAqB;AACrB,MAAM,CAAC,MAAM,mBAAmB,GAAG,KAAK,CAAC,aAAa,CAEnD,SAAS,CAAC,CAAC;AAEd,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/camelcase */
|
|
2
|
+
import t from '@jetshop/intl';
|
|
3
|
+
export const translations = {
|
|
4
|
+
country: t('Select country'),
|
|
5
|
+
country_placeholder: t('Select country'),
|
|
6
|
+
city: t('City'),
|
|
7
|
+
city_placeholder: t('City'),
|
|
8
|
+
co: t('Extra address'),
|
|
9
|
+
co_placeholder: t('Extra address'),
|
|
10
|
+
companyAtt: t('Company contact name'),
|
|
11
|
+
companyAtt_placeholder: t('Company contact name'),
|
|
12
|
+
company: t('Company'),
|
|
13
|
+
companyName: t('Company'),
|
|
14
|
+
companyName_placeholder: t('Company'),
|
|
15
|
+
department: t('Department'),
|
|
16
|
+
department_placeholder: t('Department'),
|
|
17
|
+
email: t('E-mail address'),
|
|
18
|
+
email_placeholder: t('E-mail address'),
|
|
19
|
+
firstName: t('First name'),
|
|
20
|
+
firstName_placeholder: t('First name'),
|
|
21
|
+
lastName: t('Surname'),
|
|
22
|
+
lastName_placeholder: t('Surname'),
|
|
23
|
+
mobilePhone: t('Mobile phone number'),
|
|
24
|
+
mobilePhone_placeholder: t('Mobile phone number'),
|
|
25
|
+
municipality: t('County'),
|
|
26
|
+
municipality_placeholder: t('County'),
|
|
27
|
+
phone: t('Telephone number'),
|
|
28
|
+
phone_placeholder: t('Telephone number'),
|
|
29
|
+
organizationNumber: t('Company registration number'),
|
|
30
|
+
organizationNumber_placeholder: t('Company registration number'),
|
|
31
|
+
pid: t('National ID/Social Security number'),
|
|
32
|
+
company_pid: t('Company registration number'),
|
|
33
|
+
postalCode: t('Post code'),
|
|
34
|
+
postalCode_placeholder: t('Post code'),
|
|
35
|
+
region: t('Region'),
|
|
36
|
+
region_placeholder: t('Region'),
|
|
37
|
+
streetName: t('Address'),
|
|
38
|
+
streetName_placeholder: t('Address'),
|
|
39
|
+
password: t('Desired password'),
|
|
40
|
+
password_placeholder: t('Desired password'),
|
|
41
|
+
confirmPassword: t('Repeat desired password'),
|
|
42
|
+
confirmPassword_placeholder: t('Repeat desired password')
|
|
43
|
+
};
|
|
44
|
+
//# sourceMappingURL=signup-field-translations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"signup-field-translations.js","sourceRoot":"","sources":["signup-field-translations.ts"],"names":[],"mappings":"AAAA,iDAAiD;AACjD,OAAO,CAAC,MAAM,eAAe,CAAC;AAE9B,MAAM,CAAC,MAAM,YAAY,GAA2B;IAClD,OAAO,EAAE,CAAC,CAAC,gBAAgB,CAAC;IAC5B,mBAAmB,EAAE,CAAC,CAAC,gBAAgB,CAAC;IACxC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC;IACf,gBAAgB,EAAE,CAAC,CAAC,MAAM,CAAC;IAC3B,EAAE,EAAE,CAAC,CAAC,eAAe,CAAC;IACtB,cAAc,EAAE,CAAC,CAAC,eAAe,CAAC;IAClC,UAAU,EAAE,CAAC,CAAC,sBAAsB,CAAC;IACrC,sBAAsB,EAAE,CAAC,CAAC,sBAAsB,CAAC;IACjD,OAAO,EAAE,CAAC,CAAC,SAAS,CAAC;IACrB,WAAW,EAAE,CAAC,CAAC,SAAS,CAAC;IACzB,uBAAuB,EAAE,CAAC,CAAC,SAAS,CAAC;IACrC,UAAU,EAAE,CAAC,CAAC,YAAY,CAAC;IAC3B,sBAAsB,EAAE,CAAC,CAAC,YAAY,CAAC;IACvC,KAAK,EAAE,CAAC,CAAC,gBAAgB,CAAC;IAC1B,iBAAiB,EAAE,CAAC,CAAC,gBAAgB,CAAC;IACtC,SAAS,EAAE,CAAC,CAAC,YAAY,CAAC;IAC1B,qBAAqB,EAAE,CAAC,CAAC,YAAY,CAAC;IACtC,QAAQ,EAAE,CAAC,CAAC,SAAS,CAAC;IACtB,oBAAoB,EAAE,CAAC,CAAC,SAAS,CAAC;IAClC,WAAW,EAAE,CAAC,CAAC,qBAAqB,CAAC;IACrC,uBAAuB,EAAE,CAAC,CAAC,qBAAqB,CAAC;IACjD,YAAY,EAAE,CAAC,CAAC,QAAQ,CAAC;IACzB,wBAAwB,EAAE,CAAC,CAAC,QAAQ,CAAC;IACrC,KAAK,EAAE,CAAC,CAAC,kBAAkB,CAAC;IAC5B,iBAAiB,EAAE,CAAC,CAAC,kBAAkB,CAAC;IACxC,kBAAkB,EAAE,CAAC,CAAC,6BAA6B,CAAC;IACpD,8BAA8B,EAAE,CAAC,CAAC,6BAA6B,CAAC;IAChE,GAAG,EAAE,CAAC,CAAC,oCAAoC,CAAC;IAC5C,WAAW,EAAE,CAAC,CAAC,6BAA6B,CAAC;IAC7C,UAAU,EAAE,CAAC,CAAC,WAAW,CAAC;IAC1B,sBAAsB,EAAE,CAAC,CAAC,WAAW,CAAC;IACtC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC;IACnB,kBAAkB,EAAE,CAAC,CAAC,QAAQ,CAAC;IAC/B,UAAU,EAAE,CAAC,CAAC,SAAS,CAAC;IACxB,sBAAsB,EAAE,CAAC,CAAC,SAAS,CAAC;IACpC,QAAQ,EAAE,CAAC,CAAC,kBAAkB,CAAC;IAC/B,oBAAoB,EAAE,CAAC,CAAC,kBAAkB,CAAC;IAC3C,eAAe,EAAE,CAAC,CAAC,yBAAyB,CAAC;IAC7C,2BAA2B,EAAE,CAAC,CAAC,yBAAyB,CAAC;CAC1D,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { SignUpFormInput } from '@jetshop/core/components/Auth/formatSignupInput';
|
|
2
|
+
import { FormikHelpers } from 'formik';
|
|
3
|
+
export declare function useSignupSubmit(): ({ values, actions }: {
|
|
4
|
+
values: SignUpFormInput;
|
|
5
|
+
actions: FormikHelpers<SignUpFormInput>;
|
|
6
|
+
}) => void;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { formatSignupInput } from '@jetshop/core/components/Auth/formatSignupInput';
|
|
2
|
+
import SignupMutation from '@jetshop/core/data/mutations/signup.gql';
|
|
3
|
+
import getErrorDetail from '@jetshop/core/helpers/getErrorDetail';
|
|
4
|
+
import { useApolloClient, useMutation } from '@apollo/client';
|
|
5
|
+
import { useContext } from 'react';
|
|
6
|
+
import { SignupContext } from './signup-context';
|
|
7
|
+
import { trackRegisterEvent } from '../../analytics/tracking';
|
|
8
|
+
import { useTracker } from '../../analytics/Analytics';
|
|
9
|
+
import { useLoginMutation } from '@jetshop/core/hooks/useLoginMutation';
|
|
10
|
+
import { useCartId } from '@jetshop/core/components/Cart/CartIdContext';
|
|
11
|
+
export function useSignupSubmit() {
|
|
12
|
+
const [mutate] = useMutation(SignupMutation);
|
|
13
|
+
const client = useApolloClient();
|
|
14
|
+
const { loginMutation } = useLoginMutation();
|
|
15
|
+
const { cartId } = useCartId();
|
|
16
|
+
const { isUserTypeBusiness } = useContext(SignupContext);
|
|
17
|
+
const track = useTracker();
|
|
18
|
+
return function signup({ values, actions }) {
|
|
19
|
+
// Set the Formik state to submitting…
|
|
20
|
+
actions.setSubmitting(true);
|
|
21
|
+
mutate({
|
|
22
|
+
variables: {
|
|
23
|
+
input: formatSignupInput(values, {
|
|
24
|
+
userType: isUserTypeBusiness ? 'COMPANY' : 'PRIVATE'
|
|
25
|
+
})
|
|
26
|
+
}
|
|
27
|
+
})
|
|
28
|
+
.then(() => {
|
|
29
|
+
// Submitting is done
|
|
30
|
+
actions.setSubmitting(false);
|
|
31
|
+
// Track user register in GTAG
|
|
32
|
+
track(trackRegisterEvent());
|
|
33
|
+
// Use login mutation to enable the cart to be merged
|
|
34
|
+
loginMutation({
|
|
35
|
+
variables: {
|
|
36
|
+
email: values.emailAddress,
|
|
37
|
+
password: values.password,
|
|
38
|
+
cartId
|
|
39
|
+
}
|
|
40
|
+
// Reset the Apollo store
|
|
41
|
+
}).then(client.resetStore);
|
|
42
|
+
}, (error) => {
|
|
43
|
+
const errorDetail = getErrorDetail(error);
|
|
44
|
+
const validationDetails = getvalidationDetails(errorDetail);
|
|
45
|
+
// Submitting is done
|
|
46
|
+
actions.setSubmitting(false);
|
|
47
|
+
actions.setStatus({
|
|
48
|
+
validationDetails,
|
|
49
|
+
isSignupError: true
|
|
50
|
+
});
|
|
51
|
+
})
|
|
52
|
+
.catch((err) => {
|
|
53
|
+
console.log(err);
|
|
54
|
+
actions.setSubmitting(false);
|
|
55
|
+
});
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
// When Apollo gets internal server error, no error data exists. Pass on the error code when this happens.
|
|
59
|
+
function getvalidationDetails(errorDetail) {
|
|
60
|
+
var _a, _b;
|
|
61
|
+
const [field] = ((_a = errorDetail.data) === null || _a === void 0 ? void 0 : _a.length) > 0 ? Object.keys(errorDetail.data[0]) : errorDetail.codes;
|
|
62
|
+
const [detail] = ((_b = errorDetail.data) === null || _b === void 0 ? void 0 : _b.length) > 0 ? errorDetail.data[0][field] : errorDetail.codes;
|
|
63
|
+
return [field, detail];
|
|
64
|
+
}
|
|
65
|
+
//# sourceMappingURL=signupSubmit.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"signupSubmit.js","sourceRoot":"","sources":["signupSubmit.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export default function useAddressFields(): {
|
|
2
|
+
fields: {
|
|
3
|
+
inputProps: {
|
|
4
|
+
key: string;
|
|
5
|
+
type: string;
|
|
6
|
+
name: string;
|
|
7
|
+
label: string;
|
|
8
|
+
required: boolean;
|
|
9
|
+
};
|
|
10
|
+
type: string;
|
|
11
|
+
label: string;
|
|
12
|
+
placeholder?: string;
|
|
13
|
+
__typename?: "CustomerField";
|
|
14
|
+
id: string;
|
|
15
|
+
required: boolean;
|
|
16
|
+
pattern?: string;
|
|
17
|
+
fields?: import("../../types").CustomerField[];
|
|
18
|
+
name: string;
|
|
19
|
+
}[];
|
|
20
|
+
countries: import("../../types").Country[];
|
|
21
|
+
setCountryByCode: (countryCode: string) => void;
|
|
22
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import throwErrorInDev from '@jetshop/core/helpers/throwErrorInDev';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { SignupContext } from './signup-context';
|
|
4
|
+
export default function useAddressFields() {
|
|
5
|
+
const context = React.useContext(SignupContext);
|
|
6
|
+
// Throw if this hook is used from outside the signup form container (which
|
|
7
|
+
// contains the context provider)
|
|
8
|
+
throwErrorInDev(typeof context === 'undefined', 'useAddressFields can only be used from inside `SignupFormContainer`');
|
|
9
|
+
const { billingAddressFields, countries, setCountry } = context;
|
|
10
|
+
// Change the selected country by country code
|
|
11
|
+
// This will change the fields and validations based on that country's settings
|
|
12
|
+
const setCountryByCode = React.useCallback((countryCode) => {
|
|
13
|
+
const country = countries.find((c) => c.code === countryCode);
|
|
14
|
+
if (!country)
|
|
15
|
+
return;
|
|
16
|
+
setCountry(country);
|
|
17
|
+
}, [countries, setCountry]);
|
|
18
|
+
// Filter out the country field from the billing address fields, as it is handled separately
|
|
19
|
+
// See: Countries.tsx
|
|
20
|
+
const fields = billingAddressFields
|
|
21
|
+
.filter((f) => f.name !== 'country')
|
|
22
|
+
.map((field) => {
|
|
23
|
+
return Object.assign(Object.assign({}, field), { inputProps: {
|
|
24
|
+
key: field.id,
|
|
25
|
+
type: field.type,
|
|
26
|
+
name: field.name,
|
|
27
|
+
label: field.label,
|
|
28
|
+
required: field.required
|
|
29
|
+
} });
|
|
30
|
+
});
|
|
31
|
+
return { fields, countries, setCountryByCode };
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=useAddressFields.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useAddressFields.js","sourceRoot":"","sources":["useAddressFields.ts"],"names":[],"mappings":"AAAA,OAAO,eAAe,MAAM,uCAAuC,CAAC;AACpE,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,MAAM,CAAC,OAAO,UAAU,gBAAgB;IACtC,MAAM,OAAO,GAAG,KAAK,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC;IAEhD,2EAA2E;IAC3E,iCAAiC;IACjC,eAAe,CACb,OAAO,OAAO,KAAK,WAAW,EAC9B,qEAAqE,CACtE,CAAC;IAEF,MAAM,EAAE,oBAAoB,EAAE,SAAS,EAAE,UAAU,EAAE,GAAG,OAAO,CAAC;IAEhE,8CAA8C;IAC9C,+EAA+E;IAC/E,MAAM,gBAAgB,GAAG,KAAK,CAAC,WAAW,CACxC,CAAC,WAAmB,EAAE,EAAE;QACtB,MAAM,OAAO,GAAG,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,WAAW,CAAC,CAAC;QAE9D,IAAI,CAAC,OAAO;YAAE,OAAO;QAErB,UAAU,CAAC,OAAO,CAAC,CAAC;IACtB,CAAC,EACD,CAAC,SAAS,EAAE,UAAU,CAAC,CACxB,CAAC;IAEF,4FAA4F;IAC5F,qBAAqB;IACrB,MAAM,MAAM,GAAG,oBAAoB;SAChC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,SAAS,CAAC;SACnC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE;QACb,uCACK,KAAK,KACR,UAAU,EAAE;gBACV,GAAG,EAAE,KAAK,CAAC,EAAE;gBACb,IAAI,EAAE,KAAK,CAAC,IAAI;gBAChB,IAAI,EAAE,KAAK,CAAC,IAAI;gBAChB,KAAK,EAAE,KAAK,CAAC,KAAK;gBAClB,QAAQ,EAAE,KAAK,CAAC,QAAQ;aACzB,IACD;IACJ,CAAC,CAAC,CAAC;IAEL,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,gBAAgB,EAAE,CAAC;AACjD,CAAC"}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { Customer, CustomerAddress, CustomerField, CustomerUpdateBillingAddressInput, CustomerUpdateDeliveryAddressInput, CustomerUpdateInput, CustomerUpdatePreferenceInput, Query, PrivateCustomer, BusinessCustomer, CountrySettings } from '@jetshop/core/types';
|
|
2
|
+
import { DocumentNode } from 'graphql';
|
|
3
|
+
type CustomerUpdateAddressInput = CustomerUpdateBillingAddressInput | CustomerUpdateDeliveryAddressInput;
|
|
4
|
+
export declare function customerAddressToCustomerUpdateAddressInput({ address, isDeleteId, countryCode }: {
|
|
5
|
+
address: CustomerAddress;
|
|
6
|
+
isDeleteId?: boolean;
|
|
7
|
+
countryCode: string;
|
|
8
|
+
}): CustomerUpdateAddressInput;
|
|
9
|
+
export declare function getAddressInputFieldName(name: string): keyof CustomerUpdateAddressInput;
|
|
10
|
+
export declare function getDeliveryAddressesInput(customer: Customer, countryCode: string): CustomerUpdateDeliveryAddressInput[];
|
|
11
|
+
export declare function getBillingAddressInput({ customer, countryCode }: {
|
|
12
|
+
customer: Customer;
|
|
13
|
+
billingAddressFields?: CustomerField[];
|
|
14
|
+
countryCode: string;
|
|
15
|
+
}): CustomerUpdateBillingAddressInput;
|
|
16
|
+
export declare function getCustomerUpdatePreferenceInput(customer: Customer,
|
|
17
|
+
/** The currently selected channel culture, in case it does not exist on customer */
|
|
18
|
+
culture: string): CustomerUpdatePreferenceInput;
|
|
19
|
+
export declare function getCustomerUpdateInput({ customer, billingAddressFields, culture, countryCode }: {
|
|
20
|
+
customer: PrivateCustomer | BusinessCustomer;
|
|
21
|
+
billingAddressFields: CustomerField[];
|
|
22
|
+
culture: string;
|
|
23
|
+
countryCode: string;
|
|
24
|
+
}): CustomerUpdateInput;
|
|
25
|
+
export declare function useCustomerCountrySettings(customer: Customer | null): {
|
|
26
|
+
loading: boolean;
|
|
27
|
+
countrySettings: CountrySettings;
|
|
28
|
+
setCountryCode: (countryCode: string) => void;
|
|
29
|
+
};
|
|
30
|
+
export declare function useDeliveryAddressFields({ customer, countrySettings, deliveryAddressId }: {
|
|
31
|
+
customer?: Query['customer'] & {
|
|
32
|
+
__typename?: 'BusinessCustomer' | 'PrivateCustomer';
|
|
33
|
+
};
|
|
34
|
+
countrySettings: CountrySettings;
|
|
35
|
+
deliveryAddressId?: number;
|
|
36
|
+
}): {
|
|
37
|
+
value: string | number | import("@jetshop/core/types").Country;
|
|
38
|
+
label: any;
|
|
39
|
+
__typename?: "CustomerField";
|
|
40
|
+
id: string;
|
|
41
|
+
required: boolean;
|
|
42
|
+
pattern?: string;
|
|
43
|
+
fields?: CustomerField[];
|
|
44
|
+
name: string;
|
|
45
|
+
}[];
|
|
46
|
+
export declare function useCustomerDetails({ customer, deliveryAddressId }: {
|
|
47
|
+
customer?: Query['customer'] & {
|
|
48
|
+
__typename?: 'BusinessCustomer' | 'PrivateCustomer';
|
|
49
|
+
};
|
|
50
|
+
deliveryAddressId?: number;
|
|
51
|
+
}): {
|
|
52
|
+
countrySettings: CountrySettings;
|
|
53
|
+
setCountryCode: (countryCode: string) => void;
|
|
54
|
+
billingAddress: {
|
|
55
|
+
value: string | number | import("@jetshop/core/types").Country;
|
|
56
|
+
label: any;
|
|
57
|
+
__typename?: "CustomerField";
|
|
58
|
+
id: string;
|
|
59
|
+
required: boolean;
|
|
60
|
+
pattern?: string;
|
|
61
|
+
fields?: CustomerField[];
|
|
62
|
+
name: string;
|
|
63
|
+
}[];
|
|
64
|
+
deliveryAddress: {
|
|
65
|
+
value: string | number | import("@jetshop/core/types").Country;
|
|
66
|
+
label: any;
|
|
67
|
+
__typename?: "CustomerField";
|
|
68
|
+
id: string;
|
|
69
|
+
required: boolean;
|
|
70
|
+
pattern?: string;
|
|
71
|
+
fields?: CustomerField[];
|
|
72
|
+
name: string;
|
|
73
|
+
}[];
|
|
74
|
+
customerCountrySettingsLoading: boolean;
|
|
75
|
+
};
|
|
76
|
+
export declare function useCustomerQuery({ query, deliveryAddressId }: {
|
|
77
|
+
query: DocumentNode;
|
|
78
|
+
deliveryAddressId?: number;
|
|
79
|
+
}): {
|
|
80
|
+
refetch: (variables?: Partial<import("@apollo/client").OperationVariables>) => Promise<import("@apollo/client").ApolloQueryResult<{
|
|
81
|
+
customer: Query['customer'] & {
|
|
82
|
+
__typename: 'BusinessCustomer' | 'PrivateCustomer';
|
|
83
|
+
};
|
|
84
|
+
}>>;
|
|
85
|
+
loading: boolean;
|
|
86
|
+
error: import("@apollo/client").ApolloError;
|
|
87
|
+
customer: Customer & {
|
|
88
|
+
__typename: 'BusinessCustomer' | 'PrivateCustomer';
|
|
89
|
+
};
|
|
90
|
+
countrySettings: CountrySettings;
|
|
91
|
+
setCountryCode: (countryCode: string) => void;
|
|
92
|
+
billingAddress: {
|
|
93
|
+
value: string | number | import("@jetshop/core/types").Country;
|
|
94
|
+
label: any;
|
|
95
|
+
__typename?: "CustomerField";
|
|
96
|
+
id: string;
|
|
97
|
+
required: boolean;
|
|
98
|
+
pattern?: string;
|
|
99
|
+
fields?: CustomerField[];
|
|
100
|
+
name: string;
|
|
101
|
+
}[];
|
|
102
|
+
deliveryAddress: {
|
|
103
|
+
value: string | number | import("@jetshop/core/types").Country;
|
|
104
|
+
label: any;
|
|
105
|
+
__typename?: "CustomerField";
|
|
106
|
+
id: string;
|
|
107
|
+
required: boolean;
|
|
108
|
+
pattern?: string;
|
|
109
|
+
fields?: CustomerField[];
|
|
110
|
+
name: string;
|
|
111
|
+
}[];
|
|
112
|
+
};
|
|
113
|
+
export declare function useCustomerUpdateMutation({ customerQuery }: {
|
|
114
|
+
customerQuery: DocumentNode;
|
|
115
|
+
}): (input: CustomerUpdateInput) => Promise<any>;
|
|
116
|
+
export {};
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2
|
+
var t = {};
|
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
4
|
+
t[p] = s[p];
|
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8
|
+
t[p[i]] = s[p[i]];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
import ChannelContext from '@jetshop/core/components/ChannelContext';
|
|
13
|
+
import UpdateCustomerMutation from '@jetshop/core/data/mutations/updateCustomer.gql';
|
|
14
|
+
import logError from '@jetshop/core/helpers/logError';
|
|
15
|
+
import { useCallback, useContext, useEffect, useMemo, useState } from 'react';
|
|
16
|
+
import { useMutation, useQuery } from '@apollo/client';
|
|
17
|
+
import { translations } from './signup-field-translations';
|
|
18
|
+
import { useCountrySettings } from '../ChannelContext/useCountrySettings';
|
|
19
|
+
export function customerAddressToCustomerUpdateAddressInput({ address, isDeleteId = false, countryCode }) {
|
|
20
|
+
const { country } = address, other = __rest(address, ["country"]);
|
|
21
|
+
delete other.__typename;
|
|
22
|
+
// billingAddress and deliveryAddresses share the same query type, therefor both gets ID
|
|
23
|
+
// Billing address mutation doesn't accept an ID, therefor we need to delete it
|
|
24
|
+
if (isDeleteId && other.id)
|
|
25
|
+
delete other.id;
|
|
26
|
+
return Object.assign(Object.assign({}, other), { countryCode: (country && country.code) || countryCode });
|
|
27
|
+
}
|
|
28
|
+
export function getAddressInputFieldName(name) {
|
|
29
|
+
if (name === 'country') {
|
|
30
|
+
return 'countryCode';
|
|
31
|
+
}
|
|
32
|
+
return name;
|
|
33
|
+
}
|
|
34
|
+
export function getDeliveryAddressesInput(customer, countryCode) {
|
|
35
|
+
return customer.deliveryAddresses.map((address) => customerAddressToCustomerUpdateAddressInput({ address, countryCode }));
|
|
36
|
+
}
|
|
37
|
+
export function getBillingAddressInput({ customer, countryCode }) {
|
|
38
|
+
return customerAddressToCustomerUpdateAddressInput({
|
|
39
|
+
address: customer === null || customer === void 0 ? void 0 : customer.billingAddress,
|
|
40
|
+
isDeleteId: true,
|
|
41
|
+
countryCode
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
export function getCustomerUpdatePreferenceInput(customer,
|
|
45
|
+
/** The currently selected channel culture, in case it does not exist on customer */
|
|
46
|
+
culture) {
|
|
47
|
+
const preferences = {
|
|
48
|
+
type: {
|
|
49
|
+
acceptsEmail: customer.communication.acceptsEmail,
|
|
50
|
+
acceptsPostal: customer.communication.acceptsPostal,
|
|
51
|
+
acceptsSms: customer.communication.acceptsSms,
|
|
52
|
+
culture
|
|
53
|
+
}
|
|
54
|
+
};
|
|
55
|
+
if (customer.store) {
|
|
56
|
+
preferences.storeLocationId = customer.store.id;
|
|
57
|
+
}
|
|
58
|
+
if (customer.language) {
|
|
59
|
+
preferences.type.culture = customer.language.culture;
|
|
60
|
+
}
|
|
61
|
+
return preferences;
|
|
62
|
+
}
|
|
63
|
+
function isPrivateCustomer(customer) {
|
|
64
|
+
return customer.__typename === 'PrivateCustomer';
|
|
65
|
+
}
|
|
66
|
+
export function getCustomerUpdateInput({ customer, billingAddressFields, culture, countryCode }) {
|
|
67
|
+
return Object.assign(Object.assign({}, (isPrivateCustomer(customer)
|
|
68
|
+
? { pid: customer.pid }
|
|
69
|
+
: { organizationNumber: customer.organizationNumber })), { billingAddress: getBillingAddressInput({
|
|
70
|
+
customer,
|
|
71
|
+
billingAddressFields,
|
|
72
|
+
countryCode
|
|
73
|
+
}), deliveryAddresses: getDeliveryAddressesInput(customer, countryCode), preferences: getCustomerUpdatePreferenceInput(customer, culture) });
|
|
74
|
+
}
|
|
75
|
+
export function useCustomerCountrySettings(customer) {
|
|
76
|
+
const { selectedChannel } = useContext(ChannelContext);
|
|
77
|
+
const { countrySettings, selectedCountrySettings, loading } = useCountrySettings();
|
|
78
|
+
const byCountryCode = useCallback(function byCountryCode(countryCode) {
|
|
79
|
+
const settings = countrySettings &&
|
|
80
|
+
countrySettings.find((s) => s.countryCode === countryCode);
|
|
81
|
+
return settings || null;
|
|
82
|
+
}, [countrySettings]);
|
|
83
|
+
const [customerCountrySettings, setCustomerCountrySettings] = useState(customer && customer.billingAddress.country
|
|
84
|
+
? byCountryCode(customer.billingAddress.country.code)
|
|
85
|
+
: selectedCountrySettings);
|
|
86
|
+
const setCountryCode = useCallback((countryCode) => {
|
|
87
|
+
const settings = byCountryCode(countryCode);
|
|
88
|
+
logError(!settings, `Trying to setCountryCode for unknown countryCode "${countryCode}"`);
|
|
89
|
+
if (settings) {
|
|
90
|
+
setCustomerCountrySettings(settings);
|
|
91
|
+
}
|
|
92
|
+
}, [byCountryCode]);
|
|
93
|
+
useEffect(() => {
|
|
94
|
+
if (!customer) {
|
|
95
|
+
return;
|
|
96
|
+
}
|
|
97
|
+
if (!customer.billingAddress.country) {
|
|
98
|
+
logError(true, `Cutomer billingAddress missing "country". ID: ${customer.id}. Available countries: ${selectedChannel.countries
|
|
99
|
+
.map(({ id }) => id)
|
|
100
|
+
.join('/')}`);
|
|
101
|
+
return;
|
|
102
|
+
}
|
|
103
|
+
setCountryCode(customer.billingAddress.country.code);
|
|
104
|
+
}, [customer, selectedChannel.countries, setCountryCode]);
|
|
105
|
+
return {
|
|
106
|
+
loading,
|
|
107
|
+
countrySettings: customerCountrySettings,
|
|
108
|
+
setCountryCode
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
export function useDeliveryAddressFields({ customer, countrySettings, deliveryAddressId }) {
|
|
112
|
+
const fieldType = (customer === null || customer === void 0 ? void 0 : customer.__typename) === 'BusinessCustomer'
|
|
113
|
+
? 'businessCustomerFields'
|
|
114
|
+
: 'privateCustomerFields';
|
|
115
|
+
const deliveryAddress = useMemo(() => {
|
|
116
|
+
if (deliveryAddressId === undefined)
|
|
117
|
+
return [];
|
|
118
|
+
const deliveryAddressField = countrySettings &&
|
|
119
|
+
countrySettings[fieldType].find(({ name }) => name === 'deliveryAddress');
|
|
120
|
+
const deliveryAddressIndex = customer.deliveryAddresses.findIndex((a) => a.id === deliveryAddressId);
|
|
121
|
+
const deliveryAddressFields = deliveryAddressField
|
|
122
|
+
? deliveryAddressField.fields.map((field) => {
|
|
123
|
+
return Object.assign(Object.assign({}, field), { value: customer.deliveryAddresses[deliveryAddressIndex][field.name], label: translations[field.name] });
|
|
124
|
+
})
|
|
125
|
+
: [];
|
|
126
|
+
return deliveryAddressFields;
|
|
127
|
+
}, [countrySettings, customer, deliveryAddressId, fieldType]);
|
|
128
|
+
return deliveryAddress;
|
|
129
|
+
}
|
|
130
|
+
export function useCustomerDetails({ customer, deliveryAddressId }) {
|
|
131
|
+
const fieldType = (customer === null || customer === void 0 ? void 0 : customer.__typename) === 'BusinessCustomer'
|
|
132
|
+
? 'businessCustomerFields'
|
|
133
|
+
: 'privateCustomerFields';
|
|
134
|
+
const { countrySettings, setCountryCode, loading: customerCountrySettingsLoading } = useCustomerCountrySettings(customer);
|
|
135
|
+
const billingAddress = useMemo(() => {
|
|
136
|
+
var _a;
|
|
137
|
+
const billingAddressField = countrySettings === null || countrySettings === void 0 ? void 0 : countrySettings[fieldType].find(({ name }) => name === 'billingAddress');
|
|
138
|
+
const billingAddressFields = (_a = billingAddressField === null || billingAddressField === void 0 ? void 0 : billingAddressField.fields.map((field) => {
|
|
139
|
+
var _a;
|
|
140
|
+
return Object.assign(Object.assign({}, field), { value: (_a = customer === null || customer === void 0 ? void 0 : customer.billingAddress) === null || _a === void 0 ? void 0 : _a[field.name], label: translations[field.name] });
|
|
141
|
+
})) !== null && _a !== void 0 ? _a : [];
|
|
142
|
+
return billingAddressFields;
|
|
143
|
+
}, [countrySettings, customer, fieldType]);
|
|
144
|
+
const deliveryAddress = useDeliveryAddressFields({
|
|
145
|
+
customer,
|
|
146
|
+
countrySettings,
|
|
147
|
+
deliveryAddressId
|
|
148
|
+
});
|
|
149
|
+
return {
|
|
150
|
+
countrySettings,
|
|
151
|
+
setCountryCode,
|
|
152
|
+
billingAddress,
|
|
153
|
+
deliveryAddress,
|
|
154
|
+
customerCountrySettingsLoading
|
|
155
|
+
};
|
|
156
|
+
}
|
|
157
|
+
export function useCustomerQuery({ query, deliveryAddressId }) {
|
|
158
|
+
var _a;
|
|
159
|
+
const { refetch, data, loading, error } = useQuery(query);
|
|
160
|
+
const customer = (_a = data === null || data === void 0 ? void 0 : data.customer) !== null && _a !== void 0 ? _a : null;
|
|
161
|
+
const { countrySettings, setCountryCode, billingAddress, deliveryAddress, customerCountrySettingsLoading } = useCustomerDetails({ customer, deliveryAddressId });
|
|
162
|
+
return {
|
|
163
|
+
refetch,
|
|
164
|
+
loading: loading || customerCountrySettingsLoading,
|
|
165
|
+
error,
|
|
166
|
+
customer,
|
|
167
|
+
countrySettings,
|
|
168
|
+
setCountryCode,
|
|
169
|
+
billingAddress,
|
|
170
|
+
deliveryAddress
|
|
171
|
+
};
|
|
172
|
+
}
|
|
173
|
+
export function useCustomerUpdateMutation({ customerQuery }) {
|
|
174
|
+
const [mutate] = useMutation(UpdateCustomerMutation);
|
|
175
|
+
const { refetch: refetchCustomer } = useCustomerQuery({
|
|
176
|
+
query: customerQuery
|
|
177
|
+
});
|
|
178
|
+
return function updateCustomerMutationWrapper(input) {
|
|
179
|
+
return Promise.resolve()
|
|
180
|
+
.then(() => mutate({
|
|
181
|
+
variables: {
|
|
182
|
+
input
|
|
183
|
+
}
|
|
184
|
+
}))
|
|
185
|
+
.then(() => refetchCustomer())
|
|
186
|
+
.then(() => null);
|
|
187
|
+
};
|
|
188
|
+
}
|
|
189
|
+
//# sourceMappingURL=useCustomer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useCustomer.js","sourceRoot":"","sources":["useCustomer.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export default function useLoginFields(): {
|
|
2
|
+
fields: {
|
|
3
|
+
inputProps: {
|
|
4
|
+
key: string;
|
|
5
|
+
type: string;
|
|
6
|
+
name: string;
|
|
7
|
+
label: string;
|
|
8
|
+
required: boolean;
|
|
9
|
+
};
|
|
10
|
+
type: string;
|
|
11
|
+
label: string;
|
|
12
|
+
placeholder?: string;
|
|
13
|
+
__typename?: "CustomerField";
|
|
14
|
+
id: string;
|
|
15
|
+
required: boolean;
|
|
16
|
+
pattern?: string;
|
|
17
|
+
fields?: import("../../types").CustomerField[];
|
|
18
|
+
name: string;
|
|
19
|
+
}[];
|
|
20
|
+
};
|