@jetshop/core 7.0.0-canary → 7.0.0-canary-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (646) hide show
  1. package/ChannelHandler/ChannelHandler.d.ts +53 -0
  2. package/ChannelHandler/ChannelHandler.js +114 -0
  3. package/ChannelHandler/ChannelHandler.js.map +1 -0
  4. package/ChannelHandler/channelUtils.d.ts +73 -0
  5. package/ChannelHandler/channelUtils.js +313 -0
  6. package/ChannelHandler/channelUtils.js.map +1 -0
  7. package/ChannelHandler/redirectUtils.d.ts +4 -0
  8. package/ChannelHandler/redirectUtils.js +53 -0
  9. package/ChannelHandler/redirectUtils.js.map +1 -0
  10. package/analytics/Analytics.d.ts +18 -0
  11. package/analytics/Analytics.js +57 -0
  12. package/analytics/Analytics.js.map +1 -0
  13. package/analytics/AnalyticsProvider.d.ts +54 -0
  14. package/analytics/AnalyticsProvider.js +229 -0
  15. package/analytics/AnalyticsProvider.js.map +1 -0
  16. package/analytics/deprecatedTracking.d.ts +17 -0
  17. package/analytics/deprecatedTracking.js +33 -0
  18. package/analytics/deprecatedTracking.js.map +1 -0
  19. package/analytics/integrations/ga4.d.ts +28 -0
  20. package/analytics/integrations/ga4.js +189 -0
  21. package/analytics/integrations/ga4.js.map +1 -0
  22. package/analytics/integrations/gtag/gtag.d.ts +8 -0
  23. package/analytics/integrations/gtag/gtag.js +209 -0
  24. package/analytics/integrations/gtag/gtag.js.map +1 -0
  25. package/analytics/integrations/gtag/index.d.ts +1 -0
  26. package/analytics/integrations/gtag/index.js +2 -0
  27. package/analytics/integrations/gtag/index.js.map +1 -0
  28. package/analytics/integrations/gtm/gtm.d.ts +12 -0
  29. package/analytics/integrations/gtm/gtm.js +227 -0
  30. package/analytics/integrations/gtm/gtm.js.map +1 -0
  31. package/analytics/integrations/gtm/index.d.ts +1 -0
  32. package/analytics/integrations/gtm/index.js +2 -0
  33. package/analytics/integrations/gtm/index.js.map +1 -0
  34. package/analytics/integrations/gtm/referrerModifier.d.ts +1 -0
  35. package/analytics/integrations/gtm/referrerModifier.js +62 -0
  36. package/analytics/integrations/gtm/referrerModifier.js.map +1 -0
  37. package/analytics/integrations/releware/index.d.ts +3 -0
  38. package/analytics/integrations/releware/index.js +39 -0
  39. package/analytics/integrations/releware/index.js.map +1 -0
  40. package/analytics/integrations/unslugify.d.ts +1 -0
  41. package/analytics/integrations/unslugify.js +16 -0
  42. package/analytics/integrations/unslugify.js.map +1 -0
  43. package/analytics/trackerRegistry.d.ts +113 -0
  44. package/analytics/trackerRegistry.js +234 -0
  45. package/analytics/trackerRegistry.js.map +1 -0
  46. package/analytics/tracking.d.ts +14 -0
  47. package/analytics/tracking.js +72 -0
  48. package/analytics/tracking.js.map +1 -0
  49. package/analytics/utils/breadcrumbsWithoutProduct.d.ts +1 -0
  50. package/analytics/utils/breadcrumbsWithoutProduct.js +9 -0
  51. package/analytics/utils/breadcrumbsWithoutProduct.js.map +1 -0
  52. package/analytics/utils/script.d.ts +8 -0
  53. package/analytics/utils/script.js +40 -0
  54. package/analytics/utils/script.js.map +1 -0
  55. package/boot/AuthHandler.d.ts +14 -0
  56. package/boot/AuthHandler.js +39 -0
  57. package/boot/AuthHandler.js.map +1 -0
  58. package/boot/NetworkStatusNotifier.d.ts +2 -0
  59. package/boot/NetworkStatusNotifier.js +4 -0
  60. package/boot/NetworkStatusNotifier.js.map +1 -0
  61. package/boot/PreviewHandler.d.ts +7 -0
  62. package/boot/PreviewHandler.js +14 -0
  63. package/boot/PreviewHandler.js.map +1 -0
  64. package/boot/SharedTree.d.ts +23 -0
  65. package/boot/SharedTree.js +27 -0
  66. package/boot/SharedTree.js.map +1 -0
  67. package/boot/addMissingConfig.d.ts +5 -0
  68. package/boot/addMissingConfig.js +34 -0
  69. package/boot/addMissingConfig.js.map +1 -0
  70. package/boot/apollo.d.ts +20 -0
  71. package/boot/apollo.js +167 -0
  72. package/boot/apollo.js.map +1 -0
  73. package/boot/client/entrypoint.d.ts +1 -0
  74. package/boot/client/entrypoint.js +5 -0
  75. package/boot/client/entrypoint.js.map +1 -0
  76. package/boot/client/index.d.ts +1 -0
  77. package/boot/client/index.js +2 -0
  78. package/boot/client/index.js.map +1 -0
  79. package/boot/client/startClient.d.ts +4 -0
  80. package/boot/client/startClient.js +139 -0
  81. package/boot/client/startClient.js.map +1 -0
  82. package/boot/server/asyncErrorHandler.d.ts +3 -0
  83. package/boot/server/asyncErrorHandler.js +5 -0
  84. package/boot/server/asyncErrorHandler.js.map +1 -0
  85. package/boot/server/breakpointMiddleware.d.ts +3 -0
  86. package/boot/server/breakpointMiddleware.js +10 -0
  87. package/boot/server/breakpointMiddleware.js.map +1 -0
  88. package/boot/server/createApolloServer.d.ts +29 -0
  89. package/boot/server/createApolloServer.js +138 -0
  90. package/boot/server/createApolloServer.js.map +1 -0
  91. package/boot/server/createDevServer.d.ts +14 -0
  92. package/boot/server/createDevServer.js +30 -0
  93. package/boot/server/createDevServer.js.map +1 -0
  94. package/boot/server/createRenderer.d.ts +28 -0
  95. package/boot/server/createRenderer.js +233 -0
  96. package/boot/server/createRenderer.js.map +1 -0
  97. package/boot/server/createServer.d.ts +14 -0
  98. package/boot/server/createServer.js +31 -0
  99. package/boot/server/createServer.js.map +1 -0
  100. package/boot/server/entrypoint.d.ts +1 -0
  101. package/boot/server/entrypoint.js +39 -0
  102. package/boot/server/entrypoint.js.map +1 -0
  103. package/boot/server/getPrefetchFiles.d.ts +10 -0
  104. package/boot/server/getPrefetchFiles.js +20 -0
  105. package/boot/server/getPrefetchFiles.js.map +1 -0
  106. package/boot/server/getPreloadAssets.d.ts +10 -0
  107. package/boot/server/getPreloadAssets.js +18 -0
  108. package/boot/server/getPreloadAssets.js.map +1 -0
  109. package/boot/server/index.d.ts +7 -0
  110. package/boot/server/index.js +114 -0
  111. package/boot/server/index.js.map +1 -0
  112. package/boot/server/listen.d.ts +13 -0
  113. package/boot/server/listen.js +17 -0
  114. package/boot/server/listen.js.map +1 -0
  115. package/boot/utils/createIntOptions.d.ts +6 -0
  116. package/boot/utils/createIntOptions.js +19 -0
  117. package/boot/utils/createIntOptions.js.map +1 -0
  118. package/boot/utils/queryLoggingMiddleware.d.ts +2 -0
  119. package/boot/utils/queryLoggingMiddleware.js +15 -0
  120. package/boot/utils/queryLoggingMiddleware.js.map +1 -0
  121. package/boot/utils/uid.d.ts +3 -0
  122. package/boot/utils/uid.js +20 -0
  123. package/boot/utils/uid.js.map +1 -0
  124. package/boot/worker/createApolloServerWorker.d.ts +18 -0
  125. package/boot/worker/createApolloServerWorker.js +119 -0
  126. package/boot/worker/createApolloServerWorker.js.map +1 -0
  127. package/boot/worker/createRenderer.d.ts +23 -0
  128. package/boot/worker/createRenderer.js +242 -0
  129. package/boot/worker/createRenderer.js.map +1 -0
  130. package/boot/worker/getPrefetchFiles.d.ts +10 -0
  131. package/boot/worker/getPrefetchFiles.js +20 -0
  132. package/boot/worker/getPrefetchFiles.js.map +1 -0
  133. package/boot/worker/getPreloadAssets.d.ts +10 -0
  134. package/boot/worker/getPreloadAssets.js +18 -0
  135. package/boot/worker/getPreloadAssets.js.map +1 -0
  136. package/boot/worker/index.d.ts +6 -0
  137. package/boot/worker/index.js +98 -0
  138. package/boot/worker/index.js.map +1 -0
  139. package/cart/AddToCartFormik.d.ts +42 -0
  140. package/cart/AddToCartFormik.js +79 -0
  141. package/cart/AddToCartFormik.js.map +1 -0
  142. package/cart/useAddToCart.d.ts +88 -0
  143. package/cart/useAddToCart.js +119 -0
  144. package/cart/useAddToCart.js.map +1 -0
  145. package/cart/useCart.d.ts +0 -0
  146. package/cart/useCart.js +1 -0
  147. package/cart/useCart.js.map +1 -0
  148. package/components/Auth/CustomerFormContainer.d.ts +0 -0
  149. package/components/Auth/CustomerFormContainer.js +1 -0
  150. package/components/Auth/CustomerFormContainer.js.map +1 -0
  151. package/components/Auth/CustomerUpdateForm.d.ts +32 -0
  152. package/components/Auth/CustomerUpdateForm.js +122 -0
  153. package/components/Auth/CustomerUpdateForm.js.map +1 -0
  154. package/components/Auth/ForgotPasswordProvider.d.ts +69 -0
  155. package/components/Auth/ForgotPasswordProvider.js +57 -0
  156. package/components/Auth/ForgotPasswordProvider.js.map +1 -0
  157. package/components/Auth/ResetPasswordProvider.d.ts +90 -0
  158. package/components/Auth/ResetPasswordProvider.js +78 -0
  159. package/components/Auth/ResetPasswordProvider.js.map +1 -0
  160. package/components/Auth/SSN.d.ts +12 -0
  161. package/components/Auth/SSN.js +35 -0
  162. package/components/Auth/SSN.js.map +1 -0
  163. package/components/Auth/SSNLookupContainer.d.ts +15 -0
  164. package/components/Auth/SSNLookupContainer.js +20 -0
  165. package/components/Auth/SSNLookupContainer.js.map +1 -0
  166. package/components/Auth/SignupFormContainer.d.ts +16 -0
  167. package/components/Auth/SignupFormContainer.js +82 -0
  168. package/components/Auth/SignupFormContainer.js.map +1 -0
  169. package/components/Auth/UpdatePasswordForm.d.ts +44 -0
  170. package/components/Auth/UpdatePasswordForm.js +98 -0
  171. package/components/Auth/UpdatePasswordForm.js.map +1 -0
  172. package/components/Auth/formFieldsFromSettings.d.ts +65 -0
  173. package/components/Auth/formFieldsFromSettings.js +77 -0
  174. package/components/Auth/formFieldsFromSettings.js.map +1 -0
  175. package/components/Auth/formatSignupInput.d.ts +8 -0
  176. package/components/Auth/formatSignupInput.js +43 -0
  177. package/components/Auth/formatSignupInput.js.map +1 -0
  178. package/components/Auth/signup-context.d.ts +36 -0
  179. package/components/Auth/signup-context.js +71 -0
  180. package/components/Auth/signup-context.js.map +1 -0
  181. package/components/Auth/signup-field-translations.d.ts +3 -0
  182. package/components/Auth/signup-field-translations.js +44 -0
  183. package/components/Auth/signup-field-translations.js.map +1 -0
  184. package/components/Auth/signupSubmit.d.ts +6 -0
  185. package/components/Auth/signupSubmit.js +65 -0
  186. package/components/Auth/signupSubmit.js.map +1 -0
  187. package/components/Auth/useAddressFields.d.ts +22 -0
  188. package/components/Auth/useAddressFields.js +33 -0
  189. package/components/Auth/useAddressFields.js.map +1 -0
  190. package/components/Auth/useCustomer.d.ts +116 -0
  191. package/components/Auth/useCustomer.js +189 -0
  192. package/components/Auth/useCustomer.js.map +1 -0
  193. package/components/Auth/useLoginFields.d.ts +20 -0
  194. package/components/Auth/useLoginFields.js +21 -0
  195. package/components/Auth/useLoginFields.js.map +1 -0
  196. package/components/Auth/useSignupForm.d.ts +7 -0
  197. package/components/Auth/useSignupForm.js +15 -0
  198. package/components/Auth/useSignupForm.js.map +1 -0
  199. package/components/AuthContext/AuthContext.d.ts +12 -0
  200. package/components/AuthContext/AuthContext.js +11 -0
  201. package/components/AuthContext/AuthContext.js.map +1 -0
  202. package/components/AuthContext/AuthProvider.d.ts +6 -0
  203. package/components/AuthContext/AuthProvider.js +100 -0
  204. package/components/AuthContext/AuthProvider.js.map +1 -0
  205. package/components/AuthContext/LogOut.d.ts +5 -0
  206. package/components/AuthContext/LogOut.js +17 -0
  207. package/components/AuthContext/LogOut.js.map +1 -0
  208. package/components/AuthContext/useAuth.d.ts +6 -0
  209. package/components/AuthContext/useAuth.js +20 -0
  210. package/components/AuthContext/useAuth.js.map +1 -0
  211. package/components/BreakpointProvider.d.ts +21 -0
  212. package/components/BreakpointProvider.js +24 -0
  213. package/components/BreakpointProvider.js.map +1 -0
  214. package/components/Cart/CartIdContext.d.ts +11 -0
  215. package/components/Cart/CartIdContext.js +61 -0
  216. package/components/Cart/CartIdContext.js.map +1 -0
  217. package/components/ChannelContext/ChannelContext.d.ts +21 -0
  218. package/components/ChannelContext/ChannelContext.js +4 -0
  219. package/components/ChannelContext/ChannelContext.js.map +1 -0
  220. package/components/ChannelContext/ChannelProvider.d.ts +10 -0
  221. package/components/ChannelContext/ChannelProvider.js +45 -0
  222. package/components/ChannelContext/ChannelProvider.js.map +1 -0
  223. package/components/ChannelContext/index.d.ts +2 -0
  224. package/components/ChannelContext/index.js +3 -0
  225. package/components/ChannelContext/index.js.map +1 -0
  226. package/components/ChannelContext/useCountrySettings.d.ts +8 -0
  227. package/components/ChannelContext/useCountrySettings.js +24 -0
  228. package/components/ChannelContext/useCountrySettings.js.map +1 -0
  229. package/components/ConfigProvider.d.ts +104 -0
  230. package/components/ConfigProvider.js +20 -0
  231. package/components/ConfigProvider.js.map +1 -0
  232. package/components/DynamicRoute/CategoryRoute.d.ts +13 -0
  233. package/components/DynamicRoute/CategoryRoute.js +59 -0
  234. package/components/DynamicRoute/CategoryRoute.js.map +1 -0
  235. package/components/DynamicRoute/ContentRoute.d.ts +14 -0
  236. package/components/DynamicRoute/ContentRoute.js +28 -0
  237. package/components/DynamicRoute/ContentRoute.js.map +1 -0
  238. package/components/DynamicRoute/CustomerRoute.d.ts +0 -0
  239. package/components/DynamicRoute/CustomerRoute.js +1 -0
  240. package/components/DynamicRoute/CustomerRoute.js.map +1 -0
  241. package/components/DynamicRoute/GenericError.d.ts +18 -0
  242. package/components/DynamicRoute/GenericError.js +57 -0
  243. package/components/DynamicRoute/GenericError.js.map +1 -0
  244. package/components/DynamicRoute/PreviewRoute.d.ts +17 -0
  245. package/components/DynamicRoute/PreviewRoute.js +58 -0
  246. package/components/DynamicRoute/PreviewRoute.js.map +1 -0
  247. package/components/DynamicRoute/ProductByArticlenumber.d.ts +5 -0
  248. package/components/DynamicRoute/ProductByArticlenumber.js +22 -0
  249. package/components/DynamicRoute/ProductByArticlenumber.js.map +1 -0
  250. package/components/DynamicRoute/ProductRoute.d.ts +15 -0
  251. package/components/DynamicRoute/ProductRoute.js +68 -0
  252. package/components/DynamicRoute/ProductRoute.js.map +1 -0
  253. package/components/DynamicRoute/RouteResolver.d.ts +22 -0
  254. package/components/DynamicRoute/RouteResolver.js +64 -0
  255. package/components/DynamicRoute/RouteResolver.js.map +1 -0
  256. package/components/DynamicRoute/Status.d.ts +15 -0
  257. package/components/DynamicRoute/Status.js +20 -0
  258. package/components/DynamicRoute/Status.js.map +1 -0
  259. package/components/DynamicRoute/index.d.ts +17 -0
  260. package/components/DynamicRoute/index.js +101 -0
  261. package/components/DynamicRoute/index.js.map +1 -0
  262. package/components/Filters/index.d.ts +1 -0
  263. package/components/Filters/index.js +2 -0
  264. package/components/Filters/index.js.map +1 -0
  265. package/components/Filters/utils/replaceInSearch.d.ts +14 -0
  266. package/components/Filters/utils/replaceInSearch.js +23 -0
  267. package/components/Filters/utils/replaceInSearch.js.map +1 -0
  268. package/components/Filters/utils/updateHistory.d.ts +25 -0
  269. package/components/Filters/utils/updateHistory.js +30 -0
  270. package/components/Filters/utils/updateHistory.js.map +1 -0
  271. package/components/Fonts/CustomFont.d.ts +14 -0
  272. package/components/Fonts/CustomFont.js +17 -0
  273. package/components/Fonts/CustomFont.js.map +1 -0
  274. package/components/Fonts/injectFont.d.ts +11 -0
  275. package/components/Fonts/injectFont.js +30 -0
  276. package/components/Fonts/injectFont.js.map +1 -0
  277. package/components/Head.d.ts +11 -0
  278. package/components/Head.js +86 -0
  279. package/components/Head.js.map +1 -0
  280. package/components/Mutation/AddToCart/addToCartUtils.d.ts +18 -0
  281. package/components/Mutation/AddToCart/addToCartUtils.js +52 -0
  282. package/components/Mutation/AddToCart/addToCartUtils.js.map +1 -0
  283. package/components/Mutation/AddToCartFormik.d.ts +53 -0
  284. package/components/Mutation/AddToCartFormik.js +183 -0
  285. package/components/Mutation/AddToCartFormik.js.map +1 -0
  286. package/components/Mutation/DecrementQuantity.d.ts +4 -0
  287. package/components/Mutation/DecrementQuantity.js +35 -0
  288. package/components/Mutation/DecrementQuantity.js.map +1 -0
  289. package/components/Mutation/IncrementQuantity.d.ts +4 -0
  290. package/components/Mutation/IncrementQuantity.js +35 -0
  291. package/components/Mutation/IncrementQuantity.js.map +1 -0
  292. package/components/Mutation/RemoveFromCart.d.ts +5 -0
  293. package/components/Mutation/RemoveFromCart.js +52 -0
  294. package/components/Mutation/RemoveFromCart.js.map +1 -0
  295. package/components/Mutation/SetQuantity.d.ts +4 -0
  296. package/components/Mutation/SetQuantity.js +37 -0
  297. package/components/Mutation/SetQuantity.js.map +1 -0
  298. package/components/Mutation/SubscribeToNewsletter.d.ts +4 -0
  299. package/components/Mutation/SubscribeToNewsletter.js +30 -0
  300. package/components/Mutation/SubscribeToNewsletter.js.map +1 -0
  301. package/components/Mutation/SubscribeToStockNotifications.d.ts +4 -0
  302. package/components/Mutation/SubscribeToStockNotifications.js +35 -0
  303. package/components/Mutation/SubscribeToStockNotifications.js.map +1 -0
  304. package/components/Mutation/cartMutationUtils.d.ts +27 -0
  305. package/components/Mutation/cartMutationUtils.js +106 -0
  306. package/components/Mutation/cartMutationUtils.js.map +1 -0
  307. package/components/Mutation/useDecrementQuantity.d.ts +11 -0
  308. package/components/Mutation/useDecrementQuantity.js +50 -0
  309. package/components/Mutation/useDecrementQuantity.js.map +1 -0
  310. package/components/Mutation/useIncrementQuantity.d.ts +11 -0
  311. package/components/Mutation/useIncrementQuantity.js +50 -0
  312. package/components/Mutation/useIncrementQuantity.js.map +1 -0
  313. package/components/Mutation/useRemoveFromCart.d.ts +13 -0
  314. package/components/Mutation/useRemoveFromCart.js +45 -0
  315. package/components/Mutation/useRemoveFromCart.js.map +1 -0
  316. package/components/Mutation/useSetQuantity.d.ts +12 -0
  317. package/components/Mutation/useSetQuantity.js +38 -0
  318. package/components/Mutation/useSetQuantity.js.map +1 -0
  319. package/components/Notifications/Notifications.d.ts +15 -0
  320. package/components/Notifications/Notifications.js +26 -0
  321. package/components/Notifications/Notifications.js.map +1 -0
  322. package/components/Notifications/index.d.ts +2 -0
  323. package/components/Notifications/index.js +3 -0
  324. package/components/Notifications/index.js.map +1 -0
  325. package/components/Notifications/notificationMachine.d.ts +30 -0
  326. package/components/Notifications/notificationMachine.js +74 -0
  327. package/components/Notifications/notificationMachine.js.map +1 -0
  328. package/components/Notifications/notificationsMachine.d.ts +37 -0
  329. package/components/Notifications/notificationsMachine.js +66 -0
  330. package/components/Notifications/notificationsMachine.js.map +1 -0
  331. package/components/Notifications/useNotification.d.ts +9 -0
  332. package/components/Notifications/useNotification.js +27 -0
  333. package/components/Notifications/useNotification.js.map +1 -0
  334. package/components/OpenGraph/OpenGraphGeneralPageData.d.ts +25 -0
  335. package/components/OpenGraph/OpenGraphGeneralPageData.js +37 -0
  336. package/components/OpenGraph/OpenGraphGeneralPageData.js.map +1 -0
  337. package/components/OpenGraph/OpenGraphProductData.d.ts +25 -0
  338. package/components/OpenGraph/OpenGraphProductData.js +49 -0
  339. package/components/OpenGraph/OpenGraphProductData.js.map +1 -0
  340. package/components/OpenGraph/index.d.ts +2 -0
  341. package/components/OpenGraph/index.js +3 -0
  342. package/components/OpenGraph/index.js.map +1 -0
  343. package/components/Pagination/PaginationContainer.d.ts +2 -0
  344. package/components/Pagination/PaginationContainer.js +5 -0
  345. package/components/Pagination/PaginationContainer.js.map +1 -0
  346. package/components/Pagination/PaginationContext.d.ts +14 -0
  347. package/components/Pagination/PaginationContext.js +4 -0
  348. package/components/Pagination/PaginationContext.js.map +1 -0
  349. package/components/Pagination/PaginationProvider.d.ts +17 -0
  350. package/components/Pagination/PaginationProvider.js +86 -0
  351. package/components/Pagination/PaginationProvider.js.map +1 -0
  352. package/components/PreviewContext.d.ts +10 -0
  353. package/components/PreviewContext.js +27 -0
  354. package/components/PreviewContext.js.map +1 -0
  355. package/components/ProductConfigurationProvider/ProductConfigurationContext.d.ts +13 -0
  356. package/components/ProductConfigurationProvider/ProductConfigurationContext.js +5 -0
  357. package/components/ProductConfigurationProvider/ProductConfigurationContext.js.map +1 -0
  358. package/components/ProductConfigurationProvider/ProductConfigurationProvider.d.ts +6 -0
  359. package/components/ProductConfigurationProvider/ProductConfigurationProvider.js +50 -0
  360. package/components/ProductConfigurationProvider/ProductConfigurationProvider.js.map +1 -0
  361. package/components/Query/CartProvider.d.ts +22 -0
  362. package/components/Query/CartProvider.js +68 -0
  363. package/components/Query/CartProvider.js.map +1 -0
  364. package/components/SortOrder/SortOrderContainer.d.ts +40 -0
  365. package/components/SortOrder/SortOrderContainer.js +108 -0
  366. package/components/SortOrder/SortOrderContainer.js.map +1 -0
  367. package/components/SortOrder/SortOrderContext.d.ts +9 -0
  368. package/components/SortOrder/SortOrderContext.js +9 -0
  369. package/components/SortOrder/SortOrderContext.js.map +1 -0
  370. package/components/StructuredData/SiteLinksSearchStructuredData.d.ts +3 -0
  371. package/components/StructuredData/SiteLinksSearchStructuredData.js +25 -0
  372. package/components/StructuredData/SiteLinksSearchStructuredData.js.map +1 -0
  373. package/components/StructuredData/StructuredBreadcrumbData.d.ts +12 -0
  374. package/components/StructuredData/StructuredBreadcrumbData.js +55 -0
  375. package/components/StructuredData/StructuredBreadcrumbData.js.map +1 -0
  376. package/components/StructuredData/StructuredCategoryData.d.ts +16 -0
  377. package/components/StructuredData/StructuredCategoryData.js +18 -0
  378. package/components/StructuredData/StructuredCategoryData.js.map +1 -0
  379. package/components/StructuredData/StructuredData.d.ts +9 -0
  380. package/components/StructuredData/StructuredData.js +7 -0
  381. package/components/StructuredData/StructuredData.js.map +1 -0
  382. package/components/StructuredData/StructuredPageData.d.ts +16 -0
  383. package/components/StructuredData/StructuredPageData.js +17 -0
  384. package/components/StructuredData/StructuredPageData.js.map +1 -0
  385. package/components/StructuredData/StructuredProductData.d.ts +18 -0
  386. package/components/StructuredData/StructuredProductData.js +43 -0
  387. package/components/StructuredData/StructuredProductData.js.map +1 -0
  388. package/components/StructuredData/index.d.ts +5 -0
  389. package/components/StructuredData/index.js +6 -0
  390. package/components/StructuredData/index.js.map +1 -0
  391. package/data/cache.d.ts +3 -0
  392. package/data/cache.js +71 -0
  393. package/data/cache.js.map +1 -0
  394. package/data/fragmentTypes.d.ts +8 -0
  395. package/data/fragmentTypes.js +84 -0
  396. package/data/fragmentTypes.js.map +1 -0
  397. package/data/fragments/index.d.ts +1 -0
  398. package/data/fragments/index.js +2 -0
  399. package/data/fragments/index.js.map +1 -0
  400. package/experiments/ExperimentsProvider.d.ts +4 -0
  401. package/experiments/ExperimentsProvider.js +29 -0
  402. package/experiments/ExperimentsProvider.js.map +1 -0
  403. package/experiments/selectExperimentVariant.d.ts +3 -0
  404. package/experiments/selectExperimentVariant.js +35 -0
  405. package/experiments/selectExperimentVariant.js.map +1 -0
  406. package/experiments/useExperiment.d.ts +2 -0
  407. package/experiments/useExperiment.js +11 -0
  408. package/experiments/useExperiment.js.map +1 -0
  409. package/helpers/decodeUrlQuery.d.ts +9 -0
  410. package/helpers/decodeUrlQuery.js +27 -0
  411. package/helpers/decodeUrlQuery.js.map +1 -0
  412. package/helpers/distance.d.ts +7 -0
  413. package/helpers/distance.js +13 -0
  414. package/helpers/distance.js.map +1 -0
  415. package/helpers/encodeVariant.d.ts +3 -0
  416. package/helpers/encodeVariant.js +25 -0
  417. package/helpers/encodeVariant.js.map +1 -0
  418. package/helpers/getBreakpointsFromValues.d.ts +6 -0
  419. package/helpers/getBreakpointsFromValues.js +15 -0
  420. package/helpers/getBreakpointsFromValues.js.map +1 -0
  421. package/helpers/getCartItemVariant.d.ts +7 -0
  422. package/helpers/getCartItemVariant.js +9 -0
  423. package/helpers/getCartItemVariant.js.map +1 -0
  424. package/helpers/getErrorDetail.d.ts +7 -0
  425. package/helpers/getErrorDetail.js +12 -0
  426. package/helpers/getErrorDetail.js.map +1 -0
  427. package/helpers/getHeaders.d.ts +6 -0
  428. package/helpers/getHeaders.js +4 -0
  429. package/helpers/getHeaders.js.map +1 -0
  430. package/helpers/isRelativeUrl.d.ts +1 -0
  431. package/helpers/isRelativeUrl.js +4 -0
  432. package/helpers/isRelativeUrl.js.map +1 -0
  433. package/helpers/logError.d.ts +1 -0
  434. package/helpers/logError.js +17 -0
  435. package/helpers/logError.js.map +1 -0
  436. package/helpers/logWarningInDev.d.ts +1 -0
  437. package/helpers/logWarningInDev.js +7 -0
  438. package/helpers/logWarningInDev.js.map +1 -0
  439. package/helpers/throwErrorInDev.d.ts +6 -0
  440. package/helpers/throwErrorInDev.js +20 -0
  441. package/helpers/throwErrorInDev.js.map +1 -0
  442. package/helpers/uniqueId.d.ts +5 -0
  443. package/helpers/uniqueId.js +10 -0
  444. package/helpers/uniqueId.js.map +1 -0
  445. package/hooks/Channels/useChannelSettings.d.ts +7 -0
  446. package/hooks/Channels/useChannelSettings.js +12 -0
  447. package/hooks/Channels/useChannelSettings.js.map +1 -0
  448. package/hooks/Filters/useBooleanFilter.d.ts +8 -0
  449. package/hooks/Filters/useBooleanFilter.js +20 -0
  450. package/hooks/Filters/useBooleanFilter.js.map +1 -0
  451. package/hooks/Filters/useFilters.d.ts +3 -0
  452. package/hooks/Filters/useFilters.js +15 -0
  453. package/hooks/Filters/useFilters.js.map +1 -0
  454. package/hooks/Filters/useListFilter.d.ts +10 -0
  455. package/hooks/Filters/useListFilter.js +37 -0
  456. package/hooks/Filters/useListFilter.js.map +1 -0
  457. package/hooks/Filters/useMultiFilter.d.ts +13 -0
  458. package/hooks/Filters/useMultiFilter.js +49 -0
  459. package/hooks/Filters/useMultiFilter.js.map +1 -0
  460. package/hooks/Filters/useRangeFilter.d.ts +10 -0
  461. package/hooks/Filters/useRangeFilter.js +35 -0
  462. package/hooks/Filters/useRangeFilter.js.map +1 -0
  463. package/hooks/Filters/useSortOrder.d.ts +16 -0
  464. package/hooks/Filters/useSortOrder.js +23 -0
  465. package/hooks/Filters/useSortOrder.js.map +1 -0
  466. package/hooks/PackageProducts/index.d.ts +2 -0
  467. package/hooks/PackageProducts/index.js +3 -0
  468. package/hooks/PackageProducts/index.js.map +1 -0
  469. package/hooks/PackageProducts/usePackageProductItem.d.ts +17 -0
  470. package/hooks/PackageProducts/usePackageProductItem.js +27 -0
  471. package/hooks/PackageProducts/usePackageProductItem.js.map +1 -0
  472. package/hooks/PackageProducts/usePackageProducts.d.ts +19 -0
  473. package/hooks/PackageProducts/usePackageProducts.js +346 -0
  474. package/hooks/PackageProducts/usePackageProducts.js.map +1 -0
  475. package/hooks/Product/index.d.ts +1 -0
  476. package/hooks/Product/index.js +2 -0
  477. package/hooks/Product/index.js.map +1 -0
  478. package/hooks/Product/useStockStatus.d.ts +9 -0
  479. package/hooks/Product/useStockStatus.js +26 -0
  480. package/hooks/Product/useStockStatus.js.map +1 -0
  481. package/hooks/Product/useSwitchToVariantImage.d.ts +9 -0
  482. package/hooks/Product/useSwitchToVariantImage.js +21 -0
  483. package/hooks/Product/useSwitchToVariantImage.js.map +1 -0
  484. package/hooks/ProductList/ProductListContext.d.ts +12 -0
  485. package/hooks/ProductList/ProductListContext.js +129 -0
  486. package/hooks/ProductList/ProductListContext.js.map +1 -0
  487. package/hooks/ProductList/action-creators.d.ts +46 -0
  488. package/hooks/ProductList/action-creators.js +295 -0
  489. package/hooks/ProductList/action-creators.js.map +1 -0
  490. package/hooks/ProductList/index.d.ts +119 -0
  491. package/hooks/ProductList/index.js +22 -0
  492. package/hooks/ProductList/index.js.map +1 -0
  493. package/hooks/ProductList/list-transforms.d.ts +75 -0
  494. package/hooks/ProductList/list-transforms.js +107 -0
  495. package/hooks/ProductList/list-transforms.js.map +1 -0
  496. package/hooks/ProductList/product-list-reducer.d.ts +76 -0
  497. package/hooks/ProductList/product-list-reducer.js +192 -0
  498. package/hooks/ProductList/product-list-reducer.js.map +1 -0
  499. package/hooks/ProductList/useProductList.d.ts +13 -0
  500. package/hooks/ProductList/useProductList.js +94 -0
  501. package/hooks/ProductList/useProductList.js.map +1 -0
  502. package/hooks/ProductList/useProductListItems.d.ts +10 -0
  503. package/hooks/ProductList/useProductListItems.js +50 -0
  504. package/hooks/ProductList/useProductListItems.js.map +1 -0
  505. package/hooks/ProductList/validate-product.d.ts +6 -0
  506. package/hooks/ProductList/validate-product.js +41 -0
  507. package/hooks/ProductList/validate-product.js.map +1 -0
  508. package/hooks/Subscriptions/useNewsletterSubscription.d.ts +38 -0
  509. package/hooks/Subscriptions/useNewsletterSubscription.js +42 -0
  510. package/hooks/Subscriptions/useNewsletterSubscription.js.map +1 -0
  511. package/hooks/Subscriptions/useStockNotifications.d.ts +36 -0
  512. package/hooks/Subscriptions/useStockNotifications.js +38 -0
  513. package/hooks/Subscriptions/useStockNotifications.js.map +1 -0
  514. package/hooks/Subscriptions/useStoreSubscriptions.d.ts +48 -0
  515. package/hooks/Subscriptions/useStoreSubscriptions.js +148 -0
  516. package/hooks/Subscriptions/useStoreSubscriptions.js.map +1 -0
  517. package/hooks/useAddMultipleToCart.d.ts +27 -0
  518. package/hooks/useAddMultipleToCart.js +113 -0
  519. package/hooks/useAddMultipleToCart.js.map +1 -0
  520. package/hooks/useChannels.d.ts +1 -0
  521. package/hooks/useChannels.js +10 -0
  522. package/hooks/useChannels.js.map +1 -0
  523. package/hooks/useCustomerOrdersQuery.d.ts +21 -0
  524. package/hooks/useCustomerOrdersQuery.js +21 -0
  525. package/hooks/useCustomerOrdersQuery.js.map +1 -0
  526. package/hooks/useDeleteAccountMutation.d.ts +15 -0
  527. package/hooks/useDeleteAccountMutation.js +39 -0
  528. package/hooks/useDeleteAccountMutation.js.map +1 -0
  529. package/hooks/useDynamicPrice.d.ts +3 -0
  530. package/hooks/useDynamicPrice.js +25 -0
  531. package/hooks/useDynamicPrice.js.map +1 -0
  532. package/hooks/useFreeShippingCheck.d.ts +15 -0
  533. package/hooks/useFreeShippingCheck.js +31 -0
  534. package/hooks/useFreeShippingCheck.js.map +1 -0
  535. package/hooks/useGeolocation.d.ts +11 -0
  536. package/hooks/useGeolocation.js +34 -0
  537. package/hooks/useGeolocation.js.map +1 -0
  538. package/hooks/useInfinitePagination.d.ts +37 -0
  539. package/hooks/useInfinitePagination.js +142 -0
  540. package/hooks/useInfinitePagination.js.map +1 -0
  541. package/hooks/useLogError.d.ts +1 -0
  542. package/hooks/useLogError.js +8 -0
  543. package/hooks/useLogError.js.map +1 -0
  544. package/hooks/useLoginMutation.d.ts +13 -0
  545. package/hooks/useLoginMutation.js +19 -0
  546. package/hooks/useLoginMutation.js.map +1 -0
  547. package/hooks/useLoginRedirect.d.ts +4 -0
  548. package/hooks/useLoginRedirect.js +37 -0
  549. package/hooks/useLoginRedirect.js.map +1 -0
  550. package/hooks/useOrderDetailQuery.d.ts +20 -0
  551. package/hooks/useOrderDetailQuery.js +29 -0
  552. package/hooks/useOrderDetailQuery.js.map +1 -0
  553. package/hooks/usePreconnectLinks.d.ts +10 -0
  554. package/hooks/usePreconnectLinks.js +26 -0
  555. package/hooks/usePreconnectLinks.js.map +1 -0
  556. package/hooks/usePrice.d.ts +41 -0
  557. package/hooks/usePrice.js +73 -0
  558. package/hooks/usePrice.js.map +1 -0
  559. package/hooks/useProductVariants/index.d.ts +1 -0
  560. package/hooks/useProductVariants/index.js +2 -0
  561. package/hooks/useProductVariants/index.js.map +1 -0
  562. package/hooks/useProductVariants/useProductVariants.d.ts +19 -0
  563. package/hooks/useProductVariants/useProductVariants.js +203 -0
  564. package/hooks/useProductVariants/useProductVariants.js.map +1 -0
  565. package/hooks/useProductVariants/useVariantFromUrl.d.ts +5 -0
  566. package/hooks/useProductVariants/useVariantFromUrl.js +16 -0
  567. package/hooks/useProductVariants/useVariantFromUrl.js.map +1 -0
  568. package/hooks/useRoutePreload.d.ts +24 -0
  569. package/hooks/useRoutePreload.js +45 -0
  570. package/hooks/useRoutePreload.js.map +1 -0
  571. package/hooks/useShopConfig.d.ts +1 -0
  572. package/hooks/useShopConfig.js +11 -0
  573. package/hooks/useShopConfig.js.map +1 -0
  574. package/hooks/useStockStatus.d.ts +8 -0
  575. package/hooks/useStockStatus.js +26 -0
  576. package/hooks/useStockStatus.js.map +1 -0
  577. package/hooks/useThrowErrorInDev.d.ts +1 -0
  578. package/hooks/useThrowErrorInDev.js +8 -0
  579. package/hooks/useThrowErrorInDev.js.map +1 -0
  580. package/hooks/useThunkReducer.d.ts +7 -0
  581. package/hooks/useThunkReducer.js +24 -0
  582. package/hooks/useThunkReducer.js.map +1 -0
  583. package/hooks/useWarningInDev.d.ts +1 -0
  584. package/hooks/useWarningInDev.js +10 -0
  585. package/hooks/useWarningInDev.js.map +1 -0
  586. package/inServer.d.ts +1 -0
  587. package/inServer.js +3 -0
  588. package/inServer.js.map +1 -0
  589. package/index.d.ts +1 -0
  590. package/index.js +2 -0
  591. package/index.js.map +1 -0
  592. package/integrations/sluggishSchemaExtension.d.ts +2 -0
  593. package/integrations/sluggishSchemaExtension.js +27 -0
  594. package/integrations/sluggishSchemaExtension.js.map +1 -0
  595. package/package.json +1 -1
  596. package/resolvers/filters/boolFilter.d.ts +3 -0
  597. package/resolvers/filters/boolFilter.js +82 -0
  598. package/resolvers/filters/boolFilter.js.map +1 -0
  599. package/resolvers/filters/defaultActiveFilters.d.ts +3 -0
  600. package/resolvers/filters/defaultActiveFilters.js +9 -0
  601. package/resolvers/filters/defaultActiveFilters.js.map +1 -0
  602. package/resolvers/filters/filterParams.d.ts +3 -0
  603. package/resolvers/filters/filterParams.js +85 -0
  604. package/resolvers/filters/filterParams.js.map +1 -0
  605. package/resolvers/filters/filters.d.ts +5 -0
  606. package/resolvers/filters/filters.js +79 -0
  607. package/resolvers/filters/filters.js.map +1 -0
  608. package/resolvers/filters/index.d.ts +23 -0
  609. package/resolvers/filters/index.js +8 -0
  610. package/resolvers/filters/index.js.map +1 -0
  611. package/resolvers/filters/listFilter.d.ts +7 -0
  612. package/resolvers/filters/listFilter.js +69 -0
  613. package/resolvers/filters/listFilter.js.map +1 -0
  614. package/resolvers/filters/listFilterItem.d.ts +3 -0
  615. package/resolvers/filters/listFilterItem.js +118 -0
  616. package/resolvers/filters/listFilterItem.js.map +1 -0
  617. package/resolvers/filters/multiListFilter.d.ts +5 -0
  618. package/resolvers/filters/multiListFilter.js +195 -0
  619. package/resolvers/filters/multiListFilter.js.map +1 -0
  620. package/resolvers/filters/multiListFilterList.d.ts +3 -0
  621. package/resolvers/filters/multiListFilterList.js +56 -0
  622. package/resolvers/filters/multiListFilterList.js.map +1 -0
  623. package/resolvers/filters/rangeFilter.d.ts +5 -0
  624. package/resolvers/filters/rangeFilter.js +122 -0
  625. package/resolvers/filters/rangeFilter.js.map +1 -0
  626. package/resolvers/filters/updateQueryString.d.ts +12 -0
  627. package/resolvers/filters/updateQueryString.js +117 -0
  628. package/resolvers/filters/updateQueryString.js.map +1 -0
  629. package/resolvers/index.d.ts +37 -0
  630. package/resolvers/index.js +38 -0
  631. package/resolvers/index.js.map +1 -0
  632. package/server/graphql.d.ts +20 -0
  633. package/server/graphql.js +118 -0
  634. package/server/graphql.js.map +1 -0
  635. package/server/index.d.ts +2 -0
  636. package/server/index.js +3 -0
  637. package/server/index.js.map +1 -0
  638. package/server/tracking/facebook.d.ts +5 -0
  639. package/server/tracking/facebook.js +148 -0
  640. package/server/tracking/facebook.js.map +1 -0
  641. package/server/tracking/middleware.d.ts +8 -0
  642. package/server/tracking/middleware.js +15 -0
  643. package/server/tracking/middleware.js.map +1 -0
  644. package/time.d.ts +1 -0
  645. package/time.js +6 -0
  646. package/time.js.map +1 -0
@@ -0,0 +1,242 @@
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 { getDataFromTree } from '@apollo/client/react/ssr';
11
+ import { getSelectedAndRecommendedChannel } from '@jetshop/core/ChannelHandler/channelUtils';
12
+ import { setupIntl } from '@jetshop/intl/config';
13
+ import IntlContext from '@jetshop/intl/context';
14
+ import React from 'react';
15
+ import { Cookies } from 'react-cookie';
16
+ import { renderToString } from 'react-dom/server';
17
+ import { ChunkExtractor, ChunkExtractorManager } from '@loadable/server';
18
+ import { StaticRouter } from 'react-router-dom';
19
+ import { getActiveFiltersFromSearch } from '../../resolvers/filters/filterParams';
20
+ import { createClient } from '../apollo';
21
+ import SharedTree from '../SharedTree';
22
+ import createIntlOptions from '../utils/createIntOptions';
23
+ import selectExperimentVariant from '../../experiments/selectExperimentVariant';
24
+ import { ChannelHandler } from '../../ChannelHandler/ChannelHandler';
25
+ import { AuthHandler } from '../AuthHandler';
26
+ import { PreviewHandler } from '../PreviewHandler';
27
+ import isBot from 'isbot';
28
+ import { getPreloadLinkHeaderString } from './getPreloadAssets';
29
+ import { primaryRouteForPathFetcher } from '../../../core/ChannelHandler/redirectUtils';
30
+ import ActiveFiltersQuery from '@jetshop/core/components/DynamicRoute/ActiveFiltersQuery.gql';
31
+ import AuthProvider from '@jetshop/core/components/AuthContext/AuthProvider';
32
+ const injectDataIntoSlots = (template, data) => Object.keys(data).reduce((output, key) => key !== 'htmlAttributes'
33
+ ? output.replace(`<slot name="${key}"/>`, data[key])
34
+ : output.replace('<html lang="en">', `<html ${data[key]}>`), template);
35
+ const wrapTree = (tree, req, renderOptions, client, channelHandler, authHandler, previewHandler, translator, config, extractor) => __awaiter(void 0, void 0, void 0, function* () {
36
+ var _a;
37
+ const modules = [];
38
+ const routerContext = { url: null, statusCode: 200 };
39
+ const helmetContext = { helmet: null };
40
+ const selectedChannel = channelHandler === null || channelHandler === void 0 ? void 0 : channelHandler.selectedChannel;
41
+ const channelOverrides = (renderOptions === null || renderOptions === void 0 ? void 0 : renderOptions.channelOverrides) && (selectedChannel === null || selectedChannel === void 0 ? void 0 : selectedChannel.id)
42
+ ? renderOptions.channelOverrides[selectedChannel.id]
43
+ : {};
44
+ const wrappedTree = (React.createElement(ChunkExtractorManager, { extractor: extractor },
45
+ React.createElement(IntlContext.Provider, { value: translator },
46
+ React.createElement(SharedTree, { activeBreakpoint: req.breakpoint, config: Object.assign(Object.assign({}, renderOptions), channelOverrides), cookies: req.universalCookies, helmetContext: helmetContext, client: client, channelHandler: channelHandler, previewHandler: previewHandler, Router: StaticRouter, routerProps: {
47
+ location: new URL(req.url).pathname + new URL(req.url).search,
48
+ context: routerContext
49
+ } },
50
+ React.createElement(AuthProvider, { auth: authHandler }, tree)))));
51
+ try {
52
+ yield getDataFromTree(wrappedTree);
53
+ }
54
+ catch (e) {
55
+ if (e.message ===
56
+ 'GraphQL error: This channel requires you to be logged in.' ||
57
+ ((_a = e.networkError) === null || _a === void 0 ? void 0 : _a.statusCode) === 401) {
58
+ const base = channelHandler.getChannelBasename() || '';
59
+ const loginPathWithBase = base + config.loginPath;
60
+ const routesAllowedWithoutAuth = config.pathsWithNoAuthRequired.map((path) => base + path);
61
+ const url = new URL(req.url);
62
+ const matches = routesAllowedWithoutAuth.filter((route) => url.pathname.startsWith(route)).length > 0;
63
+ if (!matches) {
64
+ routerContext.statusCode = 302;
65
+ routerContext.url = loginPathWithBase + url.search;
66
+ }
67
+ }
68
+ else {
69
+ console.error('Apollo data fetch failed:', e);
70
+ routerContext.statusCode = 500;
71
+ }
72
+ }
73
+ const apolloState = `<script>/*<!--*/
74
+ window.__APOLLO_STATE__=JSON.parse(${JSON.stringify(JSON.stringify(client.extract()))});
75
+ /*-->*/</script>`;
76
+ return {
77
+ wrappedTree,
78
+ modules,
79
+ routerUrl: routerContext.url,
80
+ statusCode: routerContext.statusCode,
81
+ helmet: helmetContext.helmet,
82
+ apolloState
83
+ };
84
+ });
85
+ const createRenderer = (template, tree, options) => {
86
+ return (request) => __awaiter(void 0, void 0, void 0, function* () {
87
+ const { apolloConfig, loadableStats, intl, schema, globalClient, disableGeoRedirect, singleDomainMode } = options;
88
+ const url = new URL(request.url);
89
+ // Parse cookies from Cookie header
90
+ const cookieHeader = request.headers.get('Cookie') || '';
91
+ const cookies = new Cookies(cookieHeader);
92
+ // Simple mobile detection from User-Agent
93
+ const userAgent = request.headers.get('User-Agent') || '';
94
+ const isMobile = userAgent.includes('Mobile');
95
+ const breakpoint = isMobile ? 'sm' : 'lg';
96
+ // Get geoIP from Cloudflare headers
97
+ const geoipCountry = request.headers.get('CF-IPCountry') ||
98
+ request.headers.get('x-geoip-country');
99
+ const acceptedLanguages = request.headers.get('Accept-Language') || '';
100
+ const response = yield globalClient.query({
101
+ query: apolloConfig.channelsQuery
102
+ });
103
+ const channels = response.data.channels;
104
+ const { selectedChannel, recommendedChannel, redirect, group } = getSelectedAndRecommendedChannel({
105
+ url: request.url,
106
+ singleDomainMode,
107
+ channels,
108
+ cookies,
109
+ geoipCountry,
110
+ acceptedLanguages,
111
+ disableGeoRedirect
112
+ });
113
+ const authHandler = new AuthHandler({
114
+ cookies
115
+ });
116
+ const previewHandler = new PreviewHandler();
117
+ const channelHandler = new ChannelHandler({
118
+ selectedChannel,
119
+ recommendedChannel,
120
+ channels
121
+ });
122
+ channelHandler.setChannelGroup(group);
123
+ const createClientOpts = {
124
+ apolloConfig,
125
+ schema,
126
+ authHandler,
127
+ previewHandler,
128
+ req: {
129
+ headers: request.headers,
130
+ url: request.url
131
+ },
132
+ channelHandler
133
+ };
134
+ const { client } = createClient(createClientOpts);
135
+ channelHandler.setGetPrimaryRoutePath(primaryRouteForPathFetcher(client));
136
+ if (redirect && !isBot(userAgent)) {
137
+ const redirectUrl = yield channelHandler.getRedirectUrl({
138
+ url: request.url,
139
+ newChannel: channelHandler.recommendedChannel,
140
+ preserveRedirect: true,
141
+ routes: options.routes
142
+ });
143
+ return Response.redirect(redirectUrl, 302);
144
+ }
145
+ const cachedChannels = client.extract();
146
+ client.cache.restore(cachedChannels);
147
+ // Parse query parameters from URL
148
+ const queryParams = {};
149
+ url.searchParams.forEach((value, key) => {
150
+ queryParams[key] = value;
151
+ });
152
+ client.cache.writeQuery({
153
+ query: ActiveFiltersQuery,
154
+ data: {
155
+ activeFilters: getActiveFiltersFromSearch(queryParams)
156
+ }
157
+ });
158
+ const intlOptions = createIntlOptions({
159
+ selectedChannel,
160
+ options: intl.options
161
+ });
162
+ const { translator } = yield setupIntl({
163
+ translations: intl.translations,
164
+ locale: selectedChannel.language.culture,
165
+ defaultLocale: intl.defaultLocale,
166
+ options: intlOptions
167
+ });
168
+ if (options.optimize) {
169
+ const selectedVariant = cookies.get('optimizeExperiment');
170
+ const newVariant = selectExperimentVariant(options.optimize, selectedVariant);
171
+ if (newVariant) {
172
+ cookies.set('optimizeExperiment', newVariant, {
173
+ path: '/',
174
+ maxAge: 60 * 60 * 24 * 90
175
+ });
176
+ }
177
+ }
178
+ const chunkExtractor = new ChunkExtractor({
179
+ stats: loadableStats,
180
+ entrypoints: ['client']
181
+ });
182
+ const workerReq = {
183
+ url: request.url,
184
+ method: request.method,
185
+ headers: request.headers,
186
+ breakpoint,
187
+ universalCookies: cookies
188
+ };
189
+ const { wrappedTree, routerUrl, statusCode, helmet: { htmlAttributes, title, meta, style, link }, apolloState } = yield wrapTree(tree, workerReq, options, client, channelHandler, authHandler, previewHandler, translator, {
190
+ loginPath: options.loginPath,
191
+ pathsWithNoAuthRequired: options.pathsWithNoAuthRequired
192
+ }, chunkExtractor);
193
+ if (routerUrl) {
194
+ const redirectStatus = !statusCode || statusCode < 300 || statusCode >= 400 ? 302 : statusCode;
195
+ return Response.redirect(routerUrl, redirectStatus);
196
+ }
197
+ const responseHeaders = new Headers({
198
+ 'Content-Type': 'text/html'
199
+ });
200
+ // Set Link header for preloading assets
201
+ const preLoadAssets = chunkExtractor.getPreAssets();
202
+ if (preLoadAssets.length > 0) {
203
+ responseHeaders.set('Link', getPreloadLinkHeaderString(preLoadAssets));
204
+ }
205
+ // Get link, style, and script tags
206
+ const preloadLinks = chunkExtractor.getLinkTags();
207
+ const preloadStyles = chunkExtractor.getStyleTags();
208
+ const preloadScripts = chunkExtractor.getScriptTags();
209
+ const breakpointScript = `<script>window.__ACTIVE_BREAKPOINT__ = "${breakpoint}";</script>`;
210
+ const geoipCountryScript = `<script>window.__GEOIP_COUNTRY__ = "${geoipCountry}";</script>`;
211
+ const acceptedLanguagesScript = `<script>window.__ACCEPTED_LANGUAGES__ = '${JSON.stringify(acceptedLanguages)}';</script>`;
212
+ const statusCodeScript = `<script>window.__STATUS_CODE__ = '${statusCode}';</script>`;
213
+ const data = {
214
+ apolloState: apolloState,
215
+ preloadLinks,
216
+ preloadScripts: geoipCountryScript +
217
+ acceptedLanguagesScript +
218
+ statusCodeScript +
219
+ preloadScripts,
220
+ title: title.toString(),
221
+ meta: meta.toString() + link.toString(),
222
+ style: style.toString() + breakpointScript + preloadStyles,
223
+ htmlAttributes: htmlAttributes.toString()
224
+ };
225
+ const html = injectDataIntoSlots(template, data);
226
+ const [head, foot] = html.split('<slot name="html"/>');
227
+ // Build complete HTML
228
+ const completeHtml = head + renderToString(wrappedTree) + foot;
229
+ // Handle Set-Cookie headers from cookies
230
+ const allCookies = cookies.getAll();
231
+ Object.keys(allCookies).forEach((name) => {
232
+ // Note: This is a simplified approach, production would need proper cookie serialization
233
+ responseHeaders.append('Set-Cookie', `${name}=${allCookies[name]}; Path=/`);
234
+ });
235
+ return new Response(completeHtml, {
236
+ status: statusCode,
237
+ headers: responseHeaders
238
+ });
239
+ });
240
+ };
241
+ export default createRenderer;
242
+ //# sourceMappingURL=createRenderer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createRenderer.js","sourceRoot":"","sources":["createRenderer.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,10 @@
1
+ export interface PreloadAssets {
2
+ filename: string;
3
+ scriptType: string;
4
+ chunk: string;
5
+ url: string;
6
+ path: string;
7
+ type: string;
8
+ linkType: string;
9
+ }
10
+ export declare const getPrefetchHeader: (prefetchFiles: PreloadAssets[]) => string;
@@ -0,0 +1,20 @@
1
+ export const getPrefetchHeader = (prefetchFiles) => {
2
+ if (prefetchFiles.length < 1) {
3
+ return null;
4
+ }
5
+ const prefetchHeaderValue = prefetchFiles
6
+ .map(({ url }) => {
7
+ const script = url.endsWith('.js');
8
+ const style = url.endsWith('.css');
9
+ if (script) {
10
+ return `<${url}>; as=script; rel=preload`;
11
+ }
12
+ else if (style) {
13
+ return `<${url}>; as=style; rel=preload`;
14
+ }
15
+ return '';
16
+ })
17
+ .join(', ');
18
+ return prefetchHeaderValue;
19
+ };
20
+ //# sourceMappingURL=getPrefetchFiles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getPrefetchFiles.js","sourceRoot":"","sources":["getPrefetchFiles.ts"],"names":[],"mappings":"AAUA,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,aAA8B,EAAE,EAAE;IAClE,IAAI,aAAa,CAAC,MAAM,GAAG,CAAC,EAAE;QAC5B,OAAO,IAAI,CAAC;KACb;IAED,MAAM,mBAAmB,GAAG,aAAa;SACtC,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE;QACf,MAAM,MAAM,GAAG,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;QACnC,MAAM,KAAK,GAAG,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;QAEnC,IAAI,MAAM,EAAE;YACV,OAAO,IAAI,GAAG,2BAA2B,CAAC;SAC3C;aAAM,IAAI,KAAK,EAAE;YAChB,OAAO,IAAI,GAAG,0BAA0B,CAAC;SAC1C;QAED,OAAO,EAAE,CAAC;IACZ,CAAC,CAAC;SACD,IAAI,CAAC,IAAI,CAAC,CAAC;IAEd,OAAO,mBAAmB,CAAC;AAC7B,CAAC,CAAC"}
@@ -0,0 +1,10 @@
1
+ export interface PreloadAssets {
2
+ filename: string;
3
+ scriptType: string;
4
+ chunk: string;
5
+ url: string;
6
+ path: string;
7
+ type: string;
8
+ linkType: string;
9
+ }
10
+ export declare const getPreloadLinkHeaderString: (preloadAssets: PreloadAssets[]) => string;
@@ -0,0 +1,18 @@
1
+ export const getPreloadLinkHeaderString = (preloadAssets) => {
2
+ if (!preloadAssets || preloadAssets.length < 1) {
3
+ return '';
4
+ }
5
+ const preloadLinkHeaderString = preloadAssets
6
+ .map(({ url, scriptType, linkType }) => {
7
+ if (scriptType === 'script') {
8
+ return `<${url}>; as=${scriptType}; rel=${linkType}`;
9
+ }
10
+ else if (scriptType === 'style') {
11
+ return `<${url}>; as=${scriptType}; rel=${linkType}`;
12
+ }
13
+ return '';
14
+ })
15
+ .join(', ');
16
+ return preloadLinkHeaderString;
17
+ };
18
+ //# sourceMappingURL=getPreloadAssets.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getPreloadAssets.js","sourceRoot":"","sources":["getPreloadAssets.ts"],"names":[],"mappings":"AAUA,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,aAA8B,EAAE,EAAE;IAC3E,IAAI,CAAC,aAAa,IAAI,aAAa,CAAC,MAAM,GAAG,CAAC,EAAE;QAC9C,OAAO,EAAE,CAAC;KACX;IAED,MAAM,uBAAuB,GAAG,aAAa;SAC1C,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,UAAU,EAAE,QAAQ,EAAE,EAAE,EAAE;QACrC,IAAI,UAAU,KAAK,QAAQ,EAAE;YAC3B,OAAO,IAAI,GAAG,SAAS,UAAU,SAAS,QAAQ,EAAE,CAAC;SACtD;aAAM,IAAI,UAAU,KAAK,OAAO,EAAE;YACjC,OAAO,IAAI,GAAG,SAAS,UAAU,SAAS,QAAQ,EAAE,CAAC;SACtD;QACD,OAAO,EAAE,CAAC;IACZ,CAAC,CAAC;SACD,IAAI,CAAC,IAAI,CAAC,CAAC;IAEd,OAAO,uBAAuB,CAAC;AACjC,CAAC,CAAC"}
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { BootOptions } from '../../components/ConfigProvider';
3
+ export interface TranslationsPromises {
4
+ [locale: string]: () => Promise<any>;
5
+ }
6
+ export declare const createWorkerApp: (Component: React.ReactElement<any>, userConfig: BootOptions) => Promise<(request: Request, _: any, __: any) => Promise<Response>>;
@@ -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"}