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

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,138 @@
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 { ApolloLink, HttpLink } from '@apollo/client';
11
+ import { ApolloServer } from 'apollo-server-express';
12
+ import { introspectSchema, makeRemoteExecutableSchema, mergeSchemas } from 'graphql-tools';
13
+ import { setContext } from '@apollo/client/link/context';
14
+ import fetch from 'node-fetch';
15
+ import https from 'https';
16
+ import dnscache from 'dnscache';
17
+ const pick = require('lodash.pick');
18
+ const merge = require('lodash.merge');
19
+ // // <😷>
20
+ // // Hack graphql-js to prevent "conflict because they return conflicting types"
21
+ // // https://github.com/graphql/graphql-js/issues/1361#issuecomment-393489320
22
+ // // The underlying .NET GraphQL-API does not have this check
23
+ // // https://github.com/graphql-dotnet/graphql-dotnet/issues/160
24
+ // const index = specifiedRules.findIndex(
25
+ // item => item === OverlappingFieldsCanBeMerged
26
+ // );
27
+ // (specifiedRules as any[]).splice(index, 1);
28
+ // // </😷>
29
+ const forwardedHeaders = [
30
+ 'authorization',
31
+ 'channelid',
32
+ 'country',
33
+ 'culture',
34
+ 'currency'
35
+ ];
36
+ function getRemoteSchema({ apolloConfig: { graphQLURI, token, shopid } }) {
37
+ return __awaiter(this, void 0, void 0, function* () {
38
+ const http = new HttpLink({
39
+ uri: graphQLURI,
40
+ fetch: fetch,
41
+ fetchOptions: {
42
+ agent: graphQLURI.indexOf('https') === 0
43
+ ? new https.Agent({
44
+ keepAlive: true
45
+ })
46
+ : undefined
47
+ }
48
+ });
49
+ // on introspect, get headers from conf/env
50
+ const introspectLink = setContext(() => ({
51
+ headers: {
52
+ token,
53
+ shopid
54
+ }
55
+ })).concat(http);
56
+ // proxy: on incoming request, forward headers
57
+ const forwardLink = setContext((_request, context) => {
58
+ const ctx = context.graphqlContext;
59
+ return {
60
+ headers: Object.assign({ token,
61
+ shopid }, ctx.headers)
62
+ };
63
+ }).concat(http);
64
+ /**
65
+ * FIXME
66
+ * Hack to get errors forwarded.
67
+ * Can probably removed after the issue below has been resolved.
68
+ * @link https://github.com/apollographql/graphql-tools/issues/1046#issuecomment-457445794
69
+ */
70
+ const errorLink = new ApolloLink((operation, forward) => {
71
+ return forward(operation).map((data) => {
72
+ if (data.errors) {
73
+ for (const error of data.errors) {
74
+ if (!(error instanceof Error))
75
+ Object.setPrototypeOf(error, Error.prototype);
76
+ }
77
+ }
78
+ return data;
79
+ });
80
+ });
81
+ // We could do this build-time to speed up start
82
+ const schema = yield introspectSchema(introspectLink);
83
+ const executableSchema = makeRemoteExecutableSchema({
84
+ schema,
85
+ link: errorLink.concat(forwardLink)
86
+ });
87
+ return executableSchema;
88
+ });
89
+ }
90
+ export default function createApolloServer({ apolloConfig, extensions = [], plugins = [] }) {
91
+ return __awaiter(this, void 0, void 0, function* () {
92
+ dnscache({
93
+ enable: true,
94
+ ttl: 300,
95
+ cachesize: 1000
96
+ });
97
+ const remoteSchema = yield getRemoteSchema({ apolloConfig });
98
+ const schemas = [remoteSchema];
99
+ const resolvers = {};
100
+ for (const extension of extensions) {
101
+ const result = yield extension({ remoteSchema });
102
+ if (result.schema) {
103
+ schemas.push(result.schema);
104
+ }
105
+ if (result.resolvers) {
106
+ merge(resolvers, result.resolvers);
107
+ }
108
+ }
109
+ const schema = mergeSchemas({
110
+ schemas,
111
+ resolvers
112
+ });
113
+ const engine = apolloConfig.engineApiKey
114
+ ? {
115
+ apiKey: apolloConfig.engineApiKey
116
+ }
117
+ : false;
118
+ const apolloServer = new ApolloServer({
119
+ schema,
120
+ // Disable introspection in production
121
+ introspection: process.env.NODE_ENV !== 'production',
122
+ context: ({ req }) => {
123
+ var _a;
124
+ const incomingHeaders = (_a = req === null || req === void 0 ? void 0 : req.headers) !== null && _a !== void 0 ? _a : {};
125
+ const headers = pick(incomingHeaders, forwardedHeaders);
126
+ return {
127
+ headers
128
+ };
129
+ },
130
+ tracing: false,
131
+ cacheControl: false,
132
+ engine,
133
+ plugins
134
+ });
135
+ return { apolloServer, schema };
136
+ });
137
+ }
138
+ //# sourceMappingURL=createApolloServer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createApolloServer.js","sourceRoot":"","sources":["createApolloServer.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,14 @@
1
+ import { ApolloConfig } from '../../components/ConfigProvider';
2
+ import { SchemaExtensions } from './createApolloServer';
3
+ import { PluginDefinition } from 'apollo-server-core';
4
+ export interface CreateDevServerOptions {
5
+ apolloConfig: ApolloConfig;
6
+ port: number;
7
+ schemaExtensions?: SchemaExtensions;
8
+ apolloServerPlugins?: PluginDefinition[];
9
+ }
10
+ export declare const createDevServer: ({ apolloConfig, port, schemaExtensions, apolloServerPlugins }: CreateDevServerOptions) => Promise<{
11
+ port: number;
12
+ apolloServer: import("apollo-server-express").ApolloServer;
13
+ }>;
14
+ export default createDevServer;
@@ -0,0 +1,30 @@
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 * as cors from 'cors';
11
+ import * as express from 'express';
12
+ import createApolloServer from './createApolloServer';
13
+ import listen from './listen';
14
+ export const createDevServer = ({ apolloConfig, port, schemaExtensions, apolloServerPlugins }) => __awaiter(void 0, void 0, void 0, function* () {
15
+ const app = express();
16
+ app.use(cors());
17
+ const { apolloServer } = yield createApolloServer({
18
+ apolloConfig,
19
+ extensions: schemaExtensions,
20
+ plugins: apolloServerPlugins
21
+ });
22
+ apolloServer.applyMiddleware({ app: app });
23
+ const { port: listenPort } = yield listen({
24
+ app,
25
+ port
26
+ });
27
+ return { port: listenPort, apolloServer };
28
+ });
29
+ export default createDevServer;
30
+ //# sourceMappingURL=createDevServer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createDevServer.js","sourceRoot":"","sources":["createDevServer.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,KAAK,IAAI,MAAM,MAAM,CAAC;AAC7B,OAAO,KAAK,OAAO,MAAM,SAAS,CAAC;AAEnC,OAAO,kBAAwC,MAAM,sBAAsB,CAAC;AAC5E,OAAO,MAAM,MAAM,UAAU,CAAC;AAU9B,MAAM,CAAC,MAAM,eAAe,GAAG,CAAO,EACpC,YAAY,EACZ,IAAI,EACJ,gBAAgB,EAChB,mBAAmB,EACI,EAAE,EAAE;IAC3B,MAAM,GAAG,GAAG,OAAO,EAAE,CAAC;IAEtB,GAAG,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC;IAEhB,MAAM,EAAE,YAAY,EAAE,GAAG,MAAM,kBAAkB,CAAC;QAChD,YAAY;QACZ,UAAU,EAAE,gBAAgB;QAC5B,OAAO,EAAE,mBAAmB;KAC7B,CAAC,CAAC;IAEH,YAAY,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC;IAE3C,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,GAAG,MAAM,MAAM,CAAC;QACxC,GAAG;QACH,IAAI;KACL,CAAC,CAAC;IAEH,OAAO,EAAE,IAAI,EAAE,UAAU,EAAE,YAAY,EAAE,CAAC;AAC5C,CAAC,CAAA,CAAC;AAEF,eAAe,eAAe,CAAC"}
@@ -0,0 +1,28 @@
1
+ import { ApolloClient } from '@apollo/client';
2
+ import { Request, Response } from 'express';
3
+ import { GraphQLSchema } from 'graphql';
4
+ import { ReactElement } from 'react';
5
+ import { Cookies } from 'react-cookie';
6
+ import { Tracker } from '../../analytics/tracking';
7
+ import { BootOptions, OptimizeConfig } from '../../components/ConfigProvider';
8
+ export interface SlotData {
9
+ [key: string]: string;
10
+ }
11
+ export interface PreloadScripts {
12
+ src: string;
13
+ attrs: SlotData;
14
+ }
15
+ export interface RendererOptions extends BootOptions {
16
+ loadableStatsPath: string;
17
+ schema?: GraphQLSchema;
18
+ disableGeoRedirect: boolean;
19
+ singleDomainMode: boolean;
20
+ trackers?: Tracker[];
21
+ optimize?: OptimizeConfig;
22
+ globalClient?: ApolloClient<any>;
23
+ }
24
+ declare const createRenderer: (template: string, tree: ReactElement<any>, options: RendererOptions) => (req: Request & {
25
+ universalCookies: Cookies;
26
+ breakpoint: string;
27
+ }, res: Response) => Promise<void>;
28
+ export default createRenderer;
@@ -0,0 +1,233 @@
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 { renderToString } from 'react-dom/server';
16
+ import { ChunkExtractor, ChunkExtractorManager } from '@loadable/server';
17
+ import { StaticRouter } from 'react-router-dom';
18
+ import { getActiveFiltersFromSearch } from '../../resolvers/filters/filterParams';
19
+ import { createClient } from '../apollo';
20
+ import SharedTree from '../SharedTree';
21
+ import createIntlOptions from '../utils/createIntOptions';
22
+ import selectExperimentVariant from '../../experiments/selectExperimentVariant';
23
+ import { ChannelHandler } from '../../ChannelHandler/ChannelHandler';
24
+ import { AuthHandler } from '../AuthHandler';
25
+ import { PreviewHandler } from '../PreviewHandler';
26
+ import isBot from 'isbot';
27
+ import { getPreloadLinkHeaderString } from './getPreloadAssets';
28
+ import { primaryRouteForPathFetcher } from '../../../core/ChannelHandler/redirectUtils';
29
+ import ActiveFiltersQuery from '@jetshop/core/components/DynamicRoute/ActiveFiltersQuery.gql';
30
+ import AuthProvider from '@jetshop/core/components/AuthContext/AuthProvider';
31
+ const injectDataIntoSlots = (template, data) => Object.keys(data).reduce((output, key) => key !== 'htmlAttributes'
32
+ ? output.replace(`<slot name="${key}"/>`, data[key])
33
+ : output.replace('<html lang="en">', `<html ${data[key]}>`), template);
34
+ const wrapTree = (tree, req, renderOptions, client, channelHandler, authHandler, previewHandler, translator, config, extractor) => __awaiter(void 0, void 0, void 0, function* () {
35
+ var _a;
36
+ const modules = [];
37
+ const routerContext = { url: null, statusCode: 200 };
38
+ const helmetContext = { helmet: null };
39
+ const selectedChannel = channelHandler === null || channelHandler === void 0 ? void 0 : channelHandler.selectedChannel;
40
+ const channelOverrides = (renderOptions === null || renderOptions === void 0 ? void 0 : renderOptions.channelOverrides) && (selectedChannel === null || selectedChannel === void 0 ? void 0 : selectedChannel.id)
41
+ ? renderOptions.channelOverrides[selectedChannel.id]
42
+ : {};
43
+ const wrappedTree = (React.createElement(ChunkExtractorManager, { extractor: extractor },
44
+ React.createElement(IntlContext.Provider, { value: translator },
45
+ 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: {
46
+ location: req.originalUrl,
47
+ context: routerContext
48
+ } },
49
+ React.createElement(AuthProvider, { auth: authHandler }, tree)))));
50
+ try {
51
+ // This getDataFromTree is used to get all of the data from the Query components
52
+ yield getDataFromTree(wrappedTree);
53
+ }
54
+ catch (e) {
55
+ // Log query errors in a
56
+ // middleware and JS errors further down in `handleError` and then
57
+ // again on the client if it fails to recover
58
+ if (e.message ===
59
+ 'GraphQL error: This channel requires you to be logged in.' ||
60
+ ((_a = e.networkError) === null || _a === void 0 ? void 0 : _a.statusCode) === 401) {
61
+ const base = channelHandler.getChannelBasename() || '';
62
+ const loginPathWithBase = base + config.loginPath;
63
+ const routesAllowedWithoutAuth = config.pathsWithNoAuthRequired.map((path) => base + path);
64
+ const matches = routesAllowedWithoutAuth.filter((route) => req.path.startsWith(route))
65
+ .length > 0;
66
+ // Redirect to login page on all other routes
67
+ if (!matches) {
68
+ const reqUrl = new URL(req.protocol + '://' + req.get('host') + req.originalUrl);
69
+ routerContext.statusCode = 302;
70
+ routerContext.url = loginPathWithBase + reqUrl.search;
71
+ }
72
+ }
73
+ else {
74
+ console.error('Apollo data fetch failed:', e);
75
+ routerContext.statusCode = 500;
76
+ }
77
+ }
78
+ // Serialize the apollo state for client side rehydration. The html comment
79
+ // (inside js comments) is intentional and prevents inline script tags
80
+ // inside the extracted state from closing this script tag prematurely
81
+ const apolloState = `<script>/*<!--*/
82
+ window.__APOLLO_STATE__=JSON.parse(${JSON.stringify(JSON.stringify(client.extract()))});
83
+ /*-->*/</script>`;
84
+ return {
85
+ wrappedTree,
86
+ modules,
87
+ routerUrl: routerContext.url,
88
+ statusCode: routerContext.statusCode,
89
+ helmet: helmetContext.helmet,
90
+ apolloState
91
+ };
92
+ });
93
+ const startResponse = ({ res, head, statusCode }) => {
94
+ res.status(statusCode);
95
+ // write head and don't end response
96
+ res.write(head);
97
+ };
98
+ const endResponse = ({ res, foot }) => {
99
+ res.write(foot);
100
+ res.end();
101
+ };
102
+ const createRenderer = (template, tree, options) => {
103
+ return (req, res) => __awaiter(void 0, void 0, void 0, function* () {
104
+ const { apolloConfig, loadableStatsPath, intl, schema, globalClient, disableGeoRedirect, singleDomainMode } = options;
105
+ // Set response headers immediately
106
+ res.setHeader('Content-Type', 'text/html');
107
+ const fullUrl = req.protocol + '://' + req.get('host') + req.originalUrl;
108
+ const cookies = req.universalCookies;
109
+ // geoIP is set in the load balancer
110
+ const geoipCountry = req.header('x-geoip-country');
111
+ const acceptedLanguages = req.headers['accept-language']
112
+ ? req.headers['accept-language']
113
+ : '';
114
+ const response = yield globalClient.query({
115
+ query: apolloConfig.channelsQuery
116
+ });
117
+ const channels = response.data.channels;
118
+ const { selectedChannel, recommendedChannel, redirect, group } = getSelectedAndRecommendedChannel({
119
+ url: fullUrl,
120
+ singleDomainMode,
121
+ channels,
122
+ cookies,
123
+ geoipCountry,
124
+ acceptedLanguages,
125
+ disableGeoRedirect
126
+ });
127
+ const authHandler = new AuthHandler({
128
+ cookies
129
+ });
130
+ const previewHandler = new PreviewHandler();
131
+ const channelHandler = new ChannelHandler({
132
+ selectedChannel,
133
+ recommendedChannel,
134
+ channels
135
+ });
136
+ channelHandler.setChannelGroup(group);
137
+ const createClientOpts = {
138
+ apolloConfig,
139
+ schema,
140
+ authHandler,
141
+ previewHandler,
142
+ req,
143
+ channelHandler
144
+ };
145
+ const { client } = createClient(createClientOpts);
146
+ channelHandler.setGetPrimaryRoutePath(primaryRouteForPathFetcher(client));
147
+ if (redirect && !isBot(req.header('user-agent'))) {
148
+ const redirectUrl = yield channelHandler.getRedirectUrl({
149
+ url: fullUrl,
150
+ newChannel: channelHandler.recommendedChannel,
151
+ preserveRedirect: true,
152
+ routes: options.routes
153
+ });
154
+ return res.redirect(302, redirectUrl);
155
+ }
156
+ const cachedChannels = yield client.extract();
157
+ client.cache.restore(cachedChannels);
158
+ // Initialise cache with active filters from the search params
159
+ client.cache.writeQuery({
160
+ query: ActiveFiltersQuery,
161
+ data: {
162
+ activeFilters: getActiveFiltersFromSearch(req.query)
163
+ }
164
+ });
165
+ const intlOptions = createIntlOptions({
166
+ selectedChannel,
167
+ options: intl.options
168
+ });
169
+ const { translator } = yield setupIntl({
170
+ translations: intl.translations,
171
+ locale: selectedChannel.language.culture,
172
+ defaultLocale: intl.defaultLocale,
173
+ options: intlOptions
174
+ });
175
+ if (options.optimize) {
176
+ const selectedVariant = req.universalCookies.get('optimizeExperiment');
177
+ const newVariant = selectExperimentVariant(options.optimize, selectedVariant);
178
+ if (newVariant) {
179
+ req.universalCookies.set('optimizeExperiment', newVariant, {
180
+ path: '/',
181
+ maxAge: 60 * 60 * 24 * 90 // 90 days
182
+ });
183
+ }
184
+ }
185
+ const chunkExtractor = new ChunkExtractor({
186
+ statsFile: loadableStatsPath,
187
+ entrypoints: ['client']
188
+ });
189
+ const { wrappedTree, routerUrl, statusCode, helmet: { htmlAttributes, title, meta, style, link }, apolloState } = yield wrapTree(tree, req, options, client, channelHandler, authHandler, previewHandler, translator, {
190
+ loginPath: options.loginPath,
191
+ pathsWithNoAuthRequired: options.pathsWithNoAuthRequired,
192
+ }, chunkExtractor);
193
+ if (routerUrl) {
194
+ return res.redirect(
195
+ // We want to default to 302 redirects so if no status code comes back so we don't accidentally cache a temporary redirect as permanent
196
+ // If we get a non-redirect status code or no status code we won't redirect so we need to change the status code to 302
197
+ !statusCode || statusCode < 300 || statusCode >= 400 ? 302 : statusCode, routerUrl);
198
+ }
199
+ // We want to set the Link header string first so that the required assets are immediately downloaded before the html starts rendering
200
+ const preLoadAssets = chunkExtractor.getPreAssets();
201
+ if (preLoadAssets.length > 0) {
202
+ res.set('Link', getPreloadLinkHeaderString(preLoadAssets));
203
+ }
204
+ // Here we get the actual link, style, and script tags to be rendered in the html slots
205
+ const preloadLinks = chunkExtractor.getLinkTags();
206
+ const preloadStyles = chunkExtractor.getStyleTags();
207
+ const preloadScripts = chunkExtractor.getScriptTags();
208
+ // eslint
209
+ const breakpointScript = `<script>window.__ACTIVE_BREAKPOINT__ = "${req.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
+ startResponse({ res, head, statusCode });
228
+ res.write(renderToString(wrappedTree));
229
+ endResponse({ res, foot });
230
+ });
231
+ };
232
+ export default createRenderer;
233
+ //# 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,14 @@
1
+ import { ApolloServer } from 'apollo-server-express';
2
+ import { Request, Response, Express, NextFunction } from 'express';
3
+ export interface Middleware {
4
+ path: string;
5
+ handler: (req: Request, res: Response, next: NextFunction) => Promise<void> | void;
6
+ }
7
+ export interface CreateServerOptions {
8
+ apolloServer: ApolloServer;
9
+ }
10
+ declare const createServer: ({ apolloServer, middlewares }: {
11
+ apolloServer?: ApolloServer;
12
+ middlewares: Middleware[];
13
+ }) => Express;
14
+ export default createServer;
@@ -0,0 +1,31 @@
1
+ import express from 'express';
2
+ import compression from 'compression';
3
+ import breakpointMiddleware from '@jetshop/core/boot/server/breakpointMiddleware';
4
+ import cookiesMiddleware from 'universal-cookie-express';
5
+ // Makes the script crash on unhandled rejections instead of silently
6
+ // ignoring them. In the future, promise rejections that are not handled will
7
+ // terminate the Node.js process with a non-zero exit code.
8
+ process.on('unhandledRejection', (err) => {
9
+ throw err;
10
+ });
11
+ const createServer = ({ apolloServer, middlewares }) => {
12
+ const app = express();
13
+ app.set('trust proxy', true);
14
+ app.use(compression());
15
+ app.use(breakpointMiddleware);
16
+ app.use(cookiesMiddleware());
17
+ if (apolloServer) {
18
+ apolloServer.applyMiddleware({
19
+ app: app,
20
+ path: '/graphql'
21
+ });
22
+ }
23
+ app.use(express.json());
24
+ middlewares.forEach(({ path, handler }) => app.use(path, handler));
25
+ app.use(express.static(process.env.RAZZLE_PUBLIC_DIR, {
26
+ maxAge: '365d'
27
+ }));
28
+ return app;
29
+ };
30
+ export default createServer;
31
+ //# sourceMappingURL=createServer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createServer.js","sourceRoot":"","sources":["createServer.ts"],"names":[],"mappings":"AACA,OAAO,OAAqD,MAAM,SAAS,CAAC;AAC5E,OAAO,WAAW,MAAM,aAAa,CAAC;AACtC,OAAO,oBAAoB,MAAM,gDAAgD,CAAC;AAClF,OAAO,iBAAiB,MAAM,0BAA0B,CAAC;AAEzD,qEAAqE;AACrE,6EAA6E;AAC7E,2DAA2D;AAC3D,OAAO,CAAC,EAAE,CAAC,oBAAoB,EAAE,CAAC,GAAU,EAAE,EAAE;IAC9C,MAAM,GAAG,CAAC;AACZ,CAAC,CAAC,CAAC;AAeH,MAAM,YAAY,GAAG,CAAC,EACpB,YAAY,EACZ,WAAW,EAIZ,EAAW,EAAE;IACZ,MAAM,GAAG,GAAG,OAAO,EAAE,CAAC;IAEtB,GAAG,CAAC,GAAG,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;IAC7B,GAAG,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC;IACvB,GAAG,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IAC9B,GAAG,CAAC,GAAG,CAAC,iBAAiB,EAAE,CAAC,CAAC;IAE7B,IAAI,YAAY,EAAE;QAChB,YAAY,CAAC,eAAe,CAAC;YAC3B,GAAG,EAAE,GAAG;YACR,IAAI,EAAE,UAAU;SACjB,CAAC,CAAC;KACJ;IACD,GAAG,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC;IACxB,WAAW,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC;IAEnE,GAAG,CAAC,GAAG,CACL,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,iBAAiB,EAAE;QAC5C,MAAM,EAAE,MAAM;KACf,CAAC,CACH,CAAC;IAEF,OAAO,GAAG,CAAC;AACb,CAAC,CAAC;AAEF,eAAe,YAAY,CAAC"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,39 @@
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 http from 'http';
11
+ (() => __awaiter(void 0, void 0, void 0, function* () {
12
+ let app = yield require('src/server').default;
13
+ const server = http.createServer(app);
14
+ let currentApp = app;
15
+ server.listen(process.env.PORT || 3000, () => {
16
+ console.log('🚀 Started');
17
+ });
18
+ if (module.hot) {
19
+ console.log('🟢 HMR Server-side enabled!');
20
+ const reload = () => __awaiter(void 0, void 0, void 0, function* () {
21
+ console.log('📦 HMR Server-side reloaded');
22
+ try {
23
+ app = yield require('src/server').default;
24
+ server.removeListener('request', currentApp);
25
+ server.on('request', app);
26
+ currentApp = app;
27
+ }
28
+ catch (error) {
29
+ console.log('🔥 HMR Error: ', (error === null || error === void 0 ? void 0 : error.stack) || error);
30
+ console.error(error);
31
+ }
32
+ });
33
+ // Reload on HMR
34
+ module.hot.accept('src/server', reload, (err) => {
35
+ console.log('🔥 HMR Error: ', err);
36
+ });
37
+ }
38
+ }))();
39
+ //# sourceMappingURL=entrypoint.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"entrypoint.js","sourceRoot":"","sources":["entrypoint.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,CAAC,GAAS,EAAE;IACV,IAAI,GAAG,GAAG,MAAM,OAAO,CAAC,YAAY,CAAC,CAAC,OAAO,CAAC;IAC9C,MAAM,MAAM,GAAG,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC;IACtC,IAAI,UAAU,GAAG,GAAG,CAAC;IAErB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,IAAI,IAAI,EAAE,GAAG,EAAE;QAC3C,OAAO,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;IAC5B,CAAC,CAAC,CAAC;IAEH,IAAK,MAAc,CAAC,GAAG,EAAE;QACvB,OAAO,CAAC,GAAG,CAAC,6BAA6B,CAAC,CAAC;QAE3C,MAAM,MAAM,GAAG,GAAS,EAAE;YACxB,OAAO,CAAC,GAAG,CAAC,6BAA6B,CAAC,CAAC;YAE3C,IAAI;gBACF,GAAG,GAAG,MAAM,OAAO,CAAC,YAAY,CAAC,CAAC,OAAO,CAAC;gBAC1C,MAAM,CAAC,cAAc,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC;gBAC7C,MAAM,CAAC,EAAE,CAAC,SAAS,EAAE,GAAG,CAAC,CAAC;gBAC1B,UAAU,GAAG,GAAG,CAAC;aAClB;YAAC,OAAO,KAAK,EAAE;gBACd,OAAO,CAAC,GAAG,CAAC,gBAAgB,EAAE,CAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,KAAK,KAAI,KAAK,CAAC,CAAC;gBACrD,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;aACtB;QACH,CAAC,CAAA,CAAC;QAEF,gBAAgB;QACf,MAAc,CAAC,GAAG,CAAC,MAAM,CAAC,YAAY,EAAE,MAAM,EAAE,CAAC,GAAG,EAAE,EAAE;YACvD,OAAO,CAAC,GAAG,CAAC,gBAAgB,EAAE,GAAG,CAAC,CAAC;QACrC,CAAC,CAAC,CAAC;KACJ;AACH,CAAC,CAAA,CAAC,EAAE,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 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"}