@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,37 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
// components/PopupContainer.tsx
|
|
3
|
+
import { useSelector, useDispatch } from 'react-redux';
|
|
4
|
+
import { RootState } from '../../types/solid-core';
|
|
5
|
+
import { closePopup } from '../../redux/features/popupSlice';
|
|
6
|
+
import { Dialog } from 'primereact/dialog';
|
|
7
|
+
import { get } from 'lodash';
|
|
8
|
+
import { getExtensionComponent } from '../../helpers/registry';
|
|
9
|
+
import { Button } from 'primereact/button';
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
const SolidPopupContainer = () => {
|
|
13
|
+
const { isOpen, event } = useSelector((state: RootState) => state.popup);
|
|
14
|
+
const dispatch = useDispatch();
|
|
15
|
+
|
|
16
|
+
if (!isOpen) return null;
|
|
17
|
+
|
|
18
|
+
const DynamicComponent = getExtensionComponent(event?.action);
|
|
19
|
+
|
|
20
|
+
return (
|
|
21
|
+
<Dialog
|
|
22
|
+
visible={isOpen}
|
|
23
|
+
onHide={() => dispatch(closePopup())}
|
|
24
|
+
closable={false}
|
|
25
|
+
style={{ width: event.popupWidth ? event.popupWidth : '50vw' }}
|
|
26
|
+
modal
|
|
27
|
+
headerClassName='p-0'
|
|
28
|
+
contentClassName='p-0'
|
|
29
|
+
contentStyle={{ borderRadius: 6 }}
|
|
30
|
+
className='solid-common-dialog'
|
|
31
|
+
>
|
|
32
|
+
{DynamicComponent && <DynamicComponent {...event} />}
|
|
33
|
+
</Dialog>
|
|
34
|
+
);
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
export default SolidPopupContainer;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { InputText } from "primereact/inputtext";
|
|
2
|
+
import { Password } from "primereact/password";
|
|
3
|
+
|
|
4
|
+
export const AnthropicProviderComponent = ({ profile, onUpdate }: any) => {
|
|
5
|
+
return (
|
|
6
|
+
<div className="grid">
|
|
7
|
+
<div className="field col-12 md:col-6 pl-3">
|
|
8
|
+
<div className="flex flex-column gap-2 mt-3">
|
|
9
|
+
<label htmlFor="displayName" className="form-field-label">
|
|
10
|
+
Base URL
|
|
11
|
+
</label>
|
|
12
|
+
<InputText
|
|
13
|
+
value={profile?.baseUrl || ""}
|
|
14
|
+
onChange={(e) => onUpdate("baseUrl", e.target.value)}
|
|
15
|
+
className="w-full"
|
|
16
|
+
/>
|
|
17
|
+
</div>
|
|
18
|
+
|
|
19
|
+
<div className="flex flex-column gap-2 mt-3">
|
|
20
|
+
<label htmlFor="displayName" className="form-field-label">
|
|
21
|
+
Api Key
|
|
22
|
+
</label>
|
|
23
|
+
<Password
|
|
24
|
+
className="w-full"
|
|
25
|
+
value={profile?.apiKey || ""}
|
|
26
|
+
onChange={(e) => onUpdate("apiKey", e.target.value)}
|
|
27
|
+
toggleMask
|
|
28
|
+
feedback={false}
|
|
29
|
+
inputClassName="w-full"
|
|
30
|
+
/>
|
|
31
|
+
</div>
|
|
32
|
+
<div className="flex flex-column gap-2 mt-3">
|
|
33
|
+
<label htmlFor="displayName" className="form-field-label">
|
|
34
|
+
Model Name
|
|
35
|
+
</label>
|
|
36
|
+
<InputText
|
|
37
|
+
value={profile?.modelName || ""}
|
|
38
|
+
onChange={(e) => onUpdate("modelName", e.target.value)}
|
|
39
|
+
className="w-full"
|
|
40
|
+
/>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
</div>
|
|
44
|
+
);
|
|
45
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { InputText } from "primereact/inputtext";
|
|
2
|
+
import { Password } from "primereact/password";
|
|
3
|
+
|
|
4
|
+
export const OpenAiProviderComponent = ({ profile, onUpdate }: any) => {
|
|
5
|
+
return (
|
|
6
|
+
<div className="grid">
|
|
7
|
+
<div className="field col-12 md:col-6 pl-3">
|
|
8
|
+
<div className="flex flex-column gap-2 mt-3">
|
|
9
|
+
<label htmlFor="displayName" className="form-field-label">
|
|
10
|
+
Base URL
|
|
11
|
+
</label>
|
|
12
|
+
<InputText
|
|
13
|
+
value={profile?.baseUrl || ""}
|
|
14
|
+
onChange={(e) => onUpdate("baseUrl", e.target.value)}
|
|
15
|
+
className="w-full"
|
|
16
|
+
/>
|
|
17
|
+
</div>
|
|
18
|
+
|
|
19
|
+
<div className="flex flex-column gap-2 mt-3">
|
|
20
|
+
<label htmlFor="displayName" className="form-field-label">
|
|
21
|
+
Api Key
|
|
22
|
+
</label>
|
|
23
|
+
<Password
|
|
24
|
+
className="w-full"
|
|
25
|
+
value={profile?.apiKey || ""}
|
|
26
|
+
onChange={(e) => onUpdate("apiKey", e.target.value)}
|
|
27
|
+
toggleMask
|
|
28
|
+
feedback={false}
|
|
29
|
+
inputClassName="w-full"
|
|
30
|
+
/>
|
|
31
|
+
</div>
|
|
32
|
+
<div className="flex flex-column gap-2 mt-3">
|
|
33
|
+
<label htmlFor="displayName" className="form-field-label">
|
|
34
|
+
Model Name
|
|
35
|
+
</label>
|
|
36
|
+
<InputText
|
|
37
|
+
value={profile?.modelName || ""}
|
|
38
|
+
onChange={(e) => onUpdate("modelName", e.target.value)}
|
|
39
|
+
className="w-full"
|
|
40
|
+
/>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
</div>
|
|
44
|
+
);
|
|
45
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Button } from 'primereact/button'
|
|
2
|
+
import React from 'react'
|
|
3
|
+
|
|
4
|
+
export const SettingDropzoneActivePlaceholder = ({note}:any) => {
|
|
5
|
+
return (
|
|
6
|
+
<div className='solid-dropzone'>
|
|
7
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
8
|
+
<path d="M11 16V7.85L8.4 10.45L7 9L12 4L17 9L15.6 10.45L13 7.85V16H11ZM6 20C5.45 20 4.97917 19.8042 4.5875 19.4125C4.19583 19.0208 4 18.55 4 18V15H6V18H18V15H20V18C20 18.55 19.8042 19.0208 19.4125 19.4125C19.0208 19.8042 18.55 20 18 20H6Z" fill="#666666" />
|
|
9
|
+
</svg>
|
|
10
|
+
<div className='font-bold mt-2 text-center'>
|
|
11
|
+
Drag and Drop or <span className='text-primary'> Logo</span> to upload
|
|
12
|
+
</div>
|
|
13
|
+
<p className='text-center'>Supported format:PNG, JPG, JPEG, SVG, WEBP | Max size: 2 MB</p>
|
|
14
|
+
<small className='mb-2 text-center'>Note: {note ? note : "200px image width is ideal."}</small>
|
|
15
|
+
<div>
|
|
16
|
+
<Button outlined size='small' severity='secondary' label='Click to Browse' type="button" />
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
)
|
|
20
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Button } from 'primereact/button'
|
|
2
|
+
import React from 'react'
|
|
3
|
+
|
|
4
|
+
export const SettingsImageRemoveButton = ({ onClick }: any) => {
|
|
5
|
+
return (
|
|
6
|
+
<Button
|
|
7
|
+
label="Remove"
|
|
8
|
+
severity="danger"
|
|
9
|
+
icon="pi pi-times"
|
|
10
|
+
size="small"
|
|
11
|
+
className="mt-2"
|
|
12
|
+
onClick={onClick}
|
|
13
|
+
/>
|
|
14
|
+
)
|
|
15
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import Image from 'next/image'
|
|
2
|
+
import React from 'react'
|
|
3
|
+
|
|
4
|
+
export const SolidUploadedImage = ({ src, height, width, maxHeight,className }: any) => {
|
|
5
|
+
return (
|
|
6
|
+
<Image
|
|
7
|
+
src={src}
|
|
8
|
+
alt="App Logo"
|
|
9
|
+
width={width ? width : 200}
|
|
10
|
+
height={height ? height : 120}
|
|
11
|
+
style={{ objectFit: "contain", maxHeight: maxHeight ? maxHeight : 150 , maxWidth:'100%' }}
|
|
12
|
+
unoptimized
|
|
13
|
+
className={className}
|
|
14
|
+
/>
|
|
15
|
+
)
|
|
16
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { useEffect, useState } from "react";
|
|
4
|
+
import { usePathname } from "next/navigation";
|
|
5
|
+
import { useSelector } from "react-redux";
|
|
6
|
+
import { useLazyGetAuthSettingsQuery } from "../../redux/api/solidSettingsApi";
|
|
7
|
+
|
|
8
|
+
export const SolidThemeProvider = () => {
|
|
9
|
+
const pathname = usePathname();
|
|
10
|
+
const [trigger, { data: solidSettingsData }] = useLazyGetAuthSettingsQuery()
|
|
11
|
+
useEffect(() => {
|
|
12
|
+
if (pathname.includes("/auth/")) {
|
|
13
|
+
trigger("");
|
|
14
|
+
}
|
|
15
|
+
}, [pathname, trigger]);
|
|
16
|
+
|
|
17
|
+
const [theme, setTheme] = useState("solid-light-purple");
|
|
18
|
+
useEffect(() => {
|
|
19
|
+
if (pathname.includes("/auth/") && solidSettingsData?.data?.authPagesTheme) {
|
|
20
|
+
const selectedTheme =
|
|
21
|
+
solidSettingsData?.data?.authPagesTheme === "dark" ? "solid-dark-purple" : "solid-light-purple";
|
|
22
|
+
setTheme(selectedTheme);
|
|
23
|
+
} else {
|
|
24
|
+
setTheme("solid-light-purple");
|
|
25
|
+
}
|
|
26
|
+
}, [pathname, solidSettingsData]);
|
|
27
|
+
|
|
28
|
+
useEffect(() => {
|
|
29
|
+
// Find or create <link> element
|
|
30
|
+
let themeLink = document.getElementById("theme-css") as HTMLLinkElement;
|
|
31
|
+
|
|
32
|
+
// if (!themeLink) {
|
|
33
|
+
// themeLink = document.createElement("link");
|
|
34
|
+
// themeLink.id = "theme-css";
|
|
35
|
+
// themeLink.rel = "stylesheet";
|
|
36
|
+
// document.head.appendChild(themeLink);
|
|
37
|
+
// }
|
|
38
|
+
|
|
39
|
+
// Update theme link dynamically
|
|
40
|
+
themeLink.href = `/themes/${theme}/theme.css`;
|
|
41
|
+
}, [theme]);
|
|
42
|
+
|
|
43
|
+
return null;
|
|
44
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
export const ActiveArrowStep = () => {
|
|
3
|
+
return (
|
|
4
|
+
<svg viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg" fill="#000000" transform="rotate(30)"
|
|
5
|
+
height="48px"
|
|
6
|
+
width="48px"
|
|
7
|
+
>
|
|
8
|
+
<g id="SVGRepo_iconCarrier">
|
|
9
|
+
<g id="color">
|
|
10
|
+
<polygon fill={"var(--primary-color)"} points="36,62 65,12 7,12" />
|
|
11
|
+
</g>
|
|
12
|
+
<g id="line">
|
|
13
|
+
<polyline fill="none" stroke="" strokeMiterlimit="10" strokeWidth="1.5" points="36,62 65,12 7,12" />
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
17
|
+
)
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
export const ActiveBeforeStepArrow = () => {
|
|
3
|
+
return (
|
|
4
|
+
<svg viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg" fill="#000000" transform="rotate(30)"
|
|
5
|
+
height="48px"
|
|
6
|
+
width="48px"
|
|
7
|
+
>
|
|
8
|
+
<g id="SVGRepo_iconCarrier">
|
|
9
|
+
<g id="color">
|
|
10
|
+
<polygon fill="#EAEDF1" points="36,62 65,12 7,12" />
|
|
11
|
+
</g>
|
|
12
|
+
<g id="line">
|
|
13
|
+
<polyline fill="none" stroke="var(--solid-stepper-border)" strokeMiterlimit="10" strokeWidth="1.5" points="36,62 65,12 7,12" />
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
17
|
+
)
|
|
18
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
|
|
3
|
+
export const InactiveStepArrow = () => {
|
|
4
|
+
return (
|
|
5
|
+
<svg viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg" fill="#000000" transform="rotate(30)"
|
|
6
|
+
height="48px"
|
|
7
|
+
width="48px"
|
|
8
|
+
>
|
|
9
|
+
<g id="SVGRepo_iconCarrier">
|
|
10
|
+
<g id="color">
|
|
11
|
+
<polygon fill="#fff" points="36,62 65,12 7,12" />
|
|
12
|
+
</g>
|
|
13
|
+
<g id="line">
|
|
14
|
+
<polyline fill="none" stroke="var(--solid-stepper-border)" strokeMiterlimit="10" strokeWidth="1.5" points="36,62 65,12 7,12" />
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|
|
18
|
+
)
|
|
19
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use client"; // Error components must be Client Components
|
|
2
|
+
|
|
3
|
+
interface CustomError extends Error {
|
|
4
|
+
errMessage: string;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export default function Error({
|
|
8
|
+
error,
|
|
9
|
+
reset,
|
|
10
|
+
}: {
|
|
11
|
+
error: CustomError;
|
|
12
|
+
reset?: () => void;
|
|
13
|
+
}) {
|
|
14
|
+
return (
|
|
15
|
+
<div>
|
|
16
|
+
<div className="d-flex justify-content-center align-items-center vh-100">
|
|
17
|
+
<div className="text-center">
|
|
18
|
+
<h2 className="display-4 fw-bold">{error?.errMessage}</h2>
|
|
19
|
+
<p className="fs-3">
|
|
20
|
+
<span className="text-danger">Opps!</span> Something went wrong!
|
|
21
|
+
</p>
|
|
22
|
+
<p className="lead">Sorry for inconvience</p>
|
|
23
|
+
<button className="btn btn-primary" onClick={() => reset?.()}>
|
|
24
|
+
Try again
|
|
25
|
+
</button>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"usec client";
|
|
2
|
+
import { useDispatch } from "react-redux";
|
|
3
|
+
import { getExtensionComponent, getExtensionFunction } from "../../helpers/registry";
|
|
4
|
+
import { openPopup } from "../../redux/features/popupSlice";
|
|
5
|
+
import React, { ComponentType } from "react";
|
|
6
|
+
import { ERROR_MESSAGES } from "../../constants/error-messages";
|
|
7
|
+
type CustomButtonData = {
|
|
8
|
+
icon?: string,
|
|
9
|
+
className?: string,
|
|
10
|
+
label: string,
|
|
11
|
+
action: string,
|
|
12
|
+
openInPopup: boolean,
|
|
13
|
+
actionInContextMenu: boolean,
|
|
14
|
+
customComponentIsSystem: string,
|
|
15
|
+
closable: boolean
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
export const useHandleFormCustomButtonClickaction = () => {
|
|
20
|
+
const dispatch = useDispatch();
|
|
21
|
+
|
|
22
|
+
return (buttonAttrs: any, event: any) => {
|
|
23
|
+
const { action, openInPopup, closable }: CustomButtonData = buttonAttrs;
|
|
24
|
+
|
|
25
|
+
if (openInPopup === true) {
|
|
26
|
+
const eventData = { ...event, action: action, closable: closable };
|
|
27
|
+
dispatch(openPopup(eventData));
|
|
28
|
+
|
|
29
|
+
} else {
|
|
30
|
+
const eventData = { ...event, action: action, closable: closable};
|
|
31
|
+
const dynamicFunction = getExtensionFunction(action);
|
|
32
|
+
if (!dynamicFunction) {
|
|
33
|
+
console.error(ERROR_MESSAGES.ACTION_FUNCTION(action));
|
|
34
|
+
return;
|
|
35
|
+
}
|
|
36
|
+
dynamicFunction(eventData);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
};
|
|
40
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"usec client";
|
|
2
|
+
|
|
3
|
+
import { useDispatch } from "react-redux";
|
|
4
|
+
import { getExtensionComponent, getExtensionFunction } from "../../helpers/registry";
|
|
5
|
+
import { openPopup } from "../../redux/features/popupSlice";
|
|
6
|
+
import React, { ComponentType } from "react";
|
|
7
|
+
import { ERROR_MESSAGES } from "../../constants/error-messages";
|
|
8
|
+
type CustomButtonData = {
|
|
9
|
+
icon?: string,
|
|
10
|
+
className?: string,
|
|
11
|
+
label: string,
|
|
12
|
+
action: string,
|
|
13
|
+
openInPopup: boolean,
|
|
14
|
+
actionInContextMenu: boolean,
|
|
15
|
+
customComponentIsSystem: string,
|
|
16
|
+
popupWidth?: string,
|
|
17
|
+
closable?: boolean
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
export const useHandleListCustomButtonClick = () => {
|
|
22
|
+
const dispatch = useDispatch();
|
|
23
|
+
|
|
24
|
+
return (buttonAttrs: any, event: any) => {
|
|
25
|
+
const { action, openInPopup }: CustomButtonData = buttonAttrs;
|
|
26
|
+
|
|
27
|
+
if (openInPopup === true) {
|
|
28
|
+
const eventData = { ...event, ...buttonAttrs };
|
|
29
|
+
dispatch(openPopup(eventData));
|
|
30
|
+
|
|
31
|
+
} else {
|
|
32
|
+
const eventData = { ...event, ...buttonAttrs };
|
|
33
|
+
const dynamicFunction = getExtensionFunction(action);
|
|
34
|
+
if (!dynamicFunction) {
|
|
35
|
+
console.error(ERROR_MESSAGES.ACTION_FUNCTION(action));
|
|
36
|
+
return;
|
|
37
|
+
}
|
|
38
|
+
dynamicFunction(eventData);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
};
|
|
42
|
+
};
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
import React, { useState, useEffect } from 'react'
|
|
3
|
+
import { SolidChatterHeader } from './SolidChatterHeader'
|
|
4
|
+
import { SolidChatterDateDivider } from './SolidChatterDateDivider'
|
|
5
|
+
import { SolidChatterMessageBox } from './SolidChatterMessageBox'
|
|
6
|
+
import { useLazyGetchatterMessageQuery } from '../../../redux/api/solidChatterMessageApi'
|
|
7
|
+
import qs from "qs";
|
|
8
|
+
import { ERROR_MESSAGES } from '../../../constants/error-messages'
|
|
9
|
+
import { permissionExpression } from '../../../helpers/permissions'
|
|
10
|
+
|
|
11
|
+
interface FilterState {
|
|
12
|
+
name: string;
|
|
13
|
+
startDate: Date | null;
|
|
14
|
+
endDate: Date | null;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export const SolidChatter = ({ modelSingularName, id, refreshChatterMessage, setRefreshChatterMessage, actionsAllowed=[] }: { modelSingularName: any, id: any, refreshChatterMessage: boolean, setRefreshChatterMessage: (value: boolean) => void , actionsAllowed?:string[]}) => {
|
|
18
|
+
const [activeTab, setActiveTab] = useState<'email-message' | 'log' | null>('email-message');
|
|
19
|
+
const [visibleBox, setVisibleBox] = useState<'email-message' | 'log' | null>(null);
|
|
20
|
+
const [messages, setMessages] = useState<any[]>([]);
|
|
21
|
+
const [limit, setLimit] = useState<number>(25);
|
|
22
|
+
const [totalRecords, setTotalRecords] = useState<number>(0);
|
|
23
|
+
const [filters, setFilters] = useState<FilterState>({
|
|
24
|
+
name: '',
|
|
25
|
+
startDate: null,
|
|
26
|
+
endDate: null
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
const [getchatterMessage, { isLoading: isChatterLoading }] = useLazyGetchatterMessageQuery();
|
|
30
|
+
|
|
31
|
+
useEffect(() => {
|
|
32
|
+
if (refreshChatterMessage) {
|
|
33
|
+
if (id !== 'new') {
|
|
34
|
+
fetchData();
|
|
35
|
+
setRefreshChatterMessage(false);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}, [refreshChatterMessage]);
|
|
39
|
+
|
|
40
|
+
useEffect(() => {
|
|
41
|
+
if (id !== 'new') {
|
|
42
|
+
fetchData();
|
|
43
|
+
}
|
|
44
|
+
}, [filters, limit]);
|
|
45
|
+
|
|
46
|
+
const handleTabClick = (tab: 'email-message' | 'log') => {
|
|
47
|
+
setActiveTab(tab);
|
|
48
|
+
setVisibleBox(prev => (prev === tab ? null : tab));
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
const formatDate = (dateString: string) => {
|
|
52
|
+
const date = new Date(dateString);
|
|
53
|
+
const today = new Date();
|
|
54
|
+
const yesterday = new Date(today);
|
|
55
|
+
yesterday.setDate(yesterday.getDate() - 1);
|
|
56
|
+
|
|
57
|
+
if (date.toDateString() === today.toDateString()) {
|
|
58
|
+
return 'Today';
|
|
59
|
+
} else if (date.toDateString() === yesterday.toDateString()) {
|
|
60
|
+
return 'Yesterday';
|
|
61
|
+
} else {
|
|
62
|
+
return date.toLocaleDateString('en-US', {
|
|
63
|
+
year: 'numeric',
|
|
64
|
+
month: 'long',
|
|
65
|
+
day: 'numeric'
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
const fetchData = async () => {
|
|
71
|
+
try {
|
|
72
|
+
const queryData: any = {
|
|
73
|
+
populate: ['user', 'chatterMessageDetails'],
|
|
74
|
+
limit: limit
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
if (filters.name) {
|
|
78
|
+
queryData.filters = queryData.filters || {};
|
|
79
|
+
queryData.filters['user'] = { fullName: { $containsi: filters.name }};
|
|
80
|
+
}
|
|
81
|
+
if (filters.startDate && filters.endDate) {
|
|
82
|
+
queryData.filters = queryData.filters || {};
|
|
83
|
+
queryData.filters.createdAt = {
|
|
84
|
+
$between: [filters.startDate.toISOString(), filters.endDate.toISOString()]
|
|
85
|
+
};
|
|
86
|
+
} else if (filters.startDate) {
|
|
87
|
+
queryData.filters = queryData.filters || {};
|
|
88
|
+
queryData.filters.createdAt = { $gte: filters.startDate.toISOString() };
|
|
89
|
+
} else if (filters.endDate) {
|
|
90
|
+
queryData.filters = queryData.filters || {};
|
|
91
|
+
queryData.filters.createdAt = { $lte: filters.endDate.toISOString() };
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
const queryString = qs.stringify(queryData, {
|
|
95
|
+
encodeValuesOnly: true,
|
|
96
|
+
});
|
|
97
|
+
const response = await getchatterMessage({
|
|
98
|
+
entityId: id,
|
|
99
|
+
entityName: modelSingularName,
|
|
100
|
+
qs: queryString
|
|
101
|
+
}).unwrap();
|
|
102
|
+
const processedMessages = response.data.records.map((msg: any) => {
|
|
103
|
+
if (msg.messageType === 'custom') {
|
|
104
|
+
// Custom message
|
|
105
|
+
return {
|
|
106
|
+
id: msg.id,
|
|
107
|
+
user: msg.user?.fullName || "System",
|
|
108
|
+
messageType: "custom",
|
|
109
|
+
message: msg.messageBody,
|
|
110
|
+
time: new Date(msg.createdAt).toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' }),
|
|
111
|
+
createdAt: msg.createdAt,
|
|
112
|
+
date: formatDate(msg.createdAt),
|
|
113
|
+
media: msg._media,
|
|
114
|
+
messageSubType: msg.messageSubType,
|
|
115
|
+
modelDisplayName: msg.modelDisplayName,
|
|
116
|
+
modelUserKey: msg.modelUserKey
|
|
117
|
+
};
|
|
118
|
+
} else {
|
|
119
|
+
// Audit message
|
|
120
|
+
const auditRecord = msg.chatterMessageDetails?.map((detail: any) => ({
|
|
121
|
+
field: detail.fieldName,
|
|
122
|
+
fieldDisplayName: detail.fieldDisplayName,
|
|
123
|
+
previous: detail.oldValueDisplay || detail.oldValue || 'None',
|
|
124
|
+
current: detail.newValueDisplay || detail.newValue
|
|
125
|
+
})) || [];
|
|
126
|
+
|
|
127
|
+
return {
|
|
128
|
+
id: msg.id,
|
|
129
|
+
user: msg.user?.fullName || "System",
|
|
130
|
+
messageType: "audit",
|
|
131
|
+
time: new Date(msg.createdAt).toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' }),
|
|
132
|
+
auditRecord: auditRecord,
|
|
133
|
+
createdAt: msg.createdAt,
|
|
134
|
+
date: formatDate(msg.createdAt),
|
|
135
|
+
messageSubType: msg.messageSubType,
|
|
136
|
+
modelDisplayName: msg.modelDisplayName,
|
|
137
|
+
modelUserKey: msg.modelUserKey,
|
|
138
|
+
message: msg.messageBody,
|
|
139
|
+
};
|
|
140
|
+
}
|
|
141
|
+
});
|
|
142
|
+
setMessages(processedMessages);
|
|
143
|
+
setTotalRecords(response?.data?.meta?.totalRecords || 0);
|
|
144
|
+
} catch (error) {
|
|
145
|
+
console.error(ERROR_MESSAGES.FETCHING_MESSAGE, error);
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
const handleFilterChange = (newFilters: FilterState) => {
|
|
150
|
+
setFilters({
|
|
151
|
+
name: newFilters.name,
|
|
152
|
+
startDate: newFilters.startDate,
|
|
153
|
+
endDate: newFilters.endDate
|
|
154
|
+
});
|
|
155
|
+
setLimit(25);
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
const handleLoadMore = () => {
|
|
159
|
+
setLimit(prevLimit => prevLimit + 25);
|
|
160
|
+
};
|
|
161
|
+
|
|
162
|
+
return (
|
|
163
|
+
<div className='h-full'>
|
|
164
|
+
<SolidChatterHeader
|
|
165
|
+
id={id}
|
|
166
|
+
refetch={fetchData}
|
|
167
|
+
modelSingularName={modelSingularName}
|
|
168
|
+
activeTab={activeTab}
|
|
169
|
+
handleTabClick={handleTabClick}
|
|
170
|
+
visibleBox={visibleBox}
|
|
171
|
+
onFilterChange={handleFilterChange}
|
|
172
|
+
/>
|
|
173
|
+
<div className='p-3' style={{
|
|
174
|
+
overflowY: 'scroll',
|
|
175
|
+
height:
|
|
176
|
+
visibleBox === 'email-message'
|
|
177
|
+
? 'calc(100vh - 196px)'
|
|
178
|
+
: visibleBox === 'log'
|
|
179
|
+
? 'calc(100vh - 172px)'
|
|
180
|
+
: 'calc(100vh - 65px)',
|
|
181
|
+
}}>
|
|
182
|
+
{isChatterLoading ? (
|
|
183
|
+
<div className='flex align-items-center justify-content-center h-full font-medium'>
|
|
184
|
+
Loading...
|
|
185
|
+
</div>
|
|
186
|
+
) : messages.length === 0 ? (
|
|
187
|
+
<div className='flex align-items-center justify-content-center h-full font-medium'>
|
|
188
|
+
No Data Available
|
|
189
|
+
</div>
|
|
190
|
+
) : (
|
|
191
|
+
<>
|
|
192
|
+
{actionsAllowed.includes(`${permissionExpression('chatterMessage', 'findMany')}`) ?
|
|
193
|
+
(messages.map((message, index) => {
|
|
194
|
+
const showDateDivider = index === 0 || message.date !== messages[index - 1].date;
|
|
195
|
+
return (
|
|
196
|
+
<div key={message.id}>
|
|
197
|
+
{showDateDivider && <SolidChatterDateDivider date={message.date} />}
|
|
198
|
+
<SolidChatterMessageBox
|
|
199
|
+
user={message.user}
|
|
200
|
+
messageType={message.messageType}
|
|
201
|
+
message={message.message}
|
|
202
|
+
time={message.time}
|
|
203
|
+
auditRecord={message.auditRecord}
|
|
204
|
+
media={message.media}
|
|
205
|
+
messageSubType={message.messageSubType}
|
|
206
|
+
modelDisplayName={message.modelDisplayName}
|
|
207
|
+
modelUserKey={message.modelUserKey}
|
|
208
|
+
/>
|
|
209
|
+
</div>
|
|
210
|
+
);
|
|
211
|
+
}))
|
|
212
|
+
: <div className="p-3">
|
|
213
|
+
<div className='p-3 border-round text-red-500 bg-red-50 flex align-items-center gap-3'>
|
|
214
|
+
<i className="pi pi-exclamation-triangle" />
|
|
215
|
+
You do not have permission to view these messages.
|
|
216
|
+
</div>
|
|
217
|
+
</div>
|
|
218
|
+
}
|
|
219
|
+
{totalRecords > messages.length && (
|
|
220
|
+
<div className='flex justify-content-center mt-3 mb-3'>
|
|
221
|
+
<span
|
|
222
|
+
onClick={handleLoadMore}
|
|
223
|
+
className='cursor-pointer text-primary font-medium px-4 py-2'
|
|
224
|
+
style={{
|
|
225
|
+
userSelect: 'none',
|
|
226
|
+
borderRadius: '6px',
|
|
227
|
+
transition: 'all 0.2s ease',
|
|
228
|
+
display: 'inline-block'
|
|
229
|
+
}}
|
|
230
|
+
onMouseEnter={(e) => {
|
|
231
|
+
e.currentTarget.style.backgroundColor = 'rgba(59, 130, 246, 0.1)';
|
|
232
|
+
e.currentTarget.style.transform = 'translateY(-1px)';
|
|
233
|
+
}}
|
|
234
|
+
onMouseLeave={(e) => {
|
|
235
|
+
e.currentTarget.style.backgroundColor = 'transparent';
|
|
236
|
+
e.currentTarget.style.transform = 'translateY(0)';
|
|
237
|
+
}}
|
|
238
|
+
>
|
|
239
|
+
Load More...
|
|
240
|
+
</span>
|
|
241
|
+
</div>
|
|
242
|
+
)}
|
|
243
|
+
</>
|
|
244
|
+
)}
|
|
245
|
+
</div>
|
|
246
|
+
</div>
|
|
247
|
+
)
|
|
248
|
+
}
|