@firecms/core 3.0.0-alpha.7 → 3.0.0-alpha.70

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 (460) hide show
  1. package/README.md +1 -1
  2. package/dist/components/ArrayContainer.d.ts +42 -0
  3. package/dist/components/CircularProgressCenter.d.ts +11 -0
  4. package/dist/components/DeleteConfirmationDialog.d.ts +9 -0
  5. package/dist/components/EntityCollectionTable/EntityCollectionTable.d.ts +30 -0
  6. package/dist/components/EntityCollectionTable/EntityCollectionTableProps.d.ts +106 -0
  7. package/dist/components/EntityCollectionTable/fields/TableReferenceField.d.ts +15 -0
  8. package/dist/components/EntityCollectionTable/fields/TableStorageUpload.d.ts +33 -0
  9. package/dist/components/EntityCollectionTable/filters/BooleanFilterField.d.ts +9 -0
  10. package/dist/components/EntityCollectionTable/filters/DateTimeFilterField.d.ts +11 -0
  11. package/dist/components/EntityCollectionTable/filters/ReferenceFilterField.d.ts +14 -0
  12. package/dist/components/EntityCollectionTable/filters/StringNumberFilterField.d.ts +13 -0
  13. package/dist/components/EntityCollectionTable/index.d.ts +4 -0
  14. package/dist/components/EntityCollectionTable/internal/CollectionTableToolbar.d.ts +18 -0
  15. package/dist/components/EntityCollectionTable/internal/DeleteEntityDialog.d.ts +12 -0
  16. package/dist/components/EntityCollectionTable/internal/EntityCollectionRowActions.d.ts +35 -0
  17. package/dist/components/EntityCollectionTable/internal/EntityTableCell.d.ts +26 -0
  18. package/dist/components/EntityCollectionTable/internal/EntityTableCellActions.d.ts +9 -0
  19. package/dist/components/EntityCollectionTable/internal/PropertyTableCell.d.ts +18 -0
  20. package/dist/components/EntityCollectionTable/internal/common.d.ts +4 -0
  21. package/dist/components/EntityCollectionTable/internal/default_entity_actions.d.ts +6 -0
  22. package/dist/components/EntityCollectionTable/internal/popup_field/ElementResizeListener.d.ts +5 -0
  23. package/dist/components/EntityCollectionTable/internal/popup_field/PopupFormField.d.ts +23 -0
  24. package/dist/components/EntityCollectionTable/internal/popup_field/useDraggable.d.ts +13 -0
  25. package/dist/components/EntityCollectionTable/internal/popup_field/useWindowSize.d.ts +6 -0
  26. package/dist/components/EntityCollectionTable/types.d.ts +39 -0
  27. package/dist/components/EntityCollectionTable/useDebouncedData.d.ts +9 -0
  28. package/dist/components/EntityCollectionTable/useEntityCollectionTableController.d.ts +21 -0
  29. package/dist/components/EntityCollectionView/EntityCollectionView.d.ts +37 -0
  30. package/dist/components/EntityCollectionView/EntityCollectionViewActions.d.ts +14 -0
  31. package/dist/components/EntityCollectionView/useColumnsIds.d.ts +4 -0
  32. package/dist/components/EntityPreview.d.ts +11 -0
  33. package/dist/components/ErrorBoundary.d.ts +11 -0
  34. package/dist/components/ErrorTooltip.d.ts +2 -0
  35. package/dist/components/ErrorView.d.ts +19 -0
  36. package/dist/components/FieldConfigBadge.d.ts +4 -0
  37. package/dist/components/FireCMSAppBar.d.ts +26 -0
  38. package/dist/components/FireCMSLogo.d.ts +7 -0
  39. package/dist/components/HomePage/DefaultHomePage.d.ts +21 -0
  40. package/dist/components/HomePage/FavouritesView.d.ts +3 -0
  41. package/dist/components/HomePage/NavigationCollectionCard.d.ts +17 -0
  42. package/dist/components/HomePage/NavigationGroup.d.ts +4 -0
  43. package/dist/components/HomePage/index.d.ts +3 -0
  44. package/dist/components/LabelWithIcon.d.ts +14 -0
  45. package/dist/components/NotFoundPage.d.ts +1 -0
  46. package/dist/components/ReferenceSelectionInner.d.ts +58 -0
  47. package/dist/components/ReferenceWidget.d.ts +28 -0
  48. package/dist/components/VirtualTable/VirtualTable.d.ts +11 -0
  49. package/dist/components/VirtualTable/VirtualTableCell.d.ts +14 -0
  50. package/dist/components/VirtualTable/VirtualTableHeader.d.ts +27 -0
  51. package/dist/components/VirtualTable/VirtualTableHeaderRow.d.ts +2 -0
  52. package/dist/components/VirtualTable/VirtualTableProps.d.ts +215 -0
  53. package/dist/components/VirtualTable/VirtualTableRow.d.ts +3 -0
  54. package/dist/components/VirtualTable/common.d.ts +2 -0
  55. package/dist/components/VirtualTable/fields/VirtualTableDateField.d.ts +11 -0
  56. package/dist/components/VirtualTable/fields/VirtualTableInput.d.ts +8 -0
  57. package/dist/components/VirtualTable/fields/VirtualTableNumberInput.d.ts +8 -0
  58. package/dist/components/VirtualTable/fields/VirtualTableSelect.d.ts +15 -0
  59. package/dist/components/VirtualTable/fields/VirtualTableSwitch.d.ts +7 -0
  60. package/dist/components/VirtualTable/index.d.ts +2 -0
  61. package/dist/components/VirtualTable/types.d.ts +34 -0
  62. package/dist/components/index.d.ts +20 -0
  63. package/dist/contexts/AuthControllerContext.d.ts +3 -0
  64. package/dist/contexts/DataSourceContext.d.ts +3 -0
  65. package/dist/contexts/DialogsProvider.d.ts +4 -0
  66. package/dist/contexts/ModeController.d.ts +4 -0
  67. package/dist/contexts/NavigationContext.d.ts +3 -0
  68. package/dist/contexts/SideDialogsControllerContext.d.ts +3 -0
  69. package/dist/contexts/SideEntityControllerContext.d.ts +3 -0
  70. package/dist/contexts/SnackbarProvider.d.ts +2 -0
  71. package/dist/contexts/StorageSourceContext.d.ts +3 -0
  72. package/dist/contexts/UserConfigurationPersistenceContext.d.ts +3 -0
  73. package/dist/contexts/index.d.ts +3 -0
  74. package/dist/core/Drawer.d.ts +23 -0
  75. package/dist/core/EntitySidePanel.d.ts +10 -0
  76. package/dist/core/FireCMS.d.ts +14 -0
  77. package/dist/core/NavigationRoutes.d.ts +21 -0
  78. package/dist/core/Scaffold.d.ts +52 -0
  79. package/dist/core/SideDialogs.d.ts +23 -0
  80. package/dist/core/field_configs.d.ts +7 -0
  81. package/dist/core/index.d.ts +10 -0
  82. package/dist/core/useBuildLocalConfigurationPersistence.d.ts +2 -0
  83. package/dist/core/useBuildModeController.d.ts +6 -0
  84. package/dist/form/EntityForm.d.ts +75 -0
  85. package/dist/form/PropertyFieldBinding.d.ts +30 -0
  86. package/dist/form/components/CustomIdField.d.ts +9 -0
  87. package/dist/form/components/ErrorFocus.d.ts +4 -0
  88. package/dist/form/components/FieldHelperText.d.ts +12 -0
  89. package/dist/form/components/FormikArrayContainer.d.ts +18 -0
  90. package/dist/form/components/StorageItemPreview.d.ts +13 -0
  91. package/dist/form/components/StorageUploadProgress.d.ts +10 -0
  92. package/dist/form/components/SubmitListener.d.ts +1 -0
  93. package/dist/form/components/SwitchControl.d.ts +8 -0
  94. package/dist/form/components/index.d.ts +3 -0
  95. package/dist/form/field_bindings/ArrayCustomShapedFieldBinding.d.ts +9 -0
  96. package/dist/form/field_bindings/ArrayOfReferencesFieldBinding.d.ts +11 -0
  97. package/dist/form/field_bindings/BlockFieldBinding.d.ts +10 -0
  98. package/dist/form/field_bindings/DateTimeFieldBinding.d.ts +11 -0
  99. package/dist/form/field_bindings/KeyValueFieldBinding.d.ts +7 -0
  100. package/dist/form/field_bindings/MapFieldBinding.d.ts +9 -0
  101. package/dist/form/field_bindings/MarkdownFieldBinding.d.ts +9 -0
  102. package/dist/form/field_bindings/MultiSelectBinding.d.ts +9 -0
  103. package/dist/form/field_bindings/ReadOnlyFieldBinding.d.ts +10 -0
  104. package/dist/form/field_bindings/ReferenceFieldBinding.d.ts +9 -0
  105. package/dist/form/field_bindings/RepeatFieldBinding.d.ts +10 -0
  106. package/dist/form/field_bindings/SelectFieldBinding.d.ts +12 -0
  107. package/dist/form/field_bindings/StorageUploadFieldBinding.d.ts +28 -0
  108. package/dist/form/field_bindings/SwitchFieldBinding.d.ts +12 -0
  109. package/dist/form/field_bindings/TextFieldBinding.d.ts +12 -0
  110. package/dist/form/index.d.ts +20 -0
  111. package/dist/form/useClearRestoreValue.d.ts +13 -0
  112. package/dist/form/validation.d.ts +25 -0
  113. package/dist/hooks/data/delete.d.ts +37 -0
  114. package/dist/hooks/data/save.d.ts +42 -0
  115. package/dist/hooks/data/useCollectionFetch.d.ts +50 -0
  116. package/dist/hooks/data/useDataOrder.d.ts +12 -0
  117. package/dist/hooks/data/useDataSource.d.ts +6 -0
  118. package/dist/hooks/data/useEntityFetch.d.ts +28 -0
  119. package/dist/hooks/index.d.ts +19 -0
  120. package/dist/hooks/useAuthController.d.ts +11 -0
  121. package/dist/hooks/useBrowserTitleAndIcon.d.ts +6 -0
  122. package/dist/hooks/useClipboard.d.ts +57 -0
  123. package/dist/hooks/useDialogsController.d.ts +11 -0
  124. package/dist/hooks/useFireCMSContext.d.ts +12 -0
  125. package/dist/hooks/useLargeLayout.d.ts +1 -0
  126. package/dist/hooks/useModeController.d.ts +20 -0
  127. package/dist/hooks/useNavigationController.d.ts +9 -0
  128. package/dist/hooks/useReferenceDialog.d.ts +18 -0
  129. package/dist/hooks/useResolvedNavigationFrom.d.ts +72 -0
  130. package/dist/hooks/useSideDialogsController.d.ts +18 -0
  131. package/dist/hooks/useSideEntityController.d.ts +12 -0
  132. package/dist/hooks/useSnackbarController.d.ts +41 -0
  133. package/dist/hooks/useStorageSource.d.ts +6 -0
  134. package/dist/hooks/useUserConfigurationPersistence.d.ts +8 -0
  135. package/dist/index.d.ts +8 -0
  136. package/dist/index.es.js +12415 -25618
  137. package/dist/index.es.js.map +1 -1
  138. package/dist/index.umd.js +5 -1027
  139. package/dist/index.umd.js.map +1 -1
  140. package/dist/internal/EntityView.d.ts +22 -0
  141. package/dist/internal/common.d.ts +3 -0
  142. package/dist/internal/useBuildDataSource.d.ts +22 -0
  143. package/dist/internal/useBuildNavigationController.d.ts +14 -0
  144. package/dist/internal/useBuildSideDialogsController.d.ts +2 -0
  145. package/dist/internal/useBuildSideEntityController.d.ts +4 -0
  146. package/dist/internal/useLocaleConfig.d.ts +1 -0
  147. package/dist/internal/useRestoreScroll.d.ts +6 -0
  148. package/dist/internal/useUnsavedChangesDialog.d.ts +14 -0
  149. package/dist/preview/PropertyPreview.d.ts +7 -0
  150. package/dist/preview/PropertyPreviewProps.d.ts +43 -0
  151. package/dist/preview/components/ArrayEnumPreview.d.ts +11 -0
  152. package/dist/preview/components/AsyncPreviewComponent.d.ts +11 -0
  153. package/dist/preview/components/BooleanPreview.d.ts +7 -0
  154. package/dist/preview/components/DatePreview.d.ts +7 -0
  155. package/dist/preview/components/EmptyValue.d.ts +4 -0
  156. package/dist/preview/components/EnumValuesChip.d.ts +13 -0
  157. package/dist/preview/components/ImagePreview.d.ts +12 -0
  158. package/dist/preview/components/ReferencePreview.d.ts +22 -0
  159. package/dist/preview/components/StorageThumbnail.d.ts +13 -0
  160. package/dist/preview/components/UrlComponentPreview.d.ts +12 -0
  161. package/dist/preview/index.d.ts +23 -0
  162. package/dist/preview/property_previews/ArrayOfMapsPreview.d.ts +5 -0
  163. package/dist/preview/property_previews/ArrayOfReferencesPreview.d.ts +5 -0
  164. package/dist/preview/property_previews/ArrayOfStorageComponentsPreview.d.ts +5 -0
  165. package/dist/preview/property_previews/ArrayOfStringsPreview.d.ts +5 -0
  166. package/dist/preview/property_previews/ArrayOneOfPreview.d.ts +5 -0
  167. package/dist/preview/property_previews/ArrayPropertyEnumPreview.d.ts +5 -0
  168. package/dist/preview/property_previews/ArrayPropertyPreview.d.ts +5 -0
  169. package/dist/preview/property_previews/MapPropertyPreview.d.ts +8 -0
  170. package/dist/preview/property_previews/NumberPropertyPreview.d.ts +6 -0
  171. package/dist/preview/property_previews/SkeletonPropertyComponent.d.ts +14 -0
  172. package/dist/preview/property_previews/StringPropertyPreview.d.ts +6 -0
  173. package/dist/preview/util.d.ts +7 -0
  174. package/dist/types/analytics.d.ts +1 -0
  175. package/dist/types/appcheck.d.ts +26 -0
  176. package/dist/types/auth.d.ts +40 -0
  177. package/dist/types/collections.d.ts +451 -0
  178. package/dist/types/datasource.d.ts +262 -0
  179. package/dist/types/dialogs_controller.d.ts +32 -0
  180. package/dist/types/entities.d.ts +57 -0
  181. package/dist/types/entity_actions.d.ts +35 -0
  182. package/dist/types/entity_callbacks.d.ts +171 -0
  183. package/dist/types/entity_link_builder.d.ts +7 -0
  184. package/dist/types/export_import.d.ts +21 -0
  185. package/dist/types/fields.d.ts +181 -0
  186. package/dist/types/firecms.d.ts +151 -0
  187. package/dist/types/firecms_context.d.ts +110 -0
  188. package/dist/types/index.d.ts +26 -0
  189. package/dist/types/local_config_persistence.d.ts +21 -0
  190. package/dist/types/locales.d.ts +4 -0
  191. package/dist/types/modify_collections.d.ts +5 -0
  192. package/dist/types/navigation.d.ts +178 -0
  193. package/dist/types/permissions.d.ts +63 -0
  194. package/dist/types/plugins.d.ts +179 -0
  195. package/dist/types/properties.d.ts +681 -0
  196. package/dist/types/property_config.d.ts +42 -0
  197. package/dist/types/resolved_entities.d.ts +98 -0
  198. package/dist/types/side_dialogs_controller.d.ts +57 -0
  199. package/dist/types/side_entity_controller.d.ts +83 -0
  200. package/dist/types/storage.d.ts +82 -0
  201. package/dist/types/user.d.ts +36 -0
  202. package/dist/util/arrays.d.ts +1 -0
  203. package/dist/util/builders.d.ts +64 -0
  204. package/dist/util/chip_utils.d.ts +3 -0
  205. package/dist/util/collections.d.ts +3 -0
  206. package/dist/util/common.d.ts +2 -0
  207. package/dist/util/dates.d.ts +1 -0
  208. package/dist/util/entities.d.ts +28 -0
  209. package/dist/util/enums.d.ts +7 -0
  210. package/dist/util/flatten_object.d.ts +3 -0
  211. package/dist/util/hash.d.ts +1 -0
  212. package/dist/util/icons.d.ts +4 -0
  213. package/dist/util/index.d.ts +20 -0
  214. package/dist/util/join_collections.d.ts +9 -0
  215. package/dist/util/make_properties_editable.d.ts +3 -0
  216. package/dist/util/navigation_from_path.d.ts +24 -0
  217. package/dist/util/navigation_utils.d.ts +20 -0
  218. package/dist/util/objects.d.ts +10 -0
  219. package/dist/util/os.d.ts +2 -0
  220. package/dist/util/parent_references_from_path.d.ts +6 -0
  221. package/dist/util/paths.d.ts +14 -0
  222. package/dist/util/permissions.d.ts +5 -0
  223. package/dist/util/plurals.d.ts +18 -0
  224. package/dist/util/property_utils.d.ts +23 -0
  225. package/dist/util/references.d.ts +2 -0
  226. package/dist/util/regexp.d.ts +7 -0
  227. package/dist/util/resolutions.d.ts +64 -0
  228. package/dist/util/storage.d.ts +3 -0
  229. package/dist/util/strings.d.ts +6 -0
  230. package/dist/util/useDebounce.d.ts +1 -0
  231. package/dist/util/useStorageUploadController.d.ts +36 -0
  232. package/dist/util/useTraceUpdate.d.ts +1 -0
  233. package/package.json +114 -142
  234. package/src/components/ArrayContainer.tsx +369 -0
  235. package/src/components/CircularProgressCenter.tsx +26 -0
  236. package/src/components/DeleteConfirmationDialog.tsx +47 -0
  237. package/src/components/EntityCollectionTable/EntityCollectionTable.tsx +520 -0
  238. package/src/components/EntityCollectionTable/EntityCollectionTableProps.tsx +150 -0
  239. package/src/components/EntityCollectionTable/fields/TableReferenceField.tsx +159 -0
  240. package/src/components/EntityCollectionTable/fields/TableStorageUpload.tsx +313 -0
  241. package/src/components/EntityCollectionTable/filters/BooleanFilterField.tsx +49 -0
  242. package/src/components/EntityCollectionTable/filters/DateTimeFilterField.tsx +109 -0
  243. package/src/components/EntityCollectionTable/filters/ReferenceFilterField.tsx +187 -0
  244. package/src/components/EntityCollectionTable/filters/StringNumberFilterField.tsx +159 -0
  245. package/src/components/EntityCollectionTable/index.tsx +16 -0
  246. package/src/components/EntityCollectionTable/internal/CollectionTableToolbar.tsx +113 -0
  247. package/src/components/EntityCollectionTable/internal/DeleteEntityDialog.tsx +207 -0
  248. package/src/components/EntityCollectionTable/internal/EntityCollectionRowActions.tsx +174 -0
  249. package/src/components/EntityCollectionTable/internal/EntityTableCell.tsx +264 -0
  250. package/src/components/EntityCollectionTable/internal/EntityTableCellActions.tsx +70 -0
  251. package/src/components/EntityCollectionTable/internal/PropertyTableCell.tsx +460 -0
  252. package/src/components/EntityCollectionTable/internal/common.tsx +70 -0
  253. package/src/components/EntityCollectionTable/internal/default_entity_actions.tsx +122 -0
  254. package/src/components/EntityCollectionTable/internal/popup_field/ElementResizeListener.tsx +59 -0
  255. package/src/components/EntityCollectionTable/internal/popup_field/PopupFormField.tsx +401 -0
  256. package/src/components/EntityCollectionTable/internal/popup_field/useDraggable.tsx +97 -0
  257. package/src/components/EntityCollectionTable/internal/popup_field/useWindowSize.tsx +20 -0
  258. package/src/components/EntityCollectionTable/types.tsx +44 -0
  259. package/src/components/EntityCollectionTable/useDebouncedData.ts +49 -0
  260. package/src/components/EntityCollectionTable/useEntityCollectionTableController.tsx +213 -0
  261. package/src/components/EntityCollectionView/EntityCollectionView.tsx +815 -0
  262. package/src/components/EntityCollectionView/EntityCollectionViewActions.tsx +131 -0
  263. package/src/components/EntityCollectionView/useColumnsIds.tsx +100 -0
  264. package/src/components/EntityPreview.tsx +83 -0
  265. package/src/components/ErrorBoundary.tsx +40 -0
  266. package/src/components/ErrorTooltip.tsx +11 -0
  267. package/src/components/ErrorView.tsx +52 -0
  268. package/src/components/FieldConfigBadge.tsx +17 -0
  269. package/src/components/FireCMSAppBar.tsx +157 -0
  270. package/src/components/FireCMSLogo.tsx +73 -0
  271. package/src/components/HomePage/DefaultHomePage.tsx +209 -0
  272. package/src/components/HomePage/FavouritesView.tsx +64 -0
  273. package/src/components/HomePage/NavigationCollectionCard.tsx +145 -0
  274. package/src/components/HomePage/NavigationGroup.tsx +39 -0
  275. package/src/components/HomePage/index.tsx +3 -0
  276. package/src/components/LabelWithIcon.tsx +33 -0
  277. package/src/components/NotFoundPage.tsx +25 -0
  278. package/src/components/ReferenceSelectionInner.tsx +364 -0
  279. package/src/components/ReferenceWidget.tsx +145 -0
  280. package/src/components/VirtualTable/VirtualTable.tsx +402 -0
  281. package/src/components/VirtualTable/VirtualTableCell.tsx +36 -0
  282. package/src/components/VirtualTable/VirtualTableHeader.tsx +260 -0
  283. package/src/components/VirtualTable/VirtualTableHeaderRow.tsx +131 -0
  284. package/src/components/VirtualTable/VirtualTableProps.tsx +270 -0
  285. package/src/components/VirtualTable/VirtualTableRow.tsx +54 -0
  286. package/src/components/VirtualTable/common.tsx +18 -0
  287. package/src/components/VirtualTable/fields/VirtualTableDateField.tsx +37 -0
  288. package/src/components/VirtualTable/fields/VirtualTableInput.tsx +91 -0
  289. package/src/components/VirtualTable/fields/VirtualTableNumberInput.tsx +82 -0
  290. package/src/components/VirtualTable/fields/VirtualTableSelect.tsx +130 -0
  291. package/src/components/VirtualTable/fields/VirtualTableSwitch.tsx +32 -0
  292. package/src/components/VirtualTable/index.tsx +2 -0
  293. package/src/components/VirtualTable/types.tsx +44 -0
  294. package/src/components/index.tsx +30 -0
  295. package/src/contexts/AuthControllerContext.tsx +4 -0
  296. package/src/contexts/DataSourceContext.tsx +4 -0
  297. package/src/contexts/DialogsProvider.tsx +52 -0
  298. package/src/contexts/ModeController.tsx +13 -0
  299. package/src/contexts/NavigationContext.tsx +4 -0
  300. package/src/contexts/SideDialogsControllerContext.tsx +4 -0
  301. package/src/contexts/SideEntityControllerContext.tsx +4 -0
  302. package/src/contexts/SnackbarProvider.tsx +12 -0
  303. package/src/contexts/StorageSourceContext.tsx +4 -0
  304. package/src/contexts/UserConfigurationPersistenceContext.tsx +4 -0
  305. package/src/contexts/index.ts +3 -0
  306. package/src/core/Drawer.tsx +161 -0
  307. package/src/core/EntitySidePanel.tsx +90 -0
  308. package/src/core/FireCMS.tsx +184 -0
  309. package/src/core/NavigationRoutes.tsx +118 -0
  310. package/src/core/Scaffold.tsx +278 -0
  311. package/src/core/SideDialogs.tsx +156 -0
  312. package/src/core/field_configs.tsx +400 -0
  313. package/src/core/index.tsx +14 -0
  314. package/src/core/useBuildLocalConfigurationPersistence.tsx +67 -0
  315. package/src/core/useBuildModeController.tsx +60 -0
  316. package/src/form/EntityForm.tsx +647 -0
  317. package/src/form/PropertyFieldBinding.tsx +311 -0
  318. package/src/form/components/CustomIdField.tsx +124 -0
  319. package/src/form/components/ErrorFocus.tsx +51 -0
  320. package/src/form/components/FieldHelperText.tsx +58 -0
  321. package/src/form/components/FormikArrayContainer.tsx +44 -0
  322. package/src/form/components/StorageItemPreview.tsx +66 -0
  323. package/src/form/components/StorageUploadProgress.tsx +104 -0
  324. package/src/form/components/SubmitListener.tsx +32 -0
  325. package/src/form/components/SwitchControl.tsx +39 -0
  326. package/src/form/components/index.tsx +3 -0
  327. package/src/form/field_bindings/ArrayCustomShapedFieldBinding.tsx +88 -0
  328. package/src/form/field_bindings/ArrayOfReferencesFieldBinding.tsx +153 -0
  329. package/src/form/field_bindings/BlockFieldBinding.tsx +245 -0
  330. package/src/form/field_bindings/DateTimeFieldBinding.tsx +66 -0
  331. package/src/form/field_bindings/KeyValueFieldBinding.tsx +560 -0
  332. package/src/form/field_bindings/MapFieldBinding.tsx +142 -0
  333. package/src/form/field_bindings/MarkdownFieldBinding.tsx +696 -0
  334. package/src/form/field_bindings/MultiSelectBinding.tsx +115 -0
  335. package/src/form/field_bindings/ReadOnlyFieldBinding.tsx +70 -0
  336. package/src/form/field_bindings/ReferenceFieldBinding.tsx +122 -0
  337. package/src/form/field_bindings/RepeatFieldBinding.tsx +103 -0
  338. package/src/form/field_bindings/SelectFieldBinding.tsx +100 -0
  339. package/src/form/field_bindings/StorageUploadFieldBinding.tsx +438 -0
  340. package/src/form/field_bindings/SwitchFieldBinding.tsx +61 -0
  341. package/src/form/field_bindings/TextFieldBinding.tsx +108 -0
  342. package/src/form/index.tsx +42 -0
  343. package/src/form/useClearRestoreValue.tsx +35 -0
  344. package/src/form/validation.ts +409 -0
  345. package/src/hooks/data/delete.ts +101 -0
  346. package/src/hooks/data/save.ts +165 -0
  347. package/src/hooks/data/useCollectionFetch.tsx +162 -0
  348. package/src/hooks/data/useDataOrder.ts +26 -0
  349. package/src/hooks/data/useDataSource.tsx +9 -0
  350. package/src/hooks/data/useEntityFetch.tsx +129 -0
  351. package/src/hooks/index.tsx +23 -0
  352. package/src/hooks/useAuthController.tsx +14 -0
  353. package/src/hooks/useBrowserTitleAndIcon.tsx +25 -0
  354. package/src/hooks/useClipboard.tsx +158 -0
  355. package/src/hooks/useDialogsController.tsx +14 -0
  356. package/src/hooks/useFireCMSContext.tsx +50 -0
  357. package/src/hooks/useLargeLayout.tsx +34 -0
  358. package/src/hooks/useModeController.tsx +24 -0
  359. package/src/hooks/useNavigationController.tsx +12 -0
  360. package/src/hooks/useReferenceDialog.tsx +56 -0
  361. package/src/hooks/useResolvedNavigationFrom.tsx +160 -0
  362. package/src/hooks/useSideDialogsController.tsx +21 -0
  363. package/src/hooks/useSideEntityController.tsx +15 -0
  364. package/src/hooks/useSnackbarController.tsx +76 -0
  365. package/src/hooks/useStorageSource.tsx +9 -0
  366. package/src/hooks/useUserConfigurationPersistence.tsx +11 -0
  367. package/src/index.ts +8 -0
  368. package/src/internal/EntityView.tsx +576 -0
  369. package/src/internal/common.tsx +5 -0
  370. package/src/internal/useBuildDataSource.ts +360 -0
  371. package/src/internal/useBuildNavigationController.tsx +371 -0
  372. package/src/internal/useBuildSideDialogsController.tsx +125 -0
  373. package/src/internal/useBuildSideEntityController.tsx +160 -0
  374. package/src/internal/useLocaleConfig.tsx +18 -0
  375. package/src/internal/useRestoreScroll.tsx +48 -0
  376. package/src/internal/useUnsavedChangesDialog.tsx +106 -0
  377. package/src/preview/PropertyPreview.tsx +222 -0
  378. package/src/preview/PropertyPreviewProps.tsx +59 -0
  379. package/src/preview/components/ArrayEnumPreview.tsx +39 -0
  380. package/src/preview/components/AsyncPreviewComponent.tsx +47 -0
  381. package/src/preview/components/BooleanPreview.tsx +11 -0
  382. package/src/preview/components/DatePreview.tsx +27 -0
  383. package/src/preview/components/EmptyValue.tsx +10 -0
  384. package/src/preview/components/EnumValuesChip.tsx +38 -0
  385. package/src/preview/components/ImagePreview.tsx +106 -0
  386. package/src/preview/components/ReferencePreview.tsx +249 -0
  387. package/src/preview/components/StorageThumbnail.tsx +84 -0
  388. package/src/preview/components/UrlComponentPreview.tsx +79 -0
  389. package/src/preview/index.ts +27 -0
  390. package/src/preview/property_previews/ArrayOfMapsPreview.tsx +82 -0
  391. package/src/preview/property_previews/ArrayOfReferencesPreview.tsx +52 -0
  392. package/src/preview/property_previews/ArrayOfStorageComponentsPreview.tsx +54 -0
  393. package/src/preview/property_previews/ArrayOfStringsPreview.tsx +55 -0
  394. package/src/preview/property_previews/ArrayOneOfPreview.tsx +67 -0
  395. package/src/preview/property_previews/ArrayPropertyEnumPreview.tsx +28 -0
  396. package/src/preview/property_previews/ArrayPropertyPreview.tsx +68 -0
  397. package/src/preview/property_previews/MapPropertyPreview.tsx +144 -0
  398. package/src/preview/property_previews/NumberPropertyPreview.tsx +27 -0
  399. package/src/preview/property_previews/SkeletonPropertyComponent.tsx +283 -0
  400. package/src/preview/property_previews/StringPropertyPreview.tsx +60 -0
  401. package/src/preview/util.ts +31 -0
  402. package/src/types/analytics.ts +34 -0
  403. package/src/types/appcheck.ts +29 -0
  404. package/src/types/auth.tsx +49 -0
  405. package/src/types/collections.ts +530 -0
  406. package/src/types/datasource.ts +389 -0
  407. package/src/types/dialogs_controller.tsx +33 -0
  408. package/src/types/entities.ts +76 -0
  409. package/src/types/entity_actions.tsx +39 -0
  410. package/src/types/entity_callbacks.ts +209 -0
  411. package/src/types/entity_link_builder.ts +8 -0
  412. package/src/types/export_import.ts +26 -0
  413. package/src/types/fields.tsx +220 -0
  414. package/src/types/firecms.tsx +175 -0
  415. package/src/types/firecms_context.tsx +128 -0
  416. package/src/types/index.ts +26 -0
  417. package/src/types/local_config_persistence.tsx +23 -0
  418. package/src/types/locales.ts +81 -0
  419. package/src/types/modify_collections.tsx +6 -0
  420. package/src/types/navigation.ts +214 -0
  421. package/src/types/permissions.ts +76 -0
  422. package/src/types/plugins.tsx +217 -0
  423. package/src/types/properties.ts +851 -0
  424. package/src/types/property_config.tsx +72 -0
  425. package/src/types/resolved_entities.ts +148 -0
  426. package/src/types/side_dialogs_controller.tsx +68 -0
  427. package/src/types/side_entity_controller.tsx +96 -0
  428. package/src/types/storage.ts +96 -0
  429. package/src/types/user.ts +37 -0
  430. package/src/util/arrays.ts +3 -0
  431. package/src/util/builders.ts +139 -0
  432. package/src/util/chip_utils.ts +13 -0
  433. package/src/util/collections.ts +50 -0
  434. package/src/util/common.tsx +2 -0
  435. package/src/util/dates.ts +1 -0
  436. package/src/util/entities.ts +196 -0
  437. package/src/util/enums.ts +57 -0
  438. package/src/util/flatten_object.ts +45 -0
  439. package/src/util/hash.ts +11 -0
  440. package/src/util/icons.tsx +45 -0
  441. package/src/util/index.ts +20 -0
  442. package/src/util/join_collections.ts +172 -0
  443. package/src/util/make_properties_editable.ts +29 -0
  444. package/src/util/navigation_from_path.ts +107 -0
  445. package/src/util/navigation_utils.ts +111 -0
  446. package/src/util/objects.ts +168 -0
  447. package/src/util/os.ts +13 -0
  448. package/src/util/parent_references_from_path.ts +56 -0
  449. package/src/util/paths.ts +27 -0
  450. package/src/util/permissions.ts +80 -0
  451. package/src/util/plurals.ts +190 -0
  452. package/src/util/property_utils.tsx +130 -0
  453. package/src/util/references.ts +20 -0
  454. package/src/util/regexp.ts +32 -0
  455. package/src/util/resolutions.ts +399 -0
  456. package/src/util/storage.ts +92 -0
  457. package/src/util/strings.ts +62 -0
  458. package/src/util/useDebounce.ts +25 -0
  459. package/src/util/useStorageUploadController.tsx +243 -0
  460. package/src/util/useTraceUpdate.tsx +23 -0
@@ -0,0 +1,815 @@
1
+ import React, { useCallback, useEffect, useMemo, useState } from "react";
2
+
3
+ import equal from "react-fast-compare"
4
+
5
+ import {
6
+ AdditionalFieldDelegate,
7
+ CollectionSize,
8
+ Entity,
9
+ EntityAction,
10
+ EntityCollection,
11
+ FilterValues,
12
+ PartialEntityCollection,
13
+ PropertyOrBuilder,
14
+ ResolvedProperty,
15
+ SaveEntityProps,
16
+ SelectionController
17
+ } from "../../types";
18
+ import {
19
+ EntityCollectionTable,
20
+ OnCellValueChange,
21
+ OnColumnResizeParams,
22
+ UniqueFieldValidator
23
+ } from "../EntityCollectionTable";
24
+
25
+ import { EntityCollectionRowActions } from "../EntityCollectionTable/internal/EntityCollectionRowActions";
26
+ import { DeleteEntityDialog } from "../EntityCollectionTable/internal/DeleteEntityDialog";
27
+
28
+ import {
29
+ canCreateEntity,
30
+ canDeleteEntity,
31
+ canEditEntity,
32
+ fullPathToCollectionSegments,
33
+ getPropertyInPath,
34
+ mergeDeep,
35
+ resolveCollection,
36
+ resolveProperty
37
+ } from "../../util";
38
+ import { ReferencePreview } from "../../preview";
39
+ import {
40
+ saveEntityWithCallbacks,
41
+ useAuthController,
42
+ useDataSource,
43
+ useFireCMSContext,
44
+ useLargeLayout,
45
+ useNavigationController,
46
+ useSideEntityController
47
+ } from "../../hooks";
48
+ import { useUserConfigurationPersistence } from "../../hooks/useUserConfigurationPersistence";
49
+ import { EntityCollectionViewActions } from "./EntityCollectionViewActions";
50
+ import { useEntityCollectionTableController } from "../EntityCollectionTable/useEntityCollectionTableController";
51
+ import {
52
+ AddIcon,
53
+ Button,
54
+ cn,
55
+ IconButton,
56
+ KeyboardTabIcon,
57
+ Markdown,
58
+ Popover,
59
+ SearchIcon,
60
+ Skeleton,
61
+ TextField,
62
+ Tooltip,
63
+ Typography
64
+ } from "@firecms/ui";
65
+ import { setIn } from "formik";
66
+ import { getSubcollectionColumnId } from "../EntityCollectionTable/internal/common";
67
+ import { useColumnIds } from "./useColumnsIds";
68
+ import { PopupFormField } from "../EntityCollectionTable/internal/popup_field/PopupFormField";
69
+ import { GetPropertyForProps } from "../EntityCollectionTable/EntityCollectionTableProps";
70
+ import {
71
+ copyEntityAction,
72
+ deleteEntityAction,
73
+ editEntityAction
74
+ } from "../EntityCollectionTable/internal/default_entity_actions";
75
+
76
+ const COLLECTION_GROUP_PARENT_ID = "collectionGroupParent";
77
+
78
+ /**
79
+ * @group Components
80
+ */
81
+ export type EntityCollectionViewProps<M extends Record<string, any>> = {
82
+ fullPath: string;
83
+ parentCollectionIds?: string[];
84
+ isSubCollection?: boolean;
85
+ className?: string;
86
+ } & EntityCollection<M>;
87
+
88
+ /**
89
+ * This component is in charge of binding a datasource path with an {@link EntityCollection}
90
+ * where it's configuration is defined. It includes an infinite scrolling table
91
+ * and a 'Add' new entities button,
92
+ *
93
+ * This component is the default one used for displaying entity collections
94
+ * and is in charge of generating all the specific actions and customization
95
+ * of the lower level {@link EntityCollectionTable}
96
+ *
97
+ * Please **note** that you only need to use this component if you are building
98
+ * a custom view. If you just need to create a default view you can do it
99
+ * exclusively with config options.
100
+ *
101
+ * If you need a lower level implementation with more granular options, you
102
+ * can use {@link EntityCollectionTable}.
103
+ *
104
+ * If you need a generic table that is not bound to the datasource or entities and
105
+ * properties at all, you can check {@link VirtualTable}
106
+ *
107
+ * @param fullPath
108
+ * @param collection
109
+ * @constructor
110
+ * @group Components
111
+ */
112
+ export const EntityCollectionView = React.memo(
113
+ function EntityCollectionView<M extends Record<string, any>>({
114
+ fullPath,
115
+ parentCollectionIds,
116
+ isSubCollection,
117
+ className,
118
+ ...collectionProp
119
+ }: EntityCollectionViewProps<M>
120
+ ) {
121
+
122
+ const dataSource = useDataSource();
123
+ const navigation = useNavigationController();
124
+ const sideEntityController = useSideEntityController();
125
+ const authController = useAuthController();
126
+ const userConfigPersistence = useUserConfigurationPersistence();
127
+ const context = useFireCMSContext();
128
+
129
+ const containerRef = React.useRef<HTMLDivElement>(null);
130
+
131
+ const collection = useMemo(() => {
132
+ const userOverride = userConfigPersistence?.getCollectionConfig<M>(fullPath);
133
+ return (userOverride ? mergeDeep(collectionProp, userOverride) : collectionProp) as EntityCollection<M>;
134
+ }, [collectionProp, fullPath, userConfigPersistence?.getCollectionConfig]);
135
+
136
+ const canCreateEntities = canCreateEntity(collection, authController, fullPathToCollectionSegments(fullPath), null);
137
+ const [selectedNavigationEntity, setSelectedNavigationEntity] = useState<Entity<M> | undefined>(undefined);
138
+ const [deleteEntityClicked, setDeleteEntityClicked] = React.useState<Entity<M> | Entity<M>[] | undefined>(undefined);
139
+
140
+ const [textSearchLoading, setTextSearchLoading] = useState<boolean>(false);
141
+ const [lastDeleteTimestamp, setLastDeleteTimestamp] = React.useState<number>(0);
142
+
143
+ // number of entities in the collection
144
+ const [docsCount, setDocsCount] = useState<number>(0);
145
+
146
+ const unselectNavigatedEntity = useCallback(() => {
147
+ const currentSelection = selectedNavigationEntity;
148
+ setTimeout(() => {
149
+ if (currentSelection === selectedNavigationEntity)
150
+ setSelectedNavigationEntity(undefined);
151
+ }, 2400);
152
+ }, [selectedNavigationEntity]);
153
+
154
+ const checkInlineEditing = useCallback((entity?: Entity<any>): boolean => {
155
+ if (!canEditEntity(collection, authController, fullPathToCollectionSegments(fullPath), entity ?? null)) {
156
+ return false;
157
+ }
158
+ return collection.inlineEditing === undefined || collection.inlineEditing;
159
+ }, [collection, authController, fullPath]);
160
+
161
+ const selectionEnabled = collection.selectionEnabled === undefined || collection.selectionEnabled;
162
+ const hoverRow = !checkInlineEditing();
163
+
164
+ const [popOverOpen, setPopOverOpen] = useState(false);
165
+
166
+ const selectionController = useSelectionController<M>();
167
+ const usedSelectionController = collection.selectionController ?? selectionController;
168
+ const {
169
+ selectedEntities,
170
+ toggleEntitySelection,
171
+ isEntitySelected,
172
+ setSelectedEntities
173
+ } = usedSelectionController;
174
+
175
+ useEffect(() => {
176
+ setDeleteEntityClicked(undefined);
177
+ }, [selectedEntities]);
178
+
179
+ const tableController = useEntityCollectionTableController<M>({
180
+ fullPath,
181
+ collection,
182
+ entitiesDisplayedFirst: [],
183
+ lastDeleteTimestamp
184
+ });
185
+
186
+ const tableKey = React.useRef<string>(Math.random().toString(36));
187
+ const popupCell = tableController.popupCell;
188
+
189
+ const onPopupClose = useCallback(() => {
190
+ tableController.setPopupCell?.(undefined);
191
+ }, [tableController.setPopupCell]);
192
+
193
+ const onEntityClick = useCallback((clickedEntity: Entity<M>) => {
194
+ setSelectedNavigationEntity(clickedEntity);
195
+ context.onAnalyticsEvent?.("edit_entity_clicked", {
196
+ path: clickedEntity.path,
197
+ entityId: clickedEntity.id
198
+ });
199
+ return sideEntityController.open({
200
+ entityId: clickedEntity.id,
201
+ path: clickedEntity.path,
202
+ collection,
203
+ updateUrl: true,
204
+ onClose: unselectNavigatedEntity
205
+ });
206
+ }, [fullPath, collection, sideEntityController]);
207
+
208
+ const onNewClick = useCallback(() => {
209
+ context.onAnalyticsEvent?.("new_entity_click", {
210
+ path: fullPath
211
+ });
212
+ sideEntityController.open({
213
+ path: fullPath,
214
+ collection,
215
+ updateUrl: true,
216
+ onClose: unselectNavigatedEntity
217
+ });
218
+ }, [fullPath, collection, sideEntityController]);
219
+
220
+ const onSingleDeleteClick = useCallback((selectedEntity: Entity<any>) => {
221
+ context.onAnalyticsEvent?.("single_delete_dialog_open", {
222
+ path: fullPath
223
+ });
224
+ setDeleteEntityClicked(selectedEntity);
225
+ }, [context, fullPath]);
226
+
227
+ const onMultipleDeleteClick = useCallback(() => {
228
+ context.onAnalyticsEvent?.("multiple_delete_dialog_open", {
229
+ path: fullPath
230
+ });
231
+ setDeleteEntityClicked(selectedEntities);
232
+ }, [context, fullPath, selectedEntities]);
233
+
234
+ const internalOnEntityDelete = useCallback((_path: string, entity: Entity<M>) => {
235
+ context.onAnalyticsEvent?.("single_entity_deleted", {
236
+ path: fullPath
237
+ });
238
+ setSelectedEntities((selectedEntities) => selectedEntities.filter((e) => e.id !== entity.id));
239
+ setLastDeleteTimestamp(Date.now());
240
+ }, [context, fullPath, setSelectedEntities]);
241
+
242
+ const internalOnMultipleEntitiesDelete = useCallback((_path: string, entities: Entity<M>[]) => {
243
+ context.onAnalyticsEvent?.("multiple_entities_deleted", {
244
+ path: fullPath
245
+ });
246
+ setSelectedEntities([]);
247
+ setDeleteEntityClicked(undefined);
248
+ setLastDeleteTimestamp(Date.now());
249
+ }, [setSelectedEntities]);
250
+
251
+ let AddColumnComponent: React.ComponentType<{
252
+ fullPath: string,
253
+ parentCollectionIds: string[],
254
+ collection: EntityCollection;
255
+ }> | undefined
256
+
257
+ // we are only using the first plugin that implements this
258
+ if (context?.plugins) {
259
+ AddColumnComponent = context.plugins.find(plugin => plugin.collectionView?.AddColumnComponent)?.collectionView?.AddColumnComponent;
260
+ }
261
+
262
+ const onCollectionModifiedForUser = useCallback((path: string, partialCollection: PartialEntityCollection<M>) => {
263
+ if (userConfigPersistence) {
264
+ const currentStoredConfig = userConfigPersistence.getCollectionConfig(path);
265
+ const updatedConfig = mergeDeep(currentStoredConfig, partialCollection);
266
+ userConfigPersistence.onCollectionModified(path, updatedConfig);
267
+ }
268
+ }, [userConfigPersistence]);
269
+
270
+ const onColumnResize = useCallback(({
271
+ width,
272
+ key
273
+ }: OnColumnResizeParams) => {
274
+ // Only for property columns
275
+ if (!getPropertyInPath(collection.properties, key)) return;
276
+ const localCollection = buildPropertyWidthOverwrite(key, width);
277
+ onCollectionModifiedForUser(fullPath, localCollection);
278
+ }, [collection, onCollectionModifiedForUser, fullPath]);
279
+
280
+ const onSizeChanged = useCallback((size: CollectionSize) => {
281
+ if (userConfigPersistence)
282
+ onCollectionModifiedForUser(fullPath, { defaultSize: size })
283
+ }, [onCollectionModifiedForUser, fullPath, userConfigPersistence]);
284
+
285
+ const createEnabled = canCreateEntity(collection, authController, fullPathToCollectionSegments(fullPath), null);
286
+
287
+ const uniqueFieldValidator: UniqueFieldValidator = useCallback(
288
+ ({
289
+ name,
290
+ value,
291
+ property,
292
+ entityId
293
+ }) => dataSource.checkUniqueField(fullPath, name, value, entityId),
294
+ [fullPath]);
295
+
296
+ const onValueChange: OnCellValueChange<any, any> = ({
297
+ fullPath,
298
+ context,
299
+ value,
300
+ propertyKey,
301
+ onValueUpdated,
302
+ setError,
303
+ entity,
304
+ }) => {
305
+
306
+ const updatedValues = setIn({ ...entity.values }, propertyKey, value);
307
+
308
+ const saveProps: SaveEntityProps = {
309
+ path: fullPath,
310
+ entityId: entity.id,
311
+ values: updatedValues,
312
+ previousValues: entity.values,
313
+ collection,
314
+ status: "existing"
315
+ };
316
+
317
+ return saveEntityWithCallbacks({
318
+ ...saveProps,
319
+ collection,
320
+ callbacks: collection.callbacks,
321
+ dataSource,
322
+ context,
323
+ onSaveSuccess: () => onValueUpdated(),
324
+ onSaveFailure: (e: Error) => {
325
+ console.error("Save failure");
326
+ console.error(e);
327
+ setError(e);
328
+ }
329
+ });
330
+
331
+ };
332
+
333
+ const resolvedFullPath = navigation.resolveAliasesFrom(fullPath);
334
+ const resolvedCollection = useMemo(() => resolveCollection<M>({
335
+ collection,
336
+ path: fullPath,
337
+ fields: context.propertyConfigs
338
+ }), [collection, fullPath]);
339
+
340
+ const getPropertyFor = useCallback(({
341
+ propertyKey,
342
+ propertyValue,
343
+ entity
344
+ }: GetPropertyForProps<M>) => {
345
+ let propertyOrBuilder: PropertyOrBuilder<any, M> | undefined = getPropertyInPath<M>(collection.properties, propertyKey);
346
+
347
+ // we might not find the property in the collection if combining property builders and map spread
348
+ if (!propertyOrBuilder) {
349
+ // these 2 properties are coming from the resolved collection with default values
350
+ propertyOrBuilder = getPropertyInPath<M>(resolvedCollection.properties, propertyKey);
351
+ }
352
+
353
+ return resolveProperty({
354
+ propertyKey,
355
+ propertyOrBuilder,
356
+ path: fullPath,
357
+ propertyValue,
358
+ values: entity.values,
359
+ entityId: entity.id,
360
+ fields: context.propertyConfigs
361
+ });
362
+ }, [collection.properties, context.propertyConfigs, fullPath, resolvedCollection.properties]);
363
+
364
+ const displayedColumnIds = useColumnIds(resolvedCollection, true);
365
+
366
+ const additionalFields = useMemo(() => {
367
+ const subcollectionColumns: AdditionalFieldDelegate<M, any>[] = collection.subcollections?.map((subcollection) => {
368
+ return {
369
+ key: getSubcollectionColumnId(subcollection),
370
+ name: subcollection.name,
371
+ width: 200,
372
+ dependencies: [],
373
+ Builder: ({ entity }) => (
374
+ <Button color={"primary"}
375
+ variant={"outlined"}
376
+ startIcon={<KeyboardTabIcon size={"small"}/>}
377
+ onClick={(event: any) => {
378
+ event.stopPropagation();
379
+ sideEntityController.open({
380
+ path: fullPath,
381
+ entityId: entity.id,
382
+ selectedSubPath: subcollection.id ?? subcollection.path,
383
+ collection,
384
+ updateUrl: true
385
+ });
386
+ }}>
387
+ {subcollection.name}
388
+ </Button>
389
+ )
390
+ };
391
+ }) ?? [];
392
+
393
+ const collectionGroupParentCollections: AdditionalFieldDelegate<M, any>[] = collection.collectionGroup
394
+ ? [{
395
+ key: COLLECTION_GROUP_PARENT_ID,
396
+ name: "Parent entities",
397
+ width: 260,
398
+ dependencies: [],
399
+ Builder: ({ entity }) => {
400
+ const collectionsWithPath = navigation.getParentReferencesFromPath(entity.path);
401
+ return (
402
+ <>
403
+ {collectionsWithPath.map((reference) => {
404
+ return (
405
+ <ReferencePreview
406
+ key={reference.path + "/" + reference.id}
407
+ reference={reference}
408
+ size={"tiny"}/>
409
+ );
410
+ })}
411
+ </>
412
+ );
413
+ }
414
+ }]
415
+ : [];
416
+
417
+ return [
418
+ ...(collection.additionalFields ?? []),
419
+ ...subcollectionColumns,
420
+ ...collectionGroupParentCollections
421
+ ];
422
+ }, [collection, fullPath]);
423
+
424
+ const updateLastDeleteTimestamp = useCallback(() => {
425
+ setLastDeleteTimestamp(Date.now());
426
+ }, []);
427
+
428
+ const largeLayout = useLargeLayout();
429
+
430
+ const getActionsForEntity = useCallback(({ entity, customEntityActions }: {
431
+ entity?: Entity<M>,
432
+ customEntityActions?: EntityAction[]
433
+ }): EntityAction[] => {
434
+ const deleteEnabled = entity ? canDeleteEntity(collection, authController, fullPathToCollectionSegments(fullPath), entity) : true;
435
+ const actions: EntityAction[] = [editEntityAction];
436
+ if (createEnabled)
437
+ actions.push(copyEntityAction);
438
+ if (deleteEnabled)
439
+ actions.push(deleteEntityAction);
440
+ if (customEntityActions)
441
+ actions.push(...customEntityActions);
442
+ return actions;
443
+ }, [authController, collection, createEnabled, fullPath]);
444
+
445
+ const getIdColumnWidth = useCallback(() => {
446
+ const entityActions = getActionsForEntity({});
447
+ const collapsedActions = entityActions.filter(a => a.collapsed !== false);
448
+ const uncollapsedActions = entityActions.filter(a => a.collapsed === false);
449
+ const actionsWidth = uncollapsedActions.length * (largeLayout ? 40 : 30);
450
+ return (largeLayout ? (80 + actionsWidth) : (70 + actionsWidth)) + (collapsedActions.length > 0 ? (largeLayout ? 40 : 30) : 0);
451
+ }, [largeLayout, getActionsForEntity]);
452
+
453
+ const tableRowActionsBuilder = useCallback(({
454
+ entity,
455
+ size,
456
+ width,
457
+ frozen
458
+ }: {
459
+ entity: Entity<any>,
460
+ size: CollectionSize,
461
+ width: number,
462
+ frozen?: boolean
463
+ }) => {
464
+
465
+ const isSelected = isEntitySelected(entity);
466
+
467
+ const actions = getActionsForEntity({ entity, customEntityActions: collection.entityActions });
468
+
469
+ return (
470
+ <EntityCollectionRowActions
471
+ entity={entity}
472
+ width={width}
473
+ frozen={frozen}
474
+ isSelected={isSelected}
475
+ selectionEnabled={selectionEnabled}
476
+ size={size}
477
+ highlightEntity={setSelectedNavigationEntity}
478
+ unhighlightEntity={unselectNavigatedEntity}
479
+ collection={collection}
480
+ fullPath={fullPath}
481
+ actions={actions}
482
+ hideId={collection?.hideIdFromCollection}
483
+ onCollectionChange={updateLastDeleteTimestamp}
484
+ selectionController={usedSelectionController}
485
+ />
486
+ );
487
+
488
+ }, [isEntitySelected, collection, authController, fullPath, selectionEnabled, toggleEntitySelection, createEnabled]);
489
+
490
+ const title = <Popover
491
+ open={popOverOpen}
492
+ onOpenChange={setPopOverOpen}
493
+ enabled={Boolean(collection.description)}
494
+ trigger={<div className="flex flex-col items-start">
495
+ <Typography
496
+ variant={"subtitle1"}
497
+ className={`leading-none truncate max-w-[160px] lg:max-w-[240px] ${collection.description ? "cursor-pointer" : "cursor-auto"}`}
498
+ onClick={collection.description
499
+ ? (e) => {
500
+ setPopOverOpen(true);
501
+ e.stopPropagation();
502
+ }
503
+ : undefined}
504
+ >
505
+ {`${collection.name}`}
506
+ </Typography>
507
+
508
+ <EntitiesCount
509
+ fullPath={fullPath}
510
+ collection={collection}
511
+ filter={tableController.filterValues}
512
+ sortBy={tableController.sortBy}
513
+ onCountChange={setDocsCount}
514
+ />
515
+
516
+ </div>}
517
+ >
518
+
519
+ {collection.description && <div className="m-4 text-gray-900 dark:text-white">
520
+ <Markdown source={collection.description}/>
521
+ </div>}
522
+
523
+ </Popover>;
524
+
525
+ function buildAdditionalHeaderWidget({
526
+ property,
527
+ propertyKey,
528
+ onHover
529
+ }: {
530
+ property: ResolvedProperty,
531
+ propertyKey: string,
532
+ onHover: boolean
533
+ }) {
534
+ if (!context.plugins)
535
+ return null;
536
+ return <>
537
+ {context.plugins.filter(plugin => plugin.collectionView?.HeaderAction)
538
+ .map((plugin, i) => {
539
+ const HeaderAction = plugin.collectionView!.HeaderAction!;
540
+ return <HeaderAction
541
+ onHover={onHover}
542
+ key={`plugin_header_action_${i}`}
543
+ propertyKey={propertyKey}
544
+ property={property}
545
+ fullPath={fullPath}
546
+ collection={collection}
547
+ parentCollectionIds={parentCollectionIds ?? []}/>;
548
+ })}
549
+ </>;
550
+ }
551
+
552
+ const addColumnComponentInternal = AddColumnComponent
553
+ ? function () {
554
+ if (typeof AddColumnComponent === "function")
555
+ return <AddColumnComponent fullPath={fullPath}
556
+ parentCollectionIds={parentCollectionIds ?? []}
557
+ collection={collection}/>;
558
+ return null;
559
+ }
560
+ : undefined;
561
+
562
+ const [textSearchInitialised, setTextSearchInitialised] = useState<boolean>(false);
563
+ let onTextSearchClick: (() => void) | undefined;
564
+ let textSearchEnabled = Boolean(collection.textSearchEnabled);
565
+ if (context?.plugins) {
566
+ const addTextSearchClickListener = context.plugins?.find(p => Boolean(p.collectionView?.onTextSearchClick));
567
+
568
+ onTextSearchClick = addTextSearchClickListener
569
+ ? () => {
570
+ setTextSearchLoading(true);
571
+ Promise.all(context.plugins?.map(p => {
572
+ if (p.collectionView?.onTextSearchClick)
573
+ return p.collectionView.onTextSearchClick({ context, path: resolvedFullPath, collection });
574
+ return Promise.resolve(true);
575
+ }) as Promise<boolean>[])
576
+ .then((res) => {
577
+ if (res.every(Boolean)) setTextSearchInitialised(true);
578
+ })
579
+ .finally(() => setTextSearchLoading(false));
580
+ }
581
+ : undefined;
582
+
583
+ context.plugins?.forEach(p => {
584
+ if (!textSearchEnabled)
585
+ if (p.collectionView?.showTextSearchBar) {
586
+ textSearchEnabled = p.collectionView.showTextSearchBar({ context, path: resolvedFullPath, collection });
587
+ }
588
+ })
589
+ }
590
+
591
+ return (
592
+ <div className={cn("overflow-hidden h-full w-full", className)}
593
+ ref={containerRef}>
594
+ <EntityCollectionTable
595
+ key={`collection_table_${fullPath}`}
596
+ additionalFields={additionalFields}
597
+ tableController={tableController}
598
+ displayedColumnIds={displayedColumnIds}
599
+ onSizeChanged={onSizeChanged}
600
+ onEntityClick={onEntityClick}
601
+ onColumnResize={onColumnResize}
602
+ onValueChange={onValueChange}
603
+ tableRowActionsBuilder={tableRowActionsBuilder}
604
+ uniqueFieldValidator={uniqueFieldValidator}
605
+ title={title}
606
+ selectionController={usedSelectionController}
607
+ highlightedEntities={selectedNavigationEntity ? [selectedNavigationEntity] : []}
608
+ defaultSize={collection.defaultSize}
609
+ properties={resolvedCollection.properties}
610
+ getPropertyFor={getPropertyFor}
611
+ onTextSearchClick={textSearchInitialised ? undefined : onTextSearchClick}
612
+ textSearchLoading={textSearchLoading}
613
+ textSearchEnabled={textSearchEnabled}
614
+ actions={<EntityCollectionViewActions
615
+ parentCollectionIds={parentCollectionIds ?? []}
616
+ collection={collection}
617
+ tableController={tableController}
618
+ onMultipleDeleteClick={onMultipleDeleteClick}
619
+ onNewClick={onNewClick}
620
+ path={fullPath}
621
+ relativePath={collection.path}
622
+ selectionController={usedSelectionController}
623
+ selectionEnabled={selectionEnabled}
624
+ collectionEntitiesCount={docsCount}
625
+ />}
626
+ emptyComponent={canCreateEntities && tableController.filterValues === undefined && tableController.sortBy === undefined
627
+ ? <div className="flex flex-col items-center justify-center">
628
+ <Typography variant={"subtitle2"}>So empty...</Typography>
629
+ <Button
630
+ color={"primary"}
631
+ variant={"outlined"}
632
+ onClick={onNewClick}
633
+ className="mt-4"
634
+ >
635
+ <AddIcon/>
636
+ Create your first entity
637
+ </Button>
638
+ </div>
639
+ : <Typography variant={"label"}>No results with the applied filter/sort</Typography>
640
+ }
641
+ hoverRow={hoverRow}
642
+ inlineEditing={checkInlineEditing()}
643
+ AdditionalHeaderWidget={buildAdditionalHeaderWidget}
644
+ AddColumnComponent={addColumnComponentInternal}
645
+ getIdColumnWidth={getIdColumnWidth}
646
+ additionalIDHeaderWidget={<EntityIdHeaderWidget
647
+ path={fullPath}
648
+ collection={collection}/>}
649
+ />
650
+
651
+ <PopupFormField
652
+ key={`popup_form_${popupCell?.propertyKey}_${popupCell?.entity?.id}`}
653
+ open={Boolean(popupCell)}
654
+ onClose={onPopupClose}
655
+ cellRect={popupCell?.cellRect}
656
+ propertyKey={popupCell?.propertyKey}
657
+ collection={collection}
658
+ entity={popupCell?.entity}
659
+ tableKey={tableKey.current}
660
+ customFieldValidator={uniqueFieldValidator}
661
+ path={resolvedFullPath}
662
+ onCellValueChange={onValueChange}
663
+ container={containerRef.current}/>
664
+
665
+ {deleteEntityClicked &&
666
+ <DeleteEntityDialog
667
+ entityOrEntitiesToDelete={deleteEntityClicked}
668
+ path={fullPath}
669
+ collection={collection}
670
+ callbacks={collection.callbacks}
671
+ open={Boolean(deleteEntityClicked)}
672
+ onEntityDelete={internalOnEntityDelete}
673
+ onMultipleEntitiesDelete={internalOnMultipleEntitiesDelete}
674
+ onClose={() => setDeleteEntityClicked(undefined)}/>}
675
+
676
+ </div>
677
+ );
678
+ }, equal) as React.FunctionComponent<EntityCollectionViewProps<any>>
679
+
680
+ export function useSelectionController<M extends Record<string, any>>(): SelectionController<M> {
681
+
682
+ const [selectedEntities, setSelectedEntities] = useState<Entity<M>[]>([]);
683
+
684
+ const toggleEntitySelection = useCallback((entity: Entity<M>) => {
685
+ let newValue;
686
+ if (selectedEntities.map(e => e.id).includes(entity.id)) {
687
+ newValue = selectedEntities.filter((item: Entity<M>) => item.id !== entity.id);
688
+ } else {
689
+ newValue = [...selectedEntities, entity];
690
+ }
691
+ setSelectedEntities(newValue);
692
+ }, [selectedEntities]);
693
+
694
+ const isEntitySelected = useCallback((entity: Entity<M>) => selectedEntities.map(e => e.id).includes(entity.id), [selectedEntities]);
695
+
696
+ return {
697
+ selectedEntities,
698
+ setSelectedEntities,
699
+ isEntitySelected,
700
+ toggleEntitySelection
701
+ };
702
+ }
703
+
704
+ function EntitiesCount({
705
+ fullPath,
706
+ collection,
707
+ filter,
708
+ sortBy,
709
+ onCountChange
710
+ }: {
711
+ fullPath: string,
712
+ collection: EntityCollection,
713
+ filter?: FilterValues<any>,
714
+ sortBy?: [string, "asc" | "desc"],
715
+ onCountChange?: (count: number) => void,
716
+ }) {
717
+
718
+ const dataSource = useDataSource();
719
+ const navigation = useNavigationController();
720
+ const [count, setCount] = useState<number | undefined>(undefined);
721
+ const [error, setError] = useState<Error | undefined>(undefined);
722
+
723
+ const sortByProperty = sortBy ? sortBy[0] : undefined;
724
+ const currentSort = sortBy ? sortBy[1] : undefined;
725
+ const resolvedPath = useMemo(() => navigation.resolveAliasesFrom(fullPath), [fullPath, navigation.resolveAliasesFrom]);
726
+
727
+ useEffect(() => {
728
+ dataSource.countEntities({
729
+ path: resolvedPath,
730
+ collection,
731
+ filter,
732
+ orderBy: sortByProperty,
733
+ order: currentSort
734
+ }).then(setCount).catch(setError);
735
+ }, [fullPath, dataSource, resolvedPath, collection, filter, sortByProperty, currentSort]);
736
+
737
+ useEffect(() => {
738
+ if (onCountChange) {
739
+ onCountChange(count ?? 0);
740
+ }
741
+ }, [onCountChange, count]);
742
+
743
+ if (error) {
744
+ return null;
745
+ }
746
+
747
+ return <Typography
748
+ className="w-full text-ellipsis block overflow-hidden whitespace-nowrap max-w-xs text-left w-fit-content"
749
+ variant={"caption"}
750
+ color={"secondary"}>
751
+ {count !== undefined ? `${count} entities` : <Skeleton className={"w-full max-w-[80px] mt-1"}/>}
752
+ </Typography>;
753
+ }
754
+
755
+ function buildPropertyWidthOverwrite(key: string, width: number): PartialEntityCollection {
756
+ if (key.includes(".")) {
757
+ const [parentKey, ...childKey] = key.split(".");
758
+ return { properties: { [parentKey]: buildPropertyWidthOverwrite(childKey.join("."), width) } } as PartialEntityCollection;
759
+ }
760
+ return { properties: { [key]: { columnWidth: width } } } as PartialEntityCollection;
761
+ }
762
+
763
+ function EntityIdHeaderWidget({
764
+ collection,
765
+ path
766
+ }: {
767
+ collection: EntityCollection,
768
+ path: string
769
+ }) {
770
+ const [openPopup, setOpenPopup] = React.useState(false);
771
+ const [searchString, setSearchString] = React.useState("");
772
+ const sideEntityController = useSideEntityController();
773
+ return (
774
+ <Tooltip title={!openPopup ? "Find by ID" : undefined}>
775
+ <Popover
776
+ open={openPopup}
777
+ onOpenChange={setOpenPopup}
778
+ trigger={
779
+ <IconButton size={"small"}>
780
+ <SearchIcon size={"small"}/>
781
+ </IconButton>
782
+ }
783
+ >
784
+ <form noValidate={true}
785
+ onSubmit={(e) => {
786
+ e.preventDefault();
787
+ if (!searchString) return;
788
+ setOpenPopup(false);
789
+ return sideEntityController.open({
790
+ entityId: searchString,
791
+ path,
792
+ collection,
793
+ updateUrl: true
794
+ });
795
+ }}
796
+ className={"text-gray-900 dark:text-white w-96 max-w-full"}>
797
+
798
+ <div className="flex p-4 w-full gap-4">
799
+ <TextField
800
+ placeholder={"Find entity by ID"}
801
+ size={"small"}
802
+ onChange={(e) => setSearchString(e.target.value)}
803
+ value={searchString}
804
+ className={"flex-grow"}/>
805
+ <Button variant={"outlined"}
806
+ disabled={!searchString}
807
+ type={"submit"}
808
+ >Go</Button>
809
+ </div>
810
+ </form>
811
+ </Popover>
812
+
813
+ </Tooltip>
814
+ );
815
+ }