@firecms/core 3.0.0-alpha.8 → 3.0.0-alpha.80
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.
- package/README.md +1 -1
- package/dist/components/ArrayContainer.d.ts +42 -0
- package/dist/components/CircularProgressCenter.d.ts +11 -0
- package/dist/components/DeleteConfirmationDialog.d.ts +9 -0
- package/dist/components/DeleteEntityDialog.d.ts +12 -0
- package/dist/components/EntityCollectionTable/EntityCollectionRowActions.d.ts +35 -0
- package/dist/components/EntityCollectionTable/EntityCollectionTable.d.ts +30 -0
- package/dist/components/EntityCollectionTable/EntityCollectionTableProps.d.ts +106 -0
- package/dist/components/EntityCollectionTable/PropertyTableCell.d.ts +18 -0
- package/dist/components/EntityCollectionTable/SimpleEntityCollectionTable.d.ts +95 -0
- package/dist/components/EntityCollectionTable/column_utils.d.ts +16 -0
- package/dist/components/EntityCollectionTable/fields/TableReferenceField.d.ts +15 -0
- package/dist/components/EntityCollectionTable/fields/TableStorageUpload.d.ts +33 -0
- package/dist/components/EntityCollectionTable/filters/BooleanFilterField.d.ts +9 -0
- package/dist/components/EntityCollectionTable/filters/DateTimeFilterField.d.ts +11 -0
- package/dist/components/EntityCollectionTable/filters/ReferenceFilterField.d.ts +14 -0
- package/dist/components/EntityCollectionTable/filters/StringNumberFilterField.d.ts +13 -0
- package/dist/components/EntityCollectionTable/index.d.ts +8 -0
- package/dist/components/EntityCollectionTable/internal/CollectionTableToolbar.d.ts +18 -0
- package/dist/components/EntityCollectionTable/internal/EntityTableCell.d.ts +26 -0
- package/dist/components/EntityCollectionTable/internal/EntityTableCellActions.d.ts +9 -0
- package/dist/components/EntityCollectionTable/internal/common.d.ts +4 -0
- package/dist/components/EntityCollectionTable/internal/default_entity_actions.d.ts +6 -0
- package/dist/components/EntityCollectionTable/internal/popup_field/ElementResizeListener.d.ts +5 -0
- package/dist/components/EntityCollectionTable/internal/popup_field/PopupFormField.d.ts +23 -0
- package/dist/components/EntityCollectionTable/internal/popup_field/useDraggable.d.ts +13 -0
- package/dist/components/EntityCollectionTable/internal/popup_field/useWindowSize.d.ts +6 -0
- package/dist/components/EntityCollectionTable/types.d.ts +53 -0
- package/dist/components/EntityCollectionTable/useDataSourceEntityCollectionTableController.d.ts +32 -0
- package/dist/components/EntityCollectionTable/useDebouncedData.d.ts +9 -0
- package/dist/components/EntityCollectionView/EntityCollectionView.d.ts +37 -0
- package/dist/components/EntityCollectionView/EntityCollectionViewActions.d.ts +14 -0
- package/dist/components/EntityCollectionView/useColumnsIds.d.ts +4 -0
- package/dist/components/EntityPreview.d.ts +11 -0
- package/dist/components/ErrorBoundary.d.ts +11 -0
- package/dist/components/ErrorTooltip.d.ts +2 -0
- package/dist/components/ErrorView.d.ts +19 -0
- package/dist/components/FieldConfigBadge.d.ts +4 -0
- package/dist/components/FireCMSAppBar.d.ts +26 -0
- package/dist/components/FireCMSLogo.d.ts +7 -0
- package/dist/components/HomePage/DefaultHomePage.d.ts +21 -0
- package/dist/components/HomePage/FavouritesView.d.ts +3 -0
- package/dist/components/HomePage/NavigationCollectionCard.d.ts +17 -0
- package/dist/components/HomePage/NavigationGroup.d.ts +4 -0
- package/dist/components/HomePage/index.d.ts +3 -0
- package/dist/components/LabelWithIcon.d.ts +14 -0
- package/dist/components/NotFoundPage.d.ts +1 -0
- package/dist/components/ReferenceSelectionInner.d.ts +58 -0
- package/dist/components/ReferenceWidget.d.ts +28 -0
- package/dist/components/SearchIconsView.d.ts +5 -0
- package/dist/components/VirtualTable/VirtualTable.d.ts +11 -0
- package/dist/components/VirtualTable/VirtualTableCell.d.ts +14 -0
- package/dist/components/VirtualTable/VirtualTableHeader.d.ts +27 -0
- package/dist/components/VirtualTable/VirtualTableHeaderRow.d.ts +2 -0
- package/dist/components/VirtualTable/VirtualTableProps.d.ts +214 -0
- package/dist/components/VirtualTable/VirtualTableRow.d.ts +3 -0
- package/dist/components/VirtualTable/common.d.ts +2 -0
- package/dist/components/VirtualTable/fields/VirtualTableDateField.d.ts +11 -0
- package/dist/components/VirtualTable/fields/VirtualTableInput.d.ts +8 -0
- package/dist/components/VirtualTable/fields/VirtualTableNumberInput.d.ts +8 -0
- package/dist/components/VirtualTable/fields/VirtualTableSelect.d.ts +15 -0
- package/dist/components/VirtualTable/fields/VirtualTableSwitch.d.ts +7 -0
- package/dist/components/VirtualTable/index.d.ts +2 -0
- package/dist/components/VirtualTable/types.d.ts +34 -0
- package/dist/components/index.d.ts +21 -0
- package/dist/contexts/AuthControllerContext.d.ts +3 -0
- package/dist/contexts/DataSourceContext.d.ts +3 -0
- package/dist/contexts/DialogsProvider.d.ts +4 -0
- package/dist/contexts/ModeController.d.ts +4 -0
- package/dist/contexts/NavigationContext.d.ts +3 -0
- package/dist/contexts/SideDialogsControllerContext.d.ts +3 -0
- package/dist/contexts/SideEntityControllerContext.d.ts +3 -0
- package/dist/contexts/SnackbarProvider.d.ts +2 -0
- package/dist/contexts/StorageSourceContext.d.ts +3 -0
- package/dist/contexts/UserConfigurationPersistenceContext.d.ts +3 -0
- package/dist/contexts/index.d.ts +3 -0
- package/dist/core/Drawer.d.ts +23 -0
- package/dist/core/EntitySidePanel.d.ts +10 -0
- package/dist/core/FireCMS.d.ts +14 -0
- package/dist/core/NavigationRoutes.d.ts +21 -0
- package/dist/core/Scaffold.d.ts +52 -0
- package/dist/core/SideDialogs.d.ts +23 -0
- package/dist/core/field_configs.d.ts +7 -0
- package/dist/core/index.d.ts +10 -0
- package/dist/core/useBuildLocalConfigurationPersistence.d.ts +2 -0
- package/dist/core/useBuildModeController.d.ts +6 -0
- package/dist/form/EntityForm.d.ts +75 -0
- package/dist/form/PropertyFieldBinding.d.ts +30 -0
- package/dist/form/components/CustomIdField.d.ts +9 -0
- package/dist/form/components/ErrorFocus.d.ts +4 -0
- package/dist/form/components/FieldHelperText.d.ts +12 -0
- package/dist/form/components/FormikArrayContainer.d.ts +18 -0
- package/dist/form/components/StorageItemPreview.d.ts +13 -0
- package/dist/form/components/StorageUploadProgress.d.ts +10 -0
- package/dist/form/components/SubmitListener.d.ts +1 -0
- package/dist/form/components/SwitchControl.d.ts +8 -0
- package/dist/form/components/index.d.ts +3 -0
- package/dist/form/field_bindings/ArrayCustomShapedFieldBinding.d.ts +9 -0
- package/dist/form/field_bindings/ArrayOfReferencesFieldBinding.d.ts +11 -0
- package/dist/form/field_bindings/BlockFieldBinding.d.ts +10 -0
- package/dist/form/field_bindings/DateTimeFieldBinding.d.ts +11 -0
- package/dist/form/field_bindings/KeyValueFieldBinding.d.ts +7 -0
- package/dist/form/field_bindings/MapFieldBinding.d.ts +9 -0
- package/dist/form/field_bindings/MarkdownFieldBinding.d.ts +9 -0
- package/dist/form/field_bindings/MultiSelectBinding.d.ts +9 -0
- package/dist/form/field_bindings/ReadOnlyFieldBinding.d.ts +10 -0
- package/dist/form/field_bindings/ReferenceFieldBinding.d.ts +9 -0
- package/dist/form/field_bindings/RepeatFieldBinding.d.ts +10 -0
- package/dist/form/field_bindings/SelectFieldBinding.d.ts +12 -0
- package/dist/form/field_bindings/StorageUploadFieldBinding.d.ts +28 -0
- package/dist/form/field_bindings/SwitchFieldBinding.d.ts +12 -0
- package/dist/form/field_bindings/TextFieldBinding.d.ts +12 -0
- package/dist/form/index.d.ts +20 -0
- package/dist/form/useClearRestoreValue.d.ts +13 -0
- package/dist/form/validation.d.ts +25 -0
- package/dist/hooks/data/delete.d.ts +37 -0
- package/dist/hooks/data/save.d.ts +42 -0
- package/dist/hooks/data/useCollectionFetch.d.ts +50 -0
- package/dist/hooks/data/useDataOrder.d.ts +12 -0
- package/dist/hooks/data/useDataSource.d.ts +6 -0
- package/dist/hooks/data/useEntityFetch.d.ts +28 -0
- package/dist/hooks/index.d.ts +19 -0
- package/dist/hooks/useAuthController.d.ts +11 -0
- package/dist/hooks/useBrowserTitleAndIcon.d.ts +6 -0
- package/dist/hooks/useClipboard.d.ts +57 -0
- package/dist/hooks/useDialogsController.d.ts +11 -0
- package/dist/hooks/useFireCMSContext.d.ts +12 -0
- package/dist/hooks/useLargeLayout.d.ts +1 -0
- package/dist/hooks/useModeController.d.ts +20 -0
- package/dist/hooks/useNavigationController.d.ts +9 -0
- package/dist/hooks/useReferenceDialog.d.ts +18 -0
- package/dist/hooks/useResolvedNavigationFrom.d.ts +72 -0
- package/dist/hooks/useSideDialogsController.d.ts +18 -0
- package/dist/hooks/useSideEntityController.d.ts +12 -0
- package/dist/hooks/useSnackbarController.d.ts +41 -0
- package/dist/hooks/useStorageSource.d.ts +6 -0
- package/dist/hooks/useUserConfigurationPersistence.d.ts +8 -0
- package/dist/hooks/useVerifyLicense.d.ts +0 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.es.js +15810 -26791
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +5 -1027
- package/dist/index.umd.js.map +1 -1
- package/dist/internal/EntityView.d.ts +22 -0
- package/dist/internal/common.d.ts +3 -0
- package/dist/internal/useBuildDataSource.d.ts +22 -0
- package/dist/internal/useBuildNavigationController.d.ts +14 -0
- package/dist/internal/useBuildSideDialogsController.d.ts +2 -0
- package/dist/internal/useBuildSideEntityController.d.ts +4 -0
- package/dist/internal/useLocaleConfig.d.ts +1 -0
- package/dist/internal/useRestoreScroll.d.ts +6 -0
- package/dist/internal/useUnsavedChangesDialog.d.ts +14 -0
- package/dist/preview/PropertyPreview.d.ts +7 -0
- package/dist/preview/PropertyPreviewProps.d.ts +43 -0
- package/dist/preview/components/ArrayEnumPreview.d.ts +11 -0
- package/dist/preview/components/AsyncPreviewComponent.d.ts +11 -0
- package/dist/preview/components/BooleanPreview.d.ts +7 -0
- package/dist/preview/components/DatePreview.d.ts +7 -0
- package/dist/preview/components/EmptyValue.d.ts +4 -0
- package/dist/preview/components/EnumValuesChip.d.ts +13 -0
- package/dist/preview/components/ImagePreview.d.ts +12 -0
- package/dist/preview/components/ReferencePreview.d.ts +22 -0
- package/dist/preview/components/StorageThumbnail.d.ts +13 -0
- package/dist/preview/components/UrlComponentPreview.d.ts +12 -0
- package/dist/preview/index.d.ts +23 -0
- package/dist/preview/property_previews/ArrayOfMapsPreview.d.ts +5 -0
- package/dist/preview/property_previews/ArrayOfReferencesPreview.d.ts +5 -0
- package/dist/preview/property_previews/ArrayOfStorageComponentsPreview.d.ts +5 -0
- package/dist/preview/property_previews/ArrayOfStringsPreview.d.ts +5 -0
- package/dist/preview/property_previews/ArrayOneOfPreview.d.ts +5 -0
- package/dist/preview/property_previews/ArrayPropertyEnumPreview.d.ts +5 -0
- package/dist/preview/property_previews/ArrayPropertyPreview.d.ts +5 -0
- package/dist/preview/property_previews/MapPropertyPreview.d.ts +8 -0
- package/dist/preview/property_previews/NumberPropertyPreview.d.ts +6 -0
- package/dist/preview/property_previews/SkeletonPropertyComponent.d.ts +14 -0
- package/dist/preview/property_previews/StringPropertyPreview.d.ts +6 -0
- package/dist/preview/util.d.ts +7 -0
- package/dist/types/analytics.d.ts +1 -0
- package/dist/types/appcheck.d.ts +26 -0
- package/dist/types/auth.d.ts +40 -0
- package/dist/types/collections.d.ts +451 -0
- package/dist/types/datasource.d.ts +262 -0
- package/dist/types/dialogs_controller.d.ts +32 -0
- package/dist/types/entities.d.ts +57 -0
- package/dist/types/entity_actions.d.ts +35 -0
- package/dist/types/entity_callbacks.d.ts +171 -0
- package/dist/types/entity_link_builder.d.ts +7 -0
- package/dist/types/export_import.d.ts +21 -0
- package/dist/types/fields.d.ts +181 -0
- package/dist/types/firecms.d.ts +151 -0
- package/dist/types/firecms_context.d.ts +110 -0
- package/dist/types/index.d.ts +26 -0
- package/dist/types/local_config_persistence.d.ts +21 -0
- package/dist/types/locales.d.ts +4 -0
- package/dist/types/modify_collections.d.ts +5 -0
- package/dist/types/navigation.d.ts +178 -0
- package/dist/types/permissions.d.ts +63 -0
- package/dist/types/plugins.d.ts +181 -0
- package/dist/types/properties.d.ts +681 -0
- package/dist/types/property_config.d.ts +42 -0
- package/dist/types/resolved_entities.d.ts +98 -0
- package/dist/types/side_dialogs_controller.d.ts +57 -0
- package/dist/types/side_entity_controller.d.ts +83 -0
- package/dist/types/storage.d.ts +82 -0
- package/dist/types/user.d.ts +36 -0
- package/dist/util/arrays.d.ts +1 -0
- package/dist/util/builders.d.ts +64 -0
- package/dist/util/collections.d.ts +3 -0
- package/dist/util/common.d.ts +2 -0
- package/dist/util/dates.d.ts +1 -0
- package/dist/util/entities.d.ts +28 -0
- package/dist/util/enums.d.ts +7 -0
- package/dist/util/flatten_object.d.ts +3 -0
- package/dist/util/hash.d.ts +1 -0
- package/dist/util/icon_list.d.ts +1 -0
- package/dist/util/icon_synonyms.d.ts +1950 -0
- package/dist/util/icons.d.ts +4 -0
- package/dist/util/index.d.ts +22 -0
- package/dist/util/join_collections.d.ts +9 -0
- package/dist/util/make_properties_editable.d.ts +3 -0
- package/dist/util/navigation_from_path.d.ts +24 -0
- package/dist/util/navigation_utils.d.ts +20 -0
- package/dist/util/objects.d.ts +10 -0
- package/dist/util/os.d.ts +2 -0
- package/dist/util/parent_references_from_path.d.ts +6 -0
- package/dist/util/paths.d.ts +14 -0
- package/dist/util/permissions.d.ts +5 -0
- package/dist/util/plurals.d.ts +18 -0
- package/dist/util/property_utils.d.ts +23 -0
- package/dist/util/references.d.ts +2 -0
- package/dist/util/regexp.d.ts +7 -0
- package/dist/util/resolutions.d.ts +64 -0
- package/dist/util/storage.d.ts +3 -0
- package/dist/util/strings.d.ts +6 -0
- package/dist/util/useDebounce.d.ts +1 -0
- package/dist/util/useStorageUploadController.d.ts +36 -0
- package/dist/util/useTraceUpdate.d.ts +1 -0
- package/package.json +112 -142
- package/src/components/ArrayContainer.tsx +369 -0
- package/src/components/CircularProgressCenter.tsx +26 -0
- package/src/components/DeleteConfirmationDialog.tsx +47 -0
- package/src/components/DeleteEntityDialog.tsx +207 -0
- package/src/components/EntityCollectionTable/EntityCollectionRowActions.tsx +174 -0
- package/src/components/EntityCollectionTable/EntityCollectionTable.tsx +496 -0
- package/src/components/EntityCollectionTable/EntityCollectionTableProps.tsx +150 -0
- package/src/components/EntityCollectionTable/PropertyTableCell.tsx +461 -0
- package/src/components/EntityCollectionTable/SimpleEntityCollectionTable.tsx +369 -0
- package/src/components/EntityCollectionTable/column_utils.tsx +74 -0
- package/src/components/EntityCollectionTable/fields/TableReferenceField.tsx +159 -0
- package/src/components/EntityCollectionTable/fields/TableStorageUpload.tsx +313 -0
- package/src/components/EntityCollectionTable/filters/BooleanFilterField.tsx +49 -0
- package/src/components/EntityCollectionTable/filters/DateTimeFilterField.tsx +109 -0
- package/src/components/EntityCollectionTable/filters/ReferenceFilterField.tsx +187 -0
- package/src/components/EntityCollectionTable/filters/StringNumberFilterField.tsx +159 -0
- package/src/components/EntityCollectionTable/index.tsx +20 -0
- package/src/components/EntityCollectionTable/internal/CollectionTableToolbar.tsx +113 -0
- package/src/components/EntityCollectionTable/internal/EntityTableCell.tsx +257 -0
- package/src/components/EntityCollectionTable/internal/EntityTableCellActions.tsx +70 -0
- package/src/components/EntityCollectionTable/internal/common.tsx +70 -0
- package/src/components/EntityCollectionTable/internal/default_entity_actions.tsx +122 -0
- package/src/components/EntityCollectionTable/internal/popup_field/ElementResizeListener.tsx +59 -0
- package/src/components/EntityCollectionTable/internal/popup_field/PopupFormField.tsx +401 -0
- package/src/components/EntityCollectionTable/internal/popup_field/useDraggable.tsx +97 -0
- package/src/components/EntityCollectionTable/internal/popup_field/useWindowSize.tsx +20 -0
- package/src/components/EntityCollectionTable/types.tsx +58 -0
- package/src/components/EntityCollectionTable/useDataSourceEntityCollectionTableController.tsx +225 -0
- package/src/components/EntityCollectionTable/useDebouncedData.ts +49 -0
- package/src/components/EntityCollectionView/EntityCollectionView.tsx +815 -0
- package/src/components/EntityCollectionView/EntityCollectionViewActions.tsx +131 -0
- package/src/components/EntityCollectionView/useColumnsIds.tsx +100 -0
- package/src/components/EntityPreview.tsx +83 -0
- package/src/components/ErrorBoundary.tsx +40 -0
- package/src/components/ErrorTooltip.tsx +11 -0
- package/src/components/ErrorView.tsx +52 -0
- package/src/components/FieldConfigBadge.tsx +17 -0
- package/src/components/FireCMSAppBar.tsx +157 -0
- package/src/components/FireCMSLogo.tsx +73 -0
- package/src/components/HomePage/DefaultHomePage.tsx +209 -0
- package/src/components/HomePage/FavouritesView.tsx +64 -0
- package/src/components/HomePage/NavigationCollectionCard.tsx +145 -0
- package/src/components/HomePage/NavigationGroup.tsx +39 -0
- package/src/components/HomePage/index.tsx +3 -0
- package/src/components/LabelWithIcon.tsx +33 -0
- package/src/components/NotFoundPage.tsx +25 -0
- package/src/components/ReferenceSelectionInner.tsx +364 -0
- package/src/components/ReferenceWidget.tsx +145 -0
- package/src/components/SearchIconsView.tsx +75 -0
- package/src/components/VirtualTable/VirtualTable.tsx +402 -0
- package/src/components/VirtualTable/VirtualTableCell.tsx +32 -0
- package/src/components/VirtualTable/VirtualTableHeader.tsx +260 -0
- package/src/components/VirtualTable/VirtualTableHeaderRow.tsx +131 -0
- package/src/components/VirtualTable/VirtualTableProps.tsx +269 -0
- package/src/components/VirtualTable/VirtualTableRow.tsx +53 -0
- package/src/components/VirtualTable/common.tsx +18 -0
- package/src/components/VirtualTable/fields/VirtualTableDateField.tsx +37 -0
- package/src/components/VirtualTable/fields/VirtualTableInput.tsx +91 -0
- package/src/components/VirtualTable/fields/VirtualTableNumberInput.tsx +82 -0
- package/src/components/VirtualTable/fields/VirtualTableSelect.tsx +130 -0
- package/src/components/VirtualTable/fields/VirtualTableSwitch.tsx +32 -0
- package/src/components/VirtualTable/index.tsx +2 -0
- package/src/components/VirtualTable/types.tsx +44 -0
- package/src/components/index.tsx +31 -0
- package/src/contexts/AuthControllerContext.tsx +4 -0
- package/src/contexts/DataSourceContext.tsx +4 -0
- package/src/contexts/DialogsProvider.tsx +52 -0
- package/src/contexts/ModeController.tsx +13 -0
- package/src/contexts/NavigationContext.tsx +4 -0
- package/src/contexts/SideDialogsControllerContext.tsx +4 -0
- package/src/contexts/SideEntityControllerContext.tsx +4 -0
- package/src/contexts/SnackbarProvider.tsx +12 -0
- package/src/contexts/StorageSourceContext.tsx +4 -0
- package/src/contexts/UserConfigurationPersistenceContext.tsx +4 -0
- package/src/contexts/index.ts +3 -0
- package/src/core/Drawer.tsx +161 -0
- package/src/core/EntitySidePanel.tsx +89 -0
- package/src/core/FireCMS.tsx +184 -0
- package/src/core/NavigationRoutes.tsx +118 -0
- package/src/core/Scaffold.tsx +278 -0
- package/src/core/SideDialogs.tsx +156 -0
- package/src/core/field_configs.tsx +400 -0
- package/src/core/index.tsx +14 -0
- package/src/core/useBuildLocalConfigurationPersistence.tsx +67 -0
- package/src/core/useBuildModeController.tsx +60 -0
- package/src/form/EntityForm.tsx +646 -0
- package/src/form/PropertyFieldBinding.tsx +313 -0
- package/src/form/components/CustomIdField.tsx +124 -0
- package/src/form/components/ErrorFocus.tsx +51 -0
- package/src/form/components/FieldHelperText.tsx +58 -0
- package/src/form/components/FormikArrayContainer.tsx +44 -0
- package/src/form/components/StorageItemPreview.tsx +66 -0
- package/src/form/components/StorageUploadProgress.tsx +104 -0
- package/src/form/components/SubmitListener.tsx +32 -0
- package/src/form/components/SwitchControl.tsx +39 -0
- package/src/form/components/index.tsx +3 -0
- package/src/form/field_bindings/ArrayCustomShapedFieldBinding.tsx +88 -0
- package/src/form/field_bindings/ArrayOfReferencesFieldBinding.tsx +153 -0
- package/src/form/field_bindings/BlockFieldBinding.tsx +245 -0
- package/src/form/field_bindings/DateTimeFieldBinding.tsx +67 -0
- package/src/form/field_bindings/KeyValueFieldBinding.tsx +560 -0
- package/src/form/field_bindings/MapFieldBinding.tsx +136 -0
- package/src/form/field_bindings/MarkdownFieldBinding.tsx +696 -0
- package/src/form/field_bindings/MultiSelectBinding.tsx +115 -0
- package/src/form/field_bindings/ReadOnlyFieldBinding.tsx +70 -0
- package/src/form/field_bindings/ReferenceFieldBinding.tsx +122 -0
- package/src/form/field_bindings/RepeatFieldBinding.tsx +103 -0
- package/src/form/field_bindings/SelectFieldBinding.tsx +100 -0
- package/src/form/field_bindings/StorageUploadFieldBinding.tsx +438 -0
- package/src/form/field_bindings/SwitchFieldBinding.tsx +61 -0
- package/src/form/field_bindings/TextFieldBinding.tsx +108 -0
- package/src/form/index.tsx +42 -0
- package/src/form/useClearRestoreValue.tsx +35 -0
- package/src/form/validation.ts +413 -0
- package/src/hooks/data/delete.ts +101 -0
- package/src/hooks/data/save.ts +165 -0
- package/src/hooks/data/useCollectionFetch.tsx +162 -0
- package/src/hooks/data/useDataOrder.ts +26 -0
- package/src/hooks/data/useDataSource.tsx +9 -0
- package/src/hooks/data/useEntityFetch.tsx +129 -0
- package/src/hooks/index.tsx +23 -0
- package/src/hooks/useAuthController.tsx +14 -0
- package/src/hooks/useBrowserTitleAndIcon.tsx +25 -0
- package/src/hooks/useClipboard.tsx +158 -0
- package/src/hooks/useDialogsController.tsx +14 -0
- package/src/hooks/useFireCMSContext.tsx +50 -0
- package/src/hooks/useLargeLayout.tsx +97 -0
- package/src/hooks/useModeController.tsx +24 -0
- package/src/hooks/useNavigationController.tsx +12 -0
- package/src/hooks/useReferenceDialog.tsx +56 -0
- package/src/hooks/useResolvedNavigationFrom.tsx +160 -0
- package/src/hooks/useSideDialogsController.tsx +21 -0
- package/src/hooks/useSideEntityController.tsx +15 -0
- package/src/hooks/useSnackbarController.tsx +76 -0
- package/src/hooks/useStorageSource.tsx +9 -0
- package/src/hooks/useUserConfigurationPersistence.tsx +11 -0
- package/src/hooks/useVerifyLicense.tsx +1 -0
- package/src/index.ts +8 -0
- package/src/internal/EntityView.tsx +576 -0
- package/src/internal/common.tsx +5 -0
- package/src/internal/useBuildDataSource.ts +358 -0
- package/src/internal/useBuildNavigationController.tsx +371 -0
- package/src/internal/useBuildSideDialogsController.tsx +126 -0
- package/src/internal/useBuildSideEntityController.tsx +172 -0
- package/src/internal/useLocaleConfig.tsx +18 -0
- package/src/internal/useRestoreScroll.tsx +48 -0
- package/src/internal/useUnsavedChangesDialog.tsx +106 -0
- package/src/preview/PropertyPreview.tsx +222 -0
- package/src/preview/PropertyPreviewProps.tsx +59 -0
- package/src/preview/components/ArrayEnumPreview.tsx +39 -0
- package/src/preview/components/AsyncPreviewComponent.tsx +47 -0
- package/src/preview/components/BooleanPreview.tsx +11 -0
- package/src/preview/components/DatePreview.tsx +27 -0
- package/src/preview/components/EmptyValue.tsx +10 -0
- package/src/preview/components/EnumValuesChip.tsx +38 -0
- package/src/preview/components/ImagePreview.tsx +106 -0
- package/src/preview/components/ReferencePreview.tsx +249 -0
- package/src/preview/components/StorageThumbnail.tsx +84 -0
- package/src/preview/components/UrlComponentPreview.tsx +79 -0
- package/src/preview/index.ts +27 -0
- package/src/preview/property_previews/ArrayOfMapsPreview.tsx +82 -0
- package/src/preview/property_previews/ArrayOfReferencesPreview.tsx +52 -0
- package/src/preview/property_previews/ArrayOfStorageComponentsPreview.tsx +54 -0
- package/src/preview/property_previews/ArrayOfStringsPreview.tsx +55 -0
- package/src/preview/property_previews/ArrayOneOfPreview.tsx +67 -0
- package/src/preview/property_previews/ArrayPropertyEnumPreview.tsx +28 -0
- package/src/preview/property_previews/ArrayPropertyPreview.tsx +68 -0
- package/src/preview/property_previews/MapPropertyPreview.tsx +146 -0
- package/src/preview/property_previews/NumberPropertyPreview.tsx +27 -0
- package/src/preview/property_previews/SkeletonPropertyComponent.tsx +283 -0
- package/src/preview/property_previews/StringPropertyPreview.tsx +59 -0
- package/src/preview/util.ts +31 -0
- package/src/types/analytics.ts +34 -0
- package/src/types/appcheck.ts +29 -0
- package/src/types/auth.tsx +49 -0
- package/src/types/collections.ts +530 -0
- package/src/types/datasource.ts +389 -0
- package/src/types/dialogs_controller.tsx +33 -0
- package/src/types/entities.ts +76 -0
- package/src/types/entity_actions.tsx +39 -0
- package/src/types/entity_callbacks.ts +209 -0
- package/src/types/entity_link_builder.ts +8 -0
- package/src/types/export_import.ts +26 -0
- package/src/types/fields.tsx +220 -0
- package/src/types/firecms.tsx +175 -0
- package/src/types/firecms_context.tsx +128 -0
- package/src/types/index.ts +26 -0
- package/src/types/local_config_persistence.tsx +23 -0
- package/src/types/locales.ts +81 -0
- package/src/types/modify_collections.tsx +6 -0
- package/src/types/navigation.ts +214 -0
- package/src/types/permissions.ts +76 -0
- package/src/types/plugins.tsx +219 -0
- package/src/types/properties.ts +851 -0
- package/src/types/property_config.tsx +72 -0
- package/src/types/resolved_entities.ts +148 -0
- package/src/types/side_dialogs_controller.tsx +68 -0
- package/src/types/side_entity_controller.tsx +96 -0
- package/src/types/storage.ts +96 -0
- package/src/types/user.ts +37 -0
- package/src/util/arrays.ts +3 -0
- package/src/util/builders.ts +139 -0
- package/src/util/collections.ts +50 -0
- package/src/util/common.tsx +2 -0
- package/src/util/dates.ts +1 -0
- package/src/util/entities.ts +196 -0
- package/src/util/enums.ts +56 -0
- package/src/util/flatten_object.ts +45 -0
- package/src/util/hash.ts +11 -0
- package/src/util/icon_list.ts +17 -0
- package/src/util/icon_synonyms.ts +1950 -0
- package/src/util/icons.tsx +45 -0
- package/src/util/index.ts +22 -0
- package/src/util/join_collections.ts +172 -0
- package/src/util/make_properties_editable.ts +29 -0
- package/src/util/navigation_from_path.ts +107 -0
- package/src/util/navigation_utils.ts +111 -0
- package/src/util/objects.ts +168 -0
- package/src/util/os.ts +13 -0
- package/src/util/parent_references_from_path.ts +56 -0
- package/src/util/paths.ts +27 -0
- package/src/util/permissions.ts +80 -0
- package/src/util/plurals.ts +190 -0
- package/src/util/property_utils.tsx +130 -0
- package/src/util/references.ts +20 -0
- package/src/util/regexp.ts +32 -0
- package/src/util/resolutions.ts +399 -0
- package/src/util/storage.ts +92 -0
- package/src/util/strings.ts +62 -0
- package/src/util/useDebounce.ts +25 -0
- package/src/util/useStorageUploadController.tsx +243 -0
- 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/EntityCollectionRowActions";
|
|
26
|
+
|
|
27
|
+
import {
|
|
28
|
+
canCreateEntity,
|
|
29
|
+
canDeleteEntity,
|
|
30
|
+
canEditEntity,
|
|
31
|
+
fullPathToCollectionSegments,
|
|
32
|
+
getPropertyInPath,
|
|
33
|
+
mergeDeep,
|
|
34
|
+
resolveCollection,
|
|
35
|
+
resolveProperty
|
|
36
|
+
} from "../../util";
|
|
37
|
+
import { ReferencePreview } from "../../preview";
|
|
38
|
+
import {
|
|
39
|
+
saveEntityWithCallbacks,
|
|
40
|
+
useAuthController,
|
|
41
|
+
useDataSource,
|
|
42
|
+
useFireCMSContext,
|
|
43
|
+
useLargeLayout,
|
|
44
|
+
useNavigationController,
|
|
45
|
+
useSideEntityController
|
|
46
|
+
} from "../../hooks";
|
|
47
|
+
import { useUserConfigurationPersistence } from "../../hooks/useUserConfigurationPersistence";
|
|
48
|
+
import { EntityCollectionViewActions } from "./EntityCollectionViewActions";
|
|
49
|
+
import { useDataSourceEntityCollectionTableController } from "../EntityCollectionTable/useDataSourceEntityCollectionTableController";
|
|
50
|
+
import {
|
|
51
|
+
AddIcon,
|
|
52
|
+
Button,
|
|
53
|
+
cn,
|
|
54
|
+
IconButton,
|
|
55
|
+
KeyboardTabIcon,
|
|
56
|
+
Markdown,
|
|
57
|
+
Popover,
|
|
58
|
+
SearchIcon,
|
|
59
|
+
Skeleton,
|
|
60
|
+
TextField,
|
|
61
|
+
Tooltip,
|
|
62
|
+
Typography
|
|
63
|
+
} from "@firecms/ui";
|
|
64
|
+
import { setIn } from "formik";
|
|
65
|
+
import { getSubcollectionColumnId } from "../EntityCollectionTable/internal/common";
|
|
66
|
+
import { useColumnIds } from "./useColumnsIds";
|
|
67
|
+
import { PopupFormField } from "../EntityCollectionTable/internal/popup_field/PopupFormField";
|
|
68
|
+
import { GetPropertyForProps } from "../EntityCollectionTable/EntityCollectionTableProps";
|
|
69
|
+
import {
|
|
70
|
+
copyEntityAction,
|
|
71
|
+
deleteEntityAction,
|
|
72
|
+
editEntityAction
|
|
73
|
+
} from "../EntityCollectionTable/internal/default_entity_actions";
|
|
74
|
+
import { DeleteEntityDialog } from "../DeleteEntityDialog";
|
|
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 = useDataSourceEntityCollectionTableController<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, parentCollectionIds });
|
|
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, parentCollectionIds });
|
|
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
|
+
}
|