@greatapps/common 1.1.790 → 1.1.792
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/account/AccountHubLinkHandler.mjs +36 -0
- package/dist/components/account/AccountHubLinkHandler.mjs.map +1 -0
- package/dist/components/account/AccountModalLayout.mjs +137 -0
- package/dist/components/account/AccountModalLayout.mjs.map +1 -0
- package/dist/components/account/AccountModals.mjs +10 -3
- package/dist/components/account/AccountModals.mjs.map +1 -1
- package/dist/components/account/AccountUnsavedChangesDialog.mjs +34 -0
- package/dist/components/account/AccountUnsavedChangesDialog.mjs.map +1 -0
- package/dist/components/account/DeleteAccountModal.mjs +1 -1
- package/dist/components/account/DeleteAccountModal.mjs.map +1 -1
- package/dist/components/account/IsntPossibleDeleteAccountModal.mjs +8 -1
- package/dist/components/account/IsntPossibleDeleteAccountModal.mjs.map +1 -1
- package/dist/components/account/MyAccountModal.mjs +173 -0
- package/dist/components/account/MyAccountModal.mjs.map +1 -0
- package/dist/components/account/TwoFactorAuthModal.mjs +1 -1
- package/dist/components/account/TwoFactorAuthModal.mjs.map +1 -1
- package/dist/components/account/hooks/useAccountHubActions.mjs +85 -0
- package/dist/components/account/hooks/useAccountHubActions.mjs.map +1 -0
- package/dist/components/account/hooks/useAddCardWithPaymentSwitch.mjs +44 -0
- package/dist/components/account/hooks/useAddCardWithPaymentSwitch.mjs.map +1 -0
- package/dist/components/account/hooks/useAffiliatesActions.mjs +69 -0
- package/dist/components/account/hooks/useAffiliatesActions.mjs.map +1 -0
- package/dist/components/account/hooks/useMyAccountModal.mjs +27 -0
- package/dist/components/account/hooks/useMyAccountModal.mjs.map +1 -0
- package/dist/components/account/hooks/useProjectsActions.mjs +40 -0
- package/dist/components/account/hooks/useProjectsActions.mjs.map +1 -0
- package/dist/components/account/hooks/useSubscriptionActions.mjs +87 -0
- package/dist/components/account/hooks/useSubscriptionActions.mjs.map +1 -0
- package/dist/components/account/hooks/useTeamActions.mjs +31 -0
- package/dist/components/account/hooks/useTeamActions.mjs.map +1 -0
- package/dist/components/account/sections/AffiliatesSection.mjs +313 -0
- package/dist/components/account/sections/AffiliatesSection.mjs.map +1 -0
- package/dist/components/account/sections/ChangePasswordSection.mjs +5 -5
- package/dist/components/account/sections/ChangePasswordSection.mjs.map +1 -1
- package/dist/components/account/sections/MyProfileSection.mjs +212 -164
- package/dist/components/account/sections/MyProfileSection.mjs.map +1 -1
- package/dist/components/account/sections/PreferencesSection.mjs +74 -68
- package/dist/components/account/sections/PreferencesSection.mjs.map +1 -1
- package/dist/components/account/sections/ProjectsSection.mjs +77 -0
- package/dist/components/account/sections/ProjectsSection.mjs.map +1 -0
- package/dist/components/account/sections/SecuritySection.mjs +55 -36
- package/dist/components/account/sections/SecuritySection.mjs.map +1 -1
- package/dist/components/account/sections/SubscriptionSection.mjs +29 -0
- package/dist/components/account/sections/SubscriptionSection.mjs.map +1 -0
- package/dist/components/account/sections/TeamSection.mjs +119 -0
- package/dist/components/account/sections/TeamSection.mjs.map +1 -0
- package/dist/components/account/sections/TokenSection.mjs +41 -43
- package/dist/components/account/sections/TokenSection.mjs.map +1 -1
- package/dist/components/account/sections/affiliates/AffiliateCommissionCard.mjs +73 -0
- package/dist/components/account/sections/affiliates/AffiliateCommissionCard.mjs.map +1 -0
- package/dist/components/account/sections/affiliates/AffiliateFlows.mjs +20 -0
- package/dist/components/account/sections/affiliates/AffiliateFlows.mjs.map +1 -0
- package/dist/components/account/sections/affiliates/AffiliateLeadsSheet.mjs +99 -0
- package/dist/components/account/sections/affiliates/AffiliateLeadsSheet.mjs.map +1 -0
- package/dist/components/account/sections/affiliates/AffiliateStatsCard.mjs +31 -0
- package/dist/components/account/sections/affiliates/AffiliateStatsCard.mjs.map +1 -0
- package/dist/components/account/sections/affiliates/AffiliateStepCard.mjs +15 -0
- package/dist/components/account/sections/affiliates/AffiliateStepCard.mjs.map +1 -0
- package/dist/components/account/sections/affiliates/AffiliateTransactionsList.mjs +108 -0
- package/dist/components/account/sections/affiliates/AffiliateTransactionsList.mjs.map +1 -0
- package/dist/components/account/sections/affiliates/NoReceivingAccountModal.mjs +49 -0
- package/dist/components/account/sections/affiliates/NoReceivingAccountModal.mjs.map +1 -0
- package/dist/components/account/sections/affiliates/ReceivingAccountModal.mjs +182 -0
- package/dist/components/account/sections/affiliates/ReceivingAccountModal.mjs.map +1 -0
- package/dist/components/account/sections/affiliates/RequestWithdrawalSheet.mjs +476 -0
- package/dist/components/account/sections/affiliates/RequestWithdrawalSheet.mjs.map +1 -0
- package/dist/components/account/sections/affiliates/ViewAttachmentModal.mjs +34 -0
- package/dist/components/account/sections/affiliates/ViewAttachmentModal.mjs.map +1 -0
- package/dist/components/account/sections/affiliates/reports/AffiliatesIndicatorsChart.mjs +27 -0
- package/dist/components/account/sections/affiliates/reports/AffiliatesIndicatorsChart.mjs.map +1 -0
- package/dist/components/account/sections/affiliates/reports/AffiliatesReportsTab.mjs +30 -0
- package/dist/components/account/sections/affiliates/reports/AffiliatesReportsTab.mjs.map +1 -0
- package/dist/components/account/sections/affiliates/reports/useAffiliatesIndicatorsChart.mjs +120 -0
- package/dist/components/account/sections/affiliates/reports/useAffiliatesIndicatorsChart.mjs.map +1 -0
- package/dist/components/account/sections/projects/DeleteProjectModal.mjs +205 -0
- package/dist/components/account/sections/projects/DeleteProjectModal.mjs.map +1 -0
- package/dist/components/account/sections/projects/ProjectFlows.mjs +16 -0
- package/dist/components/account/sections/projects/ProjectFlows.mjs.map +1 -0
- package/dist/components/account/sections/projects/ProjectMembersStack.mjs +53 -0
- package/dist/components/account/sections/projects/ProjectMembersStack.mjs.map +1 -0
- package/dist/components/account/sections/projects/ProjectRow.mjs +85 -0
- package/dist/components/account/sections/projects/ProjectRow.mjs.map +1 -0
- package/dist/components/account/sections/projects/ProjectSheet.mjs +499 -0
- package/dist/components/account/sections/projects/ProjectSheet.mjs.map +1 -0
- package/dist/components/account/sections/projects/ProjectsDisabledModal.mjs +55 -0
- package/dist/components/account/sections/projects/ProjectsDisabledModal.mjs.map +1 -0
- package/dist/components/account/sections/projects/project-form.schema.mjs +28 -0
- package/dist/components/account/sections/projects/project-form.schema.mjs.map +1 -0
- package/dist/components/account/sections/shared/ConnectListRow.mjs +45 -0
- package/dist/components/account/sections/shared/ConnectListRow.mjs.map +1 -0
- package/dist/components/account/sections/shared/DateFilterPopover.mjs +51 -0
- package/dist/components/account/sections/shared/DateFilterPopover.mjs.map +1 -0
- package/dist/components/account/sections/shared/EntityAvatar.mjs +41 -0
- package/dist/components/account/sections/shared/EntityAvatar.mjs.map +1 -0
- package/dist/components/account/sections/shared/FilterPopover.mjs +62 -0
- package/dist/components/account/sections/shared/FilterPopover.mjs.map +1 -0
- package/dist/components/account/sections/shared/FormSection.mjs +14 -0
- package/dist/components/account/sections/shared/FormSection.mjs.map +1 -0
- package/dist/components/account/sections/shared/IconBox.mjs +18 -0
- package/dist/components/account/sections/shared/IconBox.mjs.map +1 -0
- package/dist/components/account/sections/shared/InfiniteScrollList.mjs +36 -0
- package/dist/components/account/sections/shared/InfiniteScrollList.mjs.map +1 -0
- package/dist/components/account/sections/shared/ListPagination.mjs +69 -0
- package/dist/components/account/sections/shared/ListPagination.mjs.map +1 -0
- package/dist/components/account/sections/shared/RowActionsMenu.mjs +52 -0
- package/dist/components/account/sections/shared/RowActionsMenu.mjs.map +1 -0
- package/dist/components/account/sections/shared/SectionLoadError.mjs +20 -0
- package/dist/components/account/sections/shared/SectionLoadError.mjs.map +1 -0
- package/dist/components/account/sections/shared/StatusBadge.mjs +26 -0
- package/dist/components/account/sections/shared/StatusBadge.mjs.map +1 -0
- package/dist/components/account/sections/shared/WorkspaceSection.mjs +10 -0
- package/dist/components/account/sections/shared/WorkspaceSection.mjs.map +1 -0
- package/dist/components/account/sections/subscription/AiCreditsUsage.mjs +106 -0
- package/dist/components/account/sections/subscription/AiCreditsUsage.mjs.map +1 -0
- package/dist/components/account/sections/subscription/BillingAddressSheet.mjs +407 -0
- package/dist/components/account/sections/subscription/BillingAddressSheet.mjs.map +1 -0
- package/dist/components/account/sections/subscription/BoletoDetailsDialog.mjs +73 -0
- package/dist/components/account/sections/subscription/BoletoDetailsDialog.mjs.map +1 -0
- package/dist/components/account/sections/subscription/BoletoGeneratedDialog.mjs +22 -0
- package/dist/components/account/sections/subscription/BoletoGeneratedDialog.mjs.map +1 -0
- package/dist/components/account/sections/subscription/CancelPlanDialog.mjs +161 -0
- package/dist/components/account/sections/subscription/CancelPlanDialog.mjs.map +1 -0
- package/dist/components/account/sections/subscription/ChargeRow.mjs +127 -0
- package/dist/components/account/sections/subscription/ChargeRow.mjs.map +1 -0
- package/dist/components/account/sections/subscription/ChargeStatusBadge.mjs +27 -0
- package/dist/components/account/sections/subscription/ChargeStatusBadge.mjs.map +1 -0
- package/dist/components/account/sections/subscription/ChargesList.mjs +88 -0
- package/dist/components/account/sections/subscription/ChargesList.mjs.map +1 -0
- package/dist/components/account/sections/subscription/ManageCardsSheet.mjs +49 -0
- package/dist/components/account/sections/subscription/ManageCardsSheet.mjs.map +1 -0
- package/dist/components/account/sections/subscription/OverdueReceiptOpener.mjs +26 -0
- package/dist/components/account/sections/subscription/OverdueReceiptOpener.mjs.map +1 -0
- package/dist/components/account/sections/subscription/PayChargeDialog.mjs +222 -0
- package/dist/components/account/sections/subscription/PayChargeDialog.mjs.map +1 -0
- package/dist/components/account/sections/subscription/PaymentConfirmationDialog.mjs +61 -0
- package/dist/components/account/sections/subscription/PaymentConfirmationDialog.mjs.map +1 -0
- package/dist/components/account/sections/subscription/PaymentMethodsCard.mjs +72 -0
- package/dist/components/account/sections/subscription/PaymentMethodsCard.mjs.map +1 -0
- package/dist/components/account/sections/subscription/PendingChangeDialog.mjs +117 -0
- package/dist/components/account/sections/subscription/PendingChangeDialog.mjs.map +1 -0
- package/dist/components/account/sections/subscription/PixDetailsDialog.mjs +165 -0
- package/dist/components/account/sections/subscription/PixDetailsDialog.mjs.map +1 -0
- package/dist/components/account/sections/subscription/PixPaymentDialog.mjs +155 -0
- package/dist/components/account/sections/subscription/PixPaymentDialog.mjs.map +1 -0
- package/dist/components/account/sections/subscription/PlanDetailsSheet.mjs +253 -0
- package/dist/components/account/sections/subscription/PlanDetailsSheet.mjs.map +1 -0
- package/dist/components/account/sections/subscription/ReceiptDetailsSheet.mjs +237 -0
- package/dist/components/account/sections/subscription/ReceiptDetailsSheet.mjs.map +1 -0
- package/dist/components/account/sections/subscription/SubscriptionFlows.mjs +40 -0
- package/dist/components/account/sections/subscription/SubscriptionFlows.mjs.map +1 -0
- package/dist/components/account/sections/subscription/SubscriptionPlanCard.mjs +303 -0
- package/dist/components/account/sections/subscription/SubscriptionPlanCard.mjs.map +1 -0
- package/dist/components/account/sections/subscription/UsageReportSheet.mjs +163 -0
- package/dist/components/account/sections/subscription/UsageReportSheet.mjs.map +1 -0
- package/dist/components/account/sections/subscription/change-plan/ChangePlanSheet.mjs +75 -0
- package/dist/components/account/sections/subscription/change-plan/ChangePlanSheet.mjs.map +1 -0
- package/dist/components/account/sections/subscription/change-plan/components/AbTestDetailsDialog.mjs +55 -0
- package/dist/components/account/sections/subscription/change-plan/components/AbTestDetailsDialog.mjs.map +1 -0
- package/dist/components/account/sections/subscription/change-plan/components/AddonsBlock.mjs +188 -0
- package/dist/components/account/sections/subscription/change-plan/components/AddonsBlock.mjs.map +1 -0
- package/dist/components/account/sections/subscription/change-plan/components/AlternativeBucketsSection.mjs +66 -0
- package/dist/components/account/sections/subscription/change-plan/components/AlternativeBucketsSection.mjs.map +1 -0
- package/dist/components/account/sections/subscription/change-plan/components/CouponBlock.mjs +42 -0
- package/dist/components/account/sections/subscription/change-plan/components/CouponBlock.mjs.map +1 -0
- package/dist/components/account/sections/subscription/change-plan/components/CouponDialog.mjs +119 -0
- package/dist/components/account/sections/subscription/change-plan/components/CouponDialog.mjs.map +1 -0
- package/dist/components/account/sections/subscription/change-plan/components/PricePreview.mjs +17 -0
- package/dist/components/account/sections/subscription/change-plan/components/PricePreview.mjs.map +1 -0
- package/dist/components/account/sections/subscription/change-plan/components/SummaryBlock.mjs +130 -0
- package/dist/components/account/sections/subscription/change-plan/components/SummaryBlock.mjs.map +1 -0
- package/dist/components/account/sections/subscription/change-plan/plan-comparison.mjs +38 -0
- package/dist/components/account/sections/subscription/change-plan/plan-comparison.mjs.map +1 -0
- package/dist/components/account/sections/subscription/change-plan/steps/PaymentSummaryStep.mjs +127 -0
- package/dist/components/account/sections/subscription/change-plan/steps/PaymentSummaryStep.mjs.map +1 -0
- package/dist/components/account/sections/subscription/change-plan/steps/PlanComparisonStep.mjs +111 -0
- package/dist/components/account/sections/subscription/change-plan/steps/PlanComparisonStep.mjs.map +1 -0
- package/dist/components/account/sections/subscription/change-plan/steps/PlanViewStep.mjs +69 -0
- package/dist/components/account/sections/subscription/change-plan/steps/PlanViewStep.mjs.map +1 -0
- package/dist/components/account/sections/subscription/change-plan/steps/ReactivationConfigStep.mjs +88 -0
- package/dist/components/account/sections/subscription/change-plan/steps/ReactivationConfigStep.mjs.map +1 -0
- package/dist/components/account/sections/subscription/change-plan/steps/ReactivationPaymentStep.mjs +115 -0
- package/dist/components/account/sections/subscription/change-plan/steps/ReactivationPaymentStep.mjs.map +1 -0
- package/dist/components/account/sections/subscription/change-plan/useChangePlanState.mjs +918 -0
- package/dist/components/account/sections/subscription/change-plan/useChangePlanState.mjs.map +1 -0
- package/dist/components/account/sections/subscription/downgrade/CannotDowngradeDialog.mjs +216 -0
- package/dist/components/account/sections/subscription/downgrade/CannotDowngradeDialog.mjs.map +1 -0
- package/dist/components/account/sections/subscription/downgrade/DowngradeReasonDialog.mjs +128 -0
- package/dist/components/account/sections/subscription/downgrade/DowngradeReasonDialog.mjs.map +1 -0
- package/dist/components/account/sections/subscription/plans/PlanCard.mjs +281 -0
- package/dist/components/account/sections/subscription/plans/PlanCard.mjs.map +1 -0
- package/dist/components/account/sections/subscription/plans/PlanCardSkeleton.mjs +53 -0
- package/dist/components/account/sections/subscription/plans/PlanCardSkeleton.mjs.map +1 -0
- package/dist/components/account/sections/subscription/plans/PlansCatalogDialog.mjs +119 -0
- package/dist/components/account/sections/subscription/plans/PlansCatalogDialog.mjs.map +1 -0
- package/dist/components/account/sections/team/DeleteUserModal.mjs +116 -0
- package/dist/components/account/sections/team/DeleteUserModal.mjs.map +1 -0
- package/dist/components/account/sections/team/TeamFlows.mjs +14 -0
- package/dist/components/account/sections/team/TeamFlows.mjs.map +1 -0
- package/dist/components/account/sections/team/TeamMemberRow.mjs +99 -0
- package/dist/components/account/sections/team/TeamMemberRow.mjs.map +1 -0
- package/dist/components/account/sections/team/UserSheet.mjs +570 -0
- package/dist/components/account/sections/team/UserSheet.mjs.map +1 -0
- package/dist/components/account/sections/team/steps/NotificationsStep.mjs +80 -0
- package/dist/components/account/sections/team/steps/NotificationsStep.mjs.map +1 -0
- package/dist/components/account/sections/team/steps/ProjectSelectionStep.mjs +180 -0
- package/dist/components/account/sections/team/steps/ProjectSelectionStep.mjs.map +1 -0
- package/dist/components/account/sections/team/steps/UserInformationStep.mjs +371 -0
- package/dist/components/account/sections/team/steps/UserInformationStep.mjs.map +1 -0
- package/dist/components/account/sections/team/user-form.schema.mjs +37 -0
- package/dist/components/account/sections/team/user-form.schema.mjs.map +1 -0
- package/dist/components/account/types/workspace-actions.type.mjs +1 -0
- package/dist/components/account/types/workspace-actions.type.mjs.map +1 -0
- package/dist/components/layouts/ProfilePopover.mjs +10 -12
- package/dist/components/layouts/ProfilePopover.mjs.map +1 -1
- package/dist/components/layouts/UsersSelectorPopover.mjs +7 -4
- package/dist/components/layouts/UsersSelectorPopover.mjs.map +1 -1
- package/dist/components/modals/AccountDeletionWarningModal.mjs +4 -5
- package/dist/components/modals/AccountDeletionWarningModal.mjs.map +1 -1
- package/dist/components/modals/AccountFrozenModal.mjs +6 -3
- package/dist/components/modals/AccountFrozenModal.mjs.map +1 -1
- package/dist/components/modals/Modals.mjs +3 -3
- package/dist/components/modals/Modals.mjs.map +1 -1
- package/dist/components/modals/PaidPlanRequiredModal.mjs +4 -5
- package/dist/components/modals/PaidPlanRequiredModal.mjs.map +1 -1
- package/dist/components/modals/cards/AddFirstCardWarningModal.mjs +63 -0
- package/dist/components/modals/cards/AddFirstCardWarningModal.mjs.map +1 -0
- package/dist/components/modals/cards/SwitchPaymentToCardModal.mjs +187 -0
- package/dist/components/modals/cards/SwitchPaymentToCardModal.mjs.map +1 -0
- package/dist/components/modals/promo/AiCreditsOfferModal/AiCreditsOfferModal.mjs +5 -4
- package/dist/components/modals/promo/AiCreditsOfferModal/AiCreditsOfferModal.mjs.map +1 -1
- package/dist/components/ui/data-display/CardItem.mjs +9 -1
- package/dist/components/ui/data-display/CardItem.mjs.map +1 -1
- package/dist/components/ui/data-display/PaymentMethodIcons.mjs +50 -0
- package/dist/components/ui/data-display/PaymentMethodIcons.mjs.map +1 -0
- package/dist/components/ui/form/BillingPeriodSelector.mjs +108 -0
- package/dist/components/ui/form/BillingPeriodSelector.mjs.map +1 -0
- package/dist/components/ui/form/PaymentMethodToggle.mjs +82 -0
- package/dist/components/ui/form/PaymentMethodToggle.mjs.map +1 -0
- package/dist/components/ui/form/RadioOptionFieldIcon.mjs +57 -0
- package/dist/components/ui/form/RadioOptionFieldIcon.mjs.map +1 -0
- package/dist/components/ui/form/SegmentedControl.mjs +56 -0
- package/dist/components/ui/form/SegmentedControl.mjs.map +1 -0
- package/dist/components/ui/overlay/Dialog.mjs +21 -4
- package/dist/components/ui/overlay/Dialog.mjs.map +1 -1
- package/dist/components/ui/overlay/Sheet.mjs +26 -8
- package/dist/components/ui/overlay/Sheet.mjs.map +1 -1
- package/dist/components/ui/overlay/layers.mjs +52 -5
- package/dist/components/ui/overlay/layers.mjs.map +1 -1
- package/dist/enums/AccountHubFlow.mjs +13 -0
- package/dist/enums/AccountHubFlow.mjs.map +1 -0
- package/dist/enums/DateFilterPeriod.mjs +22 -0
- package/dist/enums/DateFilterPeriod.mjs.map +1 -0
- package/dist/enums/WorkspaceSectionType.mjs +11 -0
- package/dist/enums/WorkspaceSectionType.mjs.map +1 -0
- package/dist/handlers.mjs +24 -0
- package/dist/handlers.mjs.map +1 -1
- package/dist/hooks/useDebounce.mjs +5 -3
- package/dist/hooks/useDebounce.mjs.map +1 -1
- package/dist/hooks/useUploadProgress.mjs +33 -0
- package/dist/hooks/useUploadProgress.mjs.map +1 -0
- package/dist/i18n/messages/en-us.mjs +868 -3
- package/dist/i18n/messages/en-us.mjs.map +1 -1
- package/dist/i18n/messages/es-es.mjs +868 -3
- package/dist/i18n/messages/es-es.mjs.map +1 -1
- package/dist/i18n/messages/pt-br.mjs +868 -3
- package/dist/i18n/messages/pt-br.mjs.map +1 -1
- package/dist/index.mjs +87 -7
- package/dist/index.mjs.map +1 -1
- package/dist/infra/http/paged.mjs +20 -0
- package/dist/infra/http/paged.mjs.map +1 -0
- package/dist/middleware.mjs +2 -0
- package/dist/middleware.mjs.map +1 -1
- package/dist/middlewares/create-auth-middleware.mjs +2 -4
- package/dist/middlewares/create-auth-middleware.mjs.map +1 -1
- package/dist/middlewares/create-legacy-account-routes-middleware.mjs +44 -0
- package/dist/middlewares/create-legacy-account-routes-middleware.mjs.map +1 -0
- package/dist/middlewares/is-route-equals.mjs +7 -0
- package/dist/middlewares/is-route-equals.mjs.map +1 -0
- package/dist/modules/accounts/actions/account-management.action.mjs +20 -1
- package/dist/modules/accounts/actions/account-management.action.mjs.map +1 -1
- package/dist/modules/accounts/constants/account-hub-link.constants.mjs +9 -0
- package/dist/modules/accounts/constants/account-hub-link.constants.mjs.map +1 -0
- package/dist/modules/accounts/constants/legacy-account-routes.constants.mjs +5 -0
- package/dist/modules/accounts/constants/legacy-account-routes.constants.mjs.map +1 -0
- package/dist/modules/accounts/handlers/list-account-members.handler.mjs +22 -0
- package/dist/modules/accounts/handlers/list-account-members.handler.mjs.map +1 -0
- package/dist/modules/accounts/hooks/add-user-projects.hook.mjs +51 -0
- package/dist/modules/accounts/hooks/add-user-projects.hook.mjs.map +1 -0
- package/dist/modules/accounts/hooks/create-account-user.hook.mjs +20 -0
- package/dist/modules/accounts/hooks/create-account-user.hook.mjs.map +1 -0
- package/dist/modules/accounts/hooks/remove-user-projects.hook.mjs +47 -0
- package/dist/modules/accounts/hooks/remove-user-projects.hook.mjs.map +1 -0
- package/dist/modules/accounts/hooks/use-account-members.hook.mjs +20 -0
- package/dist/modules/accounts/hooks/use-account-members.hook.mjs.map +1 -0
- package/dist/modules/accounts/services/account.service.mjs +59 -0
- package/dist/modules/accounts/services/account.service.mjs.map +1 -1
- package/dist/modules/accounts/types/account-hub-link.type.mjs +1 -0
- package/dist/modules/accounts/types/account-hub-link.type.mjs.map +1 -0
- package/dist/modules/accounts/utils/build-account-hub-url.mjs +16 -0
- package/dist/modules/accounts/utils/build-account-hub-url.mjs.map +1 -0
- package/dist/modules/accounts/utils/is-account-hub-flow.mjs +9 -0
- package/dist/modules/accounts/utils/is-account-hub-flow.mjs.map +1 -0
- package/dist/modules/accounts/utils/is-account-section.mjs +9 -0
- package/dist/modules/accounts/utils/is-account-section.mjs.map +1 -0
- package/dist/modules/accounts/utils/is-my-account-section.mjs +13 -0
- package/dist/modules/accounts/utils/is-my-account-section.mjs.map +1 -0
- package/dist/modules/accounts/utils/map-legacy-account-route.mjs +93 -0
- package/dist/modules/accounts/utils/map-legacy-account-route.mjs.map +1 -0
- package/dist/modules/accounts/utils/parse-account-hub-link.mjs +20 -0
- package/dist/modules/accounts/utils/parse-account-hub-link.mjs.map +1 -0
- package/dist/modules/affiliates/actions/ensure-affiliate.action.mjs +10 -0
- package/dist/modules/affiliates/actions/ensure-affiliate.action.mjs.map +1 -0
- package/dist/modules/affiliates/actions/request-deposit.action.mjs +10 -0
- package/dist/modules/affiliates/actions/request-deposit.action.mjs.map +1 -0
- package/dist/modules/affiliates/actions/update-affiliate.action.mjs +10 -0
- package/dist/modules/affiliates/actions/update-affiliate.action.mjs.map +1 -0
- package/dist/modules/affiliates/constants/affiliate.constants.mjs +11 -0
- package/dist/modules/affiliates/constants/affiliate.constants.mjs.map +1 -0
- package/dist/modules/affiliates/constants/query-keys.constants.mjs +15 -0
- package/dist/modules/affiliates/constants/query-keys.constants.mjs.map +1 -0
- package/dist/modules/affiliates/handlers/affiliate-report-analytics.handler.mjs +16 -0
- package/dist/modules/affiliates/handlers/affiliate-report-analytics.handler.mjs.map +1 -0
- package/dist/modules/affiliates/handlers/affiliate-withdrawal-limits.handler.mjs +12 -0
- package/dist/modules/affiliates/handlers/affiliate-withdrawal-limits.handler.mjs.map +1 -0
- package/dist/modules/affiliates/handlers/current-affiliate.handler.mjs +12 -0
- package/dist/modules/affiliates/handlers/current-affiliate.handler.mjs.map +1 -0
- package/dist/modules/affiliates/handlers/list-affiliate-coupons.handler.mjs +12 -0
- package/dist/modules/affiliates/handlers/list-affiliate-coupons.handler.mjs.map +1 -0
- package/dist/modules/affiliates/handlers/list-affiliate-leads.handler.mjs +22 -0
- package/dist/modules/affiliates/handlers/list-affiliate-leads.handler.mjs.map +1 -0
- package/dist/modules/affiliates/handlers/list-affiliate-transactions.handler.mjs +22 -0
- package/dist/modules/affiliates/handlers/list-affiliate-transactions.handler.mjs.map +1 -0
- package/dist/modules/affiliates/hooks/use-affiliate-coupons.hook.mjs +17 -0
- package/dist/modules/affiliates/hooks/use-affiliate-coupons.hook.mjs.map +1 -0
- package/dist/modules/affiliates/hooks/use-affiliate-leads.hook.mjs +22 -0
- package/dist/modules/affiliates/hooks/use-affiliate-leads.hook.mjs.map +1 -0
- package/dist/modules/affiliates/hooks/use-affiliate-report-analytics.hook.mjs +17 -0
- package/dist/modules/affiliates/hooks/use-affiliate-report-analytics.hook.mjs.map +1 -0
- package/dist/modules/affiliates/hooks/use-affiliate-transactions.hook.mjs +20 -0
- package/dist/modules/affiliates/hooks/use-affiliate-transactions.hook.mjs.map +1 -0
- package/dist/modules/affiliates/hooks/use-current-affiliate.hook.mjs +17 -0
- package/dist/modules/affiliates/hooks/use-current-affiliate.hook.mjs.map +1 -0
- package/dist/modules/affiliates/hooks/use-ensure-affiliate.hook.mjs +23 -0
- package/dist/modules/affiliates/hooks/use-ensure-affiliate.hook.mjs.map +1 -0
- package/dist/modules/affiliates/hooks/use-request-deposit.hook.mjs +28 -0
- package/dist/modules/affiliates/hooks/use-request-deposit.hook.mjs.map +1 -0
- package/dist/modules/affiliates/hooks/use-update-affiliate.hook.mjs +22 -0
- package/dist/modules/affiliates/hooks/use-update-affiliate.hook.mjs.map +1 -0
- package/dist/modules/affiliates/hooks/use-withdrawal-limits.hook.mjs +17 -0
- package/dist/modules/affiliates/hooks/use-withdrawal-limits.hook.mjs.map +1 -0
- package/dist/modules/affiliates/services/affiliates.service.mjs +183 -0
- package/dist/modules/affiliates/services/affiliates.service.mjs.map +1 -0
- package/dist/modules/affiliates/types/affiliate.type.mjs +100 -0
- package/dist/modules/affiliates/types/affiliate.type.mjs.map +1 -0
- package/dist/modules/affiliates/utils/get-affiliate-share-link.mjs +9 -0
- package/dist/modules/affiliates/utils/get-affiliate-share-link.mjs.map +1 -0
- package/dist/modules/charges/actions/get-nota-fiscal.action.mjs +10 -0
- package/dist/modules/charges/actions/get-nota-fiscal.action.mjs.map +1 -0
- package/dist/modules/charges/actions/refresh-pix.action.mjs +10 -0
- package/dist/modules/charges/actions/refresh-pix.action.mjs.map +1 -0
- package/dist/modules/charges/hooks/nota-fiscal.hook.mjs +13 -0
- package/dist/modules/charges/hooks/nota-fiscal.hook.mjs.map +1 -0
- package/dist/modules/charges/hooks/refresh-pix.hook.mjs +13 -0
- package/dist/modules/charges/hooks/refresh-pix.hook.mjs.map +1 -0
- package/dist/modules/charges/services/charges.service.mjs +67 -0
- package/dist/modules/charges/services/charges.service.mjs.map +1 -1
- package/dist/modules/charges/types/nota-fiscal.type.mjs +1 -0
- package/dist/modules/charges/types/nota-fiscal.type.mjs.map +1 -0
- package/dist/modules/charges/types/refresh-pix.type.mjs +1 -0
- package/dist/modules/charges/types/refresh-pix.type.mjs.map +1 -0
- package/dist/modules/charges/utils/get-charge-download-url.mjs +8 -0
- package/dist/modules/charges/utils/get-charge-download-url.mjs.map +1 -0
- package/dist/modules/coupons/constants/query-keys.constants.mjs +5 -0
- package/dist/modules/coupons/constants/query-keys.constants.mjs.map +1 -0
- package/dist/modules/coupons/handlers/find-coupon-by-code.handler.mjs +17 -0
- package/dist/modules/coupons/handlers/find-coupon-by-code.handler.mjs.map +1 -0
- package/dist/modules/coupons/handlers/find-coupon-by-id.handler.mjs +16 -0
- package/dist/modules/coupons/handlers/find-coupon-by-id.handler.mjs.map +1 -0
- package/dist/modules/coupons/hooks/use-coupon-by-code.hook.mjs +15 -0
- package/dist/modules/coupons/hooks/use-coupon-by-code.hook.mjs.map +1 -0
- package/dist/modules/coupons/hooks/use-coupon-by-id.hook.mjs +18 -0
- package/dist/modules/coupons/hooks/use-coupon-by-id.hook.mjs.map +1 -0
- package/dist/modules/coupons/services/coupons.service.mjs +44 -0
- package/dist/modules/coupons/services/coupons.service.mjs.map +1 -0
- package/dist/modules/coupons/types/coupon.type.mjs +61 -0
- package/dist/modules/coupons/types/coupon.type.mjs.map +1 -0
- package/dist/modules/coupons/utils/coupon-restrictions.mjs +60 -0
- package/dist/modules/coupons/utils/coupon-restrictions.mjs.map +1 -0
- package/dist/modules/domains/handlers/count-domains.handler.mjs +12 -0
- package/dist/modules/domains/handlers/count-domains.handler.mjs.map +1 -0
- package/dist/modules/domains/hooks/count-domains.hook.mjs +17 -0
- package/dist/modules/domains/hooks/count-domains.hook.mjs.map +1 -0
- package/dist/modules/domains/services/domains.service.mjs +18 -0
- package/dist/modules/domains/services/domains.service.mjs.map +1 -0
- package/dist/modules/ia-credits/handlers/list-ia-credit-operations.handler.mjs +15 -0
- package/dist/modules/ia-credits/handlers/list-ia-credit-operations.handler.mjs.map +1 -0
- package/dist/modules/ia-credits/hooks/ia-credit-operations.hook.mjs +28 -0
- package/dist/modules/ia-credits/hooks/ia-credit-operations.hook.mjs.map +1 -0
- package/dist/modules/ia-credits/services/ia-credits.service.mjs +23 -2
- package/dist/modules/ia-credits/services/ia-credits.service.mjs.map +1 -1
- package/dist/modules/pages/handlers/count-pages.handler.mjs +4 -2
- package/dist/modules/pages/handlers/count-pages.handler.mjs.map +1 -1
- package/dist/modules/pages/hooks/count-published-pages.hook.mjs +26 -0
- package/dist/modules/pages/hooks/count-published-pages.hook.mjs.map +1 -0
- package/dist/modules/pages/services/pages.service.mjs +3 -2
- package/dist/modules/pages/services/pages.service.mjs.map +1 -1
- package/dist/modules/plans/constants/plan-tooltips.constants.mjs +14 -0
- package/dist/modules/plans/constants/plan-tooltips.constants.mjs.map +1 -0
- package/dist/modules/plans/hooks/use-enriched-plans.hook.mjs +28 -0
- package/dist/modules/plans/hooks/use-enriched-plans.hook.mjs.map +1 -0
- package/dist/modules/plans/hooks/use-ui-plans.hook.mjs +20 -0
- package/dist/modules/plans/hooks/use-ui-plans.hook.mjs.map +1 -0
- package/dist/modules/projects/hooks/add-project-users.hook.mjs +25 -0
- package/dist/modules/projects/hooks/add-project-users.hook.mjs.map +1 -0
- package/dist/modules/projects/hooks/list-all-account-users.hook.mjs +3 -6
- package/dist/modules/projects/hooks/list-all-account-users.hook.mjs.map +1 -1
- package/dist/modules/projects/hooks/list-available-users.hook.mjs +3 -6
- package/dist/modules/projects/hooks/list-available-users.hook.mjs.map +1 -1
- package/dist/modules/projects/hooks/list-infinite-projects.hook.mjs +3 -6
- package/dist/modules/projects/hooks/list-infinite-projects.hook.mjs.map +1 -1
- package/dist/modules/projects/hooks/list-project-users.hook.mjs +3 -6
- package/dist/modules/projects/hooks/list-project-users.hook.mjs.map +1 -1
- package/dist/modules/projects/hooks/remove-project-users.hook.mjs +25 -0
- package/dist/modules/projects/hooks/remove-project-users.hook.mjs.map +1 -0
- package/dist/modules/projects/services/project-users.service.mjs +5 -0
- package/dist/modules/projects/services/project-users.service.mjs.map +1 -1
- package/dist/modules/projects/types.mjs +3 -2
- package/dist/modules/projects/types.mjs.map +1 -1
- package/dist/modules/subscriptions/actions/cancel-subscription.action.mjs +10 -0
- package/dist/modules/subscriptions/actions/cancel-subscription.action.mjs.map +1 -0
- package/dist/modules/subscriptions/actions/create-subscription.action.mjs +10 -0
- package/dist/modules/subscriptions/actions/create-subscription.action.mjs.map +1 -0
- package/dist/modules/subscriptions/actions/find-pending-pix-status.action.mjs +10 -0
- package/dist/modules/subscriptions/actions/find-pending-pix-status.action.mjs.map +1 -0
- package/dist/modules/subscriptions/actions/find-subscription-by-id.action.mjs +10 -0
- package/dist/modules/subscriptions/actions/find-subscription-by-id.action.mjs.map +1 -0
- package/dist/modules/subscriptions/constants/addons.constants.mjs +35 -0
- package/dist/modules/subscriptions/constants/addons.constants.mjs.map +1 -1
- package/dist/modules/subscriptions/constants/downgrade.constants.mjs +25 -0
- package/dist/modules/subscriptions/constants/downgrade.constants.mjs.map +1 -0
- package/dist/modules/subscriptions/constants/subscription.constants.mjs +2 -0
- package/dist/modules/subscriptions/constants/subscription.constants.mjs.map +1 -1
- package/dist/modules/subscriptions/handlers/pending-pix-status.handler.mjs +15 -0
- package/dist/modules/subscriptions/handlers/pending-pix-status.handler.mjs.map +1 -0
- package/dist/modules/subscriptions/hooks/cancel-subscription.hook.mjs +25 -0
- package/dist/modules/subscriptions/hooks/cancel-subscription.hook.mjs.map +1 -0
- package/dist/modules/subscriptions/hooks/create-subscription.hook.mjs +33 -0
- package/dist/modules/subscriptions/hooks/create-subscription.hook.mjs.map +1 -0
- package/dist/modules/subscriptions/hooks/find-subscription-by-id.hook.mjs +18 -0
- package/dist/modules/subscriptions/hooks/find-subscription-by-id.hook.mjs.map +1 -0
- package/dist/modules/subscriptions/hooks/pending-pix-status.hook.mjs +25 -0
- package/dist/modules/subscriptions/hooks/pending-pix-status.hook.mjs.map +1 -0
- package/dist/modules/subscriptions/services/subscriptions.service.mjs +71 -0
- package/dist/modules/subscriptions/services/subscriptions.service.mjs.map +1 -1
- package/dist/modules/subscriptions/types/cancel-subscription.type.mjs +9 -0
- package/dist/modules/subscriptions/types/cancel-subscription.type.mjs.map +1 -0
- package/dist/modules/subscriptions/types/create-subscription.type.mjs +62 -0
- package/dist/modules/subscriptions/types/create-subscription.type.mjs.map +1 -0
- package/dist/modules/subscriptions/types/pending-pix-status.type.mjs +28 -0
- package/dist/modules/subscriptions/types/pending-pix-status.type.mjs.map +1 -0
- package/dist/modules/subscriptions/types/subscription.type.mjs +9 -1
- package/dist/modules/subscriptions/types/subscription.type.mjs.map +1 -1
- package/dist/modules/subscriptions/utils/addon-buckets.mjs +69 -0
- package/dist/modules/subscriptions/utils/addon-buckets.mjs.map +1 -0
- package/dist/modules/subscriptions/utils/confirm-payment-if-required.mjs +8 -2
- package/dist/modules/subscriptions/utils/confirm-payment-if-required.mjs.map +1 -1
- package/dist/modules/subscriptions/utils/first-period-pricing.mjs +25 -0
- package/dist/modules/subscriptions/utils/first-period-pricing.mjs.map +1 -0
- package/dist/modules/subscriptions/utils/is-api-subscription.mjs +8 -0
- package/dist/modules/subscriptions/utils/is-api-subscription.mjs.map +1 -0
- package/dist/modules/subscriptions/utils/is-boleto-payer.mjs +17 -0
- package/dist/modules/subscriptions/utils/is-boleto-payer.mjs.map +1 -0
- package/dist/modules/subscriptions/utils/is-free-subscription.mjs +8 -0
- package/dist/modules/subscriptions/utils/is-free-subscription.mjs.map +1 -0
- package/dist/modules/subscriptions/utils/periodicity.mjs +55 -1
- package/dist/modules/subscriptions/utils/periodicity.mjs.map +1 -1
- package/dist/modules/subscriptions/utils/resolve-subscription-plan-name.mjs +27 -0
- package/dist/modules/subscriptions/utils/resolve-subscription-plan-name.mjs.map +1 -0
- package/dist/modules/users/hooks/messages.hook.mjs +3 -5
- package/dist/modules/users/hooks/messages.hook.mjs.map +1 -1
- package/dist/server.mjs +6 -0
- package/dist/server.mjs.map +1 -1
- package/dist/store/useAccountModals.mjs +9 -2
- package/dist/store/useAccountModals.mjs.map +1 -1
- package/dist/store/useAccountUnsavedChanges.mjs +31 -0
- package/dist/store/useAccountUnsavedChanges.mjs.map +1 -0
- package/dist/store/useAffiliateFlows.mjs +23 -0
- package/dist/store/useAffiliateFlows.mjs.map +1 -0
- package/dist/store/useProjectFlows.mjs +18 -0
- package/dist/store/useProjectFlows.mjs.map +1 -0
- package/dist/store/useSubscriptionFlows.mjs +58 -0
- package/dist/store/useSubscriptionFlows.mjs.map +1 -0
- package/dist/store/useTeamFlows.mjs +15 -0
- package/dist/store/useTeamFlows.mjs.map +1 -0
- package/dist/testing/factories/coupon.factory.mjs +19 -0
- package/dist/testing/factories/coupon.factory.mjs.map +1 -0
- package/dist/testing/factories/index.mjs +6 -0
- package/dist/testing/factories/index.mjs.map +1 -1
- package/dist/testing/factories/project-user.factory.mjs +17 -0
- package/dist/testing/factories/project-user.factory.mjs.map +1 -0
- package/dist/testing/factories/project.factory.mjs +21 -0
- package/dist/testing/factories/project.factory.mjs.map +1 -0
- package/dist/testing/react/providers.mjs +1 -1
- package/dist/testing/react/providers.mjs.map +1 -1
- package/dist/utils/browser/chart-custom-tooltip.mjs +69 -0
- package/dist/utils/browser/chart-custom-tooltip.mjs.map +1 -0
- package/dist/utils/browser/get-css-variable.mjs +9 -0
- package/dist/utils/browser/get-css-variable.mjs.map +1 -0
- package/dist/utils/constants/scrollbar.mjs +5 -0
- package/dist/utils/constants/scrollbar.mjs.map +1 -0
- package/dist/utils/date-filter-period.mjs +34 -0
- package/dist/utils/date-filter-period.mjs.map +1 -0
- package/dist/utils/file/index.mjs +11 -1
- package/dist/utils/file/index.mjs.map +1 -1
- package/dist/utils/format/initials.mjs +8 -0
- package/dist/utils/format/initials.mjs.map +1 -0
- package/dist/utils/format/masks.mjs +32 -1
- package/dist/utils/format/masks.mjs.map +1 -1
- package/dist/utils/qrcode/to-data-url.mjs +12 -0
- package/dist/utils/qrcode/to-data-url.mjs.map +1 -0
- package/dist/utils/validators/account.mjs +1 -7
- package/dist/utils/validators/account.mjs.map +1 -1
- package/package.json +15 -2
- package/src/components/account/AccountHubLinkHandler.tsx +39 -0
- package/src/components/account/AccountModalLayout.tsx +190 -0
- package/src/components/account/AccountModals.tsx +12 -2
- package/src/components/account/AccountUnsavedChangesDialog.tsx +49 -0
- package/src/components/account/DeleteAccountModal.tsx +1 -1
- package/src/components/account/IsntPossibleDeleteAccountModal.tsx +9 -1
- package/src/components/account/MyAccountModal.tsx +222 -0
- package/src/components/account/TwoFactorAuthModal.tsx +1 -1
- package/src/components/account/hooks/useAccountHubActions.ts +95 -0
- package/src/components/account/hooks/useAddCardWithPaymentSwitch.ts +70 -0
- package/src/components/account/hooks/useAffiliatesActions.tsx +78 -0
- package/src/components/account/hooks/useMyAccountModal.ts +40 -0
- package/src/components/account/hooks/useProjectsActions.ts +44 -0
- package/src/components/account/hooks/useSubscriptionActions.ts +99 -0
- package/src/components/account/hooks/useTeamActions.ts +35 -0
- package/src/components/account/sections/AffiliatesSection.tsx +342 -0
- package/src/components/account/sections/ChangePasswordSection.tsx +6 -10
- package/src/components/account/sections/MyProfileSection.tsx +215 -147
- package/src/components/account/sections/PreferencesSection.tsx +71 -71
- package/src/components/account/sections/ProjectsSection.tsx +110 -0
- package/src/components/account/sections/SecuritySection.tsx +72 -62
- package/src/components/account/sections/SubscriptionSection.tsx +36 -0
- package/src/components/account/sections/TeamSection.tsx +161 -0
- package/src/components/account/sections/TokenSection.tsx +4 -8
- package/src/components/account/sections/affiliates/AffiliateCommissionCard.tsx +83 -0
- package/src/components/account/sections/affiliates/AffiliateFlows.tsx +20 -0
- package/src/components/account/sections/affiliates/AffiliateLeadsSheet.tsx +143 -0
- package/src/components/account/sections/affiliates/AffiliateStatsCard.tsx +56 -0
- package/src/components/account/sections/affiliates/AffiliateStepCard.tsx +20 -0
- package/src/components/account/sections/affiliates/AffiliateTransactionsList.tsx +194 -0
- package/src/components/account/sections/affiliates/NoReceivingAccountModal.tsx +63 -0
- package/src/components/account/sections/affiliates/ReceivingAccountModal.tsx +213 -0
- package/src/components/account/sections/affiliates/RequestWithdrawalSheet.tsx +586 -0
- package/src/components/account/sections/affiliates/ViewAttachmentModal.tsx +47 -0
- package/src/components/account/sections/affiliates/reports/AffiliatesIndicatorsChart.tsx +45 -0
- package/src/components/account/sections/affiliates/reports/AffiliatesReportsTab.tsx +44 -0
- package/src/components/account/sections/affiliates/reports/useAffiliatesIndicatorsChart.ts +148 -0
- package/src/components/account/sections/projects/DeleteProjectModal.tsx +246 -0
- package/src/components/account/sections/projects/ProjectFlows.tsx +16 -0
- package/src/components/account/sections/projects/ProjectMembersStack.tsx +75 -0
- package/src/components/account/sections/projects/ProjectRow.tsx +96 -0
- package/src/components/account/sections/projects/ProjectSheet.tsx +603 -0
- package/src/components/account/sections/projects/ProjectsDisabledModal.tsx +69 -0
- package/src/components/account/sections/projects/project-form.schema.ts +30 -0
- package/src/components/account/sections/shared/ConnectListRow.tsx +68 -0
- package/src/components/account/sections/shared/DateFilterPopover.tsx +58 -0
- package/src/components/account/sections/shared/EntityAvatar.tsx +54 -0
- package/src/components/account/sections/shared/FilterPopover.tsx +79 -0
- package/src/components/account/sections/shared/FormSection.tsx +23 -0
- package/src/components/account/sections/shared/IconBox.tsx +21 -0
- package/src/components/account/sections/shared/InfiniteScrollList.tsx +57 -0
- package/src/components/account/sections/shared/ListPagination.tsx +84 -0
- package/src/components/account/sections/shared/RowActionsMenu.tsx +66 -0
- package/src/components/account/sections/shared/SectionLoadError.tsx +27 -0
- package/src/components/account/sections/shared/StatusBadge.tsx +33 -0
- package/src/components/account/sections/shared/WorkspaceSection.tsx +22 -0
- package/src/components/account/sections/subscription/AiCreditsUsage.tsx +152 -0
- package/src/components/account/sections/subscription/BillingAddressSheet.tsx +460 -0
- package/src/components/account/sections/subscription/BoletoDetailsDialog.tsx +104 -0
- package/src/components/account/sections/subscription/BoletoGeneratedDialog.tsx +24 -0
- package/src/components/account/sections/subscription/CancelPlanDialog.tsx +221 -0
- package/src/components/account/sections/subscription/ChargeRow.tsx +161 -0
- package/src/components/account/sections/subscription/ChargeStatusBadge.tsx +29 -0
- package/src/components/account/sections/subscription/ChargesList.tsx +125 -0
- package/src/components/account/sections/subscription/ManageCardsSheet.tsx +93 -0
- package/src/components/account/sections/subscription/OverdueReceiptOpener.tsx +29 -0
- package/src/components/account/sections/subscription/PayChargeDialog.tsx +306 -0
- package/src/components/account/sections/subscription/PaymentConfirmationDialog.tsx +70 -0
- package/src/components/account/sections/subscription/PaymentMethodsCard.tsx +117 -0
- package/src/components/account/sections/subscription/PendingChangeDialog.tsx +168 -0
- package/src/components/account/sections/subscription/PixDetailsDialog.tsx +246 -0
- package/src/components/account/sections/subscription/PixPaymentDialog.tsx +242 -0
- package/src/components/account/sections/subscription/PlanDetailsSheet.tsx +380 -0
- package/src/components/account/sections/subscription/ReceiptDetailsSheet.tsx +318 -0
- package/src/components/account/sections/subscription/SubscriptionFlows.tsx +40 -0
- package/src/components/account/sections/subscription/SubscriptionPlanCard.tsx +433 -0
- package/src/components/account/sections/subscription/UsageReportSheet.tsx +244 -0
- package/src/components/account/sections/subscription/change-plan/ChangePlanSheet.tsx +95 -0
- package/src/components/account/sections/subscription/change-plan/components/AbTestDetailsDialog.tsx +57 -0
- package/src/components/account/sections/subscription/change-plan/components/AddonsBlock.tsx +214 -0
- package/src/components/account/sections/subscription/change-plan/components/AlternativeBucketsSection.tsx +92 -0
- package/src/components/account/sections/subscription/change-plan/components/CouponBlock.tsx +42 -0
- package/src/components/account/sections/subscription/change-plan/components/CouponDialog.tsx +134 -0
- package/src/components/account/sections/subscription/change-plan/components/PricePreview.tsx +28 -0
- package/src/components/account/sections/subscription/change-plan/components/SummaryBlock.tsx +194 -0
- package/src/components/account/sections/subscription/change-plan/plan-comparison.ts +52 -0
- package/src/components/account/sections/subscription/change-plan/steps/PaymentSummaryStep.tsx +161 -0
- package/src/components/account/sections/subscription/change-plan/steps/PlanComparisonStep.tsx +165 -0
- package/src/components/account/sections/subscription/change-plan/steps/PlanViewStep.tsx +89 -0
- package/src/components/account/sections/subscription/change-plan/steps/ReactivationConfigStep.tsx +117 -0
- package/src/components/account/sections/subscription/change-plan/steps/ReactivationPaymentStep.tsx +139 -0
- package/src/components/account/sections/subscription/change-plan/useChangePlanState.tsx +1158 -0
- package/src/components/account/sections/subscription/downgrade/CannotDowngradeDialog.tsx +297 -0
- package/src/components/account/sections/subscription/downgrade/DowngradeReasonDialog.tsx +154 -0
- package/src/components/account/sections/subscription/plans/PlanCard.tsx +417 -0
- package/src/components/account/sections/subscription/plans/PlanCardSkeleton.tsx +70 -0
- package/src/components/account/sections/subscription/plans/PlansCatalogDialog.tsx +156 -0
- package/src/components/account/sections/team/DeleteUserModal.tsx +134 -0
- package/src/components/account/sections/team/TeamFlows.tsx +14 -0
- package/src/components/account/sections/team/TeamMemberRow.tsx +151 -0
- package/src/components/account/sections/team/UserSheet.tsx +688 -0
- package/src/components/account/sections/team/steps/NotificationsStep.tsx +109 -0
- package/src/components/account/sections/team/steps/ProjectSelectionStep.tsx +219 -0
- package/src/components/account/sections/team/steps/UserInformationStep.tsx +423 -0
- package/src/components/account/sections/team/user-form.schema.ts +43 -0
- package/src/components/account/types/workspace-actions.type.ts +56 -0
- package/src/components/layouts/ProfilePopover.tsx +11 -12
- package/src/components/layouts/UsersSelectorPopover.tsx +7 -4
- package/src/components/modals/AccountDeletionWarningModal.tsx +4 -5
- package/src/components/modals/AccountFrozenModal.tsx +6 -3
- package/src/components/modals/Modals.tsx +6 -3
- package/src/components/modals/PaidPlanRequiredModal.tsx +4 -5
- package/src/components/modals/cards/AddFirstCardWarningModal.tsx +72 -0
- package/src/components/modals/cards/SwitchPaymentToCardModal.tsx +232 -0
- package/src/components/modals/promo/AiCreditsOfferModal/AiCreditsOfferModal.tsx +5 -4
- package/src/components/ui/data-display/CardItem.tsx +9 -5
- package/src/components/ui/data-display/PaymentMethodIcons.tsx +43 -0
- package/src/components/ui/form/BillingPeriodSelector.tsx +173 -0
- package/src/components/ui/form/PaymentMethodToggle.tsx +119 -0
- package/src/components/ui/form/RadioOptionFieldIcon.tsx +64 -0
- package/src/components/ui/form/SegmentedControl.tsx +77 -0
- package/src/components/ui/overlay/Dialog.tsx +21 -2
- package/src/components/ui/overlay/Sheet.tsx +26 -5
- package/src/components/ui/overlay/layers.tsx +88 -4
- package/src/enums/AccountHubFlow.ts +8 -0
- package/src/enums/DateFilterPeriod.ts +17 -0
- package/src/enums/WorkspaceSectionType.ts +6 -0
- package/src/handlers.ts +14 -0
- package/src/hooks/useDebounce.ts +5 -3
- package/src/hooks/useUploadProgress.ts +42 -0
- package/src/i18n/messages/en-us.ts +909 -2
- package/src/i18n/messages/es-es.ts +913 -2
- package/src/i18n/messages/pt-br.ts +913 -2
- package/src/index.ts +56 -1
- package/src/infra/http/paged.ts +24 -0
- package/src/middleware.ts +1 -0
- package/src/middlewares/create-auth-middleware.ts +2 -5
- package/src/middlewares/create-legacy-account-routes-middleware.ts +54 -0
- package/src/middlewares/is-route-equals.ts +3 -0
- package/src/modules/accounts/actions/account-management.action.ts +22 -1
- package/src/modules/accounts/constants/account-hub-link.constants.ts +3 -0
- package/src/modules/accounts/constants/legacy-account-routes.constants.ts +1 -0
- package/src/modules/accounts/handlers/list-account-members.handler.ts +23 -0
- package/src/modules/accounts/hooks/add-user-projects.hook.ts +72 -0
- package/src/modules/accounts/hooks/create-account-user.hook.ts +21 -0
- package/src/modules/accounts/hooks/remove-user-projects.hook.ts +68 -0
- package/src/modules/accounts/hooks/use-account-members.hook.ts +31 -0
- package/src/modules/accounts/services/account.service.ts +71 -0
- package/src/modules/accounts/types/account-hub-link.type.ts +13 -0
- package/src/modules/accounts/types.ts +9 -0
- package/src/modules/accounts/utils/build-account-hub-url.ts +14 -0
- package/src/modules/accounts/utils/is-account-hub-flow.ts +7 -0
- package/src/modules/accounts/utils/is-account-section.ts +7 -0
- package/src/modules/accounts/utils/is-my-account-section.ts +12 -0
- package/src/modules/accounts/utils/map-legacy-account-route.ts +108 -0
- package/src/modules/accounts/utils/parse-account-hub-link.ts +21 -0
- package/src/modules/affiliates/actions/ensure-affiliate.action.ts +9 -0
- package/src/modules/affiliates/actions/request-deposit.action.ts +9 -0
- package/src/modules/affiliates/actions/update-affiliate.action.ts +9 -0
- package/src/modules/affiliates/constants/affiliate.constants.ts +11 -0
- package/src/modules/affiliates/constants/query-keys.constants.ts +7 -0
- package/src/modules/affiliates/handlers/affiliate-report-analytics.handler.ts +16 -0
- package/src/modules/affiliates/handlers/affiliate-withdrawal-limits.handler.ts +10 -0
- package/src/modules/affiliates/handlers/current-affiliate.handler.ts +10 -0
- package/src/modules/affiliates/handlers/list-affiliate-coupons.handler.ts +10 -0
- package/src/modules/affiliates/handlers/list-affiliate-leads.handler.ts +23 -0
- package/src/modules/affiliates/handlers/list-affiliate-transactions.handler.ts +23 -0
- package/src/modules/affiliates/hooks/use-affiliate-coupons.hook.ts +19 -0
- package/src/modules/affiliates/hooks/use-affiliate-leads.hook.ts +27 -0
- package/src/modules/affiliates/hooks/use-affiliate-report-analytics.hook.ts +19 -0
- package/src/modules/affiliates/hooks/use-affiliate-transactions.hook.ts +25 -0
- package/src/modules/affiliates/hooks/use-current-affiliate.hook.ts +19 -0
- package/src/modules/affiliates/hooks/use-ensure-affiliate.hook.ts +24 -0
- package/src/modules/affiliates/hooks/use-request-deposit.hook.ts +29 -0
- package/src/modules/affiliates/hooks/use-update-affiliate.hook.ts +24 -0
- package/src/modules/affiliates/hooks/use-withdrawal-limits.hook.ts +20 -0
- package/src/modules/affiliates/services/affiliates.service.ts +240 -0
- package/src/modules/affiliates/types/affiliate.type.ts +180 -0
- package/src/modules/affiliates/utils/get-affiliate-share-link.ts +8 -0
- package/src/modules/charges/actions/get-nota-fiscal.action.ts +8 -0
- package/src/modules/charges/actions/refresh-pix.action.ts +8 -0
- package/src/modules/charges/hooks/nota-fiscal.hook.ts +13 -0
- package/src/modules/charges/hooks/refresh-pix.hook.ts +13 -0
- package/src/modules/charges/services/charges.service.ts +121 -0
- package/src/modules/charges/types/nota-fiscal.type.ts +20 -0
- package/src/modules/charges/types/refresh-pix.type.ts +14 -0
- package/src/modules/charges/utils/get-charge-download-url.ts +10 -0
- package/src/modules/coupons/constants/query-keys.constants.ts +1 -0
- package/src/modules/coupons/handlers/find-coupon-by-code.handler.ts +16 -0
- package/src/modules/coupons/handlers/find-coupon-by-id.handler.ts +15 -0
- package/src/modules/coupons/hooks/use-coupon-by-code.hook.ts +16 -0
- package/src/modules/coupons/hooks/use-coupon-by-id.hook.ts +20 -0
- package/src/modules/coupons/services/coupons.service.ts +54 -0
- package/src/modules/coupons/types/coupon.type.ts +70 -0
- package/src/modules/coupons/utils/coupon-restrictions.ts +112 -0
- package/src/modules/domains/handlers/count-domains.handler.ts +10 -0
- package/src/modules/domains/hooks/count-domains.hook.ts +17 -0
- package/src/modules/domains/services/domains.service.ts +18 -0
- package/src/modules/ia-credits/handlers/list-ia-credit-operations.handler.ts +14 -0
- package/src/modules/ia-credits/hooks/ia-credit-operations.hook.ts +33 -0
- package/src/modules/ia-credits/services/ia-credits.service.ts +32 -1
- package/src/modules/pages/handlers/count-pages.handler.ts +5 -2
- package/src/modules/pages/hooks/count-published-pages.hook.ts +26 -0
- package/src/modules/pages/services/pages.service.ts +3 -2
- package/src/modules/plans/constants/plan-tooltips.constants.ts +16 -0
- package/src/modules/plans/hooks/use-enriched-plans.hook.ts +31 -0
- package/src/modules/plans/hooks/use-ui-plans.hook.ts +22 -0
- package/src/modules/projects/hooks/add-project-users.hook.ts +29 -0
- package/src/modules/projects/hooks/list-all-account-users.hook.ts +3 -6
- package/src/modules/projects/hooks/list-available-users.hook.ts +3 -6
- package/src/modules/projects/hooks/list-infinite-projects.hook.ts +3 -6
- package/src/modules/projects/hooks/list-project-users.hook.ts +3 -6
- package/src/modules/projects/hooks/remove-project-users.hook.ts +29 -0
- package/src/modules/projects/services/project-users.service.ts +135 -130
- package/src/modules/projects/types.ts +89 -88
- package/src/modules/subscriptions/actions/cancel-subscription.action.ts +12 -0
- package/src/modules/subscriptions/actions/create-subscription.action.ts +9 -0
- package/src/modules/subscriptions/actions/find-pending-pix-status.action.ts +8 -0
- package/src/modules/subscriptions/actions/find-subscription-by-id.action.ts +8 -0
- package/src/modules/subscriptions/constants/addons.constants.ts +50 -0
- package/src/modules/subscriptions/constants/downgrade.constants.ts +30 -0
- package/src/modules/subscriptions/constants/subscription.constants.ts +3 -0
- package/src/modules/subscriptions/handlers/pending-pix-status.handler.ts +17 -0
- package/src/modules/subscriptions/hooks/cancel-subscription.hook.ts +28 -0
- package/src/modules/subscriptions/hooks/create-subscription.hook.ts +34 -0
- package/src/modules/subscriptions/hooks/find-subscription-by-id.hook.ts +17 -0
- package/src/modules/subscriptions/hooks/pending-pix-status.hook.ts +30 -0
- package/src/modules/subscriptions/services/subscriptions.service.ts +401 -301
- package/src/modules/subscriptions/types/cancel-subscription.type.ts +8 -0
- package/src/modules/subscriptions/types/create-subscription.type.ts +79 -0
- package/src/modules/subscriptions/types/pending-pix-status.type.ts +33 -0
- package/src/modules/subscriptions/types/subscription.type.ts +157 -147
- package/src/modules/subscriptions/utils/addon-buckets.ts +129 -0
- package/src/modules/subscriptions/utils/confirm-payment-if-required.ts +9 -2
- package/src/modules/subscriptions/utils/first-period-pricing.ts +63 -0
- package/src/modules/subscriptions/utils/is-api-subscription.ts +6 -0
- package/src/modules/subscriptions/utils/is-boleto-payer.ts +21 -0
- package/src/modules/subscriptions/utils/is-free-subscription.ts +6 -0
- package/src/modules/subscriptions/utils/periodicity.ts +101 -0
- package/src/modules/subscriptions/utils/resolve-subscription-plan-name.ts +44 -0
- package/src/modules/users/hooks/messages.hook.ts +3 -5
- package/src/server.ts +102 -99
- package/src/store/useAccountModals.ts +22 -5
- package/src/store/useAccountUnsavedChanges.ts +52 -0
- package/src/store/useAffiliateFlows.ts +46 -0
- package/src/store/useProjectFlows.ts +42 -0
- package/src/store/useSubscriptionFlows.ts +176 -0
- package/src/store/useTeamFlows.ts +34 -0
- package/src/testing/factories/coupon.factory.ts +17 -0
- package/src/testing/factories/index.ts +3 -0
- package/src/testing/factories/project-user.factory.ts +15 -0
- package/src/testing/factories/project.factory.ts +19 -0
- package/src/testing/react/providers.tsx +2 -1
- package/src/utils/browser/chart-custom-tooltip.ts +85 -0
- package/src/utils/browser/get-css-variable.ts +6 -0
- package/src/utils/constants/scrollbar.ts +10 -0
- package/src/utils/date-filter-period.ts +34 -0
- package/src/utils/file/index.ts +13 -0
- package/src/utils/format/initials.ts +10 -0
- package/src/utils/format/masks.ts +41 -0
- package/src/utils/qrcode/to-data-url.ts +23 -0
- package/src/utils/validators/account.ts +0 -8
- package/dist/components/account/ConfigurationsMyAccountModal.mjs +0 -143
- package/dist/components/account/ConfigurationsMyAccountModal.mjs.map +0 -1
- package/dist/components/account/hooks/useConfigurationsModal.mjs +0 -34
- package/dist/components/account/hooks/useConfigurationsModal.mjs.map +0 -1
- package/src/components/account/ConfigurationsMyAccountModal.tsx +0 -179
- package/src/components/account/hooks/useConfigurationsModal.ts +0 -45
|
@@ -0,0 +1,371 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { useEffect, useRef } from "react";
|
|
4
|
+
import {
|
|
5
|
+
IconEye,
|
|
6
|
+
IconInfoCircle,
|
|
7
|
+
IconLock,
|
|
8
|
+
IconShieldCheck,
|
|
9
|
+
IconTool,
|
|
10
|
+
IconTrash,
|
|
11
|
+
IconUpload,
|
|
12
|
+
IconUserEdit
|
|
13
|
+
} from "@tabler/icons-react";
|
|
14
|
+
import { useTranslations } from "next-intl";
|
|
15
|
+
import { useFormContext, useWatch } from "react-hook-form";
|
|
16
|
+
import { useMutation, useQueryClient } from "@tanstack/react-query";
|
|
17
|
+
import { toast } from "sonner";
|
|
18
|
+
import { Button } from "../../../../ui/buttons/Button";
|
|
19
|
+
import { Separator } from "../../../../ui/data-display/Separator";
|
|
20
|
+
import { Toast } from "../../../../ui/feedback/Toast";
|
|
21
|
+
import { FormField } from "../../../../ui/form/FormField";
|
|
22
|
+
import PhoneInput from "../../../../ui/form/PhoneInput";
|
|
23
|
+
import { RadioGroup } from "../../../../ui/form/RadioGroup";
|
|
24
|
+
import { RadioOptionFieldIcon } from "../../../../ui/form/RadioOptionFieldIcon";
|
|
25
|
+
import { ACCEPTED_IMAGE_FORMATS_STRING } from "../../../../../modules/images/constants/image.constants";
|
|
26
|
+
import {
|
|
27
|
+
checkUserExistsAction,
|
|
28
|
+
updateAccountUserByIdAction
|
|
29
|
+
} from "../../../../../modules/accounts/actions/account-management.action";
|
|
30
|
+
import { ACCOUNT_USERS_QUERY_KEY } from "../../../../../modules/accounts/hooks/useAccountManagement";
|
|
31
|
+
import { UserProfile } from "../../../../../modules/users/schema";
|
|
32
|
+
import { useAuthQueryKey } from "../../../../../hooks/useAuthQueryKey";
|
|
33
|
+
import { useDebounce } from "../../../../../hooks/useDebounce";
|
|
34
|
+
import { useIsDefaultWhitelabel } from "../../../../../providers/whitelabel.provider";
|
|
35
|
+
import { withAction } from "../../../../../utils/withAction";
|
|
36
|
+
import { cn } from "../../../../../infra/utils/clsx";
|
|
37
|
+
const PROFILE_DESCRIPTION_KEYS = {
|
|
38
|
+
[UserProfile.owner]: "profileOwner",
|
|
39
|
+
[UserProfile.admin]: "profileAdmin",
|
|
40
|
+
[UserProfile.collaborator]: "profileCollaborator",
|
|
41
|
+
[UserProfile.viewer]: "profileViewer"
|
|
42
|
+
};
|
|
43
|
+
function toUserProfile(value) {
|
|
44
|
+
const profile = Object.values(UserProfile).find((candidate) => candidate === value);
|
|
45
|
+
return profile ?? UserProfile.collaborator;
|
|
46
|
+
}
|
|
47
|
+
const PROFILE_ICONS = {
|
|
48
|
+
[UserProfile.owner]: /* @__PURE__ */ jsx(IconShieldCheck, { size: 20 }),
|
|
49
|
+
[UserProfile.admin]: /* @__PURE__ */ jsx(IconShieldCheck, { size: 20 }),
|
|
50
|
+
[UserProfile.collaborator]: /* @__PURE__ */ jsx(IconUserEdit, { size: 20 }),
|
|
51
|
+
[UserProfile.viewer]: /* @__PURE__ */ jsx(IconEye, { size: 20 })
|
|
52
|
+
};
|
|
53
|
+
const EMAIL_REGEX = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
|
|
54
|
+
function UserInformationStep({
|
|
55
|
+
mode,
|
|
56
|
+
photoPreview,
|
|
57
|
+
onPhotoChange,
|
|
58
|
+
onRemovePhoto,
|
|
59
|
+
isOwnProfile = false,
|
|
60
|
+
canEditUser = false,
|
|
61
|
+
onOpenChangePhone,
|
|
62
|
+
onOpenChangeEmail,
|
|
63
|
+
onOpenTwoFactor,
|
|
64
|
+
onOpenChangePassword,
|
|
65
|
+
canChangeProfile = true,
|
|
66
|
+
targetUser,
|
|
67
|
+
twoFactorEnabled = false,
|
|
68
|
+
onTwoFactorChange,
|
|
69
|
+
onProfileChange,
|
|
70
|
+
onEmailExistsError,
|
|
71
|
+
onEmailChecking,
|
|
72
|
+
emailExistsError,
|
|
73
|
+
isCheckingEmail = false
|
|
74
|
+
}) {
|
|
75
|
+
const translateStep = useTranslations("common.account.workspace.team.informationStep");
|
|
76
|
+
const translateProfile = useTranslations("common.account.workspace.team.profiles");
|
|
77
|
+
const isDefaultWhitelabel = useIsDefaultWhitelabel();
|
|
78
|
+
const fileInputRef = useRef(null);
|
|
79
|
+
const form = useFormContext();
|
|
80
|
+
const { register, watch, setValue, formState } = form;
|
|
81
|
+
const role = useWatch({ control: form.control, name: "profile" });
|
|
82
|
+
const phoneValue = useWatch({ control: form.control, name: "phone" });
|
|
83
|
+
const emailValue = useWatch({ control: form.control, name: "email" });
|
|
84
|
+
const isEditMode = mode === "edit";
|
|
85
|
+
const queryClient = useQueryClient();
|
|
86
|
+
const accountUsersKey = useAuthQueryKey([...ACCOUNT_USERS_QUERY_KEY]);
|
|
87
|
+
const toggleTwoFactorMutation = useMutation({
|
|
88
|
+
mutationFn: (enabled) => withAction(updateAccountUserByIdAction)(targetUser.id, { two_factor_authentication: enabled }),
|
|
89
|
+
onMutate: (enabled) => {
|
|
90
|
+
const previous = twoFactorEnabled;
|
|
91
|
+
onTwoFactorChange?.(enabled);
|
|
92
|
+
return { previous };
|
|
93
|
+
},
|
|
94
|
+
onSuccess: (_data, enabled) => {
|
|
95
|
+
queryClient.invalidateQueries({ queryKey: accountUsersKey });
|
|
96
|
+
toast.custom((toastId) => /* @__PURE__ */ jsx(
|
|
97
|
+
Toast,
|
|
98
|
+
{
|
|
99
|
+
variant: "success",
|
|
100
|
+
message: enabled ? translateStep("twoFactorEnabled") : translateStep("twoFactorDisabled"),
|
|
101
|
+
toastId
|
|
102
|
+
}
|
|
103
|
+
));
|
|
104
|
+
},
|
|
105
|
+
onError: (error, _enabled, context) => {
|
|
106
|
+
if (context) onTwoFactorChange?.(context.previous);
|
|
107
|
+
toast.custom((toastId) => /* @__PURE__ */ jsx(
|
|
108
|
+
Toast,
|
|
109
|
+
{
|
|
110
|
+
variant: "error",
|
|
111
|
+
message: error instanceof Error ? error.message : translateStep("twoFactorError"),
|
|
112
|
+
toastId
|
|
113
|
+
}
|
|
114
|
+
));
|
|
115
|
+
}
|
|
116
|
+
});
|
|
117
|
+
const debouncedEmail = useDebounce(emailValue || "", 500);
|
|
118
|
+
useEffect(() => {
|
|
119
|
+
if (isEditMode || !debouncedEmail || !EMAIL_REGEX.test(debouncedEmail)) {
|
|
120
|
+
onEmailExistsError?.(null);
|
|
121
|
+
onEmailChecking?.(false);
|
|
122
|
+
return;
|
|
123
|
+
}
|
|
124
|
+
let cancelled = false;
|
|
125
|
+
onEmailChecking?.(true);
|
|
126
|
+
withAction(checkUserExistsAction)(debouncedEmail).then((result) => {
|
|
127
|
+
if (cancelled) return;
|
|
128
|
+
onEmailExistsError?.(result.exists ? translateStep("emailAlreadyRegistered") : null);
|
|
129
|
+
}).catch(() => {
|
|
130
|
+
if (!cancelled) onEmailExistsError?.(null);
|
|
131
|
+
}).finally(() => {
|
|
132
|
+
if (!cancelled) onEmailChecking?.(false);
|
|
133
|
+
});
|
|
134
|
+
return () => {
|
|
135
|
+
cancelled = true;
|
|
136
|
+
};
|
|
137
|
+
}, [debouncedEmail, isEditMode, onEmailExistsError, onEmailChecking]);
|
|
138
|
+
const readOnly = isEditMode && !isOwnProfile && !canEditUser;
|
|
139
|
+
const visibleProfiles = Object.values(UserProfile).filter(
|
|
140
|
+
(profile) => role === UserProfile.owner ? profile === UserProfile.owner : profile !== UserProfile.owner
|
|
141
|
+
);
|
|
142
|
+
return /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-6 px-5 py-6 flex-1", children: [
|
|
143
|
+
/* @__PURE__ */ jsx("span", { className: "text-zinc-950 paragraph-medium-semibold", children: translateStep("sectionTitle") }),
|
|
144
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
|
|
145
|
+
/* @__PURE__ */ jsx(
|
|
146
|
+
"input",
|
|
147
|
+
{
|
|
148
|
+
ref: fileInputRef,
|
|
149
|
+
type: "file",
|
|
150
|
+
accept: ACCEPTED_IMAGE_FORMATS_STRING,
|
|
151
|
+
className: "hidden",
|
|
152
|
+
onChange: onPhotoChange,
|
|
153
|
+
disabled: readOnly
|
|
154
|
+
}
|
|
155
|
+
),
|
|
156
|
+
photoPreview ? (
|
|
157
|
+
// eslint-disable-next-line @next/next/no-img-element
|
|
158
|
+
/* @__PURE__ */ jsx(
|
|
159
|
+
"img",
|
|
160
|
+
{
|
|
161
|
+
src: photoPreview,
|
|
162
|
+
alt: translateStep("photoAlt"),
|
|
163
|
+
className: cn(
|
|
164
|
+
"size-12 rounded-full object-cover shrink-0",
|
|
165
|
+
readOnly ? "cursor-default" : "cursor-pointer"
|
|
166
|
+
),
|
|
167
|
+
onClick: readOnly ? void 0 : () => fileInputRef.current?.click()
|
|
168
|
+
}
|
|
169
|
+
)
|
|
170
|
+
) : /* @__PURE__ */ jsx(
|
|
171
|
+
"div",
|
|
172
|
+
{
|
|
173
|
+
className: cn(
|
|
174
|
+
"size-12 shrink-0 rounded-full bg-zinc-50 border border-dashed border-zinc-200 flex items-center justify-center",
|
|
175
|
+
readOnly ? "cursor-default" : "cursor-pointer"
|
|
176
|
+
),
|
|
177
|
+
onClick: readOnly ? void 0 : () => fileInputRef.current?.click(),
|
|
178
|
+
children: /* @__PURE__ */ jsx(IconUpload, { size: 20, className: "text-zinc-400" })
|
|
179
|
+
}
|
|
180
|
+
),
|
|
181
|
+
photoPreview ? /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
182
|
+
/* @__PURE__ */ jsx(
|
|
183
|
+
Button,
|
|
184
|
+
{
|
|
185
|
+
type: "button",
|
|
186
|
+
variant: "secondary",
|
|
187
|
+
className: "h-8!",
|
|
188
|
+
onClick: () => fileInputRef.current?.click(),
|
|
189
|
+
disabled: readOnly,
|
|
190
|
+
children: translateStep("changePhoto")
|
|
191
|
+
}
|
|
192
|
+
),
|
|
193
|
+
/* @__PURE__ */ jsx(Button, { type: "button", variant: "ghost", className: "h-8!", onClick: onRemovePhoto, disabled: readOnly, children: /* @__PURE__ */ jsx(IconTrash, { size: 16, className: "text-zinc-500" }) })
|
|
194
|
+
] }) : /* @__PURE__ */ jsx(
|
|
195
|
+
Button,
|
|
196
|
+
{
|
|
197
|
+
type: "button",
|
|
198
|
+
variant: "secondary",
|
|
199
|
+
className: "h-8!",
|
|
200
|
+
onClick: () => fileInputRef.current?.click(),
|
|
201
|
+
disabled: readOnly,
|
|
202
|
+
children: translateStep("addPhoto")
|
|
203
|
+
}
|
|
204
|
+
)
|
|
205
|
+
] }),
|
|
206
|
+
/* @__PURE__ */ jsx(
|
|
207
|
+
FormField,
|
|
208
|
+
{
|
|
209
|
+
label: translateStep("firstName"),
|
|
210
|
+
required: true,
|
|
211
|
+
placeholder: translateStep("namePlaceholder"),
|
|
212
|
+
disabled: readOnly,
|
|
213
|
+
error: !!formState.errors.name,
|
|
214
|
+
errorMessage: formState.errors.name?.message,
|
|
215
|
+
...register("name")
|
|
216
|
+
}
|
|
217
|
+
),
|
|
218
|
+
/* @__PURE__ */ jsx(
|
|
219
|
+
FormField,
|
|
220
|
+
{
|
|
221
|
+
label: translateStep("lastName"),
|
|
222
|
+
placeholder: translateStep("namePlaceholder"),
|
|
223
|
+
disabled: readOnly,
|
|
224
|
+
...register("lastName")
|
|
225
|
+
}
|
|
226
|
+
),
|
|
227
|
+
isEditMode && isOwnProfile ? /* @__PURE__ */ jsxs("div", { className: "relative", children: [
|
|
228
|
+
/* @__PURE__ */ jsx(
|
|
229
|
+
PhoneInput,
|
|
230
|
+
{
|
|
231
|
+
label: translateStep("phone"),
|
|
232
|
+
value: phoneValue || "",
|
|
233
|
+
onChange: (value) => setValue("phone", value, { shouldValidate: true, shouldDirty: true }),
|
|
234
|
+
disabled: true,
|
|
235
|
+
classnameContainer: "bg-gray-50 border-0! opacity-100! pointer-events-none cursor-not-allowed"
|
|
236
|
+
}
|
|
237
|
+
),
|
|
238
|
+
/* @__PURE__ */ jsx(
|
|
239
|
+
"button",
|
|
240
|
+
{
|
|
241
|
+
type: "button",
|
|
242
|
+
className: "absolute right-0 top-0 paragraph-xsmall-semibold text-zinc-950 underline cursor-pointer",
|
|
243
|
+
onClick: onOpenChangePhone,
|
|
244
|
+
children: translateStep("change")
|
|
245
|
+
}
|
|
246
|
+
)
|
|
247
|
+
] }) : /* @__PURE__ */ jsx(
|
|
248
|
+
PhoneInput,
|
|
249
|
+
{
|
|
250
|
+
label: translateStep("phone"),
|
|
251
|
+
placeholder: translateStep("phonePlaceholder"),
|
|
252
|
+
value: phoneValue || "",
|
|
253
|
+
onChange: (value) => setValue("phone", value, { shouldValidate: true, shouldDirty: true }),
|
|
254
|
+
disabled: readOnly,
|
|
255
|
+
error: !!formState.errors.phone,
|
|
256
|
+
errorMessage: formState.errors.phone?.message
|
|
257
|
+
}
|
|
258
|
+
),
|
|
259
|
+
isEditMode && isOwnProfile ? /* @__PURE__ */ jsxs("div", { className: "relative", children: [
|
|
260
|
+
/* @__PURE__ */ jsx(
|
|
261
|
+
FormField,
|
|
262
|
+
{
|
|
263
|
+
label: translateStep("email"),
|
|
264
|
+
value: watch("email"),
|
|
265
|
+
disabled: true,
|
|
266
|
+
classnameContainer: "bg-gray-50 border-0! opacity-100! pointer-events-none cursor-not-allowed"
|
|
267
|
+
}
|
|
268
|
+
),
|
|
269
|
+
/* @__PURE__ */ jsx(
|
|
270
|
+
"button",
|
|
271
|
+
{
|
|
272
|
+
type: "button",
|
|
273
|
+
className: "absolute right-0 top-0 paragraph-xsmall-semibold text-zinc-950 underline cursor-pointer",
|
|
274
|
+
onClick: onOpenChangeEmail,
|
|
275
|
+
children: translateStep("change")
|
|
276
|
+
}
|
|
277
|
+
)
|
|
278
|
+
] }) : /* @__PURE__ */ jsx(
|
|
279
|
+
FormField,
|
|
280
|
+
{
|
|
281
|
+
label: translateStep("email"),
|
|
282
|
+
required: !readOnly,
|
|
283
|
+
type: "email",
|
|
284
|
+
placeholder: translateStep("emailPlaceholder"),
|
|
285
|
+
disabled: readOnly,
|
|
286
|
+
error: !!formState.errors.email || !!emailExistsError,
|
|
287
|
+
errorMessage: formState.errors.email?.message || emailExistsError || void 0,
|
|
288
|
+
hintMessage: isCheckingEmail ? translateStep("checkingEmail") : void 0,
|
|
289
|
+
...register("email")
|
|
290
|
+
}
|
|
291
|
+
),
|
|
292
|
+
!isEditMode && /* @__PURE__ */ jsxs(
|
|
293
|
+
"div",
|
|
294
|
+
{
|
|
295
|
+
className: cn(
|
|
296
|
+
"flex items-center gap-3 p-4 rounded-lg",
|
|
297
|
+
isDefaultWhitelabel ? "bg-cyan-50" : "bg-zinc-50"
|
|
298
|
+
),
|
|
299
|
+
children: [
|
|
300
|
+
/* @__PURE__ */ jsx(IconInfoCircle, { size: 16, className: "text-zinc-950 shrink-0 mt-0.5" }),
|
|
301
|
+
/* @__PURE__ */ jsx("p", { className: "paragraph-small-regular text-zinc-950", children: translateStep("inviteInfo") })
|
|
302
|
+
]
|
|
303
|
+
}
|
|
304
|
+
),
|
|
305
|
+
/* @__PURE__ */ jsx(Separator, {}),
|
|
306
|
+
isEditMode && (isOwnProfile || canEditUser) && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
307
|
+
/* @__PURE__ */ jsx("span", { className: "text-zinc-950 paragraph-medium-semibold", children: translateStep("securityTitle") }),
|
|
308
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-3", children: [
|
|
309
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-4 p-4 border border-zinc-200 rounded-lg", children: [
|
|
310
|
+
/* @__PURE__ */ jsx("div", { className: "size-10 rounded-lg bg-zinc-50 flex items-center justify-center shrink-0", children: /* @__PURE__ */ jsx(IconTool, { size: 20, className: "text-zinc-600" }) }),
|
|
311
|
+
/* @__PURE__ */ jsx("span", { className: "flex-1 paragraph-small-semibold text-zinc-950", children: translateStep("twoFactor") }),
|
|
312
|
+
isOwnProfile ? /* @__PURE__ */ jsx(Button, { type: "button", variant: "secondary", className: "h-10! shrink-0", onClick: onOpenTwoFactor, children: twoFactorEnabled ? translateStep("disable") : translateStep("enable") }) : /* @__PURE__ */ jsx(
|
|
313
|
+
Button,
|
|
314
|
+
{
|
|
315
|
+
type: "button",
|
|
316
|
+
variant: "secondary",
|
|
317
|
+
className: "h-10! shrink-0",
|
|
318
|
+
loading: toggleTwoFactorMutation.isPending,
|
|
319
|
+
onClick: () => toggleTwoFactorMutation.mutate(!twoFactorEnabled),
|
|
320
|
+
children: toggleTwoFactorMutation.isPending ? translateStep("twoFactorSaving") : twoFactorEnabled ? translateStep("disable") : translateStep("enable")
|
|
321
|
+
}
|
|
322
|
+
)
|
|
323
|
+
] }),
|
|
324
|
+
isOwnProfile && /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-4 p-4 border border-zinc-200 rounded-lg", children: [
|
|
325
|
+
/* @__PURE__ */ jsx("div", { className: "size-10 rounded-lg bg-zinc-50 flex items-center justify-center shrink-0", children: /* @__PURE__ */ jsx(IconLock, { size: 20, className: "text-zinc-600" }) }),
|
|
326
|
+
/* @__PURE__ */ jsx("span", { className: "flex-1 paragraph-small-semibold text-zinc-950", children: translateStep("changePassword") }),
|
|
327
|
+
/* @__PURE__ */ jsx(
|
|
328
|
+
Button,
|
|
329
|
+
{
|
|
330
|
+
type: "button",
|
|
331
|
+
variant: "secondary",
|
|
332
|
+
className: "h-10! shrink-0",
|
|
333
|
+
onClick: onOpenChangePassword,
|
|
334
|
+
children: translateStep("changePasswordButton")
|
|
335
|
+
}
|
|
336
|
+
)
|
|
337
|
+
] })
|
|
338
|
+
] }),
|
|
339
|
+
/* @__PURE__ */ jsx(Separator, {})
|
|
340
|
+
] }),
|
|
341
|
+
/* @__PURE__ */ jsx("span", { className: "text-zinc-950 paragraph-medium-semibold", children: translateStep("roleTitle") }),
|
|
342
|
+
/* @__PURE__ */ jsx(
|
|
343
|
+
RadioGroup,
|
|
344
|
+
{
|
|
345
|
+
value: role,
|
|
346
|
+
onValueChange: (value) => {
|
|
347
|
+
const profile = toUserProfile(value);
|
|
348
|
+
setValue("profile", profile, { shouldDirty: true });
|
|
349
|
+
onProfileChange?.(profile);
|
|
350
|
+
},
|
|
351
|
+
disabled: readOnly || !canChangeProfile,
|
|
352
|
+
children: /* @__PURE__ */ jsx("div", { className: "flex flex-col gap-3", children: visibleProfiles.map((profile) => /* @__PURE__ */ jsx(
|
|
353
|
+
RadioOptionFieldIcon,
|
|
354
|
+
{
|
|
355
|
+
value: profile,
|
|
356
|
+
label: translateProfile(profile),
|
|
357
|
+
description: translateStep(PROFILE_DESCRIPTION_KEYS[profile]),
|
|
358
|
+
isSelected: role === profile,
|
|
359
|
+
disabled: role === UserProfile.owner,
|
|
360
|
+
icon: PROFILE_ICONS[profile]
|
|
361
|
+
},
|
|
362
|
+
profile
|
|
363
|
+
)) })
|
|
364
|
+
}
|
|
365
|
+
)
|
|
366
|
+
] });
|
|
367
|
+
}
|
|
368
|
+
export {
|
|
369
|
+
UserInformationStep
|
|
370
|
+
};
|
|
371
|
+
//# sourceMappingURL=UserInformationStep.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../src/components/account/sections/team/steps/UserInformationStep.tsx"],"sourcesContent":["'use client';\n\nimport { useEffect, useRef, type ChangeEvent, type ReactNode } from 'react';\nimport {\n IconEye,\n IconInfoCircle,\n IconLock,\n IconShieldCheck,\n IconTool,\n IconTrash,\n IconUpload,\n IconUserEdit,\n} from '@tabler/icons-react';\nimport { useTranslations } from 'next-intl';\nimport { useFormContext, useWatch } from 'react-hook-form';\nimport { useMutation, useQueryClient } from '@tanstack/react-query';\nimport { toast } from 'sonner';\nimport { Button } from '../../../../ui/buttons/Button';\nimport { Separator } from '../../../../ui/data-display/Separator';\nimport { Toast } from '../../../../ui/feedback/Toast';\nimport { FormField } from '../../../../ui/form/FormField';\nimport PhoneInput from '../../../../ui/form/PhoneInput';\nimport { RadioGroup } from '../../../../ui/form/RadioGroup';\nimport { RadioOptionFieldIcon } from '../../../../ui/form/RadioOptionFieldIcon';\nimport { ACCEPTED_IMAGE_FORMATS_STRING } from '../../../../../modules/images/constants/image.constants';\nimport {\n checkUserExistsAction,\n updateAccountUserByIdAction,\n} from '../../../../../modules/accounts/actions/account-management.action';\nimport { ACCOUNT_USERS_QUERY_KEY } from '../../../../../modules/accounts/hooks/useAccountManagement';\nimport { UserProfile, type User } from '../../../../../modules/users/schema';\nimport { useAuthQueryKey } from '../../../../../hooks/useAuthQueryKey';\nimport { useDebounce } from '../../../../../hooks/useDebounce';\nimport { useIsDefaultWhitelabel } from '../../../../../providers/whitelabel.provider';\nimport { withAction } from '../../../../../utils/withAction';\nimport { cn } from '../../../../../infra/utils/clsx';\nimport type { UserFormData } from '../user-form.schema';\n\nconst PROFILE_DESCRIPTION_KEYS = {\n [UserProfile.owner]: 'profileOwner',\n [UserProfile.admin]: 'profileAdmin',\n [UserProfile.collaborator]: 'profileCollaborator',\n [UserProfile.viewer]: 'profileViewer',\n} as const satisfies Record<UserProfile, string>;\n\nfunction toUserProfile(value: string): UserProfile {\n const profile = Object.values(UserProfile).find((candidate) => candidate === value);\n return profile ?? UserProfile.collaborator;\n}\n\nconst PROFILE_ICONS: Record<UserProfile, ReactNode> = {\n [UserProfile.owner]: <IconShieldCheck size={20} />,\n [UserProfile.admin]: <IconShieldCheck size={20} />,\n [UserProfile.collaborator]: <IconUserEdit size={20} />,\n [UserProfile.viewer]: <IconEye size={20} />,\n};\n\nconst EMAIL_REGEX = /^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$/;\n\ntype UserInformationStepProps = {\n mode: 'add' | 'edit';\n photoPreview?: string | null;\n onPhotoChange?: (event: ChangeEvent<HTMLInputElement>) => void;\n onRemovePhoto?: () => void;\n isOwnProfile?: boolean;\n canEditUser?: boolean;\n onOpenChangePhone?: () => void;\n onOpenChangeEmail?: () => void;\n onOpenTwoFactor?: () => void;\n onOpenChangePassword?: () => void;\n canChangeProfile?: boolean;\n targetUser?: User;\n twoFactorEnabled?: boolean;\n onTwoFactorChange?: (enabled: boolean) => void;\n onProfileChange?: (profile: UserProfile) => void;\n onEmailExistsError?: (error: string | null) => void;\n onEmailChecking?: (checking: boolean) => void;\n emailExistsError?: string | null;\n isCheckingEmail?: boolean;\n};\n\n/** Passo de informações do sheet de usuário: foto, dados pessoais, segurança e função. */\nexport function UserInformationStep({\n mode,\n photoPreview,\n onPhotoChange,\n onRemovePhoto,\n isOwnProfile = false,\n canEditUser = false,\n onOpenChangePhone,\n onOpenChangeEmail,\n onOpenTwoFactor,\n onOpenChangePassword,\n canChangeProfile = true,\n targetUser,\n twoFactorEnabled = false,\n onTwoFactorChange,\n onProfileChange,\n onEmailExistsError,\n onEmailChecking,\n emailExistsError,\n isCheckingEmail = false,\n}: UserInformationStepProps) {\n const translateStep = useTranslations('common.account.workspace.team.informationStep');\n const translateProfile = useTranslations('common.account.workspace.team.profiles');\n const isDefaultWhitelabel = useIsDefaultWhitelabel();\n const fileInputRef = useRef<HTMLInputElement>(null);\n const form = useFormContext<UserFormData>();\n const { register, watch, setValue, formState } = form;\n\n const role = useWatch({ control: form.control, name: 'profile' });\n const phoneValue = useWatch({ control: form.control, name: 'phone' });\n const emailValue = useWatch({ control: form.control, name: 'email' });\n const isEditMode = mode === 'edit';\n\n const queryClient = useQueryClient();\n const accountUsersKey = useAuthQueryKey([...ACCOUNT_USERS_QUERY_KEY]);\n\n const toggleTwoFactorMutation = useMutation({\n mutationFn: (enabled: boolean) =>\n withAction(updateAccountUserByIdAction)(targetUser!.id, { two_factor_authentication: enabled }),\n onMutate: (enabled) => {\n const previous = twoFactorEnabled;\n onTwoFactorChange?.(enabled);\n return { previous };\n },\n onSuccess: (_data, enabled) => {\n queryClient.invalidateQueries({ queryKey: accountUsersKey });\n toast.custom((toastId) => (\n <Toast\n variant=\"success\"\n message={enabled ? translateStep('twoFactorEnabled') : translateStep('twoFactorDisabled')}\n toastId={toastId}\n />\n ));\n },\n onError: (error, _enabled, context) => {\n if (context) onTwoFactorChange?.(context.previous);\n toast.custom((toastId) => (\n <Toast\n variant=\"error\"\n message={error instanceof Error ? error.message : translateStep('twoFactorError')}\n toastId={toastId}\n />\n ));\n },\n });\n\n const debouncedEmail = useDebounce(emailValue || '', 500);\n\n // No cadastro, avisa antes de avançar quando o e-mail já pertence a outra conta.\n useEffect(() => {\n if (isEditMode || !debouncedEmail || !EMAIL_REGEX.test(debouncedEmail)) {\n onEmailExistsError?.(null);\n onEmailChecking?.(false);\n return;\n }\n\n let cancelled = false;\n onEmailChecking?.(true);\n\n withAction(checkUserExistsAction)(debouncedEmail)\n .then((result) => {\n if (cancelled) return;\n onEmailExistsError?.(result.exists ? translateStep('emailAlreadyRegistered') : null);\n })\n .catch(() => {\n if (!cancelled) onEmailExistsError?.(null);\n })\n .finally(() => {\n if (!cancelled) onEmailChecking?.(false);\n });\n\n return () => {\n cancelled = true;\n };\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [debouncedEmail, isEditMode, onEmailExistsError, onEmailChecking]);\n\n const readOnly = isEditMode && !isOwnProfile && !canEditUser;\n\n const visibleProfiles = Object.values(UserProfile).filter((profile) =>\n role === UserProfile.owner ? profile === UserProfile.owner : profile !== UserProfile.owner\n );\n\n return (\n <div className=\"flex flex-col gap-6 px-5 py-6 flex-1\">\n <span className=\"text-zinc-950 paragraph-medium-semibold\">{translateStep('sectionTitle')}</span>\n\n <div className=\"flex items-center gap-3\">\n <input\n ref={fileInputRef}\n type=\"file\"\n accept={ACCEPTED_IMAGE_FORMATS_STRING}\n className=\"hidden\"\n onChange={onPhotoChange}\n disabled={readOnly}\n />\n {photoPreview ? (\n // eslint-disable-next-line @next/next/no-img-element\n <img\n src={photoPreview}\n alt={translateStep('photoAlt')}\n className={cn(\n 'size-12 rounded-full object-cover shrink-0',\n readOnly ? 'cursor-default' : 'cursor-pointer'\n )}\n onClick={readOnly ? undefined : () => fileInputRef.current?.click()}\n />\n ) : (\n <div\n className={cn(\n 'size-12 shrink-0 rounded-full bg-zinc-50 border border-dashed border-zinc-200 flex items-center justify-center',\n readOnly ? 'cursor-default' : 'cursor-pointer'\n )}\n onClick={readOnly ? undefined : () => fileInputRef.current?.click()}\n >\n <IconUpload size={20} className=\"text-zinc-400\" />\n </div>\n )}\n {photoPreview ? (\n <div className=\"flex items-center gap-2\">\n <Button\n type=\"button\"\n variant=\"secondary\"\n className=\"h-8!\"\n onClick={() => fileInputRef.current?.click()}\n disabled={readOnly}\n >\n {translateStep('changePhoto')}\n </Button>\n <Button type=\"button\" variant=\"ghost\" className=\"h-8!\" onClick={onRemovePhoto} disabled={readOnly}>\n <IconTrash size={16} className=\"text-zinc-500\" />\n </Button>\n </div>\n ) : (\n <Button\n type=\"button\"\n variant=\"secondary\"\n className=\"h-8!\"\n onClick={() => fileInputRef.current?.click()}\n disabled={readOnly}\n >\n {translateStep('addPhoto')}\n </Button>\n )}\n </div>\n\n <FormField\n label={translateStep('firstName')}\n required\n placeholder={translateStep('namePlaceholder')}\n disabled={readOnly}\n error={!!formState.errors.name}\n errorMessage={formState.errors.name?.message}\n {...register('name')}\n />\n\n <FormField\n label={translateStep('lastName')}\n placeholder={translateStep('namePlaceholder')}\n disabled={readOnly}\n {...register('lastName')}\n />\n\n {isEditMode && isOwnProfile ? (\n <div className=\"relative\">\n <PhoneInput\n label={translateStep('phone')}\n value={phoneValue || ''}\n onChange={(value) => setValue('phone', value, { shouldValidate: true, shouldDirty: true })}\n disabled\n classnameContainer=\"bg-gray-50 border-0! opacity-100! pointer-events-none cursor-not-allowed\"\n />\n <button\n type=\"button\"\n className=\"absolute right-0 top-0 paragraph-xsmall-semibold text-zinc-950 underline cursor-pointer\"\n onClick={onOpenChangePhone}\n >\n {translateStep('change')}\n </button>\n </div>\n ) : (\n <PhoneInput\n label={translateStep('phone')}\n placeholder={translateStep('phonePlaceholder')}\n value={phoneValue || ''}\n onChange={(value) => setValue('phone', value, { shouldValidate: true, shouldDirty: true })}\n disabled={readOnly}\n error={!!formState.errors.phone}\n errorMessage={formState.errors.phone?.message}\n />\n )}\n\n {isEditMode && isOwnProfile ? (\n <div className=\"relative\">\n <FormField\n label={translateStep('email')}\n value={watch('email')}\n disabled\n classnameContainer=\"bg-gray-50 border-0! opacity-100! pointer-events-none cursor-not-allowed\"\n />\n <button\n type=\"button\"\n className=\"absolute right-0 top-0 paragraph-xsmall-semibold text-zinc-950 underline cursor-pointer\"\n onClick={onOpenChangeEmail}\n >\n {translateStep('change')}\n </button>\n </div>\n ) : (\n <FormField\n label={translateStep('email')}\n required={!readOnly}\n type=\"email\"\n placeholder={translateStep('emailPlaceholder')}\n disabled={readOnly}\n error={!!formState.errors.email || !!emailExistsError}\n errorMessage={formState.errors.email?.message || emailExistsError || undefined}\n hintMessage={isCheckingEmail ? translateStep('checkingEmail') : undefined}\n {...register('email')}\n />\n )}\n\n {!isEditMode && (\n <div\n className={cn(\n 'flex items-center gap-3 p-4 rounded-lg',\n isDefaultWhitelabel ? 'bg-cyan-50' : 'bg-zinc-50'\n )}\n >\n <IconInfoCircle size={16} className=\"text-zinc-950 shrink-0 mt-0.5\" />\n <p className=\"paragraph-small-regular text-zinc-950\">{translateStep('inviteInfo')}</p>\n </div>\n )}\n\n <Separator />\n\n {isEditMode && (isOwnProfile || canEditUser) && (\n <>\n <span className=\"text-zinc-950 paragraph-medium-semibold\">{translateStep('securityTitle')}</span>\n\n <div className=\"flex flex-col gap-3\">\n <div className=\"flex items-center gap-4 p-4 border border-zinc-200 rounded-lg\">\n <div className=\"size-10 rounded-lg bg-zinc-50 flex items-center justify-center shrink-0\">\n <IconTool size={20} className=\"text-zinc-600\" />\n </div>\n <span className=\"flex-1 paragraph-small-semibold text-zinc-950\">\n {translateStep('twoFactor')}\n </span>\n {isOwnProfile ? (\n <Button type=\"button\" variant=\"secondary\" className=\"h-10! shrink-0\" onClick={onOpenTwoFactor}>\n {twoFactorEnabled ? translateStep('disable') : translateStep('enable')}\n </Button>\n ) : (\n <Button\n type=\"button\"\n variant=\"secondary\"\n className=\"h-10! shrink-0\"\n loading={toggleTwoFactorMutation.isPending}\n onClick={() => toggleTwoFactorMutation.mutate(!twoFactorEnabled)}\n >\n {toggleTwoFactorMutation.isPending\n ? translateStep('twoFactorSaving')\n : twoFactorEnabled\n ? translateStep('disable')\n : translateStep('enable')}\n </Button>\n )}\n </div>\n\n {isOwnProfile && (\n <div className=\"flex items-center gap-4 p-4 border border-zinc-200 rounded-lg\">\n <div className=\"size-10 rounded-lg bg-zinc-50 flex items-center justify-center shrink-0\">\n <IconLock size={20} className=\"text-zinc-600\" />\n </div>\n <span className=\"flex-1 paragraph-small-semibold text-zinc-950\">\n {translateStep('changePassword')}\n </span>\n <Button\n type=\"button\"\n variant=\"secondary\"\n className=\"h-10! shrink-0\"\n onClick={onOpenChangePassword}\n >\n {translateStep('changePasswordButton')}\n </Button>\n </div>\n )}\n </div>\n\n <Separator />\n </>\n )}\n\n <span className=\"text-zinc-950 paragraph-medium-semibold\">{translateStep('roleTitle')}</span>\n\n <RadioGroup\n value={role}\n onValueChange={(value) => {\n const profile = toUserProfile(value);\n setValue('profile', profile, { shouldDirty: true });\n onProfileChange?.(profile);\n }}\n disabled={readOnly || !canChangeProfile}\n >\n <div className=\"flex flex-col gap-3\">\n {visibleProfiles.map((profile) => (\n <RadioOptionFieldIcon\n key={profile}\n value={profile}\n label={translateProfile(profile)}\n description={translateStep(PROFILE_DESCRIPTION_KEYS[profile])}\n isSelected={role === profile}\n disabled={role === UserProfile.owner}\n icon={PROFILE_ICONS[profile]}\n />\n ))}\n </div>\n </RadioGroup>\n </div>\n );\n}\n"],"mappings":"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","names":[]}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { UserProfile } from "../../../../modules/users/schema";
|
|
3
|
+
function buildUserFormSchema({ required, invalidEmail }) {
|
|
4
|
+
return z.object({
|
|
5
|
+
name: z.string().min(1, required),
|
|
6
|
+
lastName: z.string(),
|
|
7
|
+
email: z.string().min(1, required).email(invalidEmail),
|
|
8
|
+
phone: z.string(),
|
|
9
|
+
profile: z.nativeEnum(UserProfile),
|
|
10
|
+
photo: z.custom().nullable(),
|
|
11
|
+
selectedProjects: z.record(z.string(), z.boolean()),
|
|
12
|
+
gender: z.number(),
|
|
13
|
+
receiveSms: z.boolean(),
|
|
14
|
+
receiveEmail: z.boolean()
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
function buildUserFormDefaults(user) {
|
|
18
|
+
return {
|
|
19
|
+
name: user?.name || "",
|
|
20
|
+
lastName: user?.last_name || "",
|
|
21
|
+
email: user?.email || "",
|
|
22
|
+
phone: user?.phone || "",
|
|
23
|
+
profile: user?.profile || UserProfile.collaborator,
|
|
24
|
+
photo: null,
|
|
25
|
+
selectedProjects: Object.fromEntries(
|
|
26
|
+
user?.projects?.map((project) => [project.id.toString(), true]) || []
|
|
27
|
+
),
|
|
28
|
+
gender: user?.gender ?? 1,
|
|
29
|
+
receiveSms: user?.receive_sms ?? true,
|
|
30
|
+
receiveEmail: user?.receive_email ?? true
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
export {
|
|
34
|
+
buildUserFormDefaults,
|
|
35
|
+
buildUserFormSchema
|
|
36
|
+
};
|
|
37
|
+
//# sourceMappingURL=user-form.schema.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../src/components/account/sections/team/user-form.schema.ts"],"sourcesContent":["import { z } from 'zod';\nimport { UserProfile, type User } from '../../../../modules/users/schema';\n\ntype UserFormMessages = {\n required: string;\n invalidEmail: string;\n};\n\n/** Mensagens já traduzidas — o schema é montado dentro do componente com `useMemo`. */\nexport function buildUserFormSchema({ required, invalidEmail }: UserFormMessages) {\n return z.object({\n name: z.string().min(1, required),\n lastName: z.string(),\n email: z.string().min(1, required).email(invalidEmail),\n phone: z.string(),\n profile: z.nativeEnum(UserProfile),\n photo: z.custom<File | null>().nullable(),\n selectedProjects: z.record(z.string(), z.boolean()),\n gender: z.number(),\n receiveSms: z.boolean(),\n receiveEmail: z.boolean(),\n });\n}\n\nexport type UserFormData = z.infer<ReturnType<typeof buildUserFormSchema>>;\n\n/** Valores iniciais do formulário de usuário — compartilhados pelo sheet da equipe e pelo Meu perfil. */\nexport function buildUserFormDefaults(user?: User): UserFormData {\n return {\n name: user?.name || '',\n lastName: user?.last_name || '',\n email: user?.email || '',\n phone: user?.phone || '',\n profile: user?.profile || UserProfile.collaborator,\n photo: null,\n selectedProjects: Object.fromEntries(\n user?.projects?.map((project) => [project.id.toString(), true]) || []\n ),\n gender: user?.gender ?? 1,\n receiveSms: user?.receive_sms ?? true,\n receiveEmail: user?.receive_email ?? true,\n };\n}\n"],"mappings":"AAAA,SAAS,SAAS;AAClB,SAAS,mBAA8B;AAQhC,SAAS,oBAAoB,EAAE,UAAU,aAAa,GAAqB;AAChF,SAAO,EAAE,OAAO;AAAA,IACd,MAAM,EAAE,OAAO,EAAE,IAAI,GAAG,QAAQ;AAAA,IAChC,UAAU,EAAE,OAAO;AAAA,IACnB,OAAO,EAAE,OAAO,EAAE,IAAI,GAAG,QAAQ,EAAE,MAAM,YAAY;AAAA,IACrD,OAAO,EAAE,OAAO;AAAA,IAChB,SAAS,EAAE,WAAW,WAAW;AAAA,IACjC,OAAO,EAAE,OAAoB,EAAE,SAAS;AAAA,IACxC,kBAAkB,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC;AAAA,IAClD,QAAQ,EAAE,OAAO;AAAA,IACjB,YAAY,EAAE,QAAQ;AAAA,IACtB,cAAc,EAAE,QAAQ;AAAA,EAC1B,CAAC;AACH;AAKO,SAAS,sBAAsB,MAA2B;AAC/D,SAAO;AAAA,IACL,MAAM,MAAM,QAAQ;AAAA,IACpB,UAAU,MAAM,aAAa;AAAA,IAC7B,OAAO,MAAM,SAAS;AAAA,IACtB,OAAO,MAAM,SAAS;AAAA,IACtB,SAAS,MAAM,WAAW,YAAY;AAAA,IACtC,OAAO;AAAA,IACP,kBAAkB,OAAO;AAAA,MACvB,MAAM,UAAU,IAAI,CAAC,YAAY,CAAC,QAAQ,GAAG,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC;AAAA,IACtE;AAAA,IACA,QAAQ,MAAM,UAAU;AAAA,IACxB,YAAY,MAAM,eAAe;AAAA,IACjC,cAAc,MAAM,iBAAiB;AAAA,EACvC;AACF;","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=workspace-actions.type.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
3
3
|
import { useState } from "react";
|
|
4
4
|
import { useTranslations } from "next-intl";
|
|
5
|
-
import { useRouter } from "next/navigation";
|
|
6
5
|
import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
7
6
|
import { Popover } from "../ui/overlay/Popover";
|
|
8
7
|
import { Button } from "../ui/buttons/Button";
|
|
@@ -13,11 +12,13 @@ import { UserAvatar } from "../ui/data-display/UserAvatar";
|
|
|
13
12
|
import { LoadingOverlay } from "../ui/feedback/LoadingOverlay";
|
|
14
13
|
import { useBrandLoadingIcon } from "../../hooks/useBrandLoadingIcon";
|
|
15
14
|
import { useAuth } from "../../providers/auth.provider";
|
|
16
|
-
import { useIsDefaultWhitelabel
|
|
15
|
+
import { useIsDefaultWhitelabel } from "../../providers/whitelabel.provider";
|
|
17
16
|
import { cn } from "../../infra/utils/clsx";
|
|
18
17
|
import { useIaCredits } from "../../modules/ia-credits/hooks/ia-credits.hook";
|
|
19
18
|
import { useBuyCreditsModal } from "../../store/useBuyCreditsModal";
|
|
20
19
|
import { useCreditsDisabledModal } from "../../store/useCreditsDisabledModal";
|
|
20
|
+
import { useAccountModals } from "../../store/useAccountModals";
|
|
21
|
+
import { AccountSectionType } from "../../enums/AccountSectionType";
|
|
21
22
|
function ProfilePopover({
|
|
22
23
|
side = "top",
|
|
23
24
|
align = "start",
|
|
@@ -31,11 +32,10 @@ function ProfilePopover({
|
|
|
31
32
|
const { summary, subscription, isSubscriptionLoading, isCreditsLoading } = useIaCredits();
|
|
32
33
|
const { openModal: openBuyCreditsModal } = useBuyCreditsModal();
|
|
33
34
|
const { openModal: openCreditsDisabledModal } = useCreditsDisabledModal();
|
|
35
|
+
const openConfigurations = useAccountModals((state) => state.openConfigurations);
|
|
34
36
|
const canManage = user?.profile === "owner" || user?.profile === "admin";
|
|
35
37
|
const isDefaultWl = useIsDefaultWhitelabel();
|
|
36
|
-
const { accountsUrl } = useWhitelabelUrls();
|
|
37
38
|
const brandLoadingIcon = useBrandLoadingIcon();
|
|
38
|
-
const router = useRouter();
|
|
39
39
|
const handleLogout = async () => {
|
|
40
40
|
setPopoverOpen(false);
|
|
41
41
|
setIsLoggingOut(true);
|
|
@@ -95,13 +95,8 @@ function ProfilePopover({
|
|
|
95
95
|
variant: "secondary",
|
|
96
96
|
className: "h-8! px-3! paragraph-xsmall-semibold",
|
|
97
97
|
onClick: () => {
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
setPopoverOpen(false);
|
|
101
|
-
router.push(`${window.location.pathname}?openProfile=true`);
|
|
102
|
-
} else {
|
|
103
|
-
window.location.href = `${accountsUrl}?openProfile=true`;
|
|
104
|
-
}
|
|
98
|
+
setPopoverOpen(false);
|
|
99
|
+
openConfigurations(AccountSectionType.MY_PROFILE);
|
|
105
100
|
},
|
|
106
101
|
children: translate("common.actions.edit")
|
|
107
102
|
}
|
|
@@ -149,7 +144,10 @@ function ProfilePopover({
|
|
|
149
144
|
{
|
|
150
145
|
icon: item.icon,
|
|
151
146
|
label: item.label,
|
|
152
|
-
onClick:
|
|
147
|
+
onClick: () => {
|
|
148
|
+
setPopoverOpen(false);
|
|
149
|
+
item.onClick();
|
|
150
|
+
}
|
|
153
151
|
},
|
|
154
152
|
index
|
|
155
153
|
)) }),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/components/layouts/ProfilePopover.tsx"],"sourcesContent":["\"use client\";\n\nimport { useState } from \"react\";\nimport { useTranslations } from \"next-intl\";\nimport { useRouter } from \"next/navigation\";\nimport * as PopoverPrimitive from \"@radix-ui/react-popover\";\nimport { Popover } from \"../ui/overlay/Popover\";\nimport { Button } from \"../ui/buttons/Button\";\nimport { Progress } from \"../ui/feedback/Progress\";\nimport { Separator } from \"../ui/data-display/Separator\";\nimport { NavBarItem } from \"./NavBarItem\";\nimport { UserAvatar } from \"../ui/data-display/UserAvatar\";\nimport { LoadingOverlay } from \"../ui/feedback/LoadingOverlay\";\nimport { useBrandLoadingIcon } from \"../../hooks/useBrandLoadingIcon\";\nimport { useAuth } from \"../../providers/auth.provider\";\nimport { useIsDefaultWhitelabel, useWhitelabelUrls } from \"../../providers/whitelabel.provider\";\nimport { cn } from \"../../infra/utils/clsx\";\nimport { useIaCredits } from \"../../modules/ia-credits/hooks/ia-credits.hook\";\nimport { useBuyCreditsModal } from \"../../store/useBuyCreditsModal\";\nimport { useCreditsDisabledModal } from \"../../store/useCreditsDisabledModal\";\n\nexport interface ProfileMenuItem {\n icon?: React.ReactNode;\n label: string;\n onClick: () => void;\n}\n\nexport interface ProfilePopoverProps {\n side?: \"top\" | \"bottom\" | \"left\" | \"right\";\n align?: \"start\" | \"center\" | \"end\";\n contentClassName?: string;\n menuItems?: ProfileMenuItem[];\n}\n\nfunction ProfilePopover({\n side = \"top\",\n align = \"start\",\n contentClassName = \"absolute bottom-2 left-[26px]\",\n menuItems = [],\n}: ProfilePopoverProps) {\n const translate = useTranslations();\n const { user, logout } = useAuth();\n const [isLoggingOut, setIsLoggingOut] = useState(false);\n const [popoverOpen, setPopoverOpen] = useState(false);\n\n const { summary, subscription, isSubscriptionLoading, isCreditsLoading } =\n useIaCredits();\n const { openModal: openBuyCreditsModal } = useBuyCreditsModal();\n const { openModal: openCreditsDisabledModal } = useCreditsDisabledModal();\n const canManage = user?.profile === 'owner' || user?.profile === 'admin';\n const isDefaultWl = useIsDefaultWhitelabel();\n const { accountsUrl } = useWhitelabelUrls();\n const brandLoadingIcon = useBrandLoadingIcon();\n const router = useRouter();\n\n const handleLogout = async () => {\n setPopoverOpen(false);\n setIsLoggingOut(true);\n await logout();\n };\n\n const hasSubscription = !isSubscriptionLoading && subscription !== null;\n\n const isApiPlan = hasSubscription && subscription.id_plan === 411;\n const shouldShowCredits = hasSubscription && isDefaultWl && !isApiPlan;\n const creditsPercentage =\n shouldShowCredits && summary.totalCredits > 0\n ? (summary.usedCredits / summary.totalCredits) * 100\n : 0;\n\n return (\n <>\n <LoadingOverlay\n isLoading={isLoggingOut}\n message={translate('common.layout.profile.loggingOut')}\n icon={brandLoadingIcon}\n />\n <Popover open={popoverOpen} onOpenChange={setPopoverOpen}>\n <PopoverPrimitive.Trigger className=\"cursor-pointer\">\n {user && (\n <UserAvatar\n key={user.id}\n photo={user.photo}\n name={user.name}\n size={40}\n />\n )}\n </PopoverPrimitive.Trigger>\n\n <PopoverPrimitive.Portal>\n <PopoverPrimitive.Content\n className={cn(\n \"w-64.75 p-0 bg-white rounded-2xl shadow-md border border-gray-200 z-99\",\n contentClassName,\n )}\n side={side}\n align={align}\n sideOffset={8}\n >\n <div className=\"grid grid-cols-[32px_1fr_auto] items-center gap-3 p-3 w-full\">\n {user && (\n <UserAvatar\n key={user.id}\n photo={user.photo}\n name={user.name}\n size={32}\n />\n )}\n\n <div className=\"flex flex-col gap-0.5 min-w-0\">\n <span className=\"paragraph-small-semibold text-gray-950 truncate\">\n {user?.name || \"\"}\n </span>\n <span className=\"paragraph-xsmall-medium text-gray-500 truncate\">\n {user?.email || \"\"}\n </span>\n </div>\n\n <Button\n variant=\"secondary\"\n className=\"h-8! px-3! paragraph-xsmall-semibold\"\n onClick={() => {\n const isSameOrigin = accountsUrl.startsWith(window.location.origin);\n if (isSameOrigin) {\n setPopoverOpen(false);\n router.push(`${window.location.pathname}?openProfile=true`);\n } else {\n window.location.href = `${accountsUrl}?openProfile=true`;\n }\n }}\n >\n {translate('common.actions.edit')}\n </Button>\n </div>\n\n <div className=\"flex flex-col gap-2 border-t border-gray-200 rounded-2xl p-1.5\">\n {shouldShowCredits && (\n <div\n className={cn(\n \"flex flex-col bg-gray-950 rounded-lg gap-4 w-full p-4 transition-colors\",\n \"cursor-pointer hover:bg-gray-950/90\",\n )}\n onClick={() => {\n setPopoverOpen(false);\n if (canManage) {\n openBuyCreditsModal();\n } else {\n openCreditsDisabledModal();\n }\n }}\n >\n <div className=\"flex items-center justify-between gap-2\">\n <span className=\"paragraph-xsmall-semibold text-white truncate\">\n {translate('common.layout.profile.usedCredits')}\n </span>\n <span className=\"paragraph-xsmall-medium text-white/50\">\n {summary.usedCredits.toLocaleString(\"pt-BR\")}/\n {summary.totalCredits.toLocaleString(\"pt-BR\")}\n </span>\n </div>\n <Progress\n className=\"bg-white/10\"\n indicatorColor=\"bg-white\"\n value={creditsPercentage}\n />\n </div>\n )}\n\n <div className=\"flex flex-col gap-2\">\n <div className=\"flex flex-col\">\n {menuItems.map((item, index) => (\n <NavBarItem\n key={index}\n icon={item.icon}\n label={item.label}\n onClick={item.onClick}\n />\n ))}\n </div>\n <Separator />\n <NavBarItem label={translate('common.layout.profile.logout')} onClick={handleLogout} />\n </div>\n </div>\n </PopoverPrimitive.Content>\n </PopoverPrimitive.Portal>\n </Popover>\n </>\n );\n}\n\nexport { ProfilePopover };\n"],"mappings":"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","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../src/components/layouts/ProfilePopover.tsx"],"sourcesContent":["\"use client\";\n\nimport { useState } from \"react\";\nimport { useTranslations } from \"next-intl\";\nimport * as PopoverPrimitive from \"@radix-ui/react-popover\";\nimport { Popover } from \"../ui/overlay/Popover\";\nimport { Button } from \"../ui/buttons/Button\";\nimport { Progress } from \"../ui/feedback/Progress\";\nimport { Separator } from \"../ui/data-display/Separator\";\nimport { NavBarItem } from \"./NavBarItem\";\nimport { UserAvatar } from \"../ui/data-display/UserAvatar\";\nimport { LoadingOverlay } from \"../ui/feedback/LoadingOverlay\";\nimport { useBrandLoadingIcon } from \"../../hooks/useBrandLoadingIcon\";\nimport { useAuth } from \"../../providers/auth.provider\";\nimport { useIsDefaultWhitelabel } from \"../../providers/whitelabel.provider\";\nimport { cn } from \"../../infra/utils/clsx\";\nimport { useIaCredits } from \"../../modules/ia-credits/hooks/ia-credits.hook\";\nimport { useBuyCreditsModal } from \"../../store/useBuyCreditsModal\";\nimport { useCreditsDisabledModal } from \"../../store/useCreditsDisabledModal\";\nimport { useAccountModals } from \"../../store/useAccountModals\";\nimport { AccountSectionType } from \"../../enums/AccountSectionType\";\n\nexport interface ProfileMenuItem {\n icon?: React.ReactNode;\n label: string;\n onClick: () => void;\n}\n\nexport interface ProfilePopoverProps {\n side?: \"top\" | \"bottom\" | \"left\" | \"right\";\n align?: \"start\" | \"center\" | \"end\";\n contentClassName?: string;\n menuItems?: ProfileMenuItem[];\n}\n\nfunction ProfilePopover({\n side = \"top\",\n align = \"start\",\n contentClassName = \"absolute bottom-2 left-[26px]\",\n menuItems = [],\n}: ProfilePopoverProps) {\n const translate = useTranslations();\n const { user, logout } = useAuth();\n const [isLoggingOut, setIsLoggingOut] = useState(false);\n const [popoverOpen, setPopoverOpen] = useState(false);\n\n const { summary, subscription, isSubscriptionLoading, isCreditsLoading } =\n useIaCredits();\n const { openModal: openBuyCreditsModal } = useBuyCreditsModal();\n const { openModal: openCreditsDisabledModal } = useCreditsDisabledModal();\n // \"Editar\" abre o Meu perfil dentro do modal Minha conta, montado por `<Modals>`.\n const openConfigurations = useAccountModals((state) => state.openConfigurations);\n const canManage = user?.profile === 'owner' || user?.profile === 'admin';\n const isDefaultWl = useIsDefaultWhitelabel();\n const brandLoadingIcon = useBrandLoadingIcon();\n\n const handleLogout = async () => {\n setPopoverOpen(false);\n setIsLoggingOut(true);\n await logout();\n };\n\n const hasSubscription = !isSubscriptionLoading && subscription !== null;\n\n const isApiPlan = hasSubscription && subscription.id_plan === 411;\n const shouldShowCredits = hasSubscription && isDefaultWl && !isApiPlan;\n const creditsPercentage =\n shouldShowCredits && summary.totalCredits > 0\n ? (summary.usedCredits / summary.totalCredits) * 100\n : 0;\n\n return (\n <>\n <LoadingOverlay\n isLoading={isLoggingOut}\n message={translate('common.layout.profile.loggingOut')}\n icon={brandLoadingIcon}\n />\n <Popover open={popoverOpen} onOpenChange={setPopoverOpen}>\n <PopoverPrimitive.Trigger className=\"cursor-pointer\">\n {user && (\n <UserAvatar\n key={user.id}\n photo={user.photo}\n name={user.name}\n size={40}\n />\n )}\n </PopoverPrimitive.Trigger>\n\n <PopoverPrimitive.Portal>\n <PopoverPrimitive.Content\n className={cn(\n \"w-64.75 p-0 bg-white rounded-2xl shadow-md border border-gray-200 z-99\",\n contentClassName,\n )}\n side={side}\n align={align}\n sideOffset={8}\n >\n <div className=\"grid grid-cols-[32px_1fr_auto] items-center gap-3 p-3 w-full\">\n {user && (\n <UserAvatar\n key={user.id}\n photo={user.photo}\n name={user.name}\n size={32}\n />\n )}\n\n <div className=\"flex flex-col gap-0.5 min-w-0\">\n <span className=\"paragraph-small-semibold text-gray-950 truncate\">\n {user?.name || \"\"}\n </span>\n <span className=\"paragraph-xsmall-medium text-gray-500 truncate\">\n {user?.email || \"\"}\n </span>\n </div>\n\n <Button\n variant=\"secondary\"\n className=\"h-8! px-3! paragraph-xsmall-semibold\"\n onClick={() => {\n setPopoverOpen(false);\n openConfigurations(AccountSectionType.MY_PROFILE);\n }}\n >\n {translate('common.actions.edit')}\n </Button>\n </div>\n\n <div className=\"flex flex-col gap-2 border-t border-gray-200 rounded-2xl p-1.5\">\n {shouldShowCredits && (\n <div\n className={cn(\n \"flex flex-col bg-gray-950 rounded-lg gap-4 w-full p-4 transition-colors\",\n \"cursor-pointer hover:bg-gray-950/90\",\n )}\n onClick={() => {\n setPopoverOpen(false);\n if (canManage) {\n openBuyCreditsModal();\n } else {\n openCreditsDisabledModal();\n }\n }}\n >\n <div className=\"flex items-center justify-between gap-2\">\n <span className=\"paragraph-xsmall-semibold text-white truncate\">\n {translate('common.layout.profile.usedCredits')}\n </span>\n <span className=\"paragraph-xsmall-medium text-white/50\">\n {summary.usedCredits.toLocaleString(\"pt-BR\")}/\n {summary.totalCredits.toLocaleString(\"pt-BR\")}\n </span>\n </div>\n <Progress\n className=\"bg-white/10\"\n indicatorColor=\"bg-white\"\n value={creditsPercentage}\n />\n </div>\n )}\n\n <div className=\"flex flex-col gap-2\">\n <div className=\"flex flex-col\">\n {menuItems.map((item, index) => (\n <NavBarItem\n key={index}\n icon={item.icon}\n label={item.label}\n onClick={() => {\n setPopoverOpen(false);\n item.onClick();\n }}\n />\n ))}\n </div>\n <Separator />\n <NavBarItem label={translate('common.layout.profile.logout')} onClick={handleLogout} />\n </div>\n </div>\n </PopoverPrimitive.Content>\n </PopoverPrimitive.Portal>\n </Popover>\n </>\n );\n}\n\nexport { ProfilePopover };\n"],"mappings":"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","names":[]}
|
|
@@ -20,7 +20,8 @@ import { useListProjectUsers } from "../../modules/projects/hooks/list-project-u
|
|
|
20
20
|
import { useListAllAccountUsers } from "../../modules/projects/hooks/list-all-account-users.hook";
|
|
21
21
|
import { useAddProjectUser } from "../../modules/projects/hooks/add-project-user.hook";
|
|
22
22
|
import { useRemoveProjectUser } from "../../modules/projects/hooks/remove-project-user.hook";
|
|
23
|
-
import {
|
|
23
|
+
import { WorkspaceSectionType } from "../../enums/WorkspaceSectionType";
|
|
24
|
+
import useAccountHubActions from "../account/hooks/useAccountHubActions";
|
|
24
25
|
function UserItemSkeleton() {
|
|
25
26
|
return /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between px-2 py-1.5 gap-2", children: [
|
|
26
27
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 flex-1", children: [
|
|
@@ -37,7 +38,7 @@ function UsersSelectorPopover({
|
|
|
37
38
|
contentClassName
|
|
38
39
|
}) {
|
|
39
40
|
const translate = useTranslations();
|
|
40
|
-
const {
|
|
41
|
+
const { openAddUser, openSection } = useAccountHubActions();
|
|
41
42
|
const [open, setOpen] = useState(false);
|
|
42
43
|
const [hoveredId, setHoveredId] = useState(null);
|
|
43
44
|
const [searchInput, setSearchInput] = useState("");
|
|
@@ -95,7 +96,8 @@ function UsersSelectorPopover({
|
|
|
95
96
|
variant: "secondary",
|
|
96
97
|
className: "h-8 paragraph-small-semibold text-gray-950",
|
|
97
98
|
onClick: () => {
|
|
98
|
-
|
|
99
|
+
setOpen(false);
|
|
100
|
+
openAddUser();
|
|
99
101
|
},
|
|
100
102
|
children: [
|
|
101
103
|
/* @__PURE__ */ jsx(IconPlus, { size: 16 }),
|
|
@@ -196,7 +198,8 @@ function UsersSelectorPopover({
|
|
|
196
198
|
variant: "ghost",
|
|
197
199
|
className: "h-10! paragraph-small-medium text-gray-600 hover:text-gray-950 hover:bg-zinc-50 w-full justify-center",
|
|
198
200
|
onClick: () => {
|
|
199
|
-
|
|
201
|
+
setOpen(false);
|
|
202
|
+
openSection(WorkspaceSectionType.TEAM);
|
|
200
203
|
},
|
|
201
204
|
children: translate("common.layout.usersSelector.manageTeam")
|
|
202
205
|
}
|