@firecms/core 3.0.0-3.0.0-beta.4.pre.1.0

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