@solidstarters/solid-core-ui 1.1.211 → 1.1.212
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/dist/components/Svg/DevDocs.tsx +9 -0
- package/dist/components/Svg/DocsSvg.tsx +9 -0
- package/dist/components/Svg/ExcelSvg.tsx +15 -0
- package/dist/components/Svg/FieldSvg.tsx +9 -0
- package/dist/components/Svg/FileSvg.tsx +18 -0
- package/dist/components/Svg/HomePageModuleSvg.tsx +179 -0
- package/dist/components/Svg/ModelSvg.tsx +9 -0
- package/dist/components/Svg/ModuleSvg.tsx +9 -0
- package/dist/components/Svg/PDFSvg.tsx +15 -0
- package/dist/components/Svg/RightArrowSvg.tsx +9 -0
- package/dist/components/Svg/SettingsSvg.tsx +9 -0
- package/dist/components/auth/AuthLayout.tsx +223 -0
- package/dist/components/auth/ForgotPasswordThankYou.tsx +33 -0
- package/dist/components/auth/GoogleAuthChecking.tsx +63 -0
- package/dist/components/auth/SolidChangeForcePassword.tsx +222 -0
- package/dist/components/auth/SolidForgotPassword.tsx +127 -0
- package/dist/components/auth/SolidInitialLoginOtp.tsx +271 -0
- package/dist/components/auth/SolidInitiateRegisterOtp.tsx +218 -0
- package/dist/components/auth/SolidLogin.d.ts.map +1 -1
- package/dist/components/auth/SolidLogin.js +14 -8
- package/dist/components/auth/SolidLogin.js.map +1 -1
- package/dist/components/auth/SolidLogin.tsx +428 -0
- package/dist/components/auth/SolidOTPVerify.tsx +133 -0
- package/dist/components/auth/SolidRegister.tsx +454 -0
- package/dist/components/auth/SolidResetPassword.tsx +194 -0
- package/dist/components/common/AuthBanner.tsx +41 -0
- package/dist/components/common/AutoCompleteField.tsx +79 -0
- package/dist/components/common/BackButton.tsx +72 -0
- package/dist/components/common/CancelButton.tsx +61 -0
- package/dist/components/common/CodeEditor.tsx +38 -0
- package/dist/components/common/CreateButton.tsx +17 -0
- package/dist/components/common/DownloadProgressToast.tsx +55 -0
- package/dist/components/common/DropzonePlaceholder.tsx +31 -0
- package/dist/components/common/DropzoneUpload.tsx +11 -0
- package/dist/components/common/FileReaderExt.tsx +20 -0
- package/dist/components/common/GeneralSettings.tsx +1225 -0
- package/dist/components/common/HeaderDynamicTitles.tsx +13 -0
- package/dist/components/common/MarkdownViewer.tsx +84 -0
- package/dist/components/common/MultipleSelectAutoCompleteField.tsx +64 -0
- package/dist/components/common/NotFound.tsx +22 -0
- package/dist/components/common/SingleSelectAutoCompleteField.tsx +73 -0
- package/dist/components/common/SocialMediaLogin.tsx +53 -0
- package/dist/components/common/SolidAdmin.tsx +6 -0
- package/dist/components/common/SolidBreadcrumb.tsx +129 -0
- package/dist/components/common/SolidExport.tsx +563 -0
- package/dist/components/common/SolidExportStepper.tsx +135 -0
- package/dist/components/common/SolidFieldTooltip.tsx +23 -0
- package/dist/components/common/SolidFormHeader.tsx +25 -0
- package/dist/components/common/SolidFormStepper.tsx +350 -0
- package/dist/components/common/SolidModuleHome.tsx +128 -0
- package/dist/components/common/SolidPopupContainer.tsx +37 -0
- package/dist/components/common/SolidSettings/LlmSettings/AnthropicProviderComponent.tsx +45 -0
- package/dist/components/common/SolidSettings/LlmSettings/OpenAiProviderComponent.tsx +45 -0
- package/dist/components/common/SolidSettings/SettingDropzoneActivePlaceholder.tsx +20 -0
- package/dist/components/common/SolidSettings/SettingsImageRemoveButton.tsx +15 -0
- package/dist/components/common/SolidSettings/SolidUploadedImage.tsx +16 -0
- package/dist/components/common/SolidThemeLink.tsx +6 -0
- package/dist/components/common/SolidThemeProvider.tsx +44 -0
- package/dist/components/common/StepperArrows/ActiveArrowStep.tsx +18 -0
- package/dist/components/common/StepperArrows/ActiveBeforeStepArrow.tsx +18 -0
- package/dist/components/common/StepperArrows/InactiveStepArrow.tsx +19 -0
- package/dist/components/common/error.tsx +30 -0
- package/dist/components/common/useHandleFormCustomButtonClick.ts +40 -0
- package/dist/components/common/useHandleListCustomButtonClick.ts +42 -0
- package/dist/components/core/chatter/SolidChatter.tsx +248 -0
- package/dist/components/core/chatter/SolidChatterAuditMessage.tsx +35 -0
- package/dist/components/core/chatter/SolidChatterCustomMessage.tsx +46 -0
- package/dist/components/core/chatter/SolidChatterDateDivider.tsx +16 -0
- package/dist/components/core/chatter/SolidChatterHeader.tsx +218 -0
- package/dist/components/core/chatter/SolidChatterMessageBox.tsx +163 -0
- package/dist/components/core/chatter/SolidMessageComposer.tsx +146 -0
- package/dist/components/core/common/AvatarWidget.tsx +55 -0
- package/dist/components/core/common/DateFieldViewComponent.tsx +36 -0
- package/dist/components/core/common/FilterComponent.tsx +458 -0
- package/dist/components/core/common/LoadDynamicJsxComponent.tsx +70 -0
- package/dist/components/core/common/PDFViewer.tsx +117 -0
- package/dist/components/core/common/SolidAccountSettings/SolidAccountSettings.tsx +89 -0
- package/dist/components/core/common/SolidAccountSettings/SolidChangePassword.tsx +188 -0
- package/dist/components/core/common/SolidAccountSettings/SolidNotifications.tsx +139 -0
- package/dist/components/core/common/SolidAccountSettings/SolidPersonalInfo.tsx +311 -0
- package/dist/components/core/common/SolidCreateButton.tsx +48 -0
- package/dist/components/core/common/SolidGenericImport/DocumentSvg.tsx +15 -0
- package/dist/components/core/common/SolidGenericImport/SolidGenericImport.tsx +64 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportDropzone.tsx +125 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportInstructions.tsx +122 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportStepper.tsx +217 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportTransaction.tsx +205 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportTransactionStatus.tsx +158 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportWrapper.tsx +29 -0
- package/dist/components/core/common/SolidGlobalSearchElement.tsx +1470 -0
- package/dist/components/core/common/SolidLayoutViews.tsx +87 -0
- package/dist/components/core/common/SolidListViewOptions.tsx +31 -0
- package/dist/components/core/common/SolidLoaders/SolidCircularLoader.tsx +7 -0
- package/dist/components/core/common/SolidPasswordHelperText.tsx +34 -0
- package/dist/components/core/common/SolidSaveCustomFilterForm.tsx +75 -0
- package/dist/components/core/common/SolidSearchBox.tsx +17 -0
- package/dist/components/core/common/SolidViewLayoutManager.ts +421 -0
- package/dist/components/core/common/SolidXAiIframe.tsx +77 -0
- package/dist/components/core/dashboard/SolidDashboard.tsx +332 -0
- package/dist/components/core/dashboard/SolidDashboardBody.tsx +117 -0
- package/dist/components/core/dashboard/SolidDashboardFilterRequired.tsx +28 -0
- package/dist/components/core/dashboard/SolidDashboardHeader.tsx +10 -0
- package/dist/components/core/dashboard/SolidDashboardLoading.tsx +55 -0
- package/dist/components/core/dashboard/SolidDashboardNotAvailable.tsx +32 -0
- package/dist/components/core/dashboard/SolidDashboardRenderError.tsx +29 -0
- package/dist/components/core/dashboard/SolidDashboardVariable.tsx +256 -0
- package/dist/components/core/dashboard/SolidQuestionRenderer.tsx +78 -0
- package/dist/components/core/dashboard/chart-renderers/ChartJsRenderer.tsx +18 -0
- package/dist/components/core/dashboard/chart-renderers/PrimeReactDatatableRenderer.tsx +54 -0
- package/dist/components/core/dashboard/chart-renderers/init-chartjs.ts +25 -0
- package/dist/components/core/dashboard/dashboard-utils.ts +39 -0
- package/dist/components/core/extension/solid-core/CustomIcon/StatusIcon.tsx +17 -0
- package/dist/components/core/extension/solid-core/dashboardQuestion/ChartFormPreviewWidget.tsx +36 -0
- package/dist/components/core/extension/solid-core/emailTemplate/emailFormTypeChangeHandler.ts +18 -0
- package/dist/components/core/extension/solid-core/emailTemplate/emailFormTypeLoad.ts +18 -0
- package/dist/components/core/extension/solid-core/modelMetadata/list/DeleteModelRowAction.tsx +114 -0
- package/dist/components/core/extension/solid-core/modelMetadata/list/GenerateModelCodeRowAction.tsx +213 -0
- package/dist/components/core/extension/solid-core/moduleMetadata/list/DeleteModuleRowAction.tsx +138 -0
- package/dist/components/core/extension/solid-core/moduleMetadata/list/GenerateModuleCodeRowAction.tsx +209 -0
- package/dist/components/core/extension/solid-core/roleMetadata/RolePermissionsManyToManyFieldWidget.tsx +131 -0
- package/dist/components/core/field/FieldListViewData.tsx +313 -0
- package/dist/components/core/filter/SolidBooleanFilterElement.tsx +30 -0
- package/dist/components/core/filter/SolidFilterFields.tsx +131 -0
- package/dist/components/core/filter/SolidManyToManyFilterElement.tsx +64 -0
- package/dist/components/core/filter/SolidManyToOneFilterElement.tsx +61 -0
- package/dist/components/core/filter/SolidSelectionDynamicFilterElement.tsx +50 -0
- package/dist/components/core/filter/SolidSelectionStaticFilterElement.tsx +32 -0
- package/dist/components/core/filter/SolidVarInputsFilterElement.tsx +209 -0
- package/dist/components/core/filter/fields/SolidBigintField.tsx +9 -0
- package/dist/components/core/filter/fields/SolidBooleanField.tsx +68 -0
- package/dist/components/core/filter/fields/SolidComputedField.tsx +23 -0
- package/dist/components/core/filter/fields/SolidDateField.tsx +63 -0
- package/dist/components/core/filter/fields/SolidDatetimeField.tsx +54 -0
- package/dist/components/core/filter/fields/SolidDecimalField.tsx +9 -0
- package/dist/components/core/filter/fields/SolidExternalIdField.tsx +52 -0
- package/dist/components/core/filter/fields/SolidFloatField.tsx +9 -0
- package/dist/components/core/filter/fields/SolidIdField.tsx +46 -0
- package/dist/components/core/filter/fields/SolidIntField.tsx +61 -0
- package/dist/components/core/filter/fields/SolidLongTextField.tsx +9 -0
- package/dist/components/core/filter/fields/SolidMediaMultipleField.tsx +60 -0
- package/dist/components/core/filter/fields/SolidMediaSingleField.tsx +62 -0
- package/dist/components/core/filter/fields/SolidRelationField.tsx +17 -0
- package/dist/components/core/filter/fields/SolidRichTextField.tsx +9 -0
- package/dist/components/core/filter/fields/SolidSelectionDynamicField.tsx +52 -0
- package/dist/components/core/filter/fields/SolidSelectionStaticField.tsx +54 -0
- package/dist/components/core/filter/fields/SolidShortTextField.tsx +60 -0
- package/dist/components/core/filter/fields/SolidTimeField.tsx +48 -0
- package/dist/components/core/filter/fields/SolidUuidField.tsx +51 -0
- package/dist/components/core/filter/fields/relations/SolidRelationManyToManyField.tsx +62 -0
- package/dist/components/core/filter/fields/relations/SolidRelationManyToOneField.tsx +84 -0
- package/dist/components/core/form/SolidFormActionHeader.tsx +497 -0
- package/dist/components/core/form/SolidFormFieldRender.tsx +53 -0
- package/dist/components/core/form/SolidFormFieldRenderExtension.tsx +26 -0
- package/dist/components/core/form/SolidFormFooter.tsx +162 -0
- package/dist/components/core/form/SolidFormLayouts.tsx +104 -0
- package/dist/components/core/form/SolidFormUserViewLayout.tsx +84 -0
- package/dist/components/core/form/SolidFormView.tsx +1856 -0
- package/dist/components/core/form/SolidFormViewContextMenuHeaderButton.tsx +52 -0
- package/dist/components/core/form/SolidFormViewNormalHeaderButton.tsx +52 -0
- package/dist/components/core/form/SolidFormViewShimmerLoading.tsx +109 -0
- package/dist/components/core/form/fields/ISolidField.tsx +71 -0
- package/dist/components/core/form/fields/SolidBooleanField.tsx +434 -0
- package/dist/components/core/form/fields/SolidDateField.tsx +247 -0
- package/dist/components/core/form/fields/SolidDateTimeField.tsx +229 -0
- package/dist/components/core/form/fields/SolidDecimalField.tsx +171 -0
- package/dist/components/core/form/fields/SolidEmailField.tsx +176 -0
- package/dist/components/core/form/fields/SolidIntegerField.tsx +282 -0
- package/dist/components/core/form/fields/SolidJsonField.tsx +185 -0
- package/dist/components/core/form/fields/SolidLongTextField.tsx +618 -0
- package/dist/components/core/form/fields/SolidMediaMultipleField.tsx +663 -0
- package/dist/components/core/form/fields/SolidMediaSingleField.tsx +547 -0
- package/dist/components/core/form/fields/SolidPasswordField.tsx +390 -0
- package/dist/components/core/form/fields/SolidRelationField.tsx +56 -0
- package/dist/components/core/form/fields/SolidRichTextField.tsx +188 -0
- package/dist/components/core/form/fields/SolidSelectionDynamicField.tsx +340 -0
- package/dist/components/core/form/fields/SolidSelectionStaticField.tsx +462 -0
- package/dist/components/core/form/fields/SolidShortTextField.tsx +399 -0
- package/dist/components/core/form/fields/SolidTimeField.tsx +245 -0
- package/dist/components/core/form/fields/relations/SolidRelationManyToManyField.tsx +453 -0
- package/dist/components/core/form/fields/relations/SolidRelationManyToOneField.tsx +1036 -0
- package/dist/components/core/form/fields/relations/SolidRelationOneToManyField.tsx +627 -0
- package/dist/components/core/form/fields/relations/widgets/helpers/InlineRelationEntityDialog.tsx +38 -0
- package/dist/components/core/form/fields/relations/widgets/helpers/useRelationEntityHandler.ts +64 -0
- package/dist/components/core/form/fields/widgets/SolidAiInteractionMessageFieldFormWidget.tsx +135 -0
- package/dist/components/core/form/fields/widgets/SolidAiInteractionMetadataFieldFormWidget.tsx +144 -0
- package/dist/components/core/form/fields/widgets/SolidIconEditWidget.tsx +265 -0
- package/dist/components/core/form/fields/widgets/SolidIconViewWidget.tsx +32 -0
- package/dist/components/core/form/fields/widgets/SolidRelationFieldAvatarFormWidget.tsx +50 -0
- package/dist/components/core/form/fields/widgets/SolidS3FileViewerWidget.tsx +222 -0
- package/dist/components/core/form/fields/widgets/SolidShortTextFieldAvatarWidget.tsx +70 -0
- package/dist/components/core/form/widgets/CustomHtml.tsx +20 -0
- package/dist/components/core/kanban/KanbanBoard.tsx +150 -0
- package/dist/components/core/kanban/KanbanCard.tsx +279 -0
- package/dist/components/core/kanban/KanbanColumn.tsx +139 -0
- package/dist/components/core/kanban/KanbanUserViewLayout.tsx +84 -0
- package/dist/components/core/kanban/SolidKanbanView.tsx +894 -0
- package/dist/components/core/kanban/SolidKanbanViewConfigure.tsx +154 -0
- package/dist/components/core/kanban/SolidKanbanViewFields.tsx +164 -0
- package/dist/components/core/kanban/SolidManyToOneFilterElement.tsx +59 -0
- package/dist/components/core/kanban/SolidSelectionDynamicFilterElement.tsx +50 -0
- package/dist/components/core/kanban/SolidSelectionStaticFilterElement.tsx +32 -0
- package/dist/components/core/kanban/SolidVarInputsFilterElement.tsx +184 -0
- package/dist/components/core/kanban/kanban-fields/SolidBigintKanbanField.tsx +9 -0
- package/dist/components/core/kanban/kanban-fields/SolidBooleanKanbanField.tsx +16 -0
- package/dist/components/core/kanban/kanban-fields/SolidComputedKanbanField.tsx +23 -0
- package/dist/components/core/kanban/kanban-fields/SolidDateKanbanField.tsx +14 -0
- package/dist/components/core/kanban/kanban-fields/SolidDatetimeKanbanField.tsx +13 -0
- package/dist/components/core/kanban/kanban-fields/SolidDecimalKanbanField.tsx +9 -0
- package/dist/components/core/kanban/kanban-fields/SolidExternalIdKanbanField.tsx +12 -0
- package/dist/components/core/kanban/kanban-fields/SolidFloatKanbanField.tsx +9 -0
- package/dist/components/core/kanban/kanban-fields/SolidIdKanbanField.tsx +14 -0
- package/dist/components/core/kanban/kanban-fields/SolidIntKanbanField.tsx +20 -0
- package/dist/components/core/kanban/kanban-fields/SolidLongTextKanbanField.tsx +9 -0
- package/dist/components/core/kanban/kanban-fields/SolidMediaMultipleKanbanField.tsx +140 -0
- package/dist/components/core/kanban/kanban-fields/SolidMediaSingleKanbanField.tsx +164 -0
- package/dist/components/core/kanban/kanban-fields/SolidRelationKanbanField.tsx +13 -0
- package/dist/components/core/kanban/kanban-fields/SolidRichTextKanbanField.tsx +9 -0
- package/dist/components/core/kanban/kanban-fields/SolidSelectionDynamicKanbanField.tsx +14 -0
- package/dist/components/core/kanban/kanban-fields/SolidSelectionStaticKanbanField.tsx +14 -0
- package/dist/components/core/kanban/kanban-fields/SolidShortTextKanbanField.tsx +121 -0
- package/dist/components/core/kanban/kanban-fields/SolidTimeKanbanField.tsx +12 -0
- package/dist/components/core/kanban/kanban-fields/SolidUuidKanbanField.tsx +13 -0
- package/dist/components/core/kanban/kanban-fields/relations/SolidRelationManyToOneKanbanField.tsx +16 -0
- package/dist/components/core/list/ListViewRowActionPopup.tsx +41 -0
- package/dist/components/core/list/SolidColumnSelector/SolidListColumnSelector.tsx +242 -0
- package/dist/components/core/list/SolidEmptyListViewPlaceholder.tsx +111 -0
- package/dist/components/core/list/SolidListView.tsx +2007 -0
- package/dist/components/core/list/SolidListViewColumn.tsx +165 -0
- package/dist/components/core/list/SolidListViewConfigure.tsx +339 -0
- package/dist/components/core/list/SolidListViewHeaderButton.tsx +31 -0
- package/dist/components/core/list/SolidListViewHeaderContextMenuButton.tsx +30 -0
- package/dist/components/core/list/SolidListViewRowButtonContextMenu.tsx +41 -0
- package/dist/components/core/list/SolidListViewShimmerLoading.tsx +78 -0
- package/dist/components/core/list/SolidListingHeader.tsx +42 -0
- package/dist/components/core/list/SolidManyToOneFilterElement.tsx +60 -0
- package/dist/components/core/list/SolidSelectionDynamicFilterElement.tsx +50 -0
- package/dist/components/core/list/SolidSelectionStaticFilterElement.tsx +32 -0
- package/dist/components/core/list/SolidTableRowCell.tsx +35 -0
- package/dist/components/core/list/SolidVarInputsFilterElement.tsx +184 -0
- package/dist/components/core/list/columns/SolidBigintColumn.tsx +9 -0
- package/dist/components/core/list/columns/SolidBooleanColumn.tsx +90 -0
- package/dist/components/core/list/columns/SolidComputedColumn.tsx +27 -0
- package/dist/components/core/list/columns/SolidDateColumn.tsx +90 -0
- package/dist/components/core/list/columns/SolidDatetimeColumn.tsx +79 -0
- package/dist/components/core/list/columns/SolidDecimalColumn.tsx +9 -0
- package/dist/components/core/list/columns/SolidExternalIdColumn.tsx +80 -0
- package/dist/components/core/list/columns/SolidFloatColumn.tsx +9 -0
- package/dist/components/core/list/columns/SolidIdColumn.tsx +79 -0
- package/dist/components/core/list/columns/SolidIntColumn.tsx +87 -0
- package/dist/components/core/list/columns/SolidLongTextColumn.tsx +9 -0
- package/dist/components/core/list/columns/SolidMediaMultipleColumn.tsx +301 -0
- package/dist/components/core/list/columns/SolidMediaSingleColumn.tsx +170 -0
- package/dist/components/core/list/columns/SolidRelationColumn.tsx +21 -0
- package/dist/components/core/list/columns/SolidRichTextColumn.tsx +9 -0
- package/dist/components/core/list/columns/SolidSelectionDynamicColumn.tsx +80 -0
- package/dist/components/core/list/columns/SolidSelectionStaticColumn.tsx +81 -0
- package/dist/components/core/list/columns/SolidShortTextColumn.tsx +160 -0
- package/dist/components/core/list/columns/SolidTimeColumn.tsx +78 -0
- package/dist/components/core/list/columns/SolidUuidColumn.tsx +79 -0
- package/dist/components/core/list/columns/relations/SolidRelationManyToManyColumn.tsx +106 -0
- package/dist/components/core/list/columns/relations/SolidRelationManyToOneColumn.tsx +117 -0
- package/dist/components/core/list/columns/relations/SolidRelationOneToManyColumn.tsx +110 -0
- package/dist/components/core/list/widgets/SolidManyToManyRelationAvatarListWidget.tsx +30 -0
- package/dist/components/core/list/widgets/SolidManyToOneRelationAvatarListWidget.tsx +30 -0
- package/dist/components/core/list/widgets/SolidShortTextAvatarWidget.tsx +70 -0
- package/dist/components/core/list/widgets/SolidShortTextFieldImageRenderModeWidget.tsx +21 -0
- package/dist/components/core/locales/SolidChatterLocaleTabView.tsx +91 -0
- package/dist/components/core/locales/SolidLocale.tsx +127 -0
- package/dist/components/core/model/CreateModel.tsx +495 -0
- package/dist/components/core/model/FieldMetaData.tsx +263 -0
- package/dist/components/core/model/FieldMetaDataForm.tsx +3509 -0
- package/dist/components/core/model/FieldSelector.tsx +62 -0
- package/dist/components/core/model/ModelListViewData.tsx +384 -0
- package/dist/components/core/model/ModelMetaData.tsx +921 -0
- package/dist/components/core/module/CreateModule.tsx +617 -0
- package/dist/components/core/module/ModuleListViewData.tsx +431 -0
- package/dist/components/core/solid-ai/SolidAiMainWrapper.tsx +8 -0
- package/dist/components/core/solid-ai/SolidXAIIcon.tsx +37 -0
- package/dist/components/core/users/CreateUser.tsx +467 -0
- package/dist/components/core/users/CreateUserRole.tsx +212 -0
- package/dist/components/core/users/UserListView.tsx +376 -0
- package/dist/components/layout/AdminLayout.tsx +57 -0
- package/dist/components/layout/AdminSidebar.tsx +65 -0
- package/dist/components/layout/AppConfig.tsx +104 -0
- package/dist/components/layout/AppSidebar.tsx +232 -0
- package/dist/components/layout/ButtonLoader.tsx +7 -0
- package/dist/components/layout/CustomPagination.tsx +55 -0
- package/dist/components/layout/DashboardHeader.tsx +89 -0
- package/dist/components/layout/FilterMenu.tsx +122 -0
- package/dist/components/layout/Footer.tsx +13 -0
- package/dist/components/layout/GlobalSearch.tsx +37 -0
- package/dist/components/layout/Header.tsx +8 -0
- package/dist/components/layout/Layout.tsx +205 -0
- package/dist/components/layout/ListingHeader.tsx +204 -0
- package/dist/components/layout/Loader.tsx +16 -0
- package/dist/components/layout/UserSidebar.tsx +53 -0
- package/dist/components/layout/context/layoutcontext.tsx +52 -0
- package/dist/components/layout/navbar-one.tsx +258 -0
- package/dist/components/layout/navbar-two-menu.tsx +72 -0
- package/dist/components/layout/navbar-two.tsx +37 -0
- package/dist/components/layout/user-profile-menu.tsx +213 -0
- package/dist/components/layout/user-profile.tsx +7 -0
- package/dist/components/modelsComponents/filterIcon.tsx +9 -0
- package/dist/constants/error-messages.ts +238 -0
- package/dist/declarations.d.ts +22 -0
- package/dist/helpers/AppTitle.tsx +12 -0
- package/dist/helpers/ToastContainer.tsx +94 -0
- package/dist/helpers/autoCompleteVirtualScroll.ts +41 -0
- package/dist/helpers/countries.tsx +260 -0
- package/dist/helpers/downloadFileWithProgress.ts +91 -0
- package/dist/helpers/downloadMediaFile.tsx +21 -0
- package/dist/helpers/getAcceptedFileTypes.tsx +22 -0
- package/dist/helpers/getRandomColors.tsx +68 -0
- package/dist/helpers/helpers.ts +61 -0
- package/dist/helpers/hydrateRelationRules.ts +120 -0
- package/dist/helpers/permissions.ts +7 -0
- package/dist/helpers/registry.ts +337 -0
- package/dist/helpers/resendOtpHelper.tsx +5 -0
- package/dist/helpers/revalidate.ts +7 -0
- package/dist/helpers/rolesHelper.ts +17 -0
- package/dist/helpers/solidIcons.tsx +1831 -0
- package/dist/helpers/updatePasswordField.ts +41 -0
- package/dist/index.ts +421 -0
- package/dist/nextAuth/authProviders.d.ts.map +1 -1
- package/dist/nextAuth/authProviders.js +6 -5
- package/dist/nextAuth/authProviders.js.map +1 -1
- package/dist/nextAuth/authProviders.tsx +232 -0
- package/dist/nextAuth/handleLogout.tsx +39 -0
- package/dist/nextAuth/refreshAccessToken.tsx +28 -0
- package/dist/redux/api/aiInteractionApi.ts +59 -0
- package/dist/redux/api/authApi.ts +131 -0
- package/dist/redux/api/dashboardApi.ts +56 -0
- package/dist/redux/api/dashboardQuestionApi.ts +17 -0
- package/dist/redux/api/exportTemplateApi.tsx +59 -0
- package/dist/redux/api/fetchBaseQuery.tsx +118 -0
- package/dist/redux/api/fieldApi.ts +86 -0
- package/dist/redux/api/importTransactionApi.tsx +69 -0
- package/dist/redux/api/mediaApi.ts +55 -0
- package/dist/redux/api/mediaStorageProviderApi.ts +55 -0
- package/dist/redux/api/modelApi.ts +80 -0
- package/dist/redux/api/moduleApi.ts +72 -0
- package/dist/redux/api/permissionApi.ts +32 -0
- package/dist/redux/api/pincodeApi.tsx +56 -0
- package/dist/redux/api/roleApi.ts +58 -0
- package/dist/redux/api/solidActionApi.ts +66 -0
- package/dist/redux/api/solidChatterMessageApi.ts +25 -0
- package/dist/redux/api/solidEntityApi.tsx +164 -0
- package/dist/redux/api/solidMenuApi.ts +71 -0
- package/dist/redux/api/solidServiceApi.ts +31 -0
- package/dist/redux/api/solidSettingsApi.tsx +83 -0
- package/dist/redux/api/solidViewApi.ts +73 -0
- package/dist/redux/api/stateApi.tsx +56 -0
- package/dist/redux/api/testApi.ts +21 -0
- package/dist/redux/api/userApi.ts +135 -0
- package/dist/redux/features/authSlice.ts +19 -0
- package/dist/redux/features/dataViewSlice.ts +26 -0
- package/dist/redux/features/navbarSlice.ts +21 -0
- package/dist/redux/features/popupSlice.ts +37 -0
- package/dist/redux/features/settingsSlice.ts +60 -0
- package/dist/redux/features/themeSlice.ts +17 -0
- package/dist/redux/features/userSlice.ts +28 -0
- package/dist/redux/hooks/useSolidPopup.ts +20 -0
- package/dist/redux/store/defaultStoreConfig.ts +62 -0
- package/dist/styles.ts +4 -0
- package/dist/types/handlebars.d.ts +4 -0
- package/dist/types/index.d.ts +76 -0
- package/dist/types/layout.d.ts +94 -0
- package/dist/types/next-auth.d.ts +0 -0
- package/dist/types/next.d.ts +46 -0
- package/dist/types/solid-core.d.ts +320 -0
- package/package.json +1 -1
- package/src/components/auth/SolidLogin.tsx +26 -13
- package/src/nextAuth/authProviders.tsx +9 -5
|
@@ -0,0 +1,627 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
import { SolidListView } from "../../../../../components/core/list/SolidListView";
|
|
3
|
+
import { camelCase, capitalize } from "lodash";
|
|
4
|
+
import { Dialog } from "primereact/dialog";
|
|
5
|
+
import { useEffect, useState } from "react";
|
|
6
|
+
import * as Yup from 'yup';
|
|
7
|
+
import SolidFormView from '../../../../../components/core/form/SolidFormView';
|
|
8
|
+
import { FormikObject, ISolidField, SolidFieldProps } from "../ISolidField";
|
|
9
|
+
import { usePathname, useRouter } from "next/navigation";
|
|
10
|
+
import { getExtensionComponent } from "../../../../../helpers/registry";
|
|
11
|
+
import { SolidFormFieldWidgetProps, SolidFormWidgetProps } from "../../../../../types/solid-core";
|
|
12
|
+
import { Message } from "primereact/message";
|
|
13
|
+
import FieldMetaData from "../../../../../components/core/model/FieldMetaData";
|
|
14
|
+
import { Chip } from "primereact/chip";
|
|
15
|
+
import { SolidFieldTooltip } from "../../../../../components/common/SolidFieldTooltip";
|
|
16
|
+
import { Divider } from "primereact/divider";
|
|
17
|
+
import { Button } from "primereact/button";
|
|
18
|
+
import { ERROR_MESSAGES } from "../../../../../constants/error-messages";
|
|
19
|
+
|
|
20
|
+
export type FormViewParams = {
|
|
21
|
+
moduleName: any;
|
|
22
|
+
id: any;
|
|
23
|
+
embeded: any;
|
|
24
|
+
isCustomCreate: any;
|
|
25
|
+
customLayout: any;
|
|
26
|
+
modelName: any;
|
|
27
|
+
parentData: any;
|
|
28
|
+
onEmbeddedFormSave: any;
|
|
29
|
+
inlineCreateAutoSave: any;
|
|
30
|
+
customCreateHandler?: any;
|
|
31
|
+
handlePopupClose?: any
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export class SolidRelationOneToManyField implements ISolidField {
|
|
35
|
+
|
|
36
|
+
private fieldContext: SolidFieldProps;
|
|
37
|
+
constructor(fieldContext: SolidFieldProps) {
|
|
38
|
+
this.fieldContext = fieldContext;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
initialValue(): any {
|
|
42
|
+
|
|
43
|
+
// const manyToOneFieldData = this.fieldContext.data[this.fieldContext.field.attrs.name];
|
|
44
|
+
// const fieldMetadata = this.fieldContext.fieldMetadata;
|
|
45
|
+
// const userKeyField = fieldMetadata.relationModel.userKeyField.name;
|
|
46
|
+
// const manyToOneColVal = manyToOneFieldData ? manyToOneFieldData[userKeyField] : '';
|
|
47
|
+
|
|
48
|
+
// return { label: manyToOneColVal || '', value: manyToOneFieldData?.id || '' };
|
|
49
|
+
|
|
50
|
+
return '';
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
updateFormData(value: any, formData: FormData): any {
|
|
54
|
+
const fieldLayoutInfo = this.fieldContext.field;
|
|
55
|
+
// if(!value || value.length === 0) {
|
|
56
|
+
// formData.append(`${fieldLayoutInfo.attrs.name}Command`, "clear");
|
|
57
|
+
|
|
58
|
+
// }
|
|
59
|
+
if (value) {
|
|
60
|
+
formData.append(`${fieldLayoutInfo.attrs.name}Id`, value.value);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
validationSchema(): Yup.Schema {
|
|
65
|
+
let schema = Yup.object();
|
|
66
|
+
|
|
67
|
+
const fieldMetadata = this.fieldContext.fieldMetadata;
|
|
68
|
+
const fieldLayoutInfo = this.fieldContext.field;
|
|
69
|
+
const fieldLabel = fieldLayoutInfo.attrs.label ?? fieldMetadata.displayName;
|
|
70
|
+
|
|
71
|
+
// 1. required
|
|
72
|
+
if (fieldMetadata.required) {
|
|
73
|
+
schema = schema.required(ERROR_MESSAGES.FIELD_REUQIRED(fieldLabel));
|
|
74
|
+
}
|
|
75
|
+
return schema;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
render(formik: FormikObject) {
|
|
79
|
+
const fieldMetadata = this.fieldContext.fieldMetadata;
|
|
80
|
+
|
|
81
|
+
const fieldLayoutInfo = this.fieldContext.field;
|
|
82
|
+
const fieldLabel = fieldLayoutInfo.attrs.label ?? fieldMetadata.displayName;
|
|
83
|
+
const className = fieldLayoutInfo.attrs?.className || 'field col-12';
|
|
84
|
+
|
|
85
|
+
const userKeyFieldName = fieldMetadata.relationModel?.userKeyField?.name;
|
|
86
|
+
|
|
87
|
+
let DynamicWidget = getExtensionComponent("SolidFormFieldRelationViewModeWidget");
|
|
88
|
+
const widgetProps = {
|
|
89
|
+
label: fieldLabel,
|
|
90
|
+
value: (this.fieldContext.data?.[fieldLayoutInfo.attrs.name] || []).map(
|
|
91
|
+
(item: any) => ({ label: item[userKeyFieldName] ?? '' })
|
|
92
|
+
),
|
|
93
|
+
layout: fieldLayoutInfo
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// DefaultRelationOneToManyFormEditWidget
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
let viewWidget = fieldLayoutInfo.attrs.viewWidget;
|
|
100
|
+
let editWidget = fieldLayoutInfo.attrs.editWidget;
|
|
101
|
+
if (!editWidget) {
|
|
102
|
+
editWidget = 'DefaultRelationOneToManyFormEditWidget';
|
|
103
|
+
}
|
|
104
|
+
if (!viewWidget) {
|
|
105
|
+
viewWidget = 'DefaultRelationOneToManyFormViewWidget';
|
|
106
|
+
}
|
|
107
|
+
const viewMode: string = this.fieldContext.viewMode;
|
|
108
|
+
return (
|
|
109
|
+
<>
|
|
110
|
+
<div className={className}>
|
|
111
|
+
{viewMode === "view" &&
|
|
112
|
+
this.renderExtensionRenderMode(viewWidget, formik)
|
|
113
|
+
}
|
|
114
|
+
{viewMode === "edit" && (
|
|
115
|
+
<>
|
|
116
|
+
{editWidget &&
|
|
117
|
+
this.renderExtensionRenderMode(editWidget, formik)
|
|
118
|
+
}
|
|
119
|
+
</>
|
|
120
|
+
)
|
|
121
|
+
}
|
|
122
|
+
</div>
|
|
123
|
+
</>
|
|
124
|
+
);
|
|
125
|
+
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
renderExtensionRenderMode(widget: string, formik: FormikObject) {
|
|
129
|
+
let DynamicWidget = getExtensionComponent(widget);
|
|
130
|
+
const widgetProps: SolidFormFieldWidgetProps = {
|
|
131
|
+
formik: formik,
|
|
132
|
+
fieldContext: this.fieldContext,
|
|
133
|
+
}
|
|
134
|
+
return (
|
|
135
|
+
<>
|
|
136
|
+
{DynamicWidget && <DynamicWidget {...widgetProps} />}
|
|
137
|
+
</>
|
|
138
|
+
)
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
export const DefaultRelationOneToManyFormEditWidget = ({ formik, fieldContext }: SolidFormFieldWidgetProps) => {
|
|
146
|
+
const fieldMetadata = fieldContext.fieldMetadata;
|
|
147
|
+
const router = useRouter();
|
|
148
|
+
|
|
149
|
+
const fieldLayoutInfo = fieldContext.field;
|
|
150
|
+
const className = fieldLayoutInfo.attrs?.className || 'field col-12';
|
|
151
|
+
const fieldLabel = fieldLayoutInfo.attrs.label ?? fieldMetadata.displayName;
|
|
152
|
+
const fieldDescription = fieldLayoutInfo.attrs.description ?? fieldMetadata.description;
|
|
153
|
+
const solidFormViewMetaData = fieldContext.solidFormViewMetaData;
|
|
154
|
+
const [visibleCreateRelationEntity, setvisibleCreateRelationEntity] = useState(false);
|
|
155
|
+
const [listViewParams, setListViewParams] = useState<any>()
|
|
156
|
+
const [formViewParams, setformViewParams] = useState<FormViewParams>()
|
|
157
|
+
const [refreshList, setRefreshList] = useState(false); // Added state for rerender
|
|
158
|
+
const showFieldLabel = fieldLayoutInfo?.attrs?.showLabel;
|
|
159
|
+
const readOnlyPermission = fieldContext.readOnly;
|
|
160
|
+
const pathname = usePathname();
|
|
161
|
+
const lastPathSegment = pathname.split('/').pop();
|
|
162
|
+
const userKeyField: any = Object.entries(fieldContext.solidFormViewMetaData.data.solidFieldsMetadata).find(([_, value]: any) => value.isUserKey)?.[0];
|
|
163
|
+
const [showSaveParentEntityConfirmationPopup, setShowSaveParentEntityConfirmationPopup] = useState(false);
|
|
164
|
+
|
|
165
|
+
useEffect(() => {
|
|
166
|
+
const urlParams = new URLSearchParams(window.location.search);
|
|
167
|
+
const childEntity = urlParams.get('childEntity');
|
|
168
|
+
if (childEntity === fieldLayoutInfo.attrs.name && lastPathSegment !== "new") {
|
|
169
|
+
handlePopupOpen('new');
|
|
170
|
+
}
|
|
171
|
+
}, [])
|
|
172
|
+
|
|
173
|
+
const handlePopupOpen = (id: any) => {
|
|
174
|
+
if (lastPathSegment === "new") {
|
|
175
|
+
setShowSaveParentEntityConfirmationPopup(true);
|
|
176
|
+
} else {
|
|
177
|
+
|
|
178
|
+
const formviewparams: FormViewParams = {
|
|
179
|
+
moduleName: fieldContext.fieldMetadata.relationModelModuleName,
|
|
180
|
+
id: id,
|
|
181
|
+
embeded: true,
|
|
182
|
+
isCustomCreate: false,
|
|
183
|
+
customLayout: fieldLayoutInfo?.attrs?.inlineCreateLayout,
|
|
184
|
+
modelName: camelCase(fieldContext.fieldMetadata.relationCoModelSingularName),
|
|
185
|
+
parentData: userKeyField ? { [userKeyField]: { solidManyToOneLabel: fieldContext.data[userKeyField], solidManyToOneValue: fieldContext.data['id'] } } : {},
|
|
186
|
+
onEmbeddedFormSave: fieldContext.onEmbeddedFormSave,
|
|
187
|
+
inlineCreateAutoSave: fieldLayoutInfo?.attrs?.inlineCreateAutoSave,
|
|
188
|
+
}
|
|
189
|
+
setformViewParams(formviewparams);
|
|
190
|
+
setvisibleCreateRelationEntity(true);
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
const handlePopupClose = () => {
|
|
195
|
+
setvisibleCreateRelationEntity(false);
|
|
196
|
+
const currentUrl = new URL(window.location.href);
|
|
197
|
+
currentUrl.searchParams.delete('childEntity');
|
|
198
|
+
router.push(currentUrl.toString());
|
|
199
|
+
setRefreshList((prev) => !prev);
|
|
200
|
+
const customFilter = fieldContext.fieldMetadata.relationCoModelFieldName ? fieldContext.fieldMetadata.relationCoModelFieldName : `${fieldContext.modelName}`
|
|
201
|
+
const lisviewparams = {
|
|
202
|
+
moduleName: fieldContext.fieldMetadata.relationModelModuleName,
|
|
203
|
+
modelName: camelCase(fieldContext.fieldMetadata.relationCoModelSingularName),
|
|
204
|
+
inlineCreate: readOnlyPermission === false ? true : false,
|
|
205
|
+
customLayout: fieldLayoutInfo?.attrs?.inlineListLayout,
|
|
206
|
+
embeded: true,
|
|
207
|
+
id: fieldContext.data ? fieldContext?.data?.id : 'new',
|
|
208
|
+
customFilter: {
|
|
209
|
+
[customFilter]: {
|
|
210
|
+
id: {
|
|
211
|
+
$eq: fieldContext.data && fieldContext.data.id !== undefined ? fieldContext.data.id : -1
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
setListViewParams(lisviewparams)
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
//Intial Params
|
|
221
|
+
useEffect(() => {
|
|
222
|
+
|
|
223
|
+
const customFilter = fieldContext.fieldMetadata.relationCoModelFieldName ? fieldContext.fieldMetadata.relationCoModelFieldName : `${fieldContext.modelName}`
|
|
224
|
+
const listviewparams = {
|
|
225
|
+
moduleName: fieldContext.fieldMetadata.relationModelModuleName,
|
|
226
|
+
modelName: camelCase(fieldContext.fieldMetadata.relationCoModelSingularName),
|
|
227
|
+
inlineCreate: readOnlyPermission === false ? true : false,
|
|
228
|
+
customLayout: fieldLayoutInfo?.attrs?.inlineListLayout,
|
|
229
|
+
embeded: true,
|
|
230
|
+
id: fieldContext.data ? fieldContext?.data?.id : 'new',
|
|
231
|
+
customFilter: {
|
|
232
|
+
[customFilter]: {
|
|
233
|
+
id: {
|
|
234
|
+
$eq: fieldContext.data && fieldContext.data.id !== undefined ? fieldContext.data.id : -1
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
setListViewParams(listviewparams);
|
|
240
|
+
const formviewparams: FormViewParams = {
|
|
241
|
+
moduleName: fieldContext.fieldMetadata.relationModelModuleName,
|
|
242
|
+
modelName: camelCase(fieldContext.fieldMetadata.relationCoModelSingularName),
|
|
243
|
+
id: "new",
|
|
244
|
+
embeded: true,
|
|
245
|
+
isCustomCreate: false,
|
|
246
|
+
customLayout: fieldLayoutInfo?.attrs?.inlineCreateLayout,
|
|
247
|
+
parentData: userKeyField ? { [userKeyField]: { solidManyToOneLabel: fieldContext.data[userKeyField], solidManyToOneValue: fieldContext.data['id'] } } : {},
|
|
248
|
+
onEmbeddedFormSave: fieldContext.onEmbeddedFormSave,
|
|
249
|
+
inlineCreateAutoSave: fieldLayoutInfo?.attrs?.inlineCreateAutoSave,
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
setformViewParams(formviewparams)
|
|
255
|
+
|
|
256
|
+
}, [readOnlyPermission])
|
|
257
|
+
|
|
258
|
+
const fieldDisabled = fieldLayoutInfo.attrs?.disabled;
|
|
259
|
+
const fieldReadonly = fieldLayoutInfo.attrs?.readonly;
|
|
260
|
+
|
|
261
|
+
const formDisabled = solidFormViewMetaData.data.solidView?.layout?.attrs?.disabled;
|
|
262
|
+
const formReadonly = solidFormViewMetaData.data.solidView?.layout?.attrs?.readonly;
|
|
263
|
+
const isFormFieldValid = (formik: any, fieldName: string) => formik.touched[fieldName] && formik.errors[fieldName];
|
|
264
|
+
|
|
265
|
+
const saveParentEntity = async () => {
|
|
266
|
+
const currentPath = window.location.pathname;
|
|
267
|
+
const currentUrl = new URL(window.location.href);
|
|
268
|
+
currentUrl.searchParams.set('childEntity', fieldLayoutInfo.attrs.name);
|
|
269
|
+
currentUrl.searchParams.set('viewMode', 'edit');
|
|
270
|
+
const updatedPath = currentUrl.toString();
|
|
271
|
+
try {
|
|
272
|
+
console.log("updatedPath", updatedPath);
|
|
273
|
+
router.push(updatedPath);
|
|
274
|
+
await formik.handleSubmit();
|
|
275
|
+
} catch {
|
|
276
|
+
|
|
277
|
+
}
|
|
278
|
+
setShowSaveParentEntityConfirmationPopup(false);
|
|
279
|
+
};
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
return (
|
|
284
|
+
<div>
|
|
285
|
+
{/* <div className="justify-content-center align-items-center"> */}
|
|
286
|
+
{showFieldLabel != false &&
|
|
287
|
+
<label htmlFor={fieldLayoutInfo.attrs.name} className="form-field-label">{fieldLabel}
|
|
288
|
+
{fieldMetadata.required && <span className="text-red-500"> *</span>}
|
|
289
|
+
<SolidFieldTooltip fieldContext={fieldContext} />
|
|
290
|
+
</label>
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
{/* {lastPathSegment === 'new' && <p>Please save the {solidFormViewMetaData.data.solidView.model.displayName} to be able to save {fieldMetadata.displayName}</p>} */}
|
|
294
|
+
{listViewParams &&
|
|
295
|
+
<SolidListView key={refreshList.toString()} {...listViewParams} handlePopUpOpen={handlePopupOpen} />
|
|
296
|
+
}
|
|
297
|
+
{readOnlyPermission !== true && formViewParams &&
|
|
298
|
+
<RenderSolidFormEmbededView formik={formik} fieldContext={fieldContext} visibleCreateRelationEntity={visibleCreateRelationEntity} setvisibleCreateRelationEntity={setvisibleCreateRelationEntity} formViewParams={formViewParams} handlePopupClose={handlePopupClose}></RenderSolidFormEmbededView>
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
<Dialog showHeader={false} headerClassName="py-2" contentClassName="px-0 pb-0" className="solid-confirm-dialog" contentStyle={{ borderRadius: 6 }} visible={showSaveParentEntityConfirmationPopup} style={{ width: '20vw' }} onHide={() => { if (!showSaveParentEntityConfirmationPopup) return; setShowSaveParentEntityConfirmationPopup(false); }}>
|
|
302
|
+
<div className="p-4">
|
|
303
|
+
<p className="m-0 solid-primary-title" style={{ fontSize: 16 }}>
|
|
304
|
+
Before Creating {fieldLabel} you need to save {solidFormViewMetaData?.data?.solidView?.model?.displayName ? solidFormViewMetaData?.data?.solidView?.model?.displayName : capitalize(fieldContext.modelName)}.
|
|
305
|
+
Please click save if you wish to proceed ?
|
|
306
|
+
</p>
|
|
307
|
+
<div className="flex align-items-center justify-content-start gap-2 mt-3">
|
|
308
|
+
<Button label="Save" size="small" onClick={saveParentEntity} />
|
|
309
|
+
<Button label="Cancel" size="small" onClick={() => setShowSaveParentEntityConfirmationPopup(false)} outlined className='bg-primary-reverse' />
|
|
310
|
+
</div>
|
|
311
|
+
</div>
|
|
312
|
+
</Dialog>
|
|
313
|
+
|
|
314
|
+
</div>
|
|
315
|
+
);
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
export const DefaultRelationOneToManyFormViewWidget = ({ formik, fieldContext }: SolidFormFieldWidgetProps) => {
|
|
320
|
+
const fieldMetadata = fieldContext.fieldMetadata;
|
|
321
|
+
|
|
322
|
+
const fieldLayoutInfo = fieldContext.field;
|
|
323
|
+
const className = fieldLayoutInfo.attrs?.className || 'field col-12';
|
|
324
|
+
const fieldLabel = fieldLayoutInfo.attrs.label ?? fieldMetadata.displayName;
|
|
325
|
+
const fieldDescription = fieldLayoutInfo.attrs.description ?? fieldMetadata.description;
|
|
326
|
+
const solidFormViewMetaData = fieldContext.solidFormViewMetaData;
|
|
327
|
+
const [visibleCreateRelationEntity, setvisibleCreateRelationEntity] = useState(false);
|
|
328
|
+
const [listViewParams, setListViewParams] = useState<any>()
|
|
329
|
+
const [formViewParams, setformViewParams] = useState<FormViewParams>()
|
|
330
|
+
const [refreshList, setRefreshList] = useState(false); // Added state for rerender
|
|
331
|
+
const showFieldLabel = fieldLayoutInfo?.attrs?.showLabel;
|
|
332
|
+
const readOnlyPermission = fieldContext.readOnly;
|
|
333
|
+
const pathname = usePathname();
|
|
334
|
+
const lastPathSegment = pathname.split('/').pop();
|
|
335
|
+
const userKeyField: any = Object.entries(fieldContext.solidFormViewMetaData.data.solidFieldsMetadata).find(([_, value]: any) => value.isUserKey)?.[0];
|
|
336
|
+
|
|
337
|
+
const handlePopupOpen = (id: any) => {
|
|
338
|
+
|
|
339
|
+
const formviewparams: FormViewParams = {
|
|
340
|
+
moduleName: fieldContext.fieldMetadata.relationModelModuleName,
|
|
341
|
+
id: id,
|
|
342
|
+
embeded: true,
|
|
343
|
+
isCustomCreate: false,
|
|
344
|
+
customLayout: fieldLayoutInfo?.attrs?.inlineCreateLayout,
|
|
345
|
+
modelName: camelCase(fieldContext.fieldMetadata.relationCoModelSingularName),
|
|
346
|
+
parentData: userKeyField ? { [userKeyField]: { solidManyToOneLabel: fieldContext.data[userKeyField], solidManyToOneValue: fieldContext.data['id'] } } : {},
|
|
347
|
+
onEmbeddedFormSave: fieldContext.onEmbeddedFormSave,
|
|
348
|
+
inlineCreateAutoSave: fieldLayoutInfo?.attrs?.inlineCreateAutoSave,
|
|
349
|
+
|
|
350
|
+
}
|
|
351
|
+
setformViewParams(formviewparams);
|
|
352
|
+
setvisibleCreateRelationEntity(true);
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
const handlePopupClose = () => {
|
|
358
|
+
setvisibleCreateRelationEntity(false);
|
|
359
|
+
setRefreshList((prev) => !prev);
|
|
360
|
+
const customFilter = fieldContext.fieldMetadata.relationCoModelFieldName ? fieldContext.fieldMetadata.relationCoModelFieldName : `${fieldContext.modelName}`
|
|
361
|
+
const lisviewparams = {
|
|
362
|
+
moduleName: fieldContext.fieldMetadata.relationModelModuleName,
|
|
363
|
+
modelName: camelCase(fieldContext.fieldMetadata.relationCoModelSingularName),
|
|
364
|
+
inlineCreate: readOnlyPermission === false ? true : false,
|
|
365
|
+
customLayout: fieldLayoutInfo?.attrs?.inlineListLayout,
|
|
366
|
+
embeded: true,
|
|
367
|
+
id: fieldContext.data ? fieldContext?.data?.id : 'new',
|
|
368
|
+
customFilter: {
|
|
369
|
+
[customFilter]: {
|
|
370
|
+
id: {
|
|
371
|
+
$eq: fieldContext.data ? fieldContext?.data?.id : -1
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
setListViewParams(lisviewparams)
|
|
377
|
+
}
|
|
378
|
+
//Intial Params
|
|
379
|
+
useEffect(() => {
|
|
380
|
+
|
|
381
|
+
const customFilter = fieldContext.fieldMetadata.relationCoModelFieldName ? fieldContext.fieldMetadata.relationCoModelFieldName : `${fieldContext.modelName}`
|
|
382
|
+
const listviewparams = {
|
|
383
|
+
moduleName: fieldContext.fieldMetadata.relationModelModuleName,
|
|
384
|
+
modelName: camelCase(fieldContext.fieldMetadata.relationCoModelSingularName),
|
|
385
|
+
inlineCreate: readOnlyPermission === false ? true : false,
|
|
386
|
+
customLayout: fieldLayoutInfo?.attrs?.inlineListLayout,
|
|
387
|
+
embeded: true,
|
|
388
|
+
id: fieldContext.data ? fieldContext?.data?.id : 'new',
|
|
389
|
+
customFilter: {
|
|
390
|
+
[customFilter]: {
|
|
391
|
+
id: {
|
|
392
|
+
$eq: fieldContext?.data?.id !== undefined ? fieldContext?.data?.id : -1
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
setListViewParams(listviewparams);
|
|
398
|
+
const formviewparams: FormViewParams = {
|
|
399
|
+
moduleName: fieldContext.fieldMetadata.relationModelModuleName,
|
|
400
|
+
id: "new",
|
|
401
|
+
embeded: true,
|
|
402
|
+
inlineCreateAutoSave: fieldLayoutInfo?.attrs?.inlineCreateAutoSave,
|
|
403
|
+
customLayout: fieldLayoutInfo?.attrs?.inlineCreateLayout,
|
|
404
|
+
modelName: camelCase(fieldContext.fieldMetadata.relationCoModelSingularName),
|
|
405
|
+
parentData: userKeyField ? { [userKeyField]: { solidManyToOneLabel: fieldContext.data[userKeyField], solidManyToOneValue: fieldContext.data['id'] } } : {},
|
|
406
|
+
onEmbeddedFormSave: fieldContext.onEmbeddedFormSave,
|
|
407
|
+
isCustomCreate: false
|
|
408
|
+
|
|
409
|
+
}
|
|
410
|
+
setformViewParams(formviewparams)
|
|
411
|
+
|
|
412
|
+
}, [readOnlyPermission])
|
|
413
|
+
|
|
414
|
+
const fieldDisabled = fieldLayoutInfo.attrs?.disabled;
|
|
415
|
+
const fieldReadonly = fieldLayoutInfo.attrs?.readonly;
|
|
416
|
+
|
|
417
|
+
const formDisabled = solidFormViewMetaData.data.solidView?.layout?.attrs?.disabled;
|
|
418
|
+
const formReadonly = solidFormViewMetaData.data.solidView?.layout?.attrs?.readonly;
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
return (
|
|
422
|
+
<div>
|
|
423
|
+
{/* <div className="justify-content-center align-items-center"> */}
|
|
424
|
+
{showFieldLabel != false &&
|
|
425
|
+
<label htmlFor={fieldLayoutInfo.attrs.name} className="form-field-label">{fieldLabel}
|
|
426
|
+
{fieldMetadata.required && <span className="text-red-500"> *</span>}
|
|
427
|
+
<SolidFieldTooltip fieldContext={fieldContext} />
|
|
428
|
+
</label>
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
{/* {lastPathSegment === 'new' && <p>Please save the {solidFormViewMetaData.data.solidView.model.displayName} to be able to save {fieldMetadata.displayName}</p>} */}
|
|
432
|
+
{listViewParams &&
|
|
433
|
+
<SolidListView key={refreshList.toString()} {...listViewParams} handlePopUpOpen={handlePopupOpen} />
|
|
434
|
+
}
|
|
435
|
+
{readOnlyPermission !== true && formViewParams &&
|
|
436
|
+
<RenderSolidFormEmbededView fieldLayoutInfo={fieldLayoutInfo} visibleCreateRelationEntity={visibleCreateRelationEntity} setvisibleCreateRelationEntity={setvisibleCreateRelationEntity} formViewParams={formViewParams} handlePopupClose={handlePopupClose}></RenderSolidFormEmbededView>
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
</div>
|
|
441
|
+
);
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
export const RenderSolidFormEmbededView = ({ fieldLayoutInfo, customCreateHandler, visibleCreateRelationEntity, setvisibleCreateRelationEntity, formViewParams, handlePopupClose }: any) => {
|
|
446
|
+
const router = useRouter();
|
|
447
|
+
|
|
448
|
+
const params: FormViewParams = {
|
|
449
|
+
moduleName: formViewParams.moduleName,
|
|
450
|
+
id: formViewParams?.id,
|
|
451
|
+
modelName: camelCase(formViewParams.modelName),
|
|
452
|
+
embeded: formViewParams.embeded,
|
|
453
|
+
customLayout: formViewParams.customLayout,
|
|
454
|
+
customCreateHandler: ((values: any) => {
|
|
455
|
+
setvisibleCreateRelationEntity(false);
|
|
456
|
+
customCreateHandler(values)
|
|
457
|
+
}),
|
|
458
|
+
inlineCreateAutoSave: formViewParams.inlineCreateAutoSave,
|
|
459
|
+
handlePopupClose: handlePopupClose,
|
|
460
|
+
parentData: formViewParams.parentData,
|
|
461
|
+
onEmbeddedFormSave: formViewParams.onEmbeddedFormSave,
|
|
462
|
+
isCustomCreate: formViewParams.isCustomCreate
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
return (
|
|
466
|
+
<div className="many-to-many-add" >
|
|
467
|
+
{/* <Button icon="pi pi-plus"
|
|
468
|
+
rounded
|
|
469
|
+
outlined
|
|
470
|
+
aria-label="Filter"
|
|
471
|
+
type="button"
|
|
472
|
+
onClick={() => setvisibleCreateRelationEntity(true)}
|
|
473
|
+
/> */}
|
|
474
|
+
<Dialog
|
|
475
|
+
header=""
|
|
476
|
+
showHeader={false}
|
|
477
|
+
visible={visibleCreateRelationEntity}
|
|
478
|
+
className="solid-dialog"
|
|
479
|
+
style={{
|
|
480
|
+
width: fieldLayoutInfo?.attrs?.inlineCreateLayout?.attrs?.width ?? "60vw",
|
|
481
|
+
height: fieldLayoutInfo?.attrs?.inlineCreateLayout?.attrs?.height ?? "auto"
|
|
482
|
+
}}
|
|
483
|
+
onHide={() => {
|
|
484
|
+
if (!visibleCreateRelationEntity) return;
|
|
485
|
+
setvisibleCreateRelationEntity(false);
|
|
486
|
+
}}
|
|
487
|
+
breakpoints={{ '1199px': '35rem', "767px": '85vw', "550px": '90vw' }}
|
|
488
|
+
|
|
489
|
+
>
|
|
490
|
+
{params &&
|
|
491
|
+
<SolidFormView {...params} />
|
|
492
|
+
}
|
|
493
|
+
</Dialog>
|
|
494
|
+
</div>
|
|
495
|
+
)
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
export const PseudoRelationOneToManyFormWidget = ({ formData, field, fieldsMetadata, viewMetadata, formViewData }: SolidFormWidgetProps) => {
|
|
500
|
+
|
|
501
|
+
const fieldLayoutInfo = field;
|
|
502
|
+
const className = fieldLayoutInfo.attrs?.className || 'field col-12';
|
|
503
|
+
const fieldLabel = fieldLayoutInfo.attrs.label;
|
|
504
|
+
const fieldDescription = fieldLayoutInfo.attrs.description;
|
|
505
|
+
const [visibleCreateRelationEntity, setvisibleCreateRelationEntity] = useState(false);
|
|
506
|
+
const [listViewParams, setListViewParams] = useState<any>()
|
|
507
|
+
const [formViewParams, setformViewParams] = useState<FormViewParams | null>(null)
|
|
508
|
+
const [refreshList, setRefreshList] = useState(false); // Added state for rerender
|
|
509
|
+
const showFieldLabel = fieldLayoutInfo?.attrs?.showLabel;
|
|
510
|
+
const readOnlyPermission = fieldLayoutInfo.readOnly ? fieldLayoutInfo.readOnly : false;
|
|
511
|
+
const pathname = usePathname();
|
|
512
|
+
|
|
513
|
+
const parentModelName = fieldLayoutInfo?.attrs?.parentModelName;
|
|
514
|
+
const childModelName = fieldLayoutInfo?.attrs?.childModelName;
|
|
515
|
+
const parentFieldName = fieldLayoutInfo?.attrs?.parentFieldName;
|
|
516
|
+
const childFieldName = fieldLayoutInfo?.attrs?.childFieldName;
|
|
517
|
+
const parentModuleName = fieldLayoutInfo?.attrs?.parentModuleName;
|
|
518
|
+
const childModuleName = fieldLayoutInfo?.attrs?.childModuleName
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
const handlePopupOpen = (id: any) => {
|
|
522
|
+
|
|
523
|
+
const formviewparams: FormViewParams = {
|
|
524
|
+
moduleName: childModuleName,
|
|
525
|
+
modelName: camelCase(childModelName),
|
|
526
|
+
id: id,
|
|
527
|
+
embeded: true,
|
|
528
|
+
isCustomCreate: false,
|
|
529
|
+
inlineCreateAutoSave: fieldLayoutInfo?.attrs?.inlineCreateAutoSave,
|
|
530
|
+
customLayout: fieldLayoutInfo?.attrs?.inlineCreateLayout,
|
|
531
|
+
parentData: childFieldName && formViewData?.data && formViewData?.data[parentFieldName] ? { [childFieldName]: formViewData.data[parentFieldName] } : {},
|
|
532
|
+
onEmbeddedFormSave: fieldLayoutInfo.onEmbeddedFormSave ? fieldLayoutInfo : false
|
|
533
|
+
}
|
|
534
|
+
setformViewParams(formviewparams);
|
|
535
|
+
setvisibleCreateRelationEntity(true);
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
const handlePopupClose = () => {
|
|
541
|
+
setvisibleCreateRelationEntity(false);
|
|
542
|
+
setRefreshList((prev) => !prev);
|
|
543
|
+
const customFilter = childModelName
|
|
544
|
+
const lisviewparams = {
|
|
545
|
+
moduleName: childModuleName,
|
|
546
|
+
modelName: camelCase(childModelName),
|
|
547
|
+
inlineCreate: readOnlyPermission === false ? true : false,
|
|
548
|
+
customLayout: fieldLayoutInfo?.attrs?.inlineListLayout,
|
|
549
|
+
embeded: true,
|
|
550
|
+
id: formViewData && formViewData?.data ? formViewData?.data?.id : 'new',
|
|
551
|
+
customFilter: childFieldName && formViewData?.data
|
|
552
|
+
? {
|
|
553
|
+
[childFieldName]: {
|
|
554
|
+
$eq: formViewData.data[parentFieldName]
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
: {
|
|
558
|
+
id :{
|
|
559
|
+
$eq:-1
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
setListViewParams(lisviewparams)
|
|
564
|
+
}
|
|
565
|
+
//Intial Params
|
|
566
|
+
useEffect(() => {
|
|
567
|
+
const customFilter = childModelName
|
|
568
|
+
const listviewparams = {
|
|
569
|
+
moduleName: childModuleName,
|
|
570
|
+
modelName: camelCase(childModelName),
|
|
571
|
+
inlineCreate: readOnlyPermission === false ? true : false,
|
|
572
|
+
customLayout: fieldLayoutInfo?.attrs?.inlineListLayout,
|
|
573
|
+
embeded: true,
|
|
574
|
+
id: formViewData && formViewData?.data ? formViewData?.data?.id : 'new',
|
|
575
|
+
customFilter: childFieldName && formViewData?.data
|
|
576
|
+
? {
|
|
577
|
+
[childFieldName]: {
|
|
578
|
+
$eq: formViewData.data[parentFieldName]
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
: {
|
|
582
|
+
id :{
|
|
583
|
+
$eq:-1
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
setListViewParams(listviewparams);
|
|
589
|
+
const formviewparams: FormViewParams = {
|
|
590
|
+
moduleName: childModuleName,
|
|
591
|
+
modelName: camelCase(childModelName),
|
|
592
|
+
id: "new",
|
|
593
|
+
embeded: true,
|
|
594
|
+
isCustomCreate: false,
|
|
595
|
+
inlineCreateAutoSave: fieldLayoutInfo?.attrs?.inlineCreateAutoSave,
|
|
596
|
+
customLayout: fieldLayoutInfo?.attrs?.inlineCreateLayout,
|
|
597
|
+
parentData: childFieldName && formViewData && formViewData?.data && formViewData?.data[parentFieldName] ? { [childFieldName]: formViewData.data[parentFieldName] } : {},
|
|
598
|
+
onEmbeddedFormSave: formViewData && formViewData.onEmbeddedFormSave
|
|
599
|
+
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
setformViewParams(formviewparams)
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
}, [readOnlyPermission, formViewData])
|
|
606
|
+
|
|
607
|
+
return (
|
|
608
|
+
<div>
|
|
609
|
+
{/* <div className="justify-content-center align-items-center"> */}
|
|
610
|
+
{showFieldLabel != false &&
|
|
611
|
+
<label htmlFor={fieldLayoutInfo.attrs.name} className="form-field-label">{fieldLabel}
|
|
612
|
+
{/* {fieldMetadata.required && <span className="text-red-500"> *</span>} */}
|
|
613
|
+
{/* <SolidFieldTooltip fieldContext={fieldContext} /> */}
|
|
614
|
+
</label>
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
{/* {lastPathSegment === 'new' && <p>Please save the {solidFormViewMetaData.data.solidView.model.displayName} to be able to save {fieldMetadata.displayName}</p>} */}
|
|
618
|
+
{listViewParams &&
|
|
619
|
+
<SolidListView key={refreshList.toString()} {...listViewParams} handlePopUpOpen={handlePopupOpen} />
|
|
620
|
+
}
|
|
621
|
+
{readOnlyPermission !== true && formViewParams &&
|
|
622
|
+
<RenderSolidFormEmbededView fieldLayoutInfo={fieldLayoutInfo} visibleCreateRelationEntity={visibleCreateRelationEntity} setvisibleCreateRelationEntity={setvisibleCreateRelationEntity} formViewParams={formViewParams} handlePopupClose={handlePopupClose}></RenderSolidFormEmbededView>
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
</div>
|
|
626
|
+
);
|
|
627
|
+
}
|
package/dist/components/core/form/fields/relations/widgets/helpers/InlineRelationEntityDialog.tsx
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Dialog } from "primereact/dialog";
|
|
2
|
+
import { camelCase } from "lodash";
|
|
3
|
+
import SolidFormView from "../../../../../../../components/core/form/SolidFormView";
|
|
4
|
+
|
|
5
|
+
export const InlineRelationEntityDialog = ({ visible, setVisible, fieldContext, onCreate }: any) => {
|
|
6
|
+
const fieldLayoutInfo = fieldContext.field;
|
|
7
|
+
|
|
8
|
+
const params = {
|
|
9
|
+
moduleName: fieldContext.fieldMetadata.relationModelModuleName,
|
|
10
|
+
id: "new",
|
|
11
|
+
embeded: true,
|
|
12
|
+
customLayout: fieldLayoutInfo?.attrs?.inlineCreateLayout,
|
|
13
|
+
customCreateHandler: (values: any) => {
|
|
14
|
+
setVisible(false);
|
|
15
|
+
onCreate(values);
|
|
16
|
+
},
|
|
17
|
+
inlineCreateAutoSave: fieldLayoutInfo?.attrs?.inlineCreateAutoSave,
|
|
18
|
+
handlePopupClose: () => setVisible(false),
|
|
19
|
+
modelName: camelCase(fieldContext.fieldMetadata.relationCoModelSingularName)
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
return (
|
|
23
|
+
<Dialog
|
|
24
|
+
visible={visible}
|
|
25
|
+
showHeader={false}
|
|
26
|
+
style={{
|
|
27
|
+
width: fieldLayoutInfo?.attrs?.inlineCreateLayout?.attrs?.width ?? "60vw",
|
|
28
|
+
height: fieldLayoutInfo?.attrs?.inlineCreateLayout?.attrs?.height ?? "auto"
|
|
29
|
+
}}
|
|
30
|
+
// breakpoints={{ '1199px': '35rem', "767px": '85vw', "550px": '90vw' }}
|
|
31
|
+
|
|
32
|
+
onHide={() => setVisible(false)}
|
|
33
|
+
className="solid-dialog"
|
|
34
|
+
>
|
|
35
|
+
<SolidFormView {...params} />
|
|
36
|
+
</Dialog>
|
|
37
|
+
);
|
|
38
|
+
};
|