@webiny/app 0.0.0-unstable.9bd236cf5e → 0.0.0-unstable.9f53ea597d

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 (427) hide show
  1. package/App.d.ts +5 -6
  2. package/App.js +75 -88
  3. package/App.js.map +1 -1
  4. package/AppContainer.js +3 -6
  5. package/AppContainer.js.map +1 -1
  6. package/README.md +7 -15
  7. package/apollo-client/InMemoryCache.js +13 -15
  8. package/apollo-client/InMemoryCache.js.map +1 -1
  9. package/apollo-client/IntrospectionFragmentMatcher.js +26 -38
  10. package/apollo-client/IntrospectionFragmentMatcher.js.map +1 -1
  11. package/components/Image.d.ts +1 -2
  12. package/components/Image.js +12 -18
  13. package/components/Image.js.map +1 -1
  14. package/components/index.d.ts +1 -2
  15. package/components/index.js +1 -4
  16. package/config/RouterConfig/Route.d.ts +9 -10
  17. package/config/RouterConfig/Route.js +23 -37
  18. package/config/RouterConfig/Route.js.map +1 -1
  19. package/config/RouterConfig.d.ts +11 -14
  20. package/config/RouterConfig.js +12 -11
  21. package/config/RouterConfig.js.map +1 -1
  22. package/config.js +19 -20
  23. package/config.js.map +1 -1
  24. package/contexts/Ui/index.js +26 -28
  25. package/contexts/Ui/index.js.map +1 -1
  26. package/core/Plugin.d.ts +1 -1
  27. package/core/Plugin.js +9 -11
  28. package/core/Plugin.js.map +1 -1
  29. package/core/Plugins.d.ts +4 -3
  30. package/core/Plugins.js +18 -36
  31. package/core/Plugins.js.map +1 -1
  32. package/core/Provider.d.ts +1 -1
  33. package/core/Provider.js +6 -14
  34. package/core/Provider.js.map +1 -1
  35. package/core/createProvider.js +3 -6
  36. package/core/createProvider.js.map +1 -1
  37. package/core/createProviderPlugin.js +9 -14
  38. package/core/createProviderPlugin.js.map +1 -1
  39. package/errors/AuthenticationErrorEvent.d.ts +9 -0
  40. package/errors/AuthenticationErrorEvent.js +13 -0
  41. package/errors/AuthenticationErrorEvent.js.map +1 -0
  42. package/errors/NetworkErrorEvent.d.ts +15 -0
  43. package/errors/NetworkErrorEvent.js +13 -0
  44. package/errors/NetworkErrorEvent.js.map +1 -0
  45. package/errors/abstractions.d.ts +12 -0
  46. package/errors/abstractions.js +6 -0
  47. package/errors/abstractions.js.map +1 -0
  48. package/errors/index.d.ts +6 -0
  49. package/errors/index.js +3 -0
  50. package/exports/admin/env-config.d.ts +2 -0
  51. package/exports/admin/env-config.js +2 -0
  52. package/exports/admin/graphql-client.d.ts +1 -0
  53. package/exports/admin/graphql-client.js +1 -0
  54. package/exports/admin/local-storage.d.ts +2 -0
  55. package/exports/admin/local-storage.js +2 -0
  56. package/exports/admin/router.d.ts +5 -0
  57. package/exports/admin/router.js +5 -0
  58. package/exports/admin/security.d.ts +1 -0
  59. package/exports/admin/security.js +1 -0
  60. package/exports/admin.d.ts +7 -0
  61. package/exports/admin.js +7 -0
  62. package/features/envConfig/EnvConfig.d.ts +7 -0
  63. package/features/envConfig/EnvConfig.js +16 -0
  64. package/features/envConfig/EnvConfig.js.map +1 -0
  65. package/features/envConfig/abstractions.d.ts +28 -0
  66. package/features/envConfig/abstractions.js +5 -0
  67. package/features/envConfig/abstractions.js.map +1 -0
  68. package/features/envConfig/feature.d.ts +17 -0
  69. package/features/envConfig/feature.js +15 -0
  70. package/features/envConfig/feature.js.map +1 -0
  71. package/features/envConfig/index.d.ts +1 -0
  72. package/features/envConfig/index.js +1 -0
  73. package/features/eventPublisher/EventPublisher.d.ts +8 -0
  74. package/features/eventPublisher/EventPublisher.js +19 -0
  75. package/features/eventPublisher/EventPublisher.js.map +1 -0
  76. package/features/eventPublisher/abstractions.d.ts +18 -0
  77. package/features/eventPublisher/abstractions.js +12 -0
  78. package/features/eventPublisher/abstractions.js.map +1 -0
  79. package/features/eventPublisher/feature.d.ts +3 -0
  80. package/features/eventPublisher/feature.js +17 -0
  81. package/features/eventPublisher/feature.js.map +1 -0
  82. package/features/eventPublisher/index.d.ts +3 -0
  83. package/features/eventPublisher/index.js +2 -0
  84. package/features/graphqlClient/AuthenticationErrorPublishing.d.ts +13 -0
  85. package/features/graphqlClient/AuthenticationErrorPublishing.js +35 -0
  86. package/features/graphqlClient/AuthenticationErrorPublishing.js.map +1 -0
  87. package/features/graphqlClient/BatchingGraphQLClient.d.ts +16 -0
  88. package/features/graphqlClient/BatchingGraphQLClient.js +118 -0
  89. package/features/graphqlClient/BatchingGraphQLClient.js.map +1 -0
  90. package/features/graphqlClient/FetchGraphQLClient.d.ts +7 -0
  91. package/features/graphqlClient/FetchGraphQLClient.js +51 -0
  92. package/features/graphqlClient/FetchGraphQLClient.js.map +1 -0
  93. package/features/graphqlClient/NetworkErrorPublishing.d.ts +14 -0
  94. package/features/graphqlClient/NetworkErrorPublishing.js +48 -0
  95. package/features/graphqlClient/NetworkErrorPublishing.js.map +1 -0
  96. package/features/graphqlClient/RequestValue.d.ts +21 -0
  97. package/features/graphqlClient/RequestValue.js +46 -0
  98. package/features/graphqlClient/RequestValue.js.map +1 -0
  99. package/features/graphqlClient/RetryGraphQLClient.d.ts +18 -0
  100. package/features/graphqlClient/RetryGraphQLClient.js +45 -0
  101. package/features/graphqlClient/RetryGraphQLClient.js.map +1 -0
  102. package/features/graphqlClient/__tests__/GraphQLClient.test.d.ts +1 -0
  103. package/features/graphqlClient/__tests__/GraphQLClient.test.js +397 -0
  104. package/features/graphqlClient/__tests__/GraphQLClient.test.js.map +1 -0
  105. package/features/graphqlClient/abstractions.d.ts +18 -0
  106. package/features/graphqlClient/abstractions.js +5 -0
  107. package/features/graphqlClient/abstractions.js.map +1 -0
  108. package/features/graphqlClient/feature.d.ts +6 -0
  109. package/features/graphqlClient/feature.js +25 -0
  110. package/features/graphqlClient/feature.js.map +1 -0
  111. package/features/graphqlClient/index.d.ts +1 -0
  112. package/features/graphqlClient/index.js +1 -0
  113. package/features/graphqlClient/types.d.ts +5 -0
  114. package/features/graphqlClient/types.js +0 -0
  115. package/features/localStorage/BrowserLocalStorageGateway.d.ts +9 -0
  116. package/features/localStorage/BrowserLocalStorageGateway.js +61 -0
  117. package/features/localStorage/BrowserLocalStorageGateway.js.map +1 -0
  118. package/features/localStorage/LocalStorage.d.ts +12 -0
  119. package/features/localStorage/LocalStorage.js +34 -0
  120. package/features/localStorage/LocalStorage.js.map +1 -0
  121. package/features/localStorage/LocalStorageRepository.d.ts +20 -0
  122. package/features/localStorage/LocalStorageRepository.js +82 -0
  123. package/features/localStorage/LocalStorageRepository.js.map +1 -0
  124. package/features/localStorage/abstractions.d.ts +48 -0
  125. package/features/localStorage/abstractions.js +8 -0
  126. package/features/localStorage/abstractions.js.map +1 -0
  127. package/features/localStorage/feature.d.ts +12 -0
  128. package/features/localStorage/feature.js +23 -0
  129. package/features/localStorage/feature.js.map +1 -0
  130. package/features/localStorage/index.d.ts +1 -0
  131. package/features/localStorage/index.js +1 -0
  132. package/features/mainGraphQLClient/MainGraphQLClient.d.ts +11 -0
  133. package/features/mainGraphQLClient/MainGraphQLClient.js +27 -0
  134. package/features/mainGraphQLClient/MainGraphQLClient.js.map +1 -0
  135. package/features/mainGraphQLClient/abstractions.d.ts +17 -0
  136. package/features/mainGraphQLClient/abstractions.js +5 -0
  137. package/features/mainGraphQLClient/abstractions.js.map +1 -0
  138. package/features/mainGraphQLClient/feature.d.ts +3 -0
  139. package/features/mainGraphQLClient/feature.js +17 -0
  140. package/features/mainGraphQLClient/feature.js.map +1 -0
  141. package/features/mainGraphQLClient/index.d.ts +1 -0
  142. package/features/mainGraphQLClient/index.js +1 -0
  143. package/features/router/HistoryRouterGateway.d.ts +25 -0
  144. package/features/router/HistoryRouterGateway.js +100 -0
  145. package/features/router/HistoryRouterGateway.js.map +1 -0
  146. package/features/router/HistoryRouterGateway.test.d.ts +1 -0
  147. package/features/router/HistoryRouterGateway.test.js +195 -0
  148. package/features/router/HistoryRouterGateway.test.js.map +1 -0
  149. package/features/router/Route.d.ts +19 -0
  150. package/features/router/Route.js +43 -0
  151. package/features/router/Route.js.map +1 -0
  152. package/features/router/RouteUrl.d.ts +85 -0
  153. package/features/router/RouteUrl.js +99 -0
  154. package/features/router/RouteUrl.js.map +1 -0
  155. package/features/router/Router.d.ts +45 -0
  156. package/features/router/Router.js +72 -0
  157. package/features/router/Router.js.map +1 -0
  158. package/features/router/RouterPresenter.d.ts +23 -0
  159. package/features/router/RouterPresenter.js +62 -0
  160. package/features/router/RouterPresenter.js.map +1 -0
  161. package/features/router/RouterRepository.d.ts +32 -0
  162. package/features/router/RouterRepository.js +123 -0
  163. package/features/router/RouterRepository.js.map +1 -0
  164. package/features/router/RouterRepository.test.d.ts +1 -0
  165. package/features/router/RouterRepository.test.js +138 -0
  166. package/features/router/RouterRepository.test.js.map +1 -0
  167. package/features/router/abstractions.d.ts +90 -0
  168. package/features/router/abstractions.js +7 -0
  169. package/features/router/abstractions.js.map +1 -0
  170. package/features/router/feature.d.ts +4 -0
  171. package/features/router/feature.js +19 -0
  172. package/features/router/feature.js.map +1 -0
  173. package/features/router/index.d.ts +2 -0
  174. package/features/router/index.js +1 -0
  175. package/helpers/InterfaceGenerator/date.d.ts +15 -0
  176. package/helpers/InterfaceGenerator/date.js +0 -0
  177. package/helpers/InterfaceGenerator/id.d.ts +23 -0
  178. package/helpers/InterfaceGenerator/id.js +0 -0
  179. package/helpers/InterfaceGenerator/identity.d.ts +10 -0
  180. package/helpers/InterfaceGenerator/identity.js +0 -0
  181. package/helpers/InterfaceGenerator/index.d.ts +5 -0
  182. package/helpers/InterfaceGenerator/index.js +0 -0
  183. package/helpers/InterfaceGenerator/numeric.d.ts +12 -0
  184. package/helpers/InterfaceGenerator/numeric.js +0 -0
  185. package/helpers/InterfaceGenerator/truthful.d.ts +7 -0
  186. package/helpers/InterfaceGenerator/truthful.js +0 -0
  187. package/hooks/useHandler.js +12 -16
  188. package/hooks/useHandler.js.map +1 -1
  189. package/hooks/useHandlers.js +18 -20
  190. package/hooks/useHandlers.js.map +1 -1
  191. package/hooks/useRegisterLegacyPlugin.d.ts +1 -1
  192. package/hooks/useRegisterLegacyPlugin.js +7 -6
  193. package/hooks/useRegisterLegacyPlugin.js.map +1 -1
  194. package/hooks/useUi.d.ts +1 -1
  195. package/hooks/useUi.js +3 -4
  196. package/hooks/useUi.js.map +1 -1
  197. package/i18n/i18n.js +8 -4
  198. package/i18n/i18n.js.map +1 -1
  199. package/i18n/index.d.ts +1 -1
  200. package/i18n/index.js +1 -3
  201. package/index.d.ts +23 -15
  202. package/index.js +22 -19
  203. package/package.json +37 -33
  204. package/plugins/AddQuerySelectionPlugin.d.ts +1 -1
  205. package/plugins/AddQuerySelectionPlugin.js +37 -62
  206. package/plugins/AddQuerySelectionPlugin.js.map +1 -1
  207. package/plugins/ApolloCacheObjectIdPlugin.js +12 -11
  208. package/plugins/ApolloCacheObjectIdPlugin.js.map +1 -1
  209. package/plugins/ApolloDynamicLink.d.ts +1 -1
  210. package/plugins/ApolloDynamicLink.js +20 -22
  211. package/plugins/ApolloDynamicLink.js.map +1 -1
  212. package/plugins/ApolloLinkPlugin.js +16 -15
  213. package/plugins/ApolloLinkPlugin.js.map +1 -1
  214. package/plugins/ConsoleLinkPlugin.d.ts +1 -1
  215. package/plugins/ConsoleLinkPlugin.js +20 -22
  216. package/plugins/ConsoleLinkPlugin.js.map +1 -1
  217. package/plugins/NetworkErrorLinkPlugin/ErrorOverlay.d.ts +8 -13
  218. package/plugins/NetworkErrorLinkPlugin/ErrorOverlay.js +42 -59
  219. package/plugins/NetworkErrorLinkPlugin/ErrorOverlay.js.map +1 -1
  220. package/plugins/NetworkErrorLinkPlugin/GqlErrorOverlay.d.ts +14 -0
  221. package/plugins/NetworkErrorLinkPlugin/GqlErrorOverlay.js +27 -0
  222. package/plugins/NetworkErrorLinkPlugin/GqlErrorOverlay.js.map +1 -0
  223. package/plugins/NetworkErrorLinkPlugin/LocalAwsLambdaTimeoutMessage.d.ts +2 -0
  224. package/plugins/NetworkErrorLinkPlugin/LocalAwsLambdaTimeoutMessage.js +23 -0
  225. package/plugins/NetworkErrorLinkPlugin/LocalAwsLambdaTimeoutMessage.js.map +1 -0
  226. package/plugins/NetworkErrorLinkPlugin/StyledComponents.d.ts +4 -5
  227. package/plugins/NetworkErrorLinkPlugin/StyledComponents.js +7 -16
  228. package/plugins/NetworkErrorLinkPlugin/StyledComponents.js.map +1 -1
  229. package/plugins/NetworkErrorLinkPlugin/Typography.d.ts +8 -0
  230. package/plugins/NetworkErrorLinkPlugin/Typography.js +13 -0
  231. package/plugins/NetworkErrorLinkPlugin/Typography.js.map +1 -0
  232. package/plugins/NetworkErrorLinkPlugin/assets/close_24px.js +19 -0
  233. package/plugins/NetworkErrorLinkPlugin/assets/close_24px.js.map +1 -0
  234. package/plugins/NetworkErrorLinkPlugin/createErrorOverlay.d.ts +3 -3
  235. package/plugins/NetworkErrorLinkPlugin/createErrorOverlay.js +12 -28
  236. package/plugins/NetworkErrorLinkPlugin/createErrorOverlay.js.map +1 -1
  237. package/plugins/NetworkErrorLinkPlugin.d.ts +4 -1
  238. package/plugins/NetworkErrorLinkPlugin.js +48 -25
  239. package/plugins/NetworkErrorLinkPlugin.js.map +1 -1
  240. package/plugins/OmitTypenameLinkPlugin.d.ts +1 -1
  241. package/plugins/OmitTypenameLinkPlugin.js +10 -15
  242. package/plugins/OmitTypenameLinkPlugin.js.map +1 -1
  243. package/plugins/TenantHeaderLinkPlugin.d.ts +2 -2
  244. package/plugins/TenantHeaderLinkPlugin.js +24 -35
  245. package/plugins/TenantHeaderLinkPlugin.js.map +1 -1
  246. package/plugins/components/Image.d.ts +6 -0
  247. package/plugins/components/Image.js +12 -0
  248. package/plugins/components/Image.js.map +1 -0
  249. package/plugins/image.d.ts +2 -2
  250. package/plugins/image.js +95 -134
  251. package/plugins/image.js.map +1 -1
  252. package/plugins/index.d.ts +3 -3
  253. package/plugins/index.js +35 -59
  254. package/plugins/index.js.map +1 -1
  255. package/presentation/envConfig/useEnvConfig.d.ts +6 -0
  256. package/presentation/envConfig/useEnvConfig.js +9 -0
  257. package/presentation/envConfig/useEnvConfig.js.map +1 -0
  258. package/presentation/localStorage/index.d.ts +3 -0
  259. package/presentation/localStorage/index.js +3 -0
  260. package/presentation/localStorage/useLocalStorage.d.ts +6 -0
  261. package/presentation/localStorage/useLocalStorage.js +15 -0
  262. package/presentation/localStorage/useLocalStorage.js.map +1 -0
  263. package/presentation/localStorage/useLocalStorageValue.d.ts +1 -0
  264. package/presentation/localStorage/useLocalStorageValue.js +22 -0
  265. package/presentation/localStorage/useLocalStorageValue.js.map +1 -0
  266. package/presentation/localStorage/useLocalStorageValues.d.ts +5 -0
  267. package/presentation/localStorage/useLocalStorageValues.js +32 -0
  268. package/presentation/localStorage/useLocalStorageValues.js.map +1 -0
  269. package/presentation/router/RouteElementRegistry.d.ts +14 -0
  270. package/presentation/router/RouteElementRegistry.js +29 -0
  271. package/presentation/router/RouteElementRegistry.js.map +1 -0
  272. package/presentation/router/abstractions.d.ts +13 -0
  273. package/presentation/router/abstractions.js +5 -0
  274. package/presentation/router/abstractions.js.map +1 -0
  275. package/presentation/router/components/Redirect.d.ts +14 -0
  276. package/presentation/router/components/Redirect.js +13 -0
  277. package/presentation/router/components/Redirect.js.map +1 -0
  278. package/presentation/router/components/RouteContent.d.ts +2 -0
  279. package/presentation/router/components/RouteContent.js +20 -0
  280. package/presentation/router/components/RouteContent.js.map +1 -0
  281. package/presentation/router/components/RouteLink.d.ts +50 -0
  282. package/presentation/router/components/RouteLink.js +17 -0
  283. package/presentation/router/components/RouteLink.js.map +1 -0
  284. package/presentation/router/components/RouteParamsSync.d.ts +22 -0
  285. package/presentation/router/components/RouteParamsSync.js +53 -0
  286. package/presentation/router/components/RouteParamsSync.js.map +1 -0
  287. package/presentation/router/components/SimpleLink.d.ts +44 -0
  288. package/presentation/router/components/SimpleLink.js +24 -0
  289. package/presentation/router/components/SimpleLink.js.map +1 -0
  290. package/presentation/router/hooks/useRoute.d.ts +7 -0
  291. package/presentation/router/hooks/useRoute.js +23 -0
  292. package/presentation/router/hooks/useRoute.js.map +1 -0
  293. package/presentation/router/hooks/useRouter.d.ts +12 -0
  294. package/presentation/router/hooks/useRouter.js +30 -0
  295. package/presentation/router/hooks/useRouter.js.map +1 -0
  296. package/presentation/router/index.d.ts +6 -0
  297. package/presentation/router/index.js +4 -0
  298. package/presentation/router/types.d.ts +5 -0
  299. package/presentation/router/types.js +0 -0
  300. package/renderApp.d.ts +1 -1
  301. package/renderApp.js +7 -6
  302. package/renderApp.js.map +1 -1
  303. package/router.d.ts +5 -0
  304. package/router.js +5 -0
  305. package/rslib-runtime.js +14 -0
  306. package/rslib-runtime.js.map +1 -0
  307. package/shared/di/DiContainerProvider.d.ts +8 -0
  308. package/shared/di/DiContainerProvider.js +13 -0
  309. package/shared/di/DiContainerProvider.js.map +1 -0
  310. package/shared/di/createFeature.d.ts +11 -0
  311. package/shared/di/createFeature.js +10 -0
  312. package/shared/di/createFeature.js.map +1 -0
  313. package/shared/di/useFeature.d.ts +2 -0
  314. package/shared/di/useFeature.js +12 -0
  315. package/shared/di/useFeature.js.map +1 -0
  316. package/static/svg/close_24px.33adaadc.svg +1 -0
  317. package/types.d.ts +6 -24
  318. package/types.js +0 -14
  319. package/utils/createGenericContext.js +17 -21
  320. package/utils/createGenericContext.js.map +1 -1
  321. package/utils/createHashing.js +13 -16
  322. package/utils/createHashing.js.map +1 -1
  323. package/utils/index.d.ts +2 -10
  324. package/utils/index.js +2 -12
  325. package/utils/legacyPluginToReactComponent.js +12 -11
  326. package/utils/legacyPluginToReactComponent.js.map +1 -1
  327. package/components/Routes.d.ts +0 -2
  328. package/components/Routes.js +0 -36
  329. package/components/Routes.js.map +0 -1
  330. package/components/View.d.ts +0 -8
  331. package/components/View.js +0 -19
  332. package/components/View.js.map +0 -1
  333. package/components/index.js.map +0 -1
  334. package/core/DebounceRender.d.ts +0 -12
  335. package/core/DebounceRender.js +0 -31
  336. package/core/DebounceRender.js.map +0 -1
  337. package/core/Routes.d.ts +0 -6
  338. package/core/Routes.js +0 -34
  339. package/core/Routes.js.map +0 -1
  340. package/hooks/useAutocomplete/index.d.ts +0 -1
  341. package/hooks/useAutocomplete/index.js +0 -3
  342. package/hooks/useAutocomplete/index.js.map +0 -1
  343. package/hooks/useAutocomplete/useAutocomplete.d.ts +0 -11
  344. package/hooks/useAutocomplete/useAutocomplete.js +0 -23
  345. package/hooks/useAutocomplete/useAutocomplete.js.map +0 -1
  346. package/hooks/useDataList/functions/getData.d.ts +0 -2
  347. package/hooks/useDataList/functions/getData.js +0 -4
  348. package/hooks/useDataList/functions/getData.js.map +0 -1
  349. package/hooks/useDataList/functions/getError.d.ts +0 -2
  350. package/hooks/useDataList/functions/getError.js +0 -4
  351. package/hooks/useDataList/functions/getError.js.map +0 -1
  352. package/hooks/useDataList/functions/getMeta.d.ts +0 -2
  353. package/hooks/useDataList/functions/getMeta.js +0 -4
  354. package/hooks/useDataList/functions/getMeta.js.map +0 -1
  355. package/hooks/useDataList/functions/index.d.ts +0 -3
  356. package/hooks/useDataList/functions/index.js +0 -5
  357. package/hooks/useDataList/functions/index.js.map +0 -1
  358. package/hooks/useDataList/functions/searchDataByKey.d.ts +0 -2
  359. package/hooks/useDataList/functions/searchDataByKey.js +0 -18
  360. package/hooks/useDataList/functions/searchDataByKey.js.map +0 -1
  361. package/hooks/useDataList/index.d.ts +0 -1
  362. package/hooks/useDataList/index.js +0 -3
  363. package/hooks/useDataList/index.js.map +0 -1
  364. package/hooks/useDataList/useDataList.d.ts +0 -36
  365. package/hooks/useDataList/useDataList.js +0 -183
  366. package/hooks/useDataList/useDataList.js.map +0 -1
  367. package/hooks/useDataList/utils/index.d.ts +0 -2
  368. package/hooks/useDataList/utils/index.js +0 -4
  369. package/hooks/useDataList/utils/index.js.map +0 -1
  370. package/hooks/useDataList/utils/prepareLoadListParams.d.ts +0 -10
  371. package/hooks/useDataList/utils/prepareLoadListParams.js +0 -38
  372. package/hooks/useDataList/utils/prepareLoadListParams.js.map +0 -1
  373. package/hooks/useDataList/utils/redirectToRouteWithQueryParams.d.ts +0 -14
  374. package/hooks/useDataList/utils/redirectToRouteWithQueryParams.js +0 -26
  375. package/hooks/useDataList/utils/redirectToRouteWithQueryParams.js.map +0 -1
  376. package/hooks/useDataList/utils/types.d.ts +0 -40
  377. package/hooks/useDataList/utils/types.js +0 -3
  378. package/hooks/useDataList/utils/types.js.map +0 -1
  379. package/i18n/index.js.map +0 -1
  380. package/index.js.map +0 -1
  381. package/plugins/LocaleHeaderLinkPlugin.d.ts +0 -10
  382. package/plugins/LocaleHeaderLinkPlugin.js +0 -32
  383. package/plugins/LocaleHeaderLinkPlugin.js.map +0 -1
  384. package/plugins/RoutePlugin.d.ts +0 -12
  385. package/plugins/RoutePlugin.js +0 -16
  386. package/plugins/RoutePlugin.js.map +0 -1
  387. package/plugins/ViewPlugin.d.ts +0 -14
  388. package/plugins/ViewPlugin.js +0 -19
  389. package/plugins/ViewPlugin.js.map +0 -1
  390. package/react-butterfiles/Files.d.ts +0 -69
  391. package/react-butterfiles/Files.js +0 -227
  392. package/react-butterfiles/Files.js.map +0 -1
  393. package/react-butterfiles/index.d.ts +0 -2
  394. package/react-butterfiles/index.js +0 -4
  395. package/react-butterfiles/index.js.map +0 -1
  396. package/react-butterfiles/utils/generateId.d.ts +0 -1
  397. package/react-butterfiles/utils/generateId.js +0 -5
  398. package/react-butterfiles/utils/generateId.js.map +0 -1
  399. package/react-butterfiles/utils/readFileContent.d.ts +0 -1
  400. package/react-butterfiles/utils/readFileContent.js +0 -15
  401. package/react-butterfiles/utils/readFileContent.js.map +0 -1
  402. package/types.js.map +0 -1
  403. package/utils/getApiUrl.d.ts +0 -1
  404. package/utils/getApiUrl.js +0 -5
  405. package/utils/getApiUrl.js.map +0 -1
  406. package/utils/getGqlApiUrl.d.ts +0 -1
  407. package/utils/getGqlApiUrl.js +0 -6
  408. package/utils/getGqlApiUrl.js.map +0 -1
  409. package/utils/getHeadlessCmsGqlApiUrl.d.ts +0 -5
  410. package/utils/getHeadlessCmsGqlApiUrl.js +0 -12
  411. package/utils/getHeadlessCmsGqlApiUrl.js.map +0 -1
  412. package/utils/getLocaleCode.d.ts +0 -6
  413. package/utils/getLocaleCode.js +0 -33
  414. package/utils/getLocaleCode.js.map +0 -1
  415. package/utils/getPrerenderId.d.ts +0 -6
  416. package/utils/getPrerenderId.js +0 -5
  417. package/utils/getPrerenderId.js.map +0 -1
  418. package/utils/getTenantId.d.ts +0 -6
  419. package/utils/getTenantId.js +0 -45
  420. package/utils/getTenantId.js.map +0 -1
  421. package/utils/index.js.map +0 -1
  422. package/utils/isLocalhost.d.ts +0 -1
  423. package/utils/isLocalhost.js +0 -7
  424. package/utils/isLocalhost.js.map +0 -1
  425. package/utils/isPrerendering.d.ts +0 -1
  426. package/utils/isPrerendering.js +0 -5
  427. package/utils/isPrerendering.js.map +0 -1
package/App.d.ts CHANGED
@@ -1,8 +1,7 @@
1
1
  import React from "react";
2
- import type { RouteProps } from "@webiny/react-router";
3
- import type { GenericComponent, Decorator, DecoratorsCollection } from "@webiny/react-composition";
2
+ import { Decorator, DecoratorsCollection, GenericComponent } from "@webiny/react-composition";
4
3
  interface State {
5
- plugins: JSX.Element[];
4
+ plugins: React.JSX.Element[];
6
5
  providers: Decorator<GenericComponent<ProviderProps>>[];
7
6
  }
8
7
  interface AppContext extends State {
@@ -12,8 +11,8 @@ interface AppContext extends State {
12
11
  declare const AppContext: React.Context<AppContext | undefined>;
13
12
  export declare const useApp: () => AppContext;
14
13
  export interface AppProps {
15
- debounceRender?: number;
16
- routes?: Array<RouteProps>;
14
+ routes?: Array<any>;
15
+ plugins?: any[];
17
16
  providers?: Array<Decorator<GenericComponent<ProviderProps>>>;
18
17
  decorators?: DecoratorsCollection;
19
18
  children?: React.ReactNode | React.ReactNode[];
@@ -21,6 +20,6 @@ export interface AppProps {
21
20
  interface ProviderProps {
22
21
  children: React.ReactNode;
23
22
  }
24
- export declare const AppBase: ({ debounceRender, routes, providers, children }: AppProps) => React.JSX.Element;
23
+ export declare const AppBase: React.MemoExoticComponent<({ routes, plugins, providers, children }: AppProps) => React.JSX.Element>;
25
24
  export declare const App: ({ decorators, ...props }: AppProps) => React.JSX.Element;
26
25
  export {};
package/App.js CHANGED
@@ -1,95 +1,82 @@
1
- import React, { createContext, useContext, useMemo, useState, useCallback } from "react";
2
- import { BrowserRouter, Route } from "@webiny/react-router";
1
+ import react, { Fragment, createContext, useCallback, useContext, useEffect, useMemo, useState } from "react";
3
2
  import { CompositionProvider, compose } from "@webiny/react-composition";
4
- import { Routes as SortRoutes } from "./core/Routes";
5
- import { DebounceRender } from "./core/DebounceRender";
6
- import { PluginsProvider } from "./core/Plugins";
7
- import { RouterWithConfig, useRouterConfig } from "./config/RouterConfig";
8
- import { AppContainer } from "./AppContainer";
9
- const AppContext = /*#__PURE__*/createContext(undefined);
3
+ import { PluginsProvider } from "./core/Plugins.js";
4
+ import { RouterWithConfig, useRouterConfig } from "./config/RouterConfig.js";
5
+ import { AppContainer } from "./AppContainer.js";
6
+ import { RouteContent } from "./presentation/router/components/RouteContent.js";
7
+ import { useRouter } from "./router.js";
8
+ const AppContext = /*#__PURE__*/ createContext(void 0);
10
9
  AppContext.displayName = "AppContext";
11
- export const useApp = () => {
12
- const appContext = useContext(AppContext);
13
- if (!appContext) {
14
- throw Error(`AppContext provider was not found. Are you using the "useApp()" hook in the right place?`);
15
- }
16
- return appContext;
10
+ const useApp = ()=>{
11
+ const appContext = useContext(AppContext);
12
+ if (!appContext) throw Error('AppContext provider was not found. Are you using the "useApp()" hook in the right place?');
13
+ return appContext;
17
14
  };
18
- export const AppBase = ({
19
- debounceRender = 50,
20
- routes = [],
21
- providers = [],
22
- children
23
- }) => {
24
- const [state, setState] = useState({
25
- plugins: [],
26
- providers
27
- });
28
- const addProvider = useCallback(component => {
29
- setState(state => {
30
- if (state.providers.findIndex(m => m === component) > -1) {
31
- return state;
32
- }
33
- return {
34
- ...state,
35
- providers: [...state.providers, component]
36
- };
15
+ const AppBase = /*#__PURE__*/ react.memo(({ routes = [], plugins = [], providers = [], children })=>{
16
+ const [state, setState] = useState({
17
+ plugins,
18
+ providers
37
19
  });
38
- }, []);
39
- const addPlugin = useCallback(element => {
40
- setState(state => {
41
- return {
42
- ...state,
43
- plugins: [...state.plugins, element]
44
- };
45
- });
46
- }, []);
47
- const appContext = useMemo(() => ({
48
- ...state,
49
- addProvider,
50
- addPlugin
51
- }), [state]);
52
- const AppRouter = useMemo(() => {
53
- return function AppRouter() {
54
- const routerConfig = useRouterConfig();
55
- const combinedRoutes = [...routes, ...routerConfig.routes].map(r => {
56
- return /*#__PURE__*/React.createElement(Route, {
57
- path: r.path,
58
- element: r.element,
59
- key: r.path
20
+ const addProvider = useCallback((component)=>{
21
+ setState((state)=>{
22
+ if (state.providers.findIndex((m)=>m === component) > -1) return state;
23
+ return {
24
+ ...state,
25
+ providers: [
26
+ ...state.providers,
27
+ component
28
+ ]
29
+ };
60
30
  });
61
- });
62
- return /*#__PURE__*/React.createElement(SortRoutes, {
63
- key: routes.length,
64
- routes: combinedRoutes
65
- });
66
- };
67
- }, [routes]);
68
- const Providers = useMemo(() => {
69
- return compose(...(state.providers || []))(({
70
- children
71
- }) => {
72
- return /*#__PURE__*/React.createElement(DebounceRender, {
73
- wait: debounceRender
74
- }, children);
75
- });
76
- }, [state.providers.length]);
77
- Providers.displayName = "Providers";
78
- return /*#__PURE__*/React.createElement(AppContext.Provider, {
79
- value: appContext
80
- }, children, /*#__PURE__*/React.createElement(AppContainer, null, /*#__PURE__*/React.createElement(BrowserRouter, null, /*#__PURE__*/React.createElement(Providers, null, /*#__PURE__*/React.createElement(PluginsProvider, null, state.plugins), /*#__PURE__*/React.createElement(DebounceRender, {
81
- wait: debounceRender
82
- }, /*#__PURE__*/React.createElement(RouterWithConfig, null, /*#__PURE__*/React.createElement(AppRouter, null)))))));
83
- };
84
- export const App = ({
85
- decorators,
86
- ...props
87
- }) => {
88
- return /*#__PURE__*/React.createElement(CompositionProvider, {
89
- decorators: decorators
90
- }, /*#__PURE__*/React.createElement(AppBase, Object.assign({
91
- decorators: decorators
92
- }, props)));
93
- };
31
+ }, []);
32
+ const addPlugin = useCallback((element)=>{
33
+ setState((state)=>({
34
+ ...state,
35
+ plugins: [
36
+ ...state.plugins,
37
+ element
38
+ ]
39
+ }));
40
+ }, []);
41
+ const appContext = useMemo(()=>({
42
+ ...state,
43
+ addProvider,
44
+ addPlugin
45
+ }), [
46
+ state
47
+ ]);
48
+ const AppRouter = useMemo(()=>function() {
49
+ const router = useRouter();
50
+ const routerConfig = useRouterConfig();
51
+ const routesFromConfig = routerConfig.routes;
52
+ const combinedRoutes = [
53
+ ...routes,
54
+ ...routesFromConfig
55
+ ];
56
+ useEffect(()=>{
57
+ router.setRoutes(combinedRoutes);
58
+ }, [
59
+ combinedRoutes.length
60
+ ]);
61
+ return null;
62
+ }, []);
63
+ const Providers = useMemo(()=>/*#__PURE__*/ react.memo(compose(...state.providers || [])(({ children })=>/*#__PURE__*/ react.createElement(react.Fragment, null, children))), [
64
+ state.providers.length
65
+ ]);
66
+ Providers.displayName = "Providers";
67
+ return /*#__PURE__*/ react.createElement(AppContext.Provider, {
68
+ value: appContext
69
+ }, children, /*#__PURE__*/ react.createElement(AppContainer, null, /*#__PURE__*/ react.createElement(Providers, null, /*#__PURE__*/ react.createElement(PluginsProvider, null, state.plugins.map((plugin, index)=>/*#__PURE__*/ react.createElement(Fragment, {
70
+ key: index
71
+ }, plugin))), /*#__PURE__*/ react.createElement(RouterWithConfig, null, /*#__PURE__*/ react.createElement(AppRouter, null), /*#__PURE__*/ react.createElement(RouteContent, null)))));
72
+ });
73
+ AppBase.displayName = "AppBase";
74
+ const App = ({ decorators, ...props })=>/*#__PURE__*/ react.createElement(CompositionProvider, {
75
+ decorators: decorators
76
+ }, /*#__PURE__*/ react.createElement(AppBase, {
77
+ decorators: decorators,
78
+ ...props
79
+ }));
80
+ export { App, AppBase, useApp };
94
81
 
95
82
  //# sourceMappingURL=App.js.map
package/App.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"names":["React","createContext","useContext","useMemo","useState","useCallback","BrowserRouter","Route","CompositionProvider","compose","Routes","SortRoutes","DebounceRender","PluginsProvider","RouterWithConfig","useRouterConfig","AppContainer","AppContext","undefined","displayName","useApp","appContext","Error","AppBase","debounceRender","routes","providers","children","state","setState","plugins","addProvider","component","findIndex","m","addPlugin","element","AppRouter","routerConfig","combinedRoutes","map","r","createElement","path","key","length","Providers","wait","Provider","value","App","decorators","props","Object","assign"],"sources":["App.tsx"],"sourcesContent":["import React, { createContext, useContext, useMemo, useState, useCallback } from \"react\";\nimport type { RouteProps } from \"@webiny/react-router\";\nimport { BrowserRouter, Route } from \"@webiny/react-router\";\nimport type { GenericComponent, Decorator, DecoratorsCollection } from \"@webiny/react-composition\";\nimport { CompositionProvider, compose } from \"@webiny/react-composition\";\nimport { Routes as SortRoutes } from \"./core/Routes\";\nimport { DebounceRender } from \"./core/DebounceRender\";\nimport { PluginsProvider } from \"./core/Plugins\";\nimport { RouterWithConfig, useRouterConfig } from \"./config/RouterConfig\";\nimport { AppContainer } from \"./AppContainer\";\n\ninterface State {\n plugins: JSX.Element[];\n providers: Decorator<GenericComponent<ProviderProps>>[];\n}\n\ninterface AppContext extends State {\n addProvider(hoc: Decorator<GenericComponent<ProviderProps>>): void;\n\n addPlugin(plugin: React.ReactNode): void;\n}\n\nconst AppContext = createContext<AppContext | undefined>(undefined);\n\nAppContext.displayName = \"AppContext\";\n\nexport const useApp = () => {\n const appContext = useContext(AppContext);\n if (!appContext) {\n throw Error(\n `AppContext provider was not found. Are you using the \"useApp()\" hook in the right place?`\n );\n }\n return appContext;\n};\n\nexport interface AppProps {\n debounceRender?: number;\n routes?: Array<RouteProps>;\n providers?: Array<Decorator<GenericComponent<ProviderProps>>>;\n decorators?: DecoratorsCollection;\n children?: React.ReactNode | React.ReactNode[];\n}\n\ninterface ProviderProps {\n children: React.ReactNode;\n}\n\ntype ComponentWithChildren = React.ComponentType<{ children?: React.ReactNode }>;\n\nexport const AppBase = ({\n debounceRender = 50,\n routes = [],\n providers = [],\n children\n}: AppProps) => {\n const [state, setState] = useState<State>({\n plugins: [],\n providers\n });\n\n const addProvider = useCallback((component: Decorator<any>) => {\n setState(state => {\n if (state.providers.findIndex(m => m === component) > -1) {\n return state;\n }\n\n return {\n ...state,\n providers: [...state.providers, component]\n };\n });\n }, []);\n\n const addPlugin = useCallback((element: JSX.Element) => {\n setState(state => {\n return {\n ...state,\n plugins: [...state.plugins, element]\n };\n });\n }, []);\n\n const appContext = useMemo(\n () => ({\n ...state,\n addProvider,\n addPlugin\n }),\n [state]\n );\n\n const AppRouter = useMemo(() => {\n return function AppRouter() {\n const routerConfig = useRouterConfig();\n const combinedRoutes = [...routes, ...routerConfig.routes].map(r => {\n return <Route path={r.path} element={r.element} key={r.path} />;\n });\n\n return <SortRoutes key={routes.length} routes={combinedRoutes} />;\n };\n }, [routes]);\n\n const Providers = useMemo(() => {\n return compose(...(state.providers || []))(({ children }: ProviderProps) => {\n return <DebounceRender wait={debounceRender}>{children}</DebounceRender>;\n });\n }, [state.providers.length]) as ComponentWithChildren;\n\n Providers.displayName = \"Providers\";\n\n return (\n <AppContext.Provider value={appContext}>\n {children}\n <AppContainer>\n <BrowserRouter>\n <Providers>\n <PluginsProvider>{state.plugins}</PluginsProvider>\n <DebounceRender wait={debounceRender}>\n <RouterWithConfig>\n <AppRouter />\n </RouterWithConfig>\n </DebounceRender>\n </Providers>\n </BrowserRouter>\n </AppContainer>\n </AppContext.Provider>\n );\n};\n\nexport const App = ({ decorators, ...props }: AppProps) => {\n return (\n <CompositionProvider decorators={decorators}>\n <AppBase decorators={decorators} {...props} />\n </CompositionProvider>\n );\n};\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"App.js","sources":["../src/App.tsx"],"sourcesContent":["import React, {\n createContext,\n Fragment,\n useCallback,\n useContext,\n useEffect,\n useMemo,\n useState\n} from \"react\";\nimport {\n compose,\n CompositionProvider,\n Decorator,\n DecoratorsCollection,\n GenericComponent\n} from \"@webiny/react-composition\";\nimport { PluginsProvider } from \"./core/Plugins.js\";\nimport { RouterWithConfig, useRouterConfig } from \"./config/RouterConfig.js\";\nimport { AppContainer } from \"./AppContainer.js\";\nimport { RouteContent } from \"~/presentation/router/components/RouteContent.js\";\nimport { useRouter } from \"~/router.js\";\n\ninterface State {\n plugins: React.JSX.Element[];\n providers: Decorator<GenericComponent<ProviderProps>>[];\n}\n\ninterface AppContext extends State {\n addProvider(hoc: Decorator<GenericComponent<ProviderProps>>): void;\n addPlugin(plugin: React.ReactNode): void;\n}\n\nconst AppContext = createContext<AppContext | undefined>(undefined);\n\nAppContext.displayName = \"AppContext\";\n\nexport const useApp = () => {\n const appContext = useContext(AppContext);\n if (!appContext) {\n throw Error(\n `AppContext provider was not found. Are you using the \"useApp()\" hook in the right place?`\n );\n }\n return appContext;\n};\n\nexport interface AppProps {\n routes?: Array<any>;\n plugins?: any[];\n providers?: Array<Decorator<GenericComponent<ProviderProps>>>;\n decorators?: DecoratorsCollection;\n children?: React.ReactNode | React.ReactNode[];\n}\n\ninterface ProviderProps {\n children: React.ReactNode;\n}\n\ntype ComponentWithChildren = React.ComponentType<{ children?: React.ReactNode }>;\n\nexport const AppBase = React.memo(\n ({ routes = [], plugins = [], providers = [], children }: AppProps) => {\n const [state, setState] = useState<State>({\n plugins,\n providers\n });\n\n const addProvider = useCallback((component: Decorator<any>) => {\n setState(state => {\n if (state.providers.findIndex(m => m === component) > -1) {\n return state;\n }\n\n return {\n ...state,\n providers: [...state.providers, component]\n };\n });\n }, []);\n\n const addPlugin = useCallback((element: React.JSX.Element) => {\n setState(state => {\n return {\n ...state,\n plugins: [...state.plugins, element]\n };\n });\n }, []);\n\n const appContext = useMemo(\n () => ({\n ...state,\n addProvider,\n addPlugin\n }),\n [state]\n );\n\n const AppRouter = useMemo(() => {\n return function AppRouter() {\n const router = useRouter();\n const routerConfig = useRouterConfig();\n const routesFromConfig = routerConfig.routes;\n const combinedRoutes = [...routes, ...routesFromConfig];\n\n useEffect(() => {\n router.setRoutes(combinedRoutes);\n }, [combinedRoutes.length]);\n\n return null;\n };\n }, []);\n\n const Providers = useMemo(() => {\n return React.memo(\n compose(...(state.providers || []))(({ children }: ProviderProps) => {\n return <>{children}</>;\n })\n );\n }, [state.providers.length]) as ComponentWithChildren;\n\n Providers.displayName = \"Providers\";\n\n return (\n <AppContext.Provider value={appContext}>\n {children}\n <AppContainer>\n <Providers>\n <PluginsProvider>\n {state.plugins.map((plugin, index) => (\n <Fragment key={index}>{plugin}</Fragment>\n ))}\n </PluginsProvider>\n <RouterWithConfig>\n <AppRouter />\n <RouteContent />\n </RouterWithConfig>\n </Providers>\n </AppContainer>\n </AppContext.Provider>\n );\n }\n);\n\nAppBase.displayName = \"AppBase\";\n\nexport const App = ({ decorators, ...props }: AppProps) => {\n return (\n <CompositionProvider decorators={decorators}>\n <AppBase decorators={decorators} {...props} />\n </CompositionProvider>\n );\n};\n"],"names":["AppContext","createContext","undefined","useApp","appContext","useContext","Error","AppBase","React","routes","plugins","providers","children","state","setState","useState","addProvider","useCallback","component","m","addPlugin","element","useMemo","AppRouter","router","useRouter","routerConfig","useRouterConfig","routesFromConfig","combinedRoutes","useEffect","Providers","compose","AppContainer","PluginsProvider","plugin","index","Fragment","RouterWithConfig","RouteContent","App","decorators","props","CompositionProvider"],"mappings":";;;;;;;AAgCA,MAAMA,aAAa,WAAHA,GAAGC,cAAsCC;AAEzDF,WAAW,WAAW,GAAG;AAElB,MAAMG,SAAS;IAClB,MAAMC,aAAaC,WAAWL;IAC9B,IAAI,CAACI,YACD,MAAME,MACF;IAGR,OAAOF;AACX;AAgBO,MAAMG,UAAU,WAAHA,GAAGC,MAAAA,IAAU,CAC7B,CAAC,EAAEC,SAAS,EAAE,EAAEC,UAAU,EAAE,EAAEC,YAAY,EAAE,EAAEC,QAAQ,EAAY;IAC9D,MAAM,CAACC,OAAOC,SAAS,GAAGC,SAAgB;QACtCL;QACAC;IACJ;IAEA,MAAMK,cAAcC,YAAY,CAACC;QAC7BJ,SAASD,CAAAA;YACL,IAAIA,MAAM,SAAS,CAAC,SAAS,CAACM,CAAAA,IAAKA,MAAMD,aAAa,IAClD,OAAOL;YAGX,OAAO;gBACH,GAAGA,KAAK;gBACR,WAAW;uBAAIA,MAAM,SAAS;oBAAEK;iBAAU;YAC9C;QACJ;IACJ,GAAG,EAAE;IAEL,MAAME,YAAYH,YAAY,CAACI;QAC3BP,SAASD,CAAAA,QACE;gBACH,GAAGA,KAAK;gBACR,SAAS;uBAAIA,MAAM,OAAO;oBAAEQ;iBAAQ;YACxC;IAER,GAAG,EAAE;IAEL,MAAMjB,aAAakB,QACf,IAAO;YACH,GAAGT,KAAK;YACRG;YACAI;QACJ,IACA;QAACP;KAAM;IAGX,MAAMU,YAAYD,QAAQ,IACf;YACH,MAAME,SAASC;YACf,MAAMC,eAAeC;YACrB,MAAMC,mBAAmBF,aAAa,MAAM;YAC5C,MAAMG,iBAAiB;mBAAIpB;mBAAWmB;aAAiB;YAEvDE,UAAU;gBACNN,OAAO,SAAS,CAACK;YACrB,GAAG;gBAACA,eAAe,MAAM;aAAC;YAE1B,OAAO;QACX,GACD,EAAE;IAEL,MAAME,YAAYT,QAAQ,IACf,WAAP,GAAOd,MAAAA,IAAU,CACbwB,WAAYnB,MAAM,SAAS,IAAI,EAAE,EAAG,CAAC,EAAED,QAAQ,EAAiB,GACrD,WAAP,GAAO,0CAAGA,aAGnB;QAACC,MAAM,SAAS,CAAC,MAAM;KAAC;IAE3BkB,UAAU,WAAW,GAAG;IAExB,OAAO,WAAP,GACI,oBAAC/B,WAAW,QAAQ;QAAC,OAAOI;OACvBQ,UAAAA,WAAAA,GACD,oBAACqB,cAAYA,MAAAA,WAAAA,GACT,oBAACF,WAAAA,MAAAA,WAAAA,GACG,oBAACG,iBAAeA,MACXrB,MAAM,OAAO,CAAC,GAAG,CAAC,CAACsB,QAAQC,QAAAA,WAAAA,GACxB,oBAACC,UAAQA;YAAC,KAAKD;WAAQD,WAAAA,WAAAA,GAG/B,oBAACG,kBAAgBA,MAAAA,WAAAA,GACb,oBAACf,WAAAA,OAAAA,WAAAA,GACD,oBAACgB,cAAYA;AAMrC;AAGJhC,QAAQ,WAAW,GAAG;AAEf,MAAMiC,MAAM,CAAC,EAAEC,UAAU,EAAE,GAAGC,OAAiB,GAC3C,WAAP,GACI,oBAACC,qBAAmBA;QAAC,YAAYF;qBAC7B,oBAAClC,SAAOA;QAAC,YAAYkC;QAAa,GAAGC,KAAK"}
package/AppContainer.js CHANGED
@@ -1,9 +1,6 @@
1
- import React from "react";
1
+ import react from "react";
2
2
  import { makeDecoratable } from "@webiny/react-composition";
3
- export const AppContainer = makeDecoratable("AppContainer", ({
4
- children
5
- }) => {
6
- return /*#__PURE__*/React.createElement(React.Fragment, null, children);
7
- });
3
+ const AppContainer = makeDecoratable("AppContainer", ({ children })=>/*#__PURE__*/ react.createElement(react.Fragment, null, children));
4
+ export { AppContainer };
8
5
 
9
6
  //# sourceMappingURL=AppContainer.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["React","makeDecoratable","AppContainer","children","createElement","Fragment"],"sources":["AppContainer.tsx"],"sourcesContent":["import React from \"react\";\nimport { makeDecoratable } from \"@webiny/react-composition\";\n\nexport interface AppContentProps {\n children: React.ReactNode;\n}\n\nexport const AppContainer = makeDecoratable(\"AppContainer\", ({ children }: AppContentProps) => {\n return <>{children}</>;\n});\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,eAAe,QAAQ,2BAA2B;AAM3D,OAAO,MAAMC,YAAY,GAAGD,eAAe,CAAC,cAAc,EAAE,CAAC;EAAEE;AAA0B,CAAC,KAAK;EAC3F,oBAAOH,KAAA,CAAAI,aAAA,CAAAJ,KAAA,CAAAK,QAAA,QAAGF,QAAW,CAAC;AAC1B,CAAC,CAAC","ignoreList":[]}
1
+ {"version":3,"file":"AppContainer.js","sources":["../src/AppContainer.tsx"],"sourcesContent":["import React from \"react\";\nimport { makeDecoratable } from \"@webiny/react-composition\";\n\nexport interface AppContentProps {\n children: React.ReactNode;\n}\n\nexport const AppContainer = makeDecoratable(\"AppContainer\", ({ children }: AppContentProps) => {\n return <>{children}</>;\n});\n"],"names":["AppContainer","makeDecoratable","children"],"mappings":";;AAOO,MAAMA,eAAeC,gBAAgB,gBAAgB,CAAC,EAAEC,QAAQ,EAAmB,GAC/E,WAAP,GAAO,0CAAGA"}
package/README.md CHANGED
@@ -1,19 +1,11 @@
1
1
  # @webiny/app
2
- [![](https://img.shields.io/npm/dw/@webiny/app.svg)](https://www.npmjs.com/package/@webiny/app)
3
- [![](https://img.shields.io/npm/v/@webiny/app.svg)](https://www.npmjs.com/package/@webiny/app)
4
- [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
5
- [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
6
2
 
7
- The base package for building Webiny and React powered web apps.
3
+ > [!NOTE]
4
+ > This package is part of the [Webiny](https://www.webiny.com) monorepo.
5
+ > It’s **included in every Webiny project by default** and is not meant to be used as a standalone package.
8
6
 
9
- For more information, please visit [the official docs](https://docs.webiny.com/docs/webiny/introduction).
10
-
11
- ## Install
12
- ```
13
- npm install --save @webiny/app
14
- ```
7
+ 📘 **Documentation:** [https://www.webiny.com/docs](https://www.webiny.com/docs)
15
8
 
16
- Or if you prefer yarn:
17
- ```
18
- yarn add @webiny/app
19
- ```
9
+ ---
10
+
11
+ _This README file is automatically generated during the publish process._
@@ -1,20 +1,18 @@
1
- import { InMemoryCache as BaseInMemoryCache } from "apollo-cache-inmemory";
1
+ import { InMemoryCache } from "apollo-cache-inmemory";
2
2
  import { plugins } from "@webiny/plugins";
3
- import { AddQuerySelectionPlugin } from "../plugins/AddQuerySelectionPlugin";
4
- import { ApolloLinkPlugin } from "../plugins/ApolloLinkPlugin";
5
- export class InMemoryCache extends BaseInMemoryCache {
6
- constructor(config) {
7
- super(config);
8
- this.transformPlugins = plugins.byType(ApolloLinkPlugin.type).filter(pl => pl instanceof AddQuerySelectionPlugin);
9
- }
10
- transformDocument(document) {
11
- // @ts-expect-error
12
- const operationName = document.definitions[0].name.value;
13
- for (const pl of this.transformPlugins) {
14
- pl.addSelectionToQuery(operationName, document);
3
+ import { AddQuerySelectionPlugin } from "../plugins/AddQuerySelectionPlugin.js";
4
+ import { ApolloLinkPlugin } from "../plugins/ApolloLinkPlugin.js";
5
+ class InMemoryCache_InMemoryCache extends InMemoryCache {
6
+ constructor(config){
7
+ super(config);
8
+ this.transformPlugins = plugins.byType(ApolloLinkPlugin.type).filter((pl)=>pl instanceof AddQuerySelectionPlugin);
9
+ }
10
+ transformDocument(document) {
11
+ const operationName = document.definitions[0].name.value;
12
+ for (const pl of this.transformPlugins)pl.addSelectionToQuery(operationName, document);
13
+ return super.transformDocument(document);
15
14
  }
16
- return super.transformDocument(document);
17
- }
18
15
  }
16
+ export { InMemoryCache_InMemoryCache as InMemoryCache };
19
17
 
20
18
  //# sourceMappingURL=InMemoryCache.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["InMemoryCache","BaseInMemoryCache","plugins","AddQuerySelectionPlugin","ApolloLinkPlugin","constructor","config","transformPlugins","byType","type","filter","pl","transformDocument","document","operationName","definitions","name","value","addSelectionToQuery"],"sources":["InMemoryCache.ts"],"sourcesContent":["import type { InMemoryCacheConfig } from \"apollo-cache-inmemory\";\nimport { InMemoryCache as BaseInMemoryCache } from \"apollo-cache-inmemory\";\nimport type { DocumentNode } from \"graphql\";\nimport { plugins } from \"@webiny/plugins\";\nimport { AddQuerySelectionPlugin } from \"../plugins/AddQuerySelectionPlugin\";\nimport { ApolloLinkPlugin } from \"../plugins/ApolloLinkPlugin\";\n\nexport class InMemoryCache extends BaseInMemoryCache {\n private readonly transformPlugins: AddQuerySelectionPlugin[];\n\n constructor(config?: InMemoryCacheConfig) {\n super(config);\n\n this.transformPlugins = plugins\n .byType<AddQuerySelectionPlugin>(ApolloLinkPlugin.type)\n .filter(pl => pl instanceof AddQuerySelectionPlugin);\n }\n\n public override transformDocument(document: DocumentNode): DocumentNode {\n // @ts-expect-error\n const operationName = document.definitions[0].name.value;\n\n for (const pl of this.transformPlugins) {\n pl.addSelectionToQuery(operationName, document);\n }\n\n return super.transformDocument(document);\n }\n}\n"],"mappings":"AACA,SAASA,aAAa,IAAIC,iBAAiB,QAAQ,uBAAuB;AAE1E,SAASC,OAAO,QAAQ,iBAAiB;AACzC,SAASC,uBAAuB;AAChC,SAASC,gBAAgB;AAEzB,OAAO,MAAMJ,aAAa,SAASC,iBAAiB,CAAC;EAGjDI,WAAWA,CAACC,MAA4B,EAAE;IACtC,KAAK,CAACA,MAAM,CAAC;IAEb,IAAI,CAACC,gBAAgB,GAAGL,OAAO,CAC1BM,MAAM,CAA0BJ,gBAAgB,CAACK,IAAI,CAAC,CACtDC,MAAM,CAACC,EAAE,IAAIA,EAAE,YAAYR,uBAAuB,CAAC;EAC5D;EAEgBS,iBAAiBA,CAACC,QAAsB,EAAgB;IACpE;IACA,MAAMC,aAAa,GAAGD,QAAQ,CAACE,WAAW,CAAC,CAAC,CAAC,CAACC,IAAI,CAACC,KAAK;IAExD,KAAK,MAAMN,EAAE,IAAI,IAAI,CAACJ,gBAAgB,EAAE;MACpCI,EAAE,CAACO,mBAAmB,CAACJ,aAAa,EAAED,QAAQ,CAAC;IACnD;IAEA,OAAO,KAAK,CAACD,iBAAiB,CAACC,QAAQ,CAAC;EAC5C;AACJ","ignoreList":[]}
1
+ {"version":3,"file":"apollo-client/InMemoryCache.js","sources":["../../src/apollo-client/InMemoryCache.ts"],"sourcesContent":["import type { InMemoryCacheConfig } from \"apollo-cache-inmemory\";\nimport { InMemoryCache as BaseInMemoryCache } from \"apollo-cache-inmemory\";\nimport type { DocumentNode } from \"graphql\";\nimport { plugins } from \"@webiny/plugins\";\nimport { AddQuerySelectionPlugin } from \"../plugins/AddQuerySelectionPlugin.js\";\nimport { ApolloLinkPlugin } from \"../plugins/ApolloLinkPlugin.js\";\n\nexport class InMemoryCache extends BaseInMemoryCache {\n private readonly transformPlugins: AddQuerySelectionPlugin[];\n\n constructor(config?: InMemoryCacheConfig) {\n super(config);\n\n this.transformPlugins = plugins\n .byType<AddQuerySelectionPlugin>(ApolloLinkPlugin.type)\n .filter(pl => pl instanceof AddQuerySelectionPlugin);\n }\n\n public override transformDocument(document: DocumentNode): DocumentNode {\n // @ts-expect-error\n const operationName = document.definitions[0].name.value;\n\n for (const pl of this.transformPlugins) {\n pl.addSelectionToQuery(operationName, document);\n }\n\n return super.transformDocument(document);\n }\n}\n"],"names":["InMemoryCache","BaseInMemoryCache","config","plugins","ApolloLinkPlugin","pl","AddQuerySelectionPlugin","document","operationName"],"mappings":";;;;AAOO,MAAMA,oCAAsBC;IAG/B,YAAYC,MAA4B,CAAE;QACtC,KAAK,CAACA;QAEN,IAAI,CAAC,gBAAgB,GAAGC,QAAAA,MACb,CAA0BC,iBAAiB,IAAI,EACrD,MAAM,CAACC,CAAAA,KAAMA,cAAcC;IACpC;IAEgB,kBAAkBC,QAAsB,EAAgB;QAEpE,MAAMC,gBAAgBD,SAAS,WAAW,CAAC,EAAE,CAAC,IAAI,CAAC,KAAK;QAExD,KAAK,MAAMF,MAAM,IAAI,CAAC,gBAAgB,CAClCA,GAAG,mBAAmB,CAACG,eAAeD;QAG1C,OAAO,KAAK,CAAC,kBAAkBA;IACnC;AACJ"}
@@ -1,45 +1,33 @@
1
1
  import { invariant } from "ts-invariant";
2
- export class IntrospectionFragmentMatcher {
3
- possibleTypesMap = {};
4
- constructor(options) {
5
- if (options && options.introspectionQueryResultData) {
6
- this.possibleTypesMap = this.parseIntrospectionResult(options.introspectionQueryResultData);
7
- this.isReady = true;
8
- } else {
9
- this.isReady = false;
2
+ class IntrospectionFragmentMatcher {
3
+ constructor(options){
4
+ this.possibleTypesMap = {};
5
+ if (options && options.introspectionQueryResultData) {
6
+ this.possibleTypesMap = this.parseIntrospectionResult(options.introspectionQueryResultData);
7
+ this.isReady = true;
8
+ } else this.isReady = false;
9
+ this.match = this.match.bind(this);
10
10
  }
11
- this.match = this.match.bind(this);
12
- }
13
- match(idValue, typeCondition, context) {
14
- invariant(this.isReady, "FragmentMatcher.match() was called before FragmentMatcher.init()");
15
- const obj = context.store.get(idValue.id);
16
- const isRootQuery = idValue.id === "ROOT_QUERY";
17
- if (!obj) {
18
- // https://github.com/apollographql/apollo-client/pull/4620
19
- return isRootQuery;
11
+ match(idValue, typeCondition, context) {
12
+ invariant(this.isReady, "FragmentMatcher.match() was called before FragmentMatcher.init()");
13
+ const obj = context.store.get(idValue.id);
14
+ const isRootQuery = "ROOT_QUERY" === idValue.id;
15
+ if (!obj) return isRootQuery;
16
+ const { __typename = isRootQuery && "Query" } = obj;
17
+ invariant(__typename, `Cannot match fragment because __typename property is missing: ${JSON.stringify(obj)}`);
18
+ if (__typename === typeCondition) return true;
19
+ const implementingTypes = this.possibleTypesMap[typeCondition];
20
+ if (__typename && implementingTypes && implementingTypes.indexOf(__typename) > -1) return true;
21
+ return false;
20
22
  }
21
- const {
22
- __typename = isRootQuery && "Query"
23
- } = obj;
24
- invariant(__typename, `Cannot match fragment because __typename property is missing: ${JSON.stringify(obj)}`);
25
- if (__typename === typeCondition) {
26
- return true;
23
+ parseIntrospectionResult(introspectionResultData) {
24
+ const typeMap = {};
25
+ introspectionResultData.__schema.types.forEach((type)=>{
26
+ if ("UNION" === type.kind || "INTERFACE" === type.kind) typeMap[type.name] = type.possibleTypes.map((implementingType)=>implementingType.name);
27
+ });
28
+ return typeMap;
27
29
  }
28
- const implementingTypes = this.possibleTypesMap[typeCondition];
29
- if (__typename && implementingTypes && implementingTypes.indexOf(__typename) > -1) {
30
- return true;
31
- }
32
- return false;
33
- }
34
- parseIntrospectionResult(introspectionResultData) {
35
- const typeMap = {};
36
- introspectionResultData.__schema.types.forEach(type => {
37
- if (type.kind === "UNION" || type.kind === "INTERFACE") {
38
- typeMap[type.name] = type.possibleTypes.map(implementingType => implementingType.name);
39
- }
40
- });
41
- return typeMap;
42
- }
43
30
  }
31
+ export { IntrospectionFragmentMatcher };
44
32
 
45
33
  //# sourceMappingURL=IntrospectionFragmentMatcher.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["invariant","IntrospectionFragmentMatcher","possibleTypesMap","constructor","options","introspectionQueryResultData","parseIntrospectionResult","isReady","match","bind","idValue","typeCondition","context","obj","store","get","id","isRootQuery","__typename","JSON","stringify","implementingTypes","indexOf","introspectionResultData","typeMap","__schema","types","forEach","type","kind","name","possibleTypes","map","implementingType"],"sources":["IntrospectionFragmentMatcher.ts"],"sourcesContent":["import type { IdValue } from \"apollo-utilities\";\nimport { invariant } from \"ts-invariant\";\n\nimport type {\n ReadStoreContext,\n FragmentMatcherInterface,\n PossibleTypesMap,\n IntrospectionResultData\n} from \"apollo-cache-inmemory\";\n\nexport class IntrospectionFragmentMatcher implements FragmentMatcherInterface {\n private readonly isReady: boolean;\n private readonly possibleTypesMap: PossibleTypesMap = {};\n\n constructor(options?: { introspectionQueryResultData?: IntrospectionResultData }) {\n if (options && options.introspectionQueryResultData) {\n this.possibleTypesMap = this.parseIntrospectionResult(\n options.introspectionQueryResultData\n );\n this.isReady = true;\n } else {\n this.isReady = false;\n }\n\n this.match = this.match.bind(this);\n }\n\n public match(idValue: IdValue, typeCondition: string, context: ReadStoreContext) {\n invariant(this.isReady, \"FragmentMatcher.match() was called before FragmentMatcher.init()\");\n\n const obj = context.store.get(idValue.id);\n const isRootQuery = idValue.id === \"ROOT_QUERY\";\n\n if (!obj) {\n // https://github.com/apollographql/apollo-client/pull/4620\n return isRootQuery;\n }\n\n const { __typename = isRootQuery && \"Query\" } = obj;\n\n invariant(\n __typename,\n `Cannot match fragment because __typename property is missing: ${JSON.stringify(obj)}`\n );\n\n if (__typename === typeCondition) {\n return true;\n }\n\n const implementingTypes = this.possibleTypesMap[typeCondition];\n if (__typename && implementingTypes && implementingTypes.indexOf(__typename) > -1) {\n return true;\n }\n\n return false;\n }\n\n private parseIntrospectionResult(\n introspectionResultData: IntrospectionResultData\n ): PossibleTypesMap {\n const typeMap: PossibleTypesMap = {};\n introspectionResultData.__schema.types.forEach(type => {\n if (type.kind === \"UNION\" || type.kind === \"INTERFACE\") {\n typeMap[type.name] = type.possibleTypes.map(\n implementingType => implementingType.name\n );\n }\n });\n return typeMap;\n }\n}\n"],"mappings":"AACA,SAASA,SAAS,QAAQ,cAAc;AASxC,OAAO,MAAMC,4BAA4B,CAAqC;EAEzDC,gBAAgB,GAAqB,CAAC,CAAC;EAExDC,WAAWA,CAACC,OAAoE,EAAE;IAC9E,IAAIA,OAAO,IAAIA,OAAO,CAACC,4BAA4B,EAAE;MACjD,IAAI,CAACH,gBAAgB,GAAG,IAAI,CAACI,wBAAwB,CACjDF,OAAO,CAACC,4BACZ,CAAC;MACD,IAAI,CAACE,OAAO,GAAG,IAAI;IACvB,CAAC,MAAM;MACH,IAAI,CAACA,OAAO,GAAG,KAAK;IACxB;IAEA,IAAI,CAACC,KAAK,GAAG,IAAI,CAACA,KAAK,CAACC,IAAI,CAAC,IAAI,CAAC;EACtC;EAEOD,KAAKA,CAACE,OAAgB,EAAEC,aAAqB,EAAEC,OAAyB,EAAE;IAC7EZ,SAAS,CAAC,IAAI,CAACO,OAAO,EAAE,kEAAkE,CAAC;IAE3F,MAAMM,GAAG,GAAGD,OAAO,CAACE,KAAK,CAACC,GAAG,CAACL,OAAO,CAACM,EAAE,CAAC;IACzC,MAAMC,WAAW,GAAGP,OAAO,CAACM,EAAE,KAAK,YAAY;IAE/C,IAAI,CAACH,GAAG,EAAE;MACN;MACA,OAAOI,WAAW;IACtB;IAEA,MAAM;MAAEC,UAAU,GAAGD,WAAW,IAAI;IAAQ,CAAC,GAAGJ,GAAG;IAEnDb,SAAS,CACLkB,UAAU,EACV,iEAAiEC,IAAI,CAACC,SAAS,CAACP,GAAG,CAAC,EACxF,CAAC;IAED,IAAIK,UAAU,KAAKP,aAAa,EAAE;MAC9B,OAAO,IAAI;IACf;IAEA,MAAMU,iBAAiB,GAAG,IAAI,CAACnB,gBAAgB,CAACS,aAAa,CAAC;IAC9D,IAAIO,UAAU,IAAIG,iBAAiB,IAAIA,iBAAiB,CAACC,OAAO,CAACJ,UAAU,CAAC,GAAG,CAAC,CAAC,EAAE;MAC/E,OAAO,IAAI;IACf;IAEA,OAAO,KAAK;EAChB;EAEQZ,wBAAwBA,CAC5BiB,uBAAgD,EAChC;IAChB,MAAMC,OAAyB,GAAG,CAAC,CAAC;IACpCD,uBAAuB,CAACE,QAAQ,CAACC,KAAK,CAACC,OAAO,CAACC,IAAI,IAAI;MACnD,IAAIA,IAAI,CAACC,IAAI,KAAK,OAAO,IAAID,IAAI,CAACC,IAAI,KAAK,WAAW,EAAE;QACpDL,OAAO,CAACI,IAAI,CAACE,IAAI,CAAC,GAAGF,IAAI,CAACG,aAAa,CAACC,GAAG,CACvCC,gBAAgB,IAAIA,gBAAgB,CAACH,IACzC,CAAC;MACL;IACJ,CAAC,CAAC;IACF,OAAON,OAAO;EAClB;AACJ","ignoreList":[]}
1
+ {"version":3,"file":"apollo-client/IntrospectionFragmentMatcher.js","sources":["../../src/apollo-client/IntrospectionFragmentMatcher.ts"],"sourcesContent":["import type { IdValue } from \"apollo-utilities\";\nimport { invariant } from \"ts-invariant\";\n\nimport type {\n ReadStoreContext,\n FragmentMatcherInterface,\n PossibleTypesMap,\n IntrospectionResultData\n} from \"apollo-cache-inmemory\";\n\nexport class IntrospectionFragmentMatcher implements FragmentMatcherInterface {\n private readonly isReady: boolean;\n private readonly possibleTypesMap: PossibleTypesMap = {};\n\n constructor(options?: { introspectionQueryResultData?: IntrospectionResultData }) {\n if (options && options.introspectionQueryResultData) {\n this.possibleTypesMap = this.parseIntrospectionResult(\n options.introspectionQueryResultData\n );\n this.isReady = true;\n } else {\n this.isReady = false;\n }\n\n this.match = this.match.bind(this);\n }\n\n public match(idValue: IdValue, typeCondition: string, context: ReadStoreContext) {\n invariant(this.isReady, \"FragmentMatcher.match() was called before FragmentMatcher.init()\");\n\n const obj = context.store.get(idValue.id);\n const isRootQuery = idValue.id === \"ROOT_QUERY\";\n\n if (!obj) {\n // https://github.com/apollographql/apollo-client/pull/4620\n return isRootQuery;\n }\n\n const { __typename = isRootQuery && \"Query\" } = obj;\n\n invariant(\n __typename,\n `Cannot match fragment because __typename property is missing: ${JSON.stringify(obj)}`\n );\n\n if (__typename === typeCondition) {\n return true;\n }\n\n const implementingTypes = this.possibleTypesMap[typeCondition];\n if (__typename && implementingTypes && implementingTypes.indexOf(__typename) > -1) {\n return true;\n }\n\n return false;\n }\n\n private parseIntrospectionResult(\n introspectionResultData: IntrospectionResultData\n ): PossibleTypesMap {\n const typeMap: PossibleTypesMap = {};\n introspectionResultData.__schema.types.forEach(type => {\n if (type.kind === \"UNION\" || type.kind === \"INTERFACE\") {\n typeMap[type.name] = type.possibleTypes.map(\n implementingType => implementingType.name\n );\n }\n });\n return typeMap;\n }\n}\n"],"names":["IntrospectionFragmentMatcher","options","idValue","typeCondition","context","invariant","obj","isRootQuery","__typename","JSON","implementingTypes","introspectionResultData","typeMap","type","implementingType"],"mappings":";AAUO,MAAMA;IAIT,YAAYC,OAAoE,CAAE;aAFjE,gBAAgB,GAAqB,CAAC;QAGnD,IAAIA,WAAWA,QAAQ,4BAA4B,EAAE;YACjD,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,wBAAwB,CACjDA,QAAQ,4BAA4B;YAExC,IAAI,CAAC,OAAO,GAAG;QACnB,OACI,IAAI,CAAC,OAAO,GAAG;QAGnB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI;IACrC;IAEO,MAAMC,OAAgB,EAAEC,aAAqB,EAAEC,OAAyB,EAAE;QAC7EC,UAAU,IAAI,CAAC,OAAO,EAAE;QAExB,MAAMC,MAAMF,QAAQ,KAAK,CAAC,GAAG,CAACF,QAAQ,EAAE;QACxC,MAAMK,cAAcL,AAAe,iBAAfA,QAAQ,EAAE;QAE9B,IAAI,CAACI,KAED,OAAOC;QAGX,MAAM,EAAEC,aAAaD,eAAe,OAAO,EAAE,GAAGD;QAEhDD,UACIG,YACA,CAAC,8DAA8D,EAAEC,KAAK,SAAS,CAACH,MAAM;QAG1F,IAAIE,eAAeL,eACf,OAAO;QAGX,MAAMO,oBAAoB,IAAI,CAAC,gBAAgB,CAACP,cAAc;QAC9D,IAAIK,cAAcE,qBAAqBA,kBAAkB,OAAO,CAACF,cAAc,IAC3E,OAAO;QAGX,OAAO;IACX;IAEQ,yBACJG,uBAAgD,EAChC;QAChB,MAAMC,UAA4B,CAAC;QACnCD,wBAAwB,QAAQ,CAAC,KAAK,CAAC,OAAO,CAACE,CAAAA;YAC3C,IAAIA,AAAc,YAAdA,KAAK,IAAI,IAAgBA,AAAc,gBAAdA,KAAK,IAAI,EAClCD,OAAO,CAACC,KAAK,IAAI,CAAC,GAAGA,KAAK,aAAa,CAAC,GAAG,CACvCC,CAAAA,mBAAoBA,iBAAiB,IAAI;QAGrD;QACA,OAAOF;IACX;AACJ"}
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
- import type { ImageProps } from "../types";
1
+ import type { ImageProps } from "../types.js";
3
2
  export declare const Image: ({ preset: presetName, ...props }: ImageProps) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
@@ -1,23 +1,17 @@
1
1
  import invariant from "invariant";
2
2
  import { plugins } from "@webiny/plugins";
3
- import get from "lodash/get";
4
- export const Image = ({
5
- preset: presetName,
6
- ...props
7
- }) => {
8
- const plugin = plugins.byName("image-component");
9
- if (!plugin) {
10
- throw new Error(`Image component plugin (type "image-component") not defined.`);
11
- }
12
- if (presetName) {
13
- const preset = get(plugin, `presets.${presetName}`);
14
- invariant(preset, `Transform preset "${presetName}" not found.`);
15
- props.transform = preset;
16
- }
17
- if (props.transform) {
18
- props.src = plugin.getImageSrc(props);
19
- }
20
- return plugin.render(props);
3
+ import get from "lodash/get.js";
4
+ const Image = ({ preset: presetName, ...props })=>{
5
+ const plugin = plugins.byName("image-component");
6
+ if (!plugin) throw new Error('Image component plugin (type "image-component") not defined.');
7
+ if (presetName) {
8
+ const preset = get(plugin, `presets.${presetName}`);
9
+ invariant(preset, `Transform preset "${presetName}" not found.`);
10
+ props.transform = preset;
11
+ }
12
+ if (props.transform) props.src = plugin.getImageSrc(props);
13
+ return plugin.render(props);
21
14
  };
15
+ export { Image };
22
16
 
23
17
  //# sourceMappingURL=Image.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["invariant","plugins","get","Image","preset","presetName","props","plugin","byName","Error","transform","src","getImageSrc","render"],"sources":["Image.tsx"],"sourcesContent":["import invariant from \"invariant\";\nimport { plugins } from \"@webiny/plugins\";\nimport get from \"lodash/get\";\nimport type { ImageComponentPlugin, ImageProps } from \"~/types\";\n\nexport const Image = ({ preset: presetName, ...props }: ImageProps) => {\n const plugin = plugins.byName<ImageComponentPlugin>(\"image-component\");\n if (!plugin) {\n throw new Error(`Image component plugin (type \"image-component\") not defined.`);\n }\n\n if (presetName) {\n const preset = get(plugin, `presets.${presetName}`);\n invariant(preset, `Transform preset \"${presetName}\" not found.`);\n props.transform = preset;\n }\n\n if (props.transform) {\n props.src = plugin.getImageSrc(props);\n }\n\n return plugin.render(props);\n};\n"],"mappings":"AAAA,OAAOA,SAAS,MAAM,WAAW;AACjC,SAASC,OAAO,QAAQ,iBAAiB;AACzC,OAAOC,GAAG,MAAM,YAAY;AAG5B,OAAO,MAAMC,KAAK,GAAGA,CAAC;EAAEC,MAAM,EAAEC,UAAU;EAAE,GAAGC;AAAkB,CAAC,KAAK;EACnE,MAAMC,MAAM,GAAGN,OAAO,CAACO,MAAM,CAAuB,iBAAiB,CAAC;EACtE,IAAI,CAACD,MAAM,EAAE;IACT,MAAM,IAAIE,KAAK,CAAC,8DAA8D,CAAC;EACnF;EAEA,IAAIJ,UAAU,EAAE;IACZ,MAAMD,MAAM,GAAGF,GAAG,CAACK,MAAM,EAAE,WAAWF,UAAU,EAAE,CAAC;IACnDL,SAAS,CAACI,MAAM,EAAE,qBAAqBC,UAAU,cAAc,CAAC;IAChEC,KAAK,CAACI,SAAS,GAAGN,MAAM;EAC5B;EAEA,IAAIE,KAAK,CAACI,SAAS,EAAE;IACjBJ,KAAK,CAACK,GAAG,GAAGJ,MAAM,CAACK,WAAW,CAACN,KAAK,CAAC;EACzC;EAEA,OAAOC,MAAM,CAACM,MAAM,CAACP,KAAK,CAAC;AAC/B,CAAC","ignoreList":[]}
1
+ {"version":3,"file":"components/Image.js","sources":["../../src/components/Image.tsx"],"sourcesContent":["import invariant from \"invariant\";\nimport { plugins } from \"@webiny/plugins\";\nimport get from \"lodash/get.js\";\nimport type { ImageComponentPlugin, ImageProps } from \"~/types.js\";\n\nexport const Image = ({ preset: presetName, ...props }: ImageProps) => {\n const plugin = plugins.byName<ImageComponentPlugin>(\"image-component\");\n if (!plugin) {\n throw new Error(`Image component plugin (type \"image-component\") not defined.`);\n }\n\n if (presetName) {\n const preset = get(plugin, `presets.${presetName}`);\n invariant(preset, `Transform preset \"${presetName}\" not found.`);\n props.transform = preset;\n }\n\n if (props.transform) {\n props.src = plugin.getImageSrc(props);\n }\n\n return plugin.render(props);\n};\n"],"names":["Image","presetName","props","plugin","plugins","Error","preset","get","invariant"],"mappings":";;;AAKO,MAAMA,QAAQ,CAAC,EAAE,QAAQC,UAAU,EAAE,GAAGC,OAAmB;IAC9D,MAAMC,SAASC,QAAQ,MAAM,CAAuB;IACpD,IAAI,CAACD,QACD,MAAM,IAAIE,MAAM;IAGpB,IAAIJ,YAAY;QACZ,MAAMK,SAASC,IAAIJ,QAAQ,CAAC,QAAQ,EAAEF,YAAY;QAClDO,UAAUF,QAAQ,CAAC,kBAAkB,EAAEL,WAAW,YAAY,CAAC;QAC/DC,MAAM,SAAS,GAAGI;IACtB;IAEA,IAAIJ,MAAM,SAAS,EACfA,MAAM,GAAG,GAAGC,OAAO,WAAW,CAACD;IAGnC,OAAOC,OAAO,MAAM,CAACD;AACzB"}
@@ -1,2 +1 @@
1
- export { Image } from "./Image";
2
- export { Routes } from "./Routes";
1
+ export { Image } from "./Image.js";
@@ -1,4 +1 @@
1
- export { Image } from "./Image";
2
- export { Routes } from "./Routes";
3
-
4
- //# sourceMappingURL=index.js.map
1
+ export { Image } from "./Image.js";
@@ -1,29 +1,28 @@
1
1
  import React from "react";
2
+ import type { Route as BaseRoute } from "../../router.js";
2
3
  export interface RouteProps {
3
- name: string;
4
- path: string;
5
- exact?: boolean;
4
+ route: BaseRoute<any>;
6
5
  element: React.ReactElement;
7
6
  remove?: boolean;
8
7
  before?: string;
9
8
  after?: string;
10
9
  }
11
- export type RouteConfig = Pick<RouteProps, "name" | "path" | "element">;
12
- export declare const Route: (({ name, path, element, exact, remove, before, after }: RouteProps) => React.JSX.Element) & {
13
- original: ({ name, path, element, exact, remove, before, after }: RouteProps) => React.JSX.Element;
10
+ export type RouteConfig = Pick<RouteProps, "route" | "element">;
11
+ export declare const Route: (({ route, element, remove, before, after }: RouteProps) => React.JSX.Element) & {
12
+ original: ({ route, element, remove, before, after }: RouteProps) => React.JSX.Element;
14
13
  originalName: string;
15
14
  displayName: string;
16
15
  } & {
17
- original: (({ name, path, element, exact, remove, before, after }: RouteProps) => React.JSX.Element) & {
18
- original: ({ name, path, element, exact, remove, before, after }: RouteProps) => React.JSX.Element;
16
+ original: (({ route, element, remove, before, after }: RouteProps) => React.JSX.Element) & {
17
+ original: ({ route, element, remove, before, after }: RouteProps) => React.JSX.Element;
19
18
  originalName: string;
20
19
  displayName: string;
21
20
  };
22
21
  originalName: string;
23
22
  displayName: string;
24
23
  } & {
25
- createDecorator: (decorator: import("@webiny/react-composition").ComponentDecorator<(({ name, path, element, exact, remove, before, after }: RouteProps) => React.JSX.Element) & {
26
- original: ({ name, path, element, exact, remove, before, after }: RouteProps) => React.JSX.Element;
24
+ createDecorator: (decorator: import("@webiny/react-composition").ComponentDecorator<(({ route, element, remove, before, after }: RouteProps) => React.JSX.Element) & {
25
+ original: ({ route, element, remove, before, after }: RouteProps) => React.JSX.Element;
27
26
  originalName: string;
28
27
  displayName: string;
29
28
  }>) => (props: unknown) => React.JSX.Element;