@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,454 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { useInitateRegisterMutation, useRegisterMutation } from "../../redux/api/authApi";
|
|
4
|
+
import { FetchBaseQueryError } from "@reduxjs/toolkit/query/react";
|
|
5
|
+
import { Form, Formik } from "formik";
|
|
6
|
+
import Link from "next/link";
|
|
7
|
+
import { useRouter } from "next/navigation";
|
|
8
|
+
import { Button } from "primereact/button";
|
|
9
|
+
import { Divider } from "primereact/divider";
|
|
10
|
+
import { InputText } from "primereact/inputtext";
|
|
11
|
+
import { Message } from "primereact/message";
|
|
12
|
+
import { Password } from "primereact/password";
|
|
13
|
+
import { TabPanel, TabView } from "primereact/tabview";
|
|
14
|
+
import { Toast } from "primereact/toast";
|
|
15
|
+
import { useEffect, useRef, useState } from "react";
|
|
16
|
+
import * as Yup from "yup";
|
|
17
|
+
import { SocialMediaLogin } from "../common/SocialMediaLogin";
|
|
18
|
+
import Image from "next/image";
|
|
19
|
+
import SolidLogo from '../../resources/images/SolidXLogo.svg'
|
|
20
|
+
import { formatTimeLeft } from "../../helpers/resendOtpHelper";
|
|
21
|
+
import { ProgressSpinner } from "primereact/progressspinner";
|
|
22
|
+
import { ERROR_MESSAGES } from "../../constants/error-messages";
|
|
23
|
+
import { useLazyGetAuthSettingsQuery } from "../../redux/api/solidSettingsApi";
|
|
24
|
+
|
|
25
|
+
interface AuthTabsProps {
|
|
26
|
+
passwordBasedAuth: boolean;
|
|
27
|
+
passwordLessAuth: boolean;
|
|
28
|
+
showNameFieldsForRegistration?: boolean;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
const SolidRegister = () => {
|
|
32
|
+
const envPasswordHelperText = process.env.NEXT_PUBLIC_PASSWORD_COMPLEXITY_DESC;
|
|
33
|
+
const [activeIndex, setActiveIndex] = useState(0);
|
|
34
|
+
|
|
35
|
+
const [trigger, { data: solidSettingsData }] = useLazyGetAuthSettingsQuery();
|
|
36
|
+
useEffect(() => {
|
|
37
|
+
trigger("") // Fetch settings on mount
|
|
38
|
+
}, [trigger])
|
|
39
|
+
|
|
40
|
+
const [showOverlay, setShowOverlay] = useState(false);
|
|
41
|
+
|
|
42
|
+
const toast = useRef<Toast>(null);
|
|
43
|
+
|
|
44
|
+
const router = useRouter();
|
|
45
|
+
|
|
46
|
+
const isFormFieldValid = (formik: any, fieldName: string) =>
|
|
47
|
+
formik.touched[fieldName] && formik.errors[fieldName];
|
|
48
|
+
|
|
49
|
+
const [register, { isLoading, error, isSuccess, data }] = useRegisterMutation();
|
|
50
|
+
|
|
51
|
+
const [initiateRegister] = useInitateRegisterMutation();
|
|
52
|
+
|
|
53
|
+
const showError = () => {
|
|
54
|
+
if (error) {
|
|
55
|
+
if ("data" in error) {
|
|
56
|
+
const apiError = error as FetchBaseQueryError;
|
|
57
|
+
const errorMessages = Array.isArray(apiError.data?.message)
|
|
58
|
+
? apiError.data?.message
|
|
59
|
+
: [apiError.data?.message];
|
|
60
|
+
|
|
61
|
+
toast.current?.show({
|
|
62
|
+
severity: "error",
|
|
63
|
+
summary: ERROR_MESSAGES.ERROR,
|
|
64
|
+
detail: errorMessages.join(", "),
|
|
65
|
+
sticky: true
|
|
66
|
+
});
|
|
67
|
+
} else {
|
|
68
|
+
const serializedError = error as Error;
|
|
69
|
+
toast.current?.show({
|
|
70
|
+
severity: "error",
|
|
71
|
+
summary: ERROR_MESSAGES.ERROR,
|
|
72
|
+
detail: serializedError.message || ERROR_MESSAGES.ERROR_OCCURED,
|
|
73
|
+
sticky: true
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
useEffect(() => {
|
|
80
|
+
if (error) {
|
|
81
|
+
showError();
|
|
82
|
+
}
|
|
83
|
+
}, [error]);
|
|
84
|
+
|
|
85
|
+
// useEffect(() => {
|
|
86
|
+
// if (isSuccess) {
|
|
87
|
+
// router.replace("/auth/login");
|
|
88
|
+
// }
|
|
89
|
+
// }, [isSuccess])
|
|
90
|
+
const showToast = (severity: "success" | "error", summary: string, detail: string) => {
|
|
91
|
+
toast.current?.show({
|
|
92
|
+
severity,
|
|
93
|
+
summary,
|
|
94
|
+
detail,
|
|
95
|
+
...(severity === "error"
|
|
96
|
+
? { sticky: true } // stays until user closes
|
|
97
|
+
: { life: 3000 }),
|
|
98
|
+
});
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
const PasswordSignup = ({ showNameFieldsForRegistration }: { showNameFieldsForRegistration?: boolean }) => {
|
|
102
|
+
console.log("showNameFieldsForRegistration", showNameFieldsForRegistration);
|
|
103
|
+
return (
|
|
104
|
+
<Formik
|
|
105
|
+
initialValues={{
|
|
106
|
+
username: "",
|
|
107
|
+
email: "",
|
|
108
|
+
password: "",
|
|
109
|
+
firstName: "",
|
|
110
|
+
lastName: ""
|
|
111
|
+
}}
|
|
112
|
+
|
|
113
|
+
validationSchema={Yup.object({
|
|
114
|
+
username: showNameFieldsForRegistration
|
|
115
|
+
? Yup.string().notRequired()
|
|
116
|
+
: Yup.string().required(ERROR_MESSAGES.FIELD_REUQIRED('User Name')),
|
|
117
|
+
|
|
118
|
+
firstName: showNameFieldsForRegistration
|
|
119
|
+
? Yup.string().required(ERROR_MESSAGES.FIELD_REUQIRED('First Name'))
|
|
120
|
+
: Yup.string().notRequired(),
|
|
121
|
+
|
|
122
|
+
lastName: showNameFieldsForRegistration
|
|
123
|
+
? Yup.string().required(ERROR_MESSAGES.FIELD_REUQIRED('Last Name '))
|
|
124
|
+
: Yup.string().notRequired(),
|
|
125
|
+
|
|
126
|
+
email: Yup.string()
|
|
127
|
+
.email(ERROR_MESSAGES.FIELD_INVALID('email address'))
|
|
128
|
+
.required(ERROR_MESSAGES.FIELD_REUQIRED('Email')),
|
|
129
|
+
password: Yup.string()
|
|
130
|
+
.required(ERROR_MESSAGES.FIELD_REUQIRED('Password'))
|
|
131
|
+
.min(8, ERROR_MESSAGES.PASSWORD_CHARACTER(8))
|
|
132
|
+
.matches(/[a-z]/, ERROR_MESSAGES.PASSWORD_CONTAIN('lowercase'))
|
|
133
|
+
.matches(/[A-Z]/, ERROR_MESSAGES.PASSWORD_CONTAIN('uppercase'))
|
|
134
|
+
.matches(/\d/, ERROR_MESSAGES.PASSWORD_CONTAIN('one', 'number'))
|
|
135
|
+
.matches(/[@$!%*?&#^(){}[\]|\\/~`+=<>:;'"_,.-]/, ERROR_MESSAGES.PASSWORD_CONTAIN('special', 'character')),
|
|
136
|
+
})}
|
|
137
|
+
|
|
138
|
+
onSubmit={async (values, { setSubmitting }) => {
|
|
139
|
+
try {
|
|
140
|
+
let userData: any = {
|
|
141
|
+
email: values.email,
|
|
142
|
+
password: values.password,
|
|
143
|
+
};
|
|
144
|
+
if (showNameFieldsForRegistration) {
|
|
145
|
+
const fullName = `${values.firstName || ""} ${values.lastName || ""}`.trim();
|
|
146
|
+
const username = `${values.firstName || ""}${values.lastName || ""}`.trim().toLowerCase();
|
|
147
|
+
console.log("fullName, username", fullName, username);
|
|
148
|
+
userData = {
|
|
149
|
+
...userData,
|
|
150
|
+
fullName,
|
|
151
|
+
username
|
|
152
|
+
};
|
|
153
|
+
} else {
|
|
154
|
+
userData = {
|
|
155
|
+
...userData,
|
|
156
|
+
username: values.username,
|
|
157
|
+
};
|
|
158
|
+
}
|
|
159
|
+
const response = await register(userData).unwrap();
|
|
160
|
+
|
|
161
|
+
if (response?.statusCode === 200) {
|
|
162
|
+
showToast("success", ERROR_MESSAGES.USER_REGISTER, response?.data?.message);
|
|
163
|
+
setShowOverlay(true);
|
|
164
|
+
setTimeout(() => {
|
|
165
|
+
router.push(`/auth/login`);
|
|
166
|
+
}, 3000);
|
|
167
|
+
} else {
|
|
168
|
+
showToast("error", ERROR_MESSAGES.LOGIN_ERROR, response.error);
|
|
169
|
+
}
|
|
170
|
+
} catch (err: any) {
|
|
171
|
+
showToast("error", ERROR_MESSAGES.EMAIL_ALREADY_TAKEN, err?.data ? err?.data?.message : ERROR_MESSAGES.SOMETHING_WRONG);
|
|
172
|
+
} finally {
|
|
173
|
+
setSubmitting(false);
|
|
174
|
+
}
|
|
175
|
+
}}
|
|
176
|
+
>
|
|
177
|
+
{(formik) => (
|
|
178
|
+
<Form>
|
|
179
|
+
{showNameFieldsForRegistration ? (
|
|
180
|
+
<>
|
|
181
|
+
{/* first + last name inline */}
|
|
182
|
+
<div className="flex gap-2 mt-3">
|
|
183
|
+
<div className="flex flex-column w-full gap-2">
|
|
184
|
+
<label className="solid-auth-input-label">First Name</label>
|
|
185
|
+
<InputText
|
|
186
|
+
id="firstName"
|
|
187
|
+
name="firstName"
|
|
188
|
+
placeholder="First Name"
|
|
189
|
+
onChange={formik.handleChange}
|
|
190
|
+
value={formik.values.firstName}
|
|
191
|
+
invalid={!!formik.errors.firstName}
|
|
192
|
+
/>
|
|
193
|
+
{isFormFieldValid(formik, "firstName") && (
|
|
194
|
+
<Message severity="error" text={formik.errors.firstName?.toString()} />
|
|
195
|
+
)}
|
|
196
|
+
</div>
|
|
197
|
+
|
|
198
|
+
<div className="flex flex-column w-full gap-2">
|
|
199
|
+
<label className="solid-auth-input-label">Last Name</label>
|
|
200
|
+
<InputText
|
|
201
|
+
id="lastName"
|
|
202
|
+
name="lastName"
|
|
203
|
+
placeholder="Last Name"
|
|
204
|
+
onChange={formik.handleChange}
|
|
205
|
+
value={formik.values.lastName}
|
|
206
|
+
invalid={!!formik.errors.lastName}
|
|
207
|
+
/>
|
|
208
|
+
{isFormFieldValid(formik, "lastName") && (
|
|
209
|
+
<Message severity="error" text={formik.errors.lastName?.toString()} />
|
|
210
|
+
)}
|
|
211
|
+
</div>
|
|
212
|
+
</div>
|
|
213
|
+
</>
|
|
214
|
+
) : (
|
|
215
|
+
<>
|
|
216
|
+
{/* username (only if name fields not shown) */}
|
|
217
|
+
<div>
|
|
218
|
+
<div className="flex flex-column gap-2 mt-3">
|
|
219
|
+
<label className="solid-auth-input-label">Username</label>
|
|
220
|
+
<InputText
|
|
221
|
+
id="username"
|
|
222
|
+
name="username"
|
|
223
|
+
placeholder="username"
|
|
224
|
+
onChange={formik.handleChange}
|
|
225
|
+
value={formik.values.username}
|
|
226
|
+
invalid={!!formik.errors.username}
|
|
227
|
+
/>
|
|
228
|
+
</div>
|
|
229
|
+
{isFormFieldValid(formik, "username") &&
|
|
230
|
+
<Message severity="error" text={formik.errors.username?.toString()} />}
|
|
231
|
+
</div>
|
|
232
|
+
</>
|
|
233
|
+
)}
|
|
234
|
+
|
|
235
|
+
{/* Email */}
|
|
236
|
+
<div>
|
|
237
|
+
<div className="flex flex-column gap-2 mt-3">
|
|
238
|
+
<label className="solid-auth-input-label">Email</label>
|
|
239
|
+
<InputText
|
|
240
|
+
id="email"
|
|
241
|
+
name="email"
|
|
242
|
+
placeholder="Yourgmail@123.com"
|
|
243
|
+
onChange={formik.handleChange}
|
|
244
|
+
value={formik.values.email}
|
|
245
|
+
invalid={!!formik.errors.email}
|
|
246
|
+
/>
|
|
247
|
+
</div>
|
|
248
|
+
{isFormFieldValid(formik, "email") &&
|
|
249
|
+
<Message severity="error" text={formik.errors.email?.toString()} />}
|
|
250
|
+
</div>
|
|
251
|
+
|
|
252
|
+
{/* Password */}
|
|
253
|
+
<div>
|
|
254
|
+
<div className="flex flex-column gap-2 mt-3">
|
|
255
|
+
<label className="solid-auth-input-label">Password</label>
|
|
256
|
+
<Password
|
|
257
|
+
id="password"
|
|
258
|
+
name="password"
|
|
259
|
+
value={formik.values.password}
|
|
260
|
+
onChange={formik.handleChange}
|
|
261
|
+
toggleMask
|
|
262
|
+
inputClassName="w-full"
|
|
263
|
+
feedback={false}
|
|
264
|
+
invalid={!!formik.errors.password}
|
|
265
|
+
/>
|
|
266
|
+
</div>
|
|
267
|
+
{isFormFieldValid(formik, "password") &&
|
|
268
|
+
<Message severity="error" text={formik.errors.password?.toString()} />}
|
|
269
|
+
</div>
|
|
270
|
+
{/* <SolidPasswordHelperText text={solidSettingsData?.data?.authenticationPasswordComplexityDescription} /> */}
|
|
271
|
+
<div className="mt-4">
|
|
272
|
+
<Button className="w-full font-light auth-submit-button" label="Sign Up" disabled={formik.isSubmitting} loading={formik.isSubmitting} />
|
|
273
|
+
</div>
|
|
274
|
+
</Form>
|
|
275
|
+
)}
|
|
276
|
+
</Formik>
|
|
277
|
+
)
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
const PasswordLessSignup = () => {
|
|
281
|
+
return (
|
|
282
|
+
<Formik
|
|
283
|
+
initialValues={{
|
|
284
|
+
username: "",
|
|
285
|
+
email: "",
|
|
286
|
+
}}
|
|
287
|
+
validationSchema={Yup.object({
|
|
288
|
+
username: Yup.string().required(ERROR_MESSAGES.FIELD_REUQIRED('"User Name')),
|
|
289
|
+
email: Yup.string()
|
|
290
|
+
.email(ERROR_MESSAGES.FIELD_INVALID('email address'))
|
|
291
|
+
.required(ERROR_MESSAGES.FIELD_REUQIRED('Email')),
|
|
292
|
+
})}
|
|
293
|
+
onSubmit={async (values, { setSubmitting }) => {
|
|
294
|
+
try {
|
|
295
|
+
const RESEND_OTP_KEY = `resendOtpRegister_${values.email}`;
|
|
296
|
+
const RESEND_OTP_TIMER_MIN = parseFloat(process.env.NEXT_PUBLIC_RESEND_OTP_TIMER || '0.5');
|
|
297
|
+
const RESEND_OTP_TIMER = Math.round(RESEND_OTP_TIMER_MIN * 60);
|
|
298
|
+
const payload = {
|
|
299
|
+
username: values.username,
|
|
300
|
+
email: values.email,
|
|
301
|
+
validationSources: ["email"]
|
|
302
|
+
};
|
|
303
|
+
const storedTimeStr = localStorage.getItem(RESEND_OTP_KEY);
|
|
304
|
+
const now = Date.now();
|
|
305
|
+
if (storedTimeStr) {
|
|
306
|
+
const lastSent = parseInt(storedTimeStr, 10);
|
|
307
|
+
const elapsed = Math.floor((now - lastSent) / 1000);
|
|
308
|
+
const remaining = RESEND_OTP_TIMER - elapsed;
|
|
309
|
+
|
|
310
|
+
if (remaining > 0) {
|
|
311
|
+
const formatted = formatTimeLeft(remaining);
|
|
312
|
+
showToast(
|
|
313
|
+
"error",
|
|
314
|
+
ERROR_MESSAGES.PLEASE_WAIT,
|
|
315
|
+
ERROR_MESSAGES.OPT_FORMAT(formatted)
|
|
316
|
+
);
|
|
317
|
+
setSubmitting(false);
|
|
318
|
+
return; // Prevent request
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
const response = await initiateRegister(payload).unwrap(); // Call mutation trigger
|
|
322
|
+
|
|
323
|
+
if (response?.statusCode === 200) {
|
|
324
|
+
showToast("success", ERROR_MESSAGES.OPT_SEND, response?.data?.message);
|
|
325
|
+
const email = values.email;
|
|
326
|
+
localStorage.setItem(`resendOtpRegister_${email}`, Date.now().toString());
|
|
327
|
+
router.push(`/auth/initiate-register?email=${email}&username=${values.username}`);
|
|
328
|
+
} else {
|
|
329
|
+
showToast("error", ERROR_MESSAGES.LOGIN_ERROR, response.error);
|
|
330
|
+
}
|
|
331
|
+
} catch (err: any) {
|
|
332
|
+
showToast("error", ERROR_MESSAGES.LOGIN_ERROR, err?.data ? err?.data?.message : ERROR_MESSAGES.SOMETHING_WRONG);
|
|
333
|
+
} finally {
|
|
334
|
+
setSubmitting(false);
|
|
335
|
+
}
|
|
336
|
+
}}
|
|
337
|
+
>
|
|
338
|
+
{(formik) => (
|
|
339
|
+
<Form>
|
|
340
|
+
<div className="flex flex-column gap-2 mt-3">
|
|
341
|
+
<label htmlFor="email" className="solid-auth-input-label">Username</label>
|
|
342
|
+
<InputText
|
|
343
|
+
id="username"
|
|
344
|
+
name="username"
|
|
345
|
+
placeholder="username"
|
|
346
|
+
onChange={formik.handleChange}
|
|
347
|
+
value={formik.values.username}
|
|
348
|
+
invalid={!!formik.errors.username}
|
|
349
|
+
/>
|
|
350
|
+
{isFormFieldValid(formik, "username") && <Message
|
|
351
|
+
className="text-red-500 text-sm"
|
|
352
|
+
severity="error"
|
|
353
|
+
text={formik?.errors?.username?.toString()}
|
|
354
|
+
/>}
|
|
355
|
+
</div>
|
|
356
|
+
<div className="flex flex-column gap-2 mt-3">
|
|
357
|
+
<label htmlFor="email" className="solid-auth-input-label">Email</label>
|
|
358
|
+
<InputText
|
|
359
|
+
id="email"
|
|
360
|
+
name="email"
|
|
361
|
+
placeholder="Yourgmail@123.com"
|
|
362
|
+
onChange={formik.handleChange}
|
|
363
|
+
value={formik.values.email}
|
|
364
|
+
invalid={!!formik.errors.email}
|
|
365
|
+
/>
|
|
366
|
+
{isFormFieldValid(formik, "email") && <Message
|
|
367
|
+
className="text-red-500 text-sm"
|
|
368
|
+
severity="error"
|
|
369
|
+
text={formik?.errors?.email?.toString()}
|
|
370
|
+
/>}
|
|
371
|
+
</div>
|
|
372
|
+
<div className="mt-4">
|
|
373
|
+
<Button className="w-full font-light auth-submit-button" label="Sign Up" disabled={formik.isSubmitting} loading={formik.isSubmitting} />
|
|
374
|
+
</div>
|
|
375
|
+
</Form>
|
|
376
|
+
)}
|
|
377
|
+
</Formik>
|
|
378
|
+
)
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
const AuthTabs: React.FC<AuthTabsProps> = ({ passwordBasedAuth, passwordLessAuth, showNameFieldsForRegistration }) => {
|
|
382
|
+
if (passwordBasedAuth && passwordLessAuth) {
|
|
383
|
+
return (
|
|
384
|
+
<TabView className="solid-auth-tabview"
|
|
385
|
+
activeIndex={activeIndex}
|
|
386
|
+
onTabChange={(e) => setActiveIndex(e.index)}
|
|
387
|
+
>
|
|
388
|
+
<TabPanel header="With Password">
|
|
389
|
+
<PasswordSignup showNameFieldsForRegistration={showNameFieldsForRegistration} />
|
|
390
|
+
</TabPanel>
|
|
391
|
+
<TabPanel header="Without Password">
|
|
392
|
+
<PasswordLessSignup />
|
|
393
|
+
</TabPanel>
|
|
394
|
+
</TabView>
|
|
395
|
+
);
|
|
396
|
+
} else if (passwordBasedAuth) {
|
|
397
|
+
return <PasswordSignup showNameFieldsForRegistration={showNameFieldsForRegistration} />;
|
|
398
|
+
} else if (passwordLessAuth) {
|
|
399
|
+
return <PasswordLessSignup />;
|
|
400
|
+
} else {
|
|
401
|
+
return <p>No authentication method available</p>;
|
|
402
|
+
}
|
|
403
|
+
};
|
|
404
|
+
return (
|
|
405
|
+
<div className="">
|
|
406
|
+
<Toast ref={toast} />
|
|
407
|
+
{/* 🔹 Overlay UI */}
|
|
408
|
+
<div className={`auth-container position-relative ${solidSettingsData?.data?.authPagesLayout === 'center' ? 'center' : 'side'}`}>
|
|
409
|
+
{showOverlay && (
|
|
410
|
+
<div className="absolute top-0 left-0 w-full h-full flex align-items-center justify-content-center register-success-popup">
|
|
411
|
+
<div className="inline-flex flex-column align-items-center justify-content-center text-center">
|
|
412
|
+
<ProgressSpinner style={{ width: '50px', height: '50px' }} strokeWidth="4" />
|
|
413
|
+
<p className="mt-3 text-lg font-medium text-700">
|
|
414
|
+
Registration successful,<br />you will be redirected...
|
|
415
|
+
</p>
|
|
416
|
+
</div>
|
|
417
|
+
</div>
|
|
418
|
+
)}
|
|
419
|
+
{solidSettingsData?.data?.authPagesLayout === 'center' &&
|
|
420
|
+
<div className="flex justify-content-center">
|
|
421
|
+
<div className={`solid-logo flex align-items-center ${solidSettingsData?.data?.appLogoPosition}`}>
|
|
422
|
+
<Image
|
|
423
|
+
alt="solid logo"
|
|
424
|
+
src={solidSettingsData?.data?.appLogo || SolidLogo}
|
|
425
|
+
className="relative"
|
|
426
|
+
fill
|
|
427
|
+
/>
|
|
428
|
+
</div>
|
|
429
|
+
</div>
|
|
430
|
+
}
|
|
431
|
+
<h2 className={`solid-auth-title ${solidSettingsData?.data?.authPagesLayout === 'center' ? 'text-center mt-2 md:mt-4' : 'text-left'}`}>Sign Up</h2>
|
|
432
|
+
{/* <p className="solid-auth-subtitle text-sm">By continuing, you agree to the <Link href={'#'}>Terms of Service</Link> and acknowledge you’ve read our <Link href={'#'}>Privacy Policy.</Link> </p> */}
|
|
433
|
+
<AuthTabs passwordBasedAuth={solidSettingsData?.data?.passwordBasedAuth} passwordLessAuth={solidSettingsData?.data?.passwordLessAuth} showNameFieldsForRegistration={solidSettingsData?.data?.showNameFieldsForRegistration} />
|
|
434
|
+
{solidSettingsData?.data?.iamGoogleOAuthEnabled &&
|
|
435
|
+
<>
|
|
436
|
+
<Divider align="center">
|
|
437
|
+
<div className="inline-flex align-items-center">
|
|
438
|
+
or
|
|
439
|
+
</div>
|
|
440
|
+
</Divider>
|
|
441
|
+
<SocialMediaLogin />
|
|
442
|
+
</>
|
|
443
|
+
}
|
|
444
|
+
</div>
|
|
445
|
+
<div className="text-center mt-3 md:mt-4">
|
|
446
|
+
<div className="text-sm text-400 secondary-dark-color">
|
|
447
|
+
Already have an account ? <Link className="font-bold" href="/auth/login">Sign In</Link>
|
|
448
|
+
</div>
|
|
449
|
+
</div>
|
|
450
|
+
</div>
|
|
451
|
+
);
|
|
452
|
+
};
|
|
453
|
+
|
|
454
|
+
export default SolidRegister;
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { useConfirmForgotPasswordMutation } from "../../redux/api/authApi";
|
|
4
|
+
import { useFormik } from "formik";
|
|
5
|
+
import Image from "next/image";
|
|
6
|
+
import { useRouter, useSearchParams } from "next/navigation";
|
|
7
|
+
import { Button } from "primereact/button";
|
|
8
|
+
import { Message } from "primereact/message";
|
|
9
|
+
import { Password } from "primereact/password";
|
|
10
|
+
import { Toast } from "primereact/toast";
|
|
11
|
+
import { classNames } from "primereact/utils";
|
|
12
|
+
import { useEffect, useRef } from "react";
|
|
13
|
+
import * as Yup from "yup";
|
|
14
|
+
import SolidLogo from '../../resources/images/SolidXLogo.svg'
|
|
15
|
+
import { ERROR_MESSAGES } from "../../constants/error-messages";
|
|
16
|
+
import { useLazyGetAuthSettingsQuery } from "../../redux/api/solidSettingsApi";
|
|
17
|
+
const SolidResetPassword = () => {
|
|
18
|
+
const searchParams = useSearchParams();
|
|
19
|
+
const verificationToken = searchParams.get('token');
|
|
20
|
+
// const decodedUsername = searchParams.get('username');
|
|
21
|
+
// const username = decodedUsername ? decodeURIComponent(decodedUsername) : '';
|
|
22
|
+
|
|
23
|
+
const [trigger, { data: solidSettingsData }] = useLazyGetAuthSettingsQuery();
|
|
24
|
+
useEffect(() => {
|
|
25
|
+
trigger("") // Fetch settings on mount
|
|
26
|
+
}, [trigger])
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
const toast = useRef<Toast>(null);
|
|
30
|
+
const router = useRouter();
|
|
31
|
+
|
|
32
|
+
const [confirmForgotPassword] = useConfirmForgotPasswordMutation();
|
|
33
|
+
const showToast = (severity: "success" | "error", summary: string, detail: string) => {
|
|
34
|
+
toast.current?.show({
|
|
35
|
+
severity,
|
|
36
|
+
summary,
|
|
37
|
+
detail,
|
|
38
|
+
...(severity === "error"
|
|
39
|
+
? { sticky: true } // stays until user closes
|
|
40
|
+
: { life: 3000 }),
|
|
41
|
+
});
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
const envPasswordRegex = process.env.NEXT_PUBLIC_PASSWORD_REGEX;
|
|
45
|
+
const envPasswordHelperText = process.env.NEXT_PUBLIC_PASSWORD_COMPLEXITY_DESC;
|
|
46
|
+
let passwordRegex: RegExp | null = null;
|
|
47
|
+
try {
|
|
48
|
+
if (envPasswordRegex) {
|
|
49
|
+
const unescaped = JSON.parse(`"${envPasswordRegex}"`);
|
|
50
|
+
passwordRegex = new RegExp(unescaped);
|
|
51
|
+
}
|
|
52
|
+
} catch (error) {
|
|
53
|
+
console.error(ERROR_MESSAGES.INVALID_PASSWORD_REGX, error);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
const newPasswordValidation = passwordRegex
|
|
57
|
+
? Yup.string()
|
|
58
|
+
.matches(passwordRegex, ERROR_MESSAGES.PASSWORD_DO_NOT_MEET)
|
|
59
|
+
.required(ERROR_MESSAGES.FIELD_REUQIRED('New password'))
|
|
60
|
+
: Yup.string().min(6, ERROR_MESSAGES.PASSWORD_CHARACTER(6))
|
|
61
|
+
.required('New password is required');
|
|
62
|
+
|
|
63
|
+
const validationSchema = Yup.object({
|
|
64
|
+
password: newPasswordValidation,
|
|
65
|
+
confirmPassword: Yup.string().oneOf([Yup.ref('password')], ERROR_MESSAGES.MUST_MATCH).required(ERROR_MESSAGES.FIELD_REUQIRED('Confirm password')),
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
const formik = useFormik({
|
|
69
|
+
initialValues: {
|
|
70
|
+
// username: username,
|
|
71
|
+
password: "",
|
|
72
|
+
confirmPassword: "",
|
|
73
|
+
verificationToken: verificationToken,
|
|
74
|
+
},
|
|
75
|
+
validationSchema,
|
|
76
|
+
onSubmit: async (values) => {
|
|
77
|
+
try {
|
|
78
|
+
const payload = {
|
|
79
|
+
// username: values.username,
|
|
80
|
+
password: values.password,
|
|
81
|
+
verificationToken: values.verificationToken,
|
|
82
|
+
};
|
|
83
|
+
const response = await confirmForgotPassword(payload).unwrap();
|
|
84
|
+
if (response?.statusCode === 200) {
|
|
85
|
+
showToast("success", ERROR_MESSAGES.FIELD_UPDATE('Password'), ERROR_MESSAGES.FIELD_UPDATE_SUCCESSFULLY('Password'))
|
|
86
|
+
router.push('/auth/login');
|
|
87
|
+
} else (
|
|
88
|
+
showToast("error", ERROR_MESSAGES.ERROR, response.error)
|
|
89
|
+
)
|
|
90
|
+
} catch (err: any) {
|
|
91
|
+
showToast("error", err?.data?.message, err?.data?.data?.message ? err?.data?.data?.message : err?.data?.message);
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
const isFormFieldValid = (formik: any, fieldName: string) =>
|
|
97
|
+
formik.touched[fieldName] && formik.errors[fieldName];
|
|
98
|
+
|
|
99
|
+
return (
|
|
100
|
+
<>
|
|
101
|
+
<Toast ref={toast} />
|
|
102
|
+
<div className={`auth-container ${solidSettingsData?.data?.authPagesLayout === 'center' ? 'center' : 'side'}`}>
|
|
103
|
+
{solidSettingsData?.data?.authPagesLayout === 'center' &&
|
|
104
|
+
<div className="flex justify-content-center">
|
|
105
|
+
<div className={`solid-logo flex align-items-center ${solidSettingsData?.data?.appLogoPosition}`}>
|
|
106
|
+
<Image
|
|
107
|
+
alt="solid logo"
|
|
108
|
+
src={solidSettingsData?.data?.appLogo || SolidLogo}
|
|
109
|
+
className="relative"
|
|
110
|
+
fill
|
|
111
|
+
/>
|
|
112
|
+
</div>
|
|
113
|
+
</div>
|
|
114
|
+
}
|
|
115
|
+
<h2 className={`solid-auth-title ${solidSettingsData?.data?.authPagesLayout === 'center' ? 'text-center' : 'text-left'}`}>Create New Password</h2>
|
|
116
|
+
{/* <p className="solid-auth-subtitle text-sm">By continuing, you agree to the <Link href={'#'}>Terms of Service</Link> and acknowledge you’ve read our <Link href={'#'}>Privacy Policy.</Link> </p> */}
|
|
117
|
+
<form onSubmit={formik.handleSubmit}>
|
|
118
|
+
<div className="flex flex-column gap-2">
|
|
119
|
+
<label htmlFor="password" className="solid-auth-input-label">New Password</label>
|
|
120
|
+
<Password
|
|
121
|
+
id="password"
|
|
122
|
+
name="password"
|
|
123
|
+
placeholder="***************"
|
|
124
|
+
value={formik.values.password}
|
|
125
|
+
onChange={formik.handleChange}
|
|
126
|
+
onBlur={formik.handleBlur}
|
|
127
|
+
toggleMask
|
|
128
|
+
className={classNames("", {
|
|
129
|
+
"p-invalid": isFormFieldValid(formik, "password"),
|
|
130
|
+
})}
|
|
131
|
+
inputClassName="w-full"
|
|
132
|
+
feedback={false}
|
|
133
|
+
/>
|
|
134
|
+
{isFormFieldValid(formik, "password") && <Message
|
|
135
|
+
className="text-red-500 text-sm"
|
|
136
|
+
severity="error"
|
|
137
|
+
text={formik?.errors?.password?.toString()}
|
|
138
|
+
/>}
|
|
139
|
+
</div>
|
|
140
|
+
<div className="flex flex-column gap-1 mt-4" style={{}}>
|
|
141
|
+
<label htmlFor="password" className="solid-auth-input-label">Confirm Password</label>
|
|
142
|
+
<Password
|
|
143
|
+
id="confirmPassword"
|
|
144
|
+
name="confirmPassword"
|
|
145
|
+
placeholder="***************"
|
|
146
|
+
value={formik.values.confirmPassword}
|
|
147
|
+
onChange={formik.handleChange}
|
|
148
|
+
onBlur={formik.handleBlur}
|
|
149
|
+
toggleMask
|
|
150
|
+
className={classNames("", {
|
|
151
|
+
"p-invalid": isFormFieldValid(formik, "confirmPassword"),
|
|
152
|
+
})}
|
|
153
|
+
inputClassName="w-full"
|
|
154
|
+
feedback={false}
|
|
155
|
+
/>
|
|
156
|
+
{isFormFieldValid(formik, "confirmPassword") && <Message
|
|
157
|
+
className="text-red-500 text-sm"
|
|
158
|
+
severity="error"
|
|
159
|
+
text={formik?.errors?.confirmPassword?.toString()}
|
|
160
|
+
/>}
|
|
161
|
+
</div>
|
|
162
|
+
{envPasswordHelperText && (
|
|
163
|
+
<div className="mt-4 text-sm">
|
|
164
|
+
<div className="grid">
|
|
165
|
+
{envPasswordHelperText
|
|
166
|
+
.split('\\n')
|
|
167
|
+
.map((text, idx) => (
|
|
168
|
+
<div key={idx} className="col-6 pt-0">
|
|
169
|
+
<div className='flex gap-2'><span>•</span><span>{text}</span></div>
|
|
170
|
+
</div>
|
|
171
|
+
))}
|
|
172
|
+
</div>
|
|
173
|
+
</div>
|
|
174
|
+
)}
|
|
175
|
+
{/* <div className="flex align-items-center mt-4">
|
|
176
|
+
<Checkbox inputId="remember" onChange={(e: any) => setChecked(e.checked)} checked={checked} />
|
|
177
|
+
<label htmlFor="remember" className="ml-2">Remember me</label>
|
|
178
|
+
</div> */}
|
|
179
|
+
<div className="mt-4">
|
|
180
|
+
<Button className="w-full font-light auth-submit-button" label="Reset Password" disabled={formik.isSubmitting} loading={formik.isSubmitting} />
|
|
181
|
+
<Button type="button" label="Back" className="w-full auth-back-button text-center mt-1" link onClick={() => (window.location.href = '/auth/login')} />
|
|
182
|
+
</div>
|
|
183
|
+
</form>
|
|
184
|
+
</div>
|
|
185
|
+
{/* <div className="text-center mt-5">
|
|
186
|
+
<div className="text-sm text-400 secondary-dark-color">
|
|
187
|
+
{'<'} Back to <Link className="font-bold" href="/auth/login">Sign In</Link>
|
|
188
|
+
</div>
|
|
189
|
+
</div> */}
|
|
190
|
+
</>
|
|
191
|
+
);
|
|
192
|
+
};
|
|
193
|
+
|
|
194
|
+
export default SolidResetPassword;
|