@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 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../src/components/account/sections/subscription/UsageReportSheet.tsx"],"sourcesContent":["'use client';\n\nimport { IconCornerDownRight, IconExternalLink } from '@tabler/icons-react';\nimport { useTranslations } from 'next-intl';\nimport { Button } from '../../../ui/buttons/Button';\nimport { Separator } from '../../../ui/data-display/Separator';\nimport { Skeleton } from '../../../ui/feedback/Skeleton';\nimport { Sheet, SheetContent, SheetHeader, SheetTitle } from '../../../ui/overlay/Sheet';\nimport { Tooltip, TooltipContent, TooltipTrigger } from '../../../ui/overlay/Tooltip';\nimport { useIaCreditOperations } from '../../../../modules/ia-credits/hooks/ia-credit-operations.hook';\nimport { useWhitelabel } from '../../../../providers/whitelabel.provider';\nimport useIsMobile from '../../../../hooks/useIsMobile';\nimport { cn } from '../../../../infra/utils/clsx';\nimport { useSubscriptionFlows } from '../../../../store/useSubscriptionFlows';\n\ntype UsageItem = {\n description: string;\n author: string;\n credits: number;\n};\n\ntype UsageGroup = {\n date: string;\n items: UsageItem[];\n};\n\ntype CreditPurchase = {\n id: string;\n addedCredits: number;\n consumedCredits: number;\n purchaseDateLabel: string;\n expiresInDays: number | null;\n expired: boolean;\n groups: UsageGroup[];\n};\n\n/** O consumo guarda a página em `operation_ref` (\"… - Página ID: 123\"). */\nfunction extractPageId(description: string): string | null {\n const pageId = description.split('-')[1]?.replace('Página ID: ', ' ').trim();\n return pageId || null;\n}\n\nfunction UsageItemRow({ item }: { item: UsageItem }) {\n const translate = useTranslations('common.account.workspace.subscription.usageReport');\n const { whitelabel } = useWhitelabel();\n const pageId = extractPageId(item.description);\n const pageUrl = pageId && whitelabel?.pages_url ? `${whitelabel.pages_url}/pages/${pageId}` : null;\n\n return (\n <div className=\"flex items-center gap-4\">\n <IconCornerDownRight size={18} className=\"text-zinc-400 shrink-0\" />\n <div className=\"flex flex-col gap-1 flex-1\">\n <span className=\"paragraph-small-semibold text-zinc-950\">{item.description.split('-')[0]}</span>\n <p className=\"paragraph-small-regular text-zinc-600\">\n {translate.rich('madeBy', {\n author: item.author,\n b: (chunks) => <span className=\"paragraph-small-medium\">{chunks}</span>,\n })}\n </p>\n </div>\n <span className=\"paragraph-small-semibold text-zinc-950 text-right shrink-0\">\n {translate('creditsLabel', { credits: String(item.credits) })}\n </span>\n {pageUrl && (\n <Tooltip delayDuration={300}>\n <TooltipTrigger asChild>\n <Button\n variant=\"secondary\"\n size=\"icon-lg\"\n className=\"size-8 shrink-0\"\n onClick={() => window.open(pageUrl, '_blank', 'noopener,noreferrer')}\n >\n <IconExternalLink size={16} className=\"text-zinc-950\" />\n </Button>\n </TooltipTrigger>\n <TooltipContent>{translate('viewPage')}</TooltipContent>\n </Tooltip>\n )}\n </div>\n );\n}\n\nfunction PurchaseSection({ purchase }: { purchase: CreditPurchase }) {\n const translate = useTranslations('common.account.workspace.subscription.usageReport');\n\n const expiresLabel = purchase.expired\n ? translate('expired')\n : purchase.expiresInDays != null\n ? purchase.expiresInDays === 1\n ? translate('expiresInOneDay')\n : translate('expiresInDays', { days: String(purchase.expiresInDays) })\n : '';\n\n return (\n <div className=\"flex flex-col gap-4\">\n <div className=\"flex flex-col gap-1\">\n <span className=\"paragraph-medium-semibold text-zinc-950\">\n {translate('creditsAdded', { count: String(purchase.addedCredits) })}\n </span>\n <span className=\"paragraph-small-regular text-zinc-600\">{purchase.purchaseDateLabel}</span>\n </div>\n\n <div className=\"flex items-start justify-between\">\n <span className=\"paragraph-small-regular text-zinc-600\">\n {translate('creditsUsed', {\n consumed: String(purchase.consumedCredits),\n total: String(purchase.addedCredits),\n })}\n </span>\n {expiresLabel && <span className=\"paragraph-small-medium text-zinc-950\">{expiresLabel}</span>}\n </div>\n\n {purchase.groups.map((group) => (\n <div key={group.date} className=\"flex flex-col gap-5 p-4 bg-zinc-50 rounded-lg\">\n <span className=\"paragraph-small-semibold text-zinc-600\">{group.date}</span>\n {group.items.map((item, index) => (\n <div key={`${group.date}-${index}`}>\n {index > 0 && <Separator className=\"mb-5\" />}\n <UsageItemRow item={item} />\n </div>\n ))}\n </div>\n ))}\n </div>\n );\n}\n\n/** Consumo de créditos de IA lote a lote, com quem gastou e em qual página. */\nexport function UsageReportSheet() {\n const translate = useTranslations('common.account.workspace.subscription.usageReport');\n const isMobile = useIsMobile();\n const isOpen = useSubscriptionFlows((state) => state.isUsageReportOpen);\n const close = useSubscriptionFlows((state) => state.closeUsageReport);\n\n const { operations, isLoading } = useIaCreditOperations();\n\n // Agrupa os consumos (subtract) sob o lote que os originou (add), via `consumed_from_add_id`.\n const adds = operations.filter((operation) => operation.operation === 'add');\n const subtracts = operations.filter((operation) => operation.operation === 'subtract');\n\n const purchases: CreditPurchase[] = adds.map((add) => {\n const purchaseDate = add.datetime_add ? new Date(add.datetime_add) : new Date();\n const today = new Date();\n const todayDate = new Date(today.getFullYear(), today.getMonth(), today.getDate());\n\n const expiration = add.expiration_time ? new Date(add.expiration_time) : null;\n const expirationDate =\n expiration && new Date(expiration.getFullYear(), expiration.getMonth(), expiration.getDate());\n const expired = add.has_expired || (expirationDate != null && expirationDate.getTime() < todayDate.getTime());\n\n let expiresInDays: number | null = null;\n if (!expired && expirationDate) {\n const diffMs = expirationDate.getTime() - todayDate.getTime();\n expiresInDays = Math.max(0, Math.ceil(diffMs / (1000 * 60 * 60 * 24)));\n }\n\n const relatedSubtracts = subtracts.filter(\n (subtract) => String(subtract.consumed_from_add_id) === String(add.id)\n );\n const consumedCredits = relatedSubtracts.reduce(\n (sum, subtract) => sum + subtract.operation_value,\n 0\n );\n\n const groupsMap = new Map<string, UsageGroup>();\n for (const subtract of relatedSubtracts) {\n const date = subtract.datetime_add ? new Date(subtract.datetime_add) : new Date();\n const dateLabel = date.toLocaleDateString('pt-BR');\n const item: UsageItem = {\n description: subtract.operation_ref || translate('defaultRef'),\n author: subtract.user_name || translate('defaultUser'),\n credits: subtract.operation_value,\n };\n\n const existing = groupsMap.get(dateLabel);\n if (existing) existing.items.push(item);\n else groupsMap.set(dateLabel, { date: dateLabel, items: [item] });\n }\n\n return {\n id: String(add.id),\n addedCredits: add.operation_value,\n consumedCredits,\n purchaseDateLabel: purchaseDate.toLocaleDateString('pt-BR'),\n expiresInDays,\n expired,\n groups: Array.from(groupsMap.values()),\n };\n });\n\n return (\n <Sheet open={isOpen} onOpenChange={(nextOpen) => !nextOpen && close()}>\n <SheetContent\n side={isMobile ? 'bottom' : 'right'}\n onOpenAutoFocus={(event) => event.preventDefault()}\n className={cn(\n 'flex flex-col gap-0 p-0',\n isMobile\n ? 'h-dvh w-full max-w-full rounded-none pt-[env(safe-area-inset-top)] pb-[env(safe-area-inset-bottom)]'\n : 'w-[480px]! sm:max-w-[480px]!'\n )}\n >\n <SheetHeader className=\"px-4 sm:px-5 py-3 border-b border-zinc-200\">\n <SheetTitle className=\"paragraph-medium-semibold text-zinc-950\">{translate('title')}</SheetTitle>\n </SheetHeader>\n\n <div className=\"flex flex-col gap-5 sm:gap-6 flex-1 overflow-y-auto [scrollbar-width:auto] [&::-webkit-scrollbar]:w-1.5 [&::-webkit-scrollbar-track]:bg-transparent [&::-webkit-scrollbar-thumb]:rounded-full [&::-webkit-scrollbar-thumb]:bg-zinc-300 px-4 sm:px-5 py-5 sm:py-6\">\n {isLoading && purchases.length === 0 && (\n <div className=\"flex flex-col gap-6\">\n {[0, 1, 2].map((key) => (\n <div key={key} className=\"flex flex-col gap-4\">\n <div className=\"flex flex-col gap-2\">\n <Skeleton className=\"h-4 w-40 rounded\" />\n <Skeleton className=\"h-3 w-28 rounded\" />\n </div>\n <div className=\"flex items-center justify-between\">\n <Skeleton className=\"h-3 w-40 rounded\" />\n <Skeleton className=\"h-3 w-24 rounded\" />\n </div>\n <div className=\"flex flex-col gap-3 p-4 bg-zinc-50 rounded-lg\">\n <Skeleton className=\"h-3 w-32 rounded\" />\n <Skeleton className=\"h-3 w-full rounded\" />\n <Skeleton className=\"h-3 w-2/3 rounded\" />\n </div>\n </div>\n ))}\n </div>\n )}\n\n {!isLoading && purchases.length === 0 && (\n <span className=\"paragraph-small-regular text-zinc-500\">{translate('noHistory')}</span>\n )}\n\n {purchases.map((purchase, index) => (\n <div key={purchase.id}>\n {index > 0 && <Separator className=\"mb-6\" />}\n <PurchaseSection purchase={purchase} />\n </div>\n ))}\n </div>\n </SheetContent>\n </Sheet>\n );\n}\n"],"mappings":"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","names":[]}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { useEffect } from "react";
|
|
4
|
+
import { useTranslations } from "next-intl";
|
|
5
|
+
import { Sheet, SheetContent, SheetHeader, SheetTitle } from "../../../../ui/overlay/Sheet";
|
|
6
|
+
import { useExternalContracting } from "../../../../../providers/whitelabel.provider";
|
|
7
|
+
import useIsMobile from "../../../../../hooks/useIsMobile";
|
|
8
|
+
import { cn } from "../../../../../infra/utils/clsx";
|
|
9
|
+
import { AbTestDetailsDialog } from "./components/AbTestDetailsDialog";
|
|
10
|
+
import { CouponDialog } from "./components/CouponDialog";
|
|
11
|
+
import { PaymentSummaryStep } from "./steps/PaymentSummaryStep";
|
|
12
|
+
import { PlanComparisonStep } from "./steps/PlanComparisonStep";
|
|
13
|
+
import { PlanViewStep } from "./steps/PlanViewStep";
|
|
14
|
+
import { ReactivationConfigStep } from "./steps/ReactivationConfigStep";
|
|
15
|
+
import { ReactivationPaymentStep } from "./steps/ReactivationPaymentStep";
|
|
16
|
+
import { ChangePlanProvider, useChangePlanLogic } from "./useChangePlanState";
|
|
17
|
+
function ChangePlanSheet() {
|
|
18
|
+
const translate = useTranslations("common.account.workspace.subscription.changePlan");
|
|
19
|
+
const isMobile = useIsMobile();
|
|
20
|
+
const state = useChangePlanLogic();
|
|
21
|
+
const { isExternalContracting, redirectToExternal } = useExternalContracting();
|
|
22
|
+
const { open, isReactivation, isDowngrade, targetPlan, currentStep, handleClose, form, handleSubmit } = state;
|
|
23
|
+
useEffect(() => {
|
|
24
|
+
if (open && isExternalContracting) {
|
|
25
|
+
handleClose();
|
|
26
|
+
redirectToExternal("contracting");
|
|
27
|
+
}
|
|
28
|
+
}, [open, isExternalContracting, handleClose, redirectToExternal]);
|
|
29
|
+
if (isExternalContracting) return null;
|
|
30
|
+
const isPlanManagement = !isReactivation && !isDowngrade && !targetPlan;
|
|
31
|
+
const renderStep = () => {
|
|
32
|
+
if (isReactivation) {
|
|
33
|
+
if (currentStep === 1) return /* @__PURE__ */ jsx(ReactivationConfigStep, {});
|
|
34
|
+
if (currentStep === 2) return /* @__PURE__ */ jsx(ReactivationPaymentStep, {});
|
|
35
|
+
return null;
|
|
36
|
+
}
|
|
37
|
+
if (targetPlan) {
|
|
38
|
+
if (currentStep === 1) return /* @__PURE__ */ jsx(PlanComparisonStep, {});
|
|
39
|
+
if (currentStep === 2) return /* @__PURE__ */ jsx(PaymentSummaryStep, {});
|
|
40
|
+
return null;
|
|
41
|
+
}
|
|
42
|
+
if (currentStep === 1) return /* @__PURE__ */ jsx(PlanViewStep, {});
|
|
43
|
+
if (currentStep === 2) return /* @__PURE__ */ jsx(PaymentSummaryStep, {});
|
|
44
|
+
return null;
|
|
45
|
+
};
|
|
46
|
+
return /* @__PURE__ */ jsxs(ChangePlanProvider, { value: state, children: [
|
|
47
|
+
/* @__PURE__ */ jsx(Sheet, { open, onOpenChange: (nextOpen) => !nextOpen && handleClose(), children: /* @__PURE__ */ jsxs(
|
|
48
|
+
SheetContent,
|
|
49
|
+
{
|
|
50
|
+
side: isMobile ? "bottom" : "right",
|
|
51
|
+
className: cn(
|
|
52
|
+
"flex flex-col gap-0 p-0",
|
|
53
|
+
isMobile ? "h-dvh w-full max-w-full rounded-none pt-[env(safe-area-inset-top)] pb-[env(safe-area-inset-bottom)]" : "w-120! sm:max-w-120!"
|
|
54
|
+
),
|
|
55
|
+
children: [
|
|
56
|
+
/* @__PURE__ */ jsx(SheetHeader, { className: "px-4 sm:px-5 py-3 border-b border-zinc-200", children: /* @__PURE__ */ jsx(SheetTitle, { className: "paragraph-medium-semibold text-zinc-950", children: isPlanManagement ? translate("titleManagement") : translate("titleChange") }) }),
|
|
57
|
+
/* @__PURE__ */ jsx("div", { className: "h-1 bg-zinc-100 w-full", children: /* @__PURE__ */ jsx(
|
|
58
|
+
"div",
|
|
59
|
+
{
|
|
60
|
+
className: "h-full transition-all duration-300 ease-in-out bg-primary",
|
|
61
|
+
style: { width: currentStep === 1 ? "50%" : "100%" }
|
|
62
|
+
}
|
|
63
|
+
) }),
|
|
64
|
+
/* @__PURE__ */ jsx("form", { onSubmit: form.handleSubmit(handleSubmit), className: "flex flex-col flex-1 min-h-0", children: renderStep() })
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
) }),
|
|
68
|
+
/* @__PURE__ */ jsx(AbTestDetailsDialog, {}),
|
|
69
|
+
/* @__PURE__ */ jsx(CouponDialog, {})
|
|
70
|
+
] });
|
|
71
|
+
}
|
|
72
|
+
export {
|
|
73
|
+
ChangePlanSheet
|
|
74
|
+
};
|
|
75
|
+
//# sourceMappingURL=ChangePlanSheet.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../src/components/account/sections/subscription/change-plan/ChangePlanSheet.tsx"],"sourcesContent":["'use client';\n\nimport { useEffect } from 'react';\nimport { useTranslations } from 'next-intl';\nimport { Sheet, SheetContent, SheetHeader, SheetTitle } from '../../../../ui/overlay/Sheet';\nimport { useExternalContracting } from '../../../../../providers/whitelabel.provider';\nimport useIsMobile from '../../../../../hooks/useIsMobile';\nimport { cn } from '../../../../../infra/utils/clsx';\nimport { AbTestDetailsDialog } from './components/AbTestDetailsDialog';\nimport { CouponDialog } from './components/CouponDialog';\nimport { PaymentSummaryStep } from './steps/PaymentSummaryStep';\nimport { PlanComparisonStep } from './steps/PlanComparisonStep';\nimport { PlanViewStep } from './steps/PlanViewStep';\nimport { ReactivationConfigStep } from './steps/ReactivationConfigStep';\nimport { ReactivationPaymentStep } from './steps/ReactivationPaymentStep';\nimport { ChangePlanProvider, useChangePlanLogic } from './useChangePlanState';\n\n/**\n * Troca de plano e gerenciamento de adicionais, em dois passos. Sem plano-alvo é só o\n * gerenciamento do plano atual; com plano-alvo, compara os dois antes do pagamento.\n */\nexport function ChangePlanSheet() {\n const translate = useTranslations('common.account.workspace.subscription.changePlan');\n const isMobile = useIsMobile();\n const state = useChangePlanLogic();\n const { isExternalContracting, redirectToExternal } = useExternalContracting();\n\n const { open, isReactivation, isDowngrade, targetPlan, currentStep, handleClose, form, handleSubmit } =\n state;\n\n useEffect(() => {\n if (open && isExternalContracting) {\n handleClose();\n redirectToExternal('contracting');\n }\n }, [open, isExternalContracting, handleClose, redirectToExternal]);\n\n if (isExternalContracting) return null;\n\n const isPlanManagement = !isReactivation && !isDowngrade && !targetPlan;\n\n const renderStep = () => {\n if (isReactivation) {\n if (currentStep === 1) return <ReactivationConfigStep />;\n if (currentStep === 2) return <ReactivationPaymentStep />;\n return null;\n }\n\n if (targetPlan) {\n if (currentStep === 1) return <PlanComparisonStep />;\n if (currentStep === 2) return <PaymentSummaryStep />;\n return null;\n }\n\n if (currentStep === 1) return <PlanViewStep />;\n if (currentStep === 2) return <PaymentSummaryStep />;\n return null;\n };\n\n return (\n <ChangePlanProvider value={state}>\n <Sheet open={open} onOpenChange={(nextOpen) => !nextOpen && handleClose()}>\n <SheetContent\n side={isMobile ? 'bottom' : 'right'}\n className={cn(\n 'flex flex-col gap-0 p-0',\n isMobile\n ? 'h-dvh w-full max-w-full rounded-none pt-[env(safe-area-inset-top)] pb-[env(safe-area-inset-bottom)]'\n : 'w-120! sm:max-w-120!'\n )}\n >\n <SheetHeader className=\"px-4 sm:px-5 py-3 border-b border-zinc-200\">\n <SheetTitle className=\"paragraph-medium-semibold text-zinc-950\">\n {isPlanManagement ? translate('titleManagement') : translate('titleChange')}\n </SheetTitle>\n </SheetHeader>\n\n <div className=\"h-1 bg-zinc-100 w-full\">\n <div\n className=\"h-full transition-all duration-300 ease-in-out bg-primary\"\n style={{ width: currentStep === 1 ? '50%' : '100%' }}\n />\n </div>\n\n <form onSubmit={form.handleSubmit(handleSubmit)} className=\"flex flex-col flex-1 min-h-0\">\n {renderStep()}\n </form>\n </SheetContent>\n </Sheet>\n\n <AbTestDetailsDialog />\n <CouponDialog />\n </ChangePlanProvider>\n );\n}\n"],"mappings":";AA2CoC,cAmB5B,YAnB4B;AAzCpC,SAAS,iBAAiB;AAC1B,SAAS,uBAAuB;AAChC,SAAS,OAAO,cAAc,aAAa,kBAAkB;AAC7D,SAAS,8BAA8B;AACvC,OAAO,iBAAiB;AACxB,SAAS,UAAU;AACnB,SAAS,2BAA2B;AACpC,SAAS,oBAAoB;AAC7B,SAAS,0BAA0B;AACnC,SAAS,0BAA0B;AACnC,SAAS,oBAAoB;AAC7B,SAAS,8BAA8B;AACvC,SAAS,+BAA+B;AACxC,SAAS,oBAAoB,0BAA0B;AAMhD,SAAS,kBAAkB;AAChC,QAAM,YAAY,gBAAgB,kDAAkD;AACpF,QAAM,WAAW,YAAY;AAC7B,QAAM,QAAQ,mBAAmB;AACjC,QAAM,EAAE,uBAAuB,mBAAmB,IAAI,uBAAuB;AAE7E,QAAM,EAAE,MAAM,gBAAgB,aAAa,YAAY,aAAa,aAAa,MAAM,aAAa,IAClG;AAEF,YAAU,MAAM;AACd,QAAI,QAAQ,uBAAuB;AACjC,kBAAY;AACZ,yBAAmB,aAAa;AAAA,IAClC;AAAA,EACF,GAAG,CAAC,MAAM,uBAAuB,aAAa,kBAAkB,CAAC;AAEjE,MAAI,sBAAuB,QAAO;AAElC,QAAM,mBAAmB,CAAC,kBAAkB,CAAC,eAAe,CAAC;AAE7D,QAAM,aAAa,MAAM;AACvB,QAAI,gBAAgB;AAClB,UAAI,gBAAgB,EAAG,QAAO,oBAAC,0BAAuB;AACtD,UAAI,gBAAgB,EAAG,QAAO,oBAAC,2BAAwB;AACvD,aAAO;AAAA,IACT;AAEA,QAAI,YAAY;AACd,UAAI,gBAAgB,EAAG,QAAO,oBAAC,sBAAmB;AAClD,UAAI,gBAAgB,EAAG,QAAO,oBAAC,sBAAmB;AAClD,aAAO;AAAA,IACT;AAEA,QAAI,gBAAgB,EAAG,QAAO,oBAAC,gBAAa;AAC5C,QAAI,gBAAgB,EAAG,QAAO,oBAAC,sBAAmB;AAClD,WAAO;AAAA,EACT;AAEA,SACE,qBAAC,sBAAmB,OAAO,OACzB;AAAA,wBAAC,SAAM,MAAY,cAAc,CAAC,aAAa,CAAC,YAAY,YAAY,GACtE;AAAA,MAAC;AAAA;AAAA,QACC,MAAM,WAAW,WAAW;AAAA,QAC5B,WAAW;AAAA,UACT;AAAA,UACA,WACI,wGACA;AAAA,QACN;AAAA,QAEA;AAAA,8BAAC,eAAY,WAAU,8CACrB,8BAAC,cAAW,WAAU,2CACnB,6BAAmB,UAAU,iBAAiB,IAAI,UAAU,aAAa,GAC5E,GACF;AAAA,UAEA,oBAAC,SAAI,WAAU,0BACb;AAAA,YAAC;AAAA;AAAA,cACC,WAAU;AAAA,cACV,OAAO,EAAE,OAAO,gBAAgB,IAAI,QAAQ,OAAO;AAAA;AAAA,UACrD,GACF;AAAA,UAEA,oBAAC,UAAK,UAAU,KAAK,aAAa,YAAY,GAAG,WAAU,gCACxD,qBAAW,GACd;AAAA;AAAA;AAAA,IACF,GACF;AAAA,IAEA,oBAAC,uBAAoB;AAAA,IACrB,oBAAC,gBAAa;AAAA,KAChB;AAEJ;","names":[]}
|
package/dist/components/account/sections/subscription/change-plan/components/AbTestDetailsDialog.mjs
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { IconExternalLink, IconX } from "@tabler/icons-react";
|
|
4
|
+
import { useTranslations } from "next-intl";
|
|
5
|
+
import { Dialog, DialogContent, DialogTitle } from "../../../../../ui/overlay/Dialog";
|
|
6
|
+
import { ADDON_IDS, getAddonLabels } from "../../../../../../modules/subscriptions/constants/addons.constants";
|
|
7
|
+
import { useChangePlan } from "../useChangePlanState";
|
|
8
|
+
function AbTestDetailsDialog() {
|
|
9
|
+
const translate = useTranslations();
|
|
10
|
+
const translateDialog = useTranslations("common.account.workspace.subscription.changePlan");
|
|
11
|
+
const { abTestDetailsOpen, setAbTestDetailsOpen } = useChangePlan();
|
|
12
|
+
const abTestAddon = getAddonLabels(translate)[ADDON_IDS.AB_TEST];
|
|
13
|
+
return /* @__PURE__ */ jsx(Dialog, { open: abTestDetailsOpen, onOpenChange: setAbTestDetailsOpen, children: /* @__PURE__ */ jsxs(
|
|
14
|
+
DialogContent,
|
|
15
|
+
{
|
|
16
|
+
showCloseButton: false,
|
|
17
|
+
className: "p-0 w-[calc(100%-32px)] max-w-109 overflow-hidden flex flex-col gap-0",
|
|
18
|
+
children: [
|
|
19
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-center px-4 py-3 h-14 md:h-16 relative", children: [
|
|
20
|
+
/* @__PURE__ */ jsx(
|
|
21
|
+
"button",
|
|
22
|
+
{
|
|
23
|
+
type: "button",
|
|
24
|
+
onClick: () => setAbTestDetailsOpen(false),
|
|
25
|
+
"aria-label": translate("common.actions.close"),
|
|
26
|
+
className: "absolute right-3 md:right-4 size-8 flex items-center justify-center rounded-lg cursor-pointer hover:bg-zinc-100 transition-colors",
|
|
27
|
+
children: /* @__PURE__ */ jsx(IconX, { size: 18, className: "text-zinc-400" })
|
|
28
|
+
}
|
|
29
|
+
),
|
|
30
|
+
/* @__PURE__ */ jsx(DialogTitle, { className: "paragraph-medium-semibold text-zinc-950 text-center", children: abTestAddon.name })
|
|
31
|
+
] }),
|
|
32
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center gap-5 px-4 md:px-5 pt-2 pb-4 md:pb-5", children: [
|
|
33
|
+
abTestAddon.description && /* @__PURE__ */ jsx("p", { className: "paragraph-small-regular text-zinc-500 text-center", children: abTestAddon.description }),
|
|
34
|
+
abTestAddon.detailsUrl && /* @__PURE__ */ jsxs(
|
|
35
|
+
"a",
|
|
36
|
+
{
|
|
37
|
+
href: abTestAddon.detailsUrl,
|
|
38
|
+
className: "flex items-center gap-1.5 paragraph-small-semibold text-zinc-950 hover:underline",
|
|
39
|
+
target: "_blank",
|
|
40
|
+
rel: "noopener noreferrer",
|
|
41
|
+
children: [
|
|
42
|
+
translateDialog("abTestDialog.learnMore"),
|
|
43
|
+
/* @__PURE__ */ jsx(IconExternalLink, { size: 20, className: "text-zinc-950" })
|
|
44
|
+
]
|
|
45
|
+
}
|
|
46
|
+
)
|
|
47
|
+
] })
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
) });
|
|
51
|
+
}
|
|
52
|
+
export {
|
|
53
|
+
AbTestDetailsDialog
|
|
54
|
+
};
|
|
55
|
+
//# sourceMappingURL=AbTestDetailsDialog.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../src/components/account/sections/subscription/change-plan/components/AbTestDetailsDialog.tsx"],"sourcesContent":["'use client';\n\nimport { IconExternalLink, IconX } from '@tabler/icons-react';\nimport { useTranslations } from 'next-intl';\nimport { Dialog, DialogContent, DialogTitle } from '../../../../../ui/overlay/Dialog';\nimport { ADDON_IDS, getAddonLabels } from '../../../../../../modules/subscriptions/constants/addons.constants';\nimport { useChangePlan } from '../useChangePlanState';\n\n/** O que é o Teste A/B, aberto pelo \"Ver detalhes\" do adicional. */\nexport function AbTestDetailsDialog() {\n const translate = useTranslations();\n const translateDialog = useTranslations('common.account.workspace.subscription.changePlan');\n const { abTestDetailsOpen, setAbTestDetailsOpen } = useChangePlan();\n const abTestAddon = getAddonLabels(translate)[ADDON_IDS.AB_TEST];\n\n return (\n <Dialog open={abTestDetailsOpen} onOpenChange={setAbTestDetailsOpen}>\n <DialogContent\n showCloseButton={false}\n className=\"p-0 w-[calc(100%-32px)] max-w-109 overflow-hidden flex flex-col gap-0\"\n >\n <div className=\"flex items-center justify-center px-4 py-3 h-14 md:h-16 relative\">\n <button\n type=\"button\"\n onClick={() => setAbTestDetailsOpen(false)}\n aria-label={translate('common.actions.close')}\n className=\"absolute right-3 md:right-4 size-8 flex items-center justify-center rounded-lg cursor-pointer hover:bg-zinc-100 transition-colors\"\n >\n <IconX size={18} className=\"text-zinc-400\" />\n </button>\n <DialogTitle className=\"paragraph-medium-semibold text-zinc-950 text-center\">\n {abTestAddon.name}\n </DialogTitle>\n </div>\n\n <div className=\"flex flex-col items-center gap-5 px-4 md:px-5 pt-2 pb-4 md:pb-5\">\n {abTestAddon.description && (\n <p className=\"paragraph-small-regular text-zinc-500 text-center\">\n {abTestAddon.description}\n </p>\n )}\n {abTestAddon.detailsUrl && (\n <a\n href={abTestAddon.detailsUrl}\n className=\"flex items-center gap-1.5 paragraph-small-semibold text-zinc-950 hover:underline\"\n target=\"_blank\"\n rel=\"noopener noreferrer\"\n >\n {translateDialog('abTestDialog.learnMore')}\n <IconExternalLink size={20} className=\"text-zinc-950\" />\n </a>\n )}\n </div>\n </DialogContent>\n </Dialog>\n );\n}\n"],"mappings":";AAqBQ,SAOI,KAPJ;AAnBR,SAAS,kBAAkB,aAAa;AACxC,SAAS,uBAAuB;AAChC,SAAS,QAAQ,eAAe,mBAAmB;AACnD,SAAS,WAAW,sBAAsB;AAC1C,SAAS,qBAAqB;AAGvB,SAAS,sBAAsB;AACpC,QAAM,YAAY,gBAAgB;AAClC,QAAM,kBAAkB,gBAAgB,kDAAkD;AAC1F,QAAM,EAAE,mBAAmB,qBAAqB,IAAI,cAAc;AAClE,QAAM,cAAc,eAAe,SAAS,EAAE,UAAU,OAAO;AAE/D,SACE,oBAAC,UAAO,MAAM,mBAAmB,cAAc,sBAC7C;AAAA,IAAC;AAAA;AAAA,MACC,iBAAiB;AAAA,MACjB,WAAU;AAAA,MAEV;AAAA,6BAAC,SAAI,WAAU,oEACb;AAAA;AAAA,YAAC;AAAA;AAAA,cACC,MAAK;AAAA,cACL,SAAS,MAAM,qBAAqB,KAAK;AAAA,cACzC,cAAY,UAAU,sBAAsB;AAAA,cAC5C,WAAU;AAAA,cAEV,8BAAC,SAAM,MAAM,IAAI,WAAU,iBAAgB;AAAA;AAAA,UAC7C;AAAA,UACA,oBAAC,eAAY,WAAU,uDACpB,sBAAY,MACf;AAAA,WACF;AAAA,QAEA,qBAAC,SAAI,WAAU,mEACZ;AAAA,sBAAY,eACX,oBAAC,OAAE,WAAU,qDACV,sBAAY,aACf;AAAA,UAED,YAAY,cACX;AAAA,YAAC;AAAA;AAAA,cACC,MAAM,YAAY;AAAA,cAClB,WAAU;AAAA,cACV,QAAO;AAAA,cACP,KAAI;AAAA,cAEH;AAAA,gCAAgB,wBAAwB;AAAA,gBACzC,oBAAC,oBAAiB,MAAM,IAAI,WAAU,iBAAgB;AAAA;AAAA;AAAA,UACxD;AAAA,WAEJ;AAAA;AAAA;AAAA,EACF,GACF;AAEJ;","names":[]}
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { IconAtom, IconMinus, IconPlus, IconWorld } from "@tabler/icons-react";
|
|
4
|
+
import { useTranslations } from "next-intl";
|
|
5
|
+
import { Skeleton } from "../../../../../ui/feedback/Skeleton";
|
|
6
|
+
import { Select, SelectContent, SelectItem, SelectTrigger } from "../../../../../ui/form/Select";
|
|
7
|
+
import { Switch } from "../../../../../ui/form/Switch";
|
|
8
|
+
import { useCurrencyFormatter } from "../../../../../../modules/accounts/hooks/use-currency-formatter.hook";
|
|
9
|
+
import { useIsDefaultWhitelabel } from "../../../../../../providers/whitelabel.provider";
|
|
10
|
+
import { cn } from "../../../../../../infra/utils/clsx";
|
|
11
|
+
import { IconBox } from "../../../shared/IconBox";
|
|
12
|
+
import { useChangePlan } from "../useChangePlanState";
|
|
13
|
+
import { AlternativeBucketsSection } from "./AlternativeBucketsSection";
|
|
14
|
+
function AddonsBlock() {
|
|
15
|
+
const translate = useTranslations("common.account.workspace.subscription.changePlan");
|
|
16
|
+
const { formatCurrencyNumber } = useCurrencyFormatter();
|
|
17
|
+
const isDefaultWhitelabel = useIsDefaultWhitelabel();
|
|
18
|
+
const {
|
|
19
|
+
selectedCreditIndex,
|
|
20
|
+
setSelectedCreditIndex,
|
|
21
|
+
selectedCredit,
|
|
22
|
+
aiCreditOptions,
|
|
23
|
+
domains,
|
|
24
|
+
planIncludedDomains,
|
|
25
|
+
isAtMin,
|
|
26
|
+
domainsCountLoading,
|
|
27
|
+
hasDomainsAddon,
|
|
28
|
+
domainPriceMonthly,
|
|
29
|
+
handleDecreaseDomains,
|
|
30
|
+
handleIncreaseDomains,
|
|
31
|
+
handleDomainsChange,
|
|
32
|
+
alternativeBuckets,
|
|
33
|
+
hasAlternativeBuckets,
|
|
34
|
+
canDecreaseTotal,
|
|
35
|
+
handleAlternativeDecrease,
|
|
36
|
+
handleAlternativeIncrease,
|
|
37
|
+
minDomains,
|
|
38
|
+
abTestEnabled,
|
|
39
|
+
setAbTestEnabled,
|
|
40
|
+
hasAbTestAddon,
|
|
41
|
+
abTestIncludedInPlan,
|
|
42
|
+
abTestPriceMonthly,
|
|
43
|
+
periodMonths,
|
|
44
|
+
periodLabel,
|
|
45
|
+
setAbTestDetailsOpen
|
|
46
|
+
} = useChangePlan();
|
|
47
|
+
return /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-4", children: [
|
|
48
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-4", children: [
|
|
49
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-medium-semibold text-zinc-950", children: translate("addons.title") }),
|
|
50
|
+
isDefaultWhitelabel && /* @__PURE__ */ jsxs(
|
|
51
|
+
Select,
|
|
52
|
+
{
|
|
53
|
+
value: String(selectedCreditIndex),
|
|
54
|
+
onValueChange: (value) => setSelectedCreditIndex(Number(value)),
|
|
55
|
+
children: [
|
|
56
|
+
/* @__PURE__ */ jsxs(SelectTrigger, { className: "w-full h-12 bg-white border border-zinc-200 rounded-lg px-4 py-6 gap-2 shadow-none [&_svg]:text-zinc-950 [&_svg]:opacity-100 [&_svg]:size-5", children: [
|
|
57
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-small-medium text-zinc-950 flex-1 text-left", children: translate("addons.credits.option", {
|
|
58
|
+
credits: selectedCredit.credits.toLocaleString("pt-BR")
|
|
59
|
+
}) }),
|
|
60
|
+
/* @__PURE__ */ jsxs("span", { className: "paragraph-small-medium text-zinc-500", children: [
|
|
61
|
+
selectedCredit.price === 0 ? translate("addons.credits.priceDefault") : formatCurrencyNumber(selectedCredit.price * periodMonths),
|
|
62
|
+
selectedCredit.price > 0 && periodLabel
|
|
63
|
+
] })
|
|
64
|
+
] }),
|
|
65
|
+
/* @__PURE__ */ jsx(SelectContent, { side: "bottom", align: "start", children: aiCreditOptions.map((option, index) => /* @__PURE__ */ jsxs(
|
|
66
|
+
SelectItem,
|
|
67
|
+
{
|
|
68
|
+
value: String(index),
|
|
69
|
+
className: "[&>span:last-child]:flex [&>span:last-child]:w-full [&>span:last-child]:justify-between",
|
|
70
|
+
children: [
|
|
71
|
+
/* @__PURE__ */ jsx("span", { className: "flex-1", children: translate("addons.credits.option", {
|
|
72
|
+
credits: option.credits.toLocaleString("pt-BR")
|
|
73
|
+
}) }),
|
|
74
|
+
/* @__PURE__ */ jsx("span", { className: "text-zinc-500 shrink-0", children: option.price === 0 ? translate("addons.credits.priceDefault") : `${formatCurrencyNumber(option.price * periodMonths)}${periodLabel}` })
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
option.credits
|
|
78
|
+
)) })
|
|
79
|
+
]
|
|
80
|
+
}
|
|
81
|
+
)
|
|
82
|
+
] }),
|
|
83
|
+
/* @__PURE__ */ jsxs("div", { className: cn("flex flex-col bg-zinc-50 rounded-lg", !hasDomainsAddon && "opacity-50"), children: [
|
|
84
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3 p-4", children: [
|
|
85
|
+
/* @__PURE__ */ jsx(IconBox, { icon: IconWorld }),
|
|
86
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-0.5 flex-1", children: [
|
|
87
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-small-semibold text-zinc-950", children: translate("addons.domains.included", { count: String(planIncludedDomains) }) }),
|
|
88
|
+
domains > planIncludedDomains && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
89
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-small-semibold text-zinc-950", children: translate("addons.domains.extras", { count: String(domains - planIncludedDomains) }) }),
|
|
90
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-small-regular text-zinc-500", children: translate("addons.domains.extraPrice", {
|
|
91
|
+
price: formatCurrencyNumber(domainPriceMonthly * periodMonths),
|
|
92
|
+
period: periodMonths > 1 ? `${periodLabel} ` : " "
|
|
93
|
+
}) })
|
|
94
|
+
] })
|
|
95
|
+
] }),
|
|
96
|
+
hasDomainsAddon && (domainsCountLoading ? /* @__PURE__ */ jsx(Skeleton, { className: "h-10 w-24 rounded-xl" }) : /* @__PURE__ */ jsxs("div", { className: "flex items-center bg-white rounded-xl p-1 shadow-sm", children: [
|
|
97
|
+
/* @__PURE__ */ jsx(
|
|
98
|
+
"button",
|
|
99
|
+
{
|
|
100
|
+
type: "button",
|
|
101
|
+
onClick: handleDecreaseDomains,
|
|
102
|
+
disabled: isAtMin,
|
|
103
|
+
className: cn(
|
|
104
|
+
"size-8 flex items-center justify-center transition-colors rounded-lg",
|
|
105
|
+
isAtMin ? "opacity-30 cursor-not-allowed" : "cursor-pointer hover:bg-zinc-50"
|
|
106
|
+
),
|
|
107
|
+
children: /* @__PURE__ */ jsx(IconMinus, { className: "size-4.5 text-zinc-800" })
|
|
108
|
+
}
|
|
109
|
+
),
|
|
110
|
+
/* @__PURE__ */ jsx(
|
|
111
|
+
"input",
|
|
112
|
+
{
|
|
113
|
+
type: "number",
|
|
114
|
+
inputMode: "numeric",
|
|
115
|
+
min: minDomains,
|
|
116
|
+
value: domains,
|
|
117
|
+
onChange: handleDomainsChange,
|
|
118
|
+
className: "paragraph-small-semibold text-zinc-950 w-8 text-center bg-transparent outline-none [appearance:textfield] [&::-webkit-inner-spin-button]:appearance-none [&::-webkit-outer-spin-button]:appearance-none"
|
|
119
|
+
}
|
|
120
|
+
),
|
|
121
|
+
/* @__PURE__ */ jsx(
|
|
122
|
+
"button",
|
|
123
|
+
{
|
|
124
|
+
type: "button",
|
|
125
|
+
onClick: handleIncreaseDomains,
|
|
126
|
+
className: "size-8 flex items-center justify-center transition-colors rounded-lg cursor-pointer hover:bg-zinc-50",
|
|
127
|
+
children: /* @__PURE__ */ jsx(IconPlus, { className: "size-4.5 text-zinc-800" })
|
|
128
|
+
}
|
|
129
|
+
)
|
|
130
|
+
] }))
|
|
131
|
+
] }),
|
|
132
|
+
hasDomainsAddon && !domainsCountLoading && hasAlternativeBuckets && /* @__PURE__ */ jsx(
|
|
133
|
+
AlternativeBucketsSection,
|
|
134
|
+
{
|
|
135
|
+
buckets: alternativeBuckets,
|
|
136
|
+
periodMonths,
|
|
137
|
+
periodLabel,
|
|
138
|
+
canDecrease: canDecreaseTotal,
|
|
139
|
+
onDecrease: handleAlternativeDecrease,
|
|
140
|
+
onIncrease: handleAlternativeIncrease
|
|
141
|
+
}
|
|
142
|
+
)
|
|
143
|
+
] }),
|
|
144
|
+
/* @__PURE__ */ jsx("div", { className: "flex flex-col gap-2", children: /* @__PURE__ */ jsxs(
|
|
145
|
+
"div",
|
|
146
|
+
{
|
|
147
|
+
className: cn(
|
|
148
|
+
"flex flex-col gap-3 p-4 bg-zinc-50 rounded-lg",
|
|
149
|
+
!hasAbTestAddon && !abTestIncludedInPlan && "opacity-50"
|
|
150
|
+
),
|
|
151
|
+
children: [
|
|
152
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
|
|
153
|
+
/* @__PURE__ */ jsx(IconBox, { icon: IconAtom }),
|
|
154
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-0.5 flex-1", children: [
|
|
155
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-small-semibold text-zinc-950", children: translate("addons.abTest.name") }),
|
|
156
|
+
abTestIncludedInPlan ? /* @__PURE__ */ jsx("span", { className: "paragraph-small-regular text-zinc-500", children: translate("addons.abTest.includedInPlan") }) : abTestPriceMonthly > 0 && /* @__PURE__ */ jsxs("span", { className: "paragraph-small-regular text-zinc-500", children: [
|
|
157
|
+
formatCurrencyNumber(abTestPriceMonthly * periodMonths),
|
|
158
|
+
periodMonths > 1 && periodLabel
|
|
159
|
+
] })
|
|
160
|
+
] }),
|
|
161
|
+
/* @__PURE__ */ jsx(
|
|
162
|
+
Switch,
|
|
163
|
+
{
|
|
164
|
+
checked: abTestIncludedInPlan || hasAbTestAddon && abTestEnabled,
|
|
165
|
+
onCheckedChange: setAbTestEnabled,
|
|
166
|
+
disabled: abTestIncludedInPlan || !hasAbTestAddon,
|
|
167
|
+
className: "data-[state=checked]:bg-zinc-950"
|
|
168
|
+
}
|
|
169
|
+
)
|
|
170
|
+
] }),
|
|
171
|
+
hasAbTestAddon && /* @__PURE__ */ jsx(
|
|
172
|
+
"button",
|
|
173
|
+
{
|
|
174
|
+
type: "button",
|
|
175
|
+
onClick: () => setAbTestDetailsOpen(true),
|
|
176
|
+
className: "paragraph-small-semibold text-zinc-950 underline text-left cursor-pointer",
|
|
177
|
+
children: translate("addons.abTest.details")
|
|
178
|
+
}
|
|
179
|
+
)
|
|
180
|
+
]
|
|
181
|
+
}
|
|
182
|
+
) })
|
|
183
|
+
] });
|
|
184
|
+
}
|
|
185
|
+
export {
|
|
186
|
+
AddonsBlock
|
|
187
|
+
};
|
|
188
|
+
//# sourceMappingURL=AddonsBlock.mjs.map
|
package/dist/components/account/sections/subscription/change-plan/components/AddonsBlock.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../src/components/account/sections/subscription/change-plan/components/AddonsBlock.tsx"],"sourcesContent":["'use client';\n\nimport { IconAtom, IconMinus, IconPlus, IconWorld } from '@tabler/icons-react';\nimport { useTranslations } from 'next-intl';\nimport { Skeleton } from '../../../../../ui/feedback/Skeleton';\nimport { Select, SelectContent, SelectItem, SelectTrigger } from '../../../../../ui/form/Select';\nimport { Switch } from '../../../../../ui/form/Switch';\nimport { useCurrencyFormatter } from '../../../../../../modules/accounts/hooks/use-currency-formatter.hook';\nimport { useIsDefaultWhitelabel } from '../../../../../../providers/whitelabel.provider';\nimport { cn } from '../../../../../../infra/utils/clsx';\nimport { IconBox } from '../../../shared/IconBox';\nimport { useChangePlan } from '../useChangePlanState';\nimport { AlternativeBucketsSection } from './AlternativeBucketsSection';\n\n/** Créditos de IA, domínios extras e Teste A/B — os adicionais editáveis do plano. */\nexport function AddonsBlock() {\n const translate = useTranslations('common.account.workspace.subscription.changePlan');\n const { formatCurrencyNumber } = useCurrencyFormatter();\n const isDefaultWhitelabel = useIsDefaultWhitelabel();\n\n const {\n selectedCreditIndex,\n setSelectedCreditIndex,\n selectedCredit,\n aiCreditOptions,\n domains,\n planIncludedDomains,\n isAtMin,\n domainsCountLoading,\n hasDomainsAddon,\n domainPriceMonthly,\n handleDecreaseDomains,\n handleIncreaseDomains,\n handleDomainsChange,\n alternativeBuckets,\n hasAlternativeBuckets,\n canDecreaseTotal,\n handleAlternativeDecrease,\n handleAlternativeIncrease,\n minDomains,\n abTestEnabled,\n setAbTestEnabled,\n hasAbTestAddon,\n abTestIncludedInPlan,\n abTestPriceMonthly,\n periodMonths,\n periodLabel,\n setAbTestDetailsOpen,\n } = useChangePlan();\n\n return (\n <div className=\"flex flex-col gap-4\">\n <div className=\"flex flex-col gap-4\">\n <span className=\"paragraph-medium-semibold text-zinc-950\">{translate('addons.title')}</span>\n\n {isDefaultWhitelabel && (\n <Select\n value={String(selectedCreditIndex)}\n onValueChange={(value) => setSelectedCreditIndex(Number(value))}\n >\n <SelectTrigger className=\"w-full h-12 bg-white border border-zinc-200 rounded-lg px-4 py-6 gap-2 shadow-none [&_svg]:text-zinc-950 [&_svg]:opacity-100 [&_svg]:size-5\">\n <span className=\"paragraph-small-medium text-zinc-950 flex-1 text-left\">\n {translate('addons.credits.option', {\n credits: selectedCredit.credits.toLocaleString('pt-BR'),\n })}\n </span>\n <span className=\"paragraph-small-medium text-zinc-500\">\n {selectedCredit.price === 0\n ? translate('addons.credits.priceDefault')\n : formatCurrencyNumber(selectedCredit.price * periodMonths)}\n {selectedCredit.price > 0 && periodLabel}\n </span>\n </SelectTrigger>\n <SelectContent side=\"bottom\" align=\"start\">\n {aiCreditOptions.map((option, index) => (\n <SelectItem\n key={option.credits}\n value={String(index)}\n className=\"[&>span:last-child]:flex [&>span:last-child]:w-full [&>span:last-child]:justify-between\"\n >\n <span className=\"flex-1\">\n {translate('addons.credits.option', {\n credits: option.credits.toLocaleString('pt-BR'),\n })}\n </span>\n <span className=\"text-zinc-500 shrink-0\">\n {option.price === 0\n ? translate('addons.credits.priceDefault')\n : `${formatCurrencyNumber(option.price * periodMonths)}${periodLabel}`}\n </span>\n </SelectItem>\n ))}\n </SelectContent>\n </Select>\n )}\n </div>\n\n <div className={cn('flex flex-col bg-zinc-50 rounded-lg', !hasDomainsAddon && 'opacity-50')}>\n <div className=\"flex items-center gap-3 p-4\">\n <IconBox icon={IconWorld} />\n <div className=\"flex flex-col gap-0.5 flex-1\">\n <span className=\"paragraph-small-semibold text-zinc-950\">\n {translate('addons.domains.included', { count: String(planIncludedDomains) })}\n </span>\n {domains > planIncludedDomains && (\n <>\n <span className=\"paragraph-small-semibold text-zinc-950\">\n {translate('addons.domains.extras', { count: String(domains - planIncludedDomains) })}\n </span>\n <span className=\"paragraph-small-regular text-zinc-500\">\n {translate('addons.domains.extraPrice', {\n price: formatCurrencyNumber(domainPriceMonthly * periodMonths),\n period: periodMonths > 1 ? `${periodLabel} ` : ' ',\n })}\n </span>\n </>\n )}\n </div>\n\n {hasDomainsAddon &&\n (domainsCountLoading ? (\n <Skeleton className=\"h-10 w-24 rounded-xl\" />\n ) : (\n <div className=\"flex items-center bg-white rounded-xl p-1 shadow-sm\">\n <button\n type=\"button\"\n onClick={handleDecreaseDomains}\n disabled={isAtMin}\n className={cn(\n 'size-8 flex items-center justify-center transition-colors rounded-lg',\n isAtMin ? 'opacity-30 cursor-not-allowed' : 'cursor-pointer hover:bg-zinc-50'\n )}\n >\n <IconMinus className=\"size-4.5 text-zinc-800\" />\n </button>\n <input\n type=\"number\"\n inputMode=\"numeric\"\n min={minDomains}\n value={domains}\n onChange={handleDomainsChange}\n className=\"paragraph-small-semibold text-zinc-950 w-8 text-center bg-transparent outline-none [appearance:textfield] [&::-webkit-inner-spin-button]:appearance-none [&::-webkit-outer-spin-button]:appearance-none\"\n />\n <button\n type=\"button\"\n onClick={handleIncreaseDomains}\n className=\"size-8 flex items-center justify-center transition-colors rounded-lg cursor-pointer hover:bg-zinc-50\"\n >\n <IconPlus className=\"size-4.5 text-zinc-800\" />\n </button>\n </div>\n ))}\n </div>\n\n {hasDomainsAddon && !domainsCountLoading && hasAlternativeBuckets && (\n <AlternativeBucketsSection\n buckets={alternativeBuckets}\n periodMonths={periodMonths}\n periodLabel={periodLabel}\n canDecrease={canDecreaseTotal}\n onDecrease={handleAlternativeDecrease}\n onIncrease={handleAlternativeIncrease}\n />\n )}\n </div>\n\n <div className=\"flex flex-col gap-2\">\n <div\n className={cn(\n 'flex flex-col gap-3 p-4 bg-zinc-50 rounded-lg',\n !hasAbTestAddon && !abTestIncludedInPlan && 'opacity-50'\n )}\n >\n <div className=\"flex items-center gap-3\">\n <IconBox icon={IconAtom} />\n <div className=\"flex flex-col gap-0.5 flex-1\">\n <span className=\"paragraph-small-semibold text-zinc-950\">\n {translate('addons.abTest.name')}\n </span>\n {abTestIncludedInPlan ? (\n <span className=\"paragraph-small-regular text-zinc-500\">\n {translate('addons.abTest.includedInPlan')}\n </span>\n ) : (\n abTestPriceMonthly > 0 && (\n <span className=\"paragraph-small-regular text-zinc-500\">\n {formatCurrencyNumber(abTestPriceMonthly * periodMonths)}\n {periodMonths > 1 && periodLabel}\n </span>\n )\n )}\n </div>\n <Switch\n checked={abTestIncludedInPlan || (hasAbTestAddon && abTestEnabled)}\n onCheckedChange={setAbTestEnabled}\n disabled={abTestIncludedInPlan || !hasAbTestAddon}\n className=\"data-[state=checked]:bg-zinc-950\"\n />\n </div>\n\n {hasAbTestAddon && (\n <button\n type=\"button\"\n onClick={() => setAbTestDetailsOpen(true)}\n className=\"paragraph-small-semibold text-zinc-950 underline text-left cursor-pointer\"\n >\n {translate('addons.abTest.details')}\n </button>\n )}\n </div>\n </div>\n </div>\n );\n}\n"],"mappings":";AAqDQ,SAoDM,UApDN,KAaM,YAbN;AAnDR,SAAS,UAAU,WAAW,UAAU,iBAAiB;AACzD,SAAS,uBAAuB;AAChC,SAAS,gBAAgB;AACzB,SAAS,QAAQ,eAAe,YAAY,qBAAqB;AACjE,SAAS,cAAc;AACvB,SAAS,4BAA4B;AACrC,SAAS,8BAA8B;AACvC,SAAS,UAAU;AACnB,SAAS,eAAe;AACxB,SAAS,qBAAqB;AAC9B,SAAS,iCAAiC;AAGnC,SAAS,cAAc;AAC5B,QAAM,YAAY,gBAAgB,kDAAkD;AACpF,QAAM,EAAE,qBAAqB,IAAI,qBAAqB;AACtD,QAAM,sBAAsB,uBAAuB;AAEnD,QAAM;AAAA,IACJ;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,IAAI,cAAc;AAElB,SACE,qBAAC,SAAI,WAAU,uBACb;AAAA,yBAAC,SAAI,WAAU,uBACb;AAAA,0BAAC,UAAK,WAAU,2CAA2C,oBAAU,cAAc,GAAE;AAAA,MAEpF,uBACC;AAAA,QAAC;AAAA;AAAA,UACC,OAAO,OAAO,mBAAmB;AAAA,UACjC,eAAe,CAAC,UAAU,uBAAuB,OAAO,KAAK,CAAC;AAAA,UAE9D;AAAA,iCAAC,iBAAc,WAAU,+IACvB;AAAA,kCAAC,UAAK,WAAU,yDACb,oBAAU,yBAAyB;AAAA,gBAClC,SAAS,eAAe,QAAQ,eAAe,OAAO;AAAA,cACxD,CAAC,GACH;AAAA,cACA,qBAAC,UAAK,WAAU,wCACb;AAAA,+BAAe,UAAU,IACtB,UAAU,6BAA6B,IACvC,qBAAqB,eAAe,QAAQ,YAAY;AAAA,gBAC3D,eAAe,QAAQ,KAAK;AAAA,iBAC/B;AAAA,eACF;AAAA,YACA,oBAAC,iBAAc,MAAK,UAAS,OAAM,SAChC,0BAAgB,IAAI,CAAC,QAAQ,UAC5B;AAAA,cAAC;AAAA;AAAA,gBAEC,OAAO,OAAO,KAAK;AAAA,gBACnB,WAAU;AAAA,gBAEV;AAAA,sCAAC,UAAK,WAAU,UACb,oBAAU,yBAAyB;AAAA,oBAClC,SAAS,OAAO,QAAQ,eAAe,OAAO;AAAA,kBAChD,CAAC,GACH;AAAA,kBACA,oBAAC,UAAK,WAAU,0BACb,iBAAO,UAAU,IACd,UAAU,6BAA6B,IACvC,GAAG,qBAAqB,OAAO,QAAQ,YAAY,CAAC,GAAG,WAAW,IACxE;AAAA;AAAA;AAAA,cAbK,OAAO;AAAA,YAcd,CACD,GACH;AAAA;AAAA;AAAA,MACF;AAAA,OAEJ;AAAA,IAEA,qBAAC,SAAI,WAAW,GAAG,uCAAuC,CAAC,mBAAmB,YAAY,GACxF;AAAA,2BAAC,SAAI,WAAU,+BACb;AAAA,4BAAC,WAAQ,MAAM,WAAW;AAAA,QAC1B,qBAAC,SAAI,WAAU,gCACb;AAAA,8BAAC,UAAK,WAAU,0CACb,oBAAU,2BAA2B,EAAE,OAAO,OAAO,mBAAmB,EAAE,CAAC,GAC9E;AAAA,UACC,UAAU,uBACT,iCACE;AAAA,gCAAC,UAAK,WAAU,0CACb,oBAAU,yBAAyB,EAAE,OAAO,OAAO,UAAU,mBAAmB,EAAE,CAAC,GACtF;AAAA,YACA,oBAAC,UAAK,WAAU,yCACb,oBAAU,6BAA6B;AAAA,cACtC,OAAO,qBAAqB,qBAAqB,YAAY;AAAA,cAC7D,QAAQ,eAAe,IAAI,GAAG,WAAW,MAAM;AAAA,YACjD,CAAC,GACH;AAAA,aACF;AAAA,WAEJ;AAAA,QAEC,oBACE,sBACC,oBAAC,YAAS,WAAU,wBAAuB,IAE3C,qBAAC,SAAI,WAAU,uDACb;AAAA;AAAA,YAAC;AAAA;AAAA,cACC,MAAK;AAAA,cACL,SAAS;AAAA,cACT,UAAU;AAAA,cACV,WAAW;AAAA,gBACT;AAAA,gBACA,UAAU,kCAAkC;AAAA,cAC9C;AAAA,cAEA,8BAAC,aAAU,WAAU,0BAAyB;AAAA;AAAA,UAChD;AAAA,UACA;AAAA,YAAC;AAAA;AAAA,cACC,MAAK;AAAA,cACL,WAAU;AAAA,cACV,KAAK;AAAA,cACL,OAAO;AAAA,cACP,UAAU;AAAA,cACV,WAAU;AAAA;AAAA,UACZ;AAAA,UACA;AAAA,YAAC;AAAA;AAAA,cACC,MAAK;AAAA,cACL,SAAS;AAAA,cACT,WAAU;AAAA,cAEV,8BAAC,YAAS,WAAU,0BAAyB;AAAA;AAAA,UAC/C;AAAA,WACF;AAAA,SAEN;AAAA,MAEC,mBAAmB,CAAC,uBAAuB,yBAC1C;AAAA,QAAC;AAAA;AAAA,UACC,SAAS;AAAA,UACT;AAAA,UACA;AAAA,UACA,aAAa;AAAA,UACb,YAAY;AAAA,UACZ,YAAY;AAAA;AAAA,MACd;AAAA,OAEJ;AAAA,IAEA,oBAAC,SAAI,WAAU,uBACb;AAAA,MAAC;AAAA;AAAA,QACC,WAAW;AAAA,UACT;AAAA,UACA,CAAC,kBAAkB,CAAC,wBAAwB;AAAA,QAC9C;AAAA,QAEA;AAAA,+BAAC,SAAI,WAAU,2BACb;AAAA,gCAAC,WAAQ,MAAM,UAAU;AAAA,YACzB,qBAAC,SAAI,WAAU,gCACb;AAAA,kCAAC,UAAK,WAAU,0CACb,oBAAU,oBAAoB,GACjC;AAAA,cACC,uBACC,oBAAC,UAAK,WAAU,yCACb,oBAAU,8BAA8B,GAC3C,IAEA,qBAAqB,KACnB,qBAAC,UAAK,WAAU,yCACb;AAAA,qCAAqB,qBAAqB,YAAY;AAAA,gBACtD,eAAe,KAAK;AAAA,iBACvB;AAAA,eAGN;AAAA,YACA;AAAA,cAAC;AAAA;AAAA,gBACC,SAAS,wBAAyB,kBAAkB;AAAA,gBACpD,iBAAiB;AAAA,gBACjB,UAAU,wBAAwB,CAAC;AAAA,gBACnC,WAAU;AAAA;AAAA,YACZ;AAAA,aACF;AAAA,UAEC,kBACC;AAAA,YAAC;AAAA;AAAA,cACC,MAAK;AAAA,cACL,SAAS,MAAM,qBAAqB,IAAI;AAAA,cACxC,WAAU;AAAA,cAET,oBAAU,uBAAuB;AAAA;AAAA,UACpC;AAAA;AAAA;AAAA,IAEJ,GACF;AAAA,KACF;AAEJ;","names":[]}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { IconMinus, IconPlus } from "@tabler/icons-react";
|
|
4
|
+
import { useTranslations } from "next-intl";
|
|
5
|
+
import { useCurrencyFormatter } from "../../../../../../modules/accounts/hooks/use-currency-formatter.hook";
|
|
6
|
+
import { cn } from "../../../../../../infra/utils/clsx";
|
|
7
|
+
function AlternativeBucketsSection({
|
|
8
|
+
buckets,
|
|
9
|
+
periodMonths,
|
|
10
|
+
periodLabel,
|
|
11
|
+
canDecrease,
|
|
12
|
+
onDecrease,
|
|
13
|
+
onIncrease
|
|
14
|
+
}) {
|
|
15
|
+
const translate = useTranslations("common.account.workspace.subscription.changePlan");
|
|
16
|
+
const { formatCurrencyNumber } = useCurrencyFormatter();
|
|
17
|
+
if (buckets.length === 0) return null;
|
|
18
|
+
return /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-2 bg-zinc-100 rounded-b-lg px-4 py-3 max-h-50 overflow-y-auto [scrollbar-width:auto] [&::-webkit-scrollbar]:w-1.5 [&::-webkit-scrollbar-track]:bg-transparent [&::-webkit-scrollbar-thumb]:rounded-full [&::-webkit-scrollbar-thumb]:bg-zinc-300", children: [
|
|
19
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-xsmall-medium text-zinc-500", children: translate("alternativeBuckets.sectionTitle") }),
|
|
20
|
+
buckets.map((bucket) => {
|
|
21
|
+
const isAtMin = bucket.quantity <= 0 || !canDecrease;
|
|
22
|
+
const isAtMax = bucket.quantity >= bucket.originalQuantity;
|
|
23
|
+
const priceLabel = periodMonths > 1 ? `${formatCurrencyNumber(bucket.value * periodMonths)}${periodLabel}` : formatCurrencyNumber(bucket.value);
|
|
24
|
+
return /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3 py-2", children: [
|
|
25
|
+
/* @__PURE__ */ jsx("div", { className: "flex flex-col flex-1", children: /* @__PURE__ */ jsx("span", { className: "paragraph-small-medium text-zinc-950", children: translate("alternativeBuckets.bucketLabel", {
|
|
26
|
+
count: String(bucket.quantity),
|
|
27
|
+
domainLabel: bucket.quantity === 1 ? translate("alternativeBuckets.domainSingular") : translate("alternativeBuckets.domainPlural"),
|
|
28
|
+
price: priceLabel
|
|
29
|
+
}) }) }),
|
|
30
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center bg-white rounded-xl p-1 shadow-sm", children: [
|
|
31
|
+
/* @__PURE__ */ jsx(
|
|
32
|
+
"button",
|
|
33
|
+
{
|
|
34
|
+
type: "button",
|
|
35
|
+
onClick: () => onDecrease(bucket),
|
|
36
|
+
disabled: isAtMin,
|
|
37
|
+
className: cn(
|
|
38
|
+
"size-8 flex items-center justify-center transition-colors rounded-lg",
|
|
39
|
+
isAtMin ? "opacity-30 cursor-not-allowed" : "cursor-pointer hover:bg-zinc-50"
|
|
40
|
+
),
|
|
41
|
+
children: /* @__PURE__ */ jsx(IconMinus, { className: "size-4.5 text-zinc-800" })
|
|
42
|
+
}
|
|
43
|
+
),
|
|
44
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-small-semibold text-zinc-950 w-8 text-center", children: bucket.quantity }),
|
|
45
|
+
/* @__PURE__ */ jsx(
|
|
46
|
+
"button",
|
|
47
|
+
{
|
|
48
|
+
type: "button",
|
|
49
|
+
onClick: () => onIncrease(bucket),
|
|
50
|
+
disabled: isAtMax,
|
|
51
|
+
className: cn(
|
|
52
|
+
"size-8 flex items-center justify-center transition-colors rounded-lg",
|
|
53
|
+
isAtMax ? "opacity-30 cursor-not-allowed" : "cursor-pointer hover:bg-zinc-50"
|
|
54
|
+
),
|
|
55
|
+
children: /* @__PURE__ */ jsx(IconPlus, { className: "size-4.5 text-zinc-800" })
|
|
56
|
+
}
|
|
57
|
+
)
|
|
58
|
+
] })
|
|
59
|
+
] }, bucket.key);
|
|
60
|
+
})
|
|
61
|
+
] });
|
|
62
|
+
}
|
|
63
|
+
export {
|
|
64
|
+
AlternativeBucketsSection
|
|
65
|
+
};
|
|
66
|
+
//# sourceMappingURL=AlternativeBucketsSection.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../src/components/account/sections/subscription/change-plan/components/AlternativeBucketsSection.tsx"],"sourcesContent":["'use client';\n\nimport { IconMinus, IconPlus } from '@tabler/icons-react';\nimport { useTranslations } from 'next-intl';\nimport { useCurrencyFormatter } from '../../../../../../modules/accounts/hooks/use-currency-formatter.hook';\nimport type { AddonBucket } from '../../../../../../modules/subscriptions/utils/addon-buckets';\nimport { cn } from '../../../../../../infra/utils/clsx';\n\ntype AlternativeBucketsSectionProps = {\n buckets: AddonBucket[];\n periodMonths: number;\n periodLabel: string;\n canDecrease: boolean;\n onDecrease: (bucket: AddonBucket) => void;\n onIncrease: (bucket: AddonBucket) => void;\n};\n\n/** Domínios extras contratados em preços antigos (promoções), geridos separados do preço base. */\nexport function AlternativeBucketsSection({\n buckets,\n periodMonths,\n periodLabel,\n canDecrease,\n onDecrease,\n onIncrease,\n}: AlternativeBucketsSectionProps) {\n const translate = useTranslations('common.account.workspace.subscription.changePlan');\n const { formatCurrencyNumber } = useCurrencyFormatter();\n\n if (buckets.length === 0) return null;\n\n return (\n <div className=\"flex flex-col gap-2 bg-zinc-100 rounded-b-lg px-4 py-3 max-h-50 overflow-y-auto [scrollbar-width:auto] [&::-webkit-scrollbar]:w-1.5 [&::-webkit-scrollbar-track]:bg-transparent [&::-webkit-scrollbar-thumb]:rounded-full [&::-webkit-scrollbar-thumb]:bg-zinc-300\">\n <span className=\"paragraph-xsmall-medium text-zinc-500\">\n {translate('alternativeBuckets.sectionTitle')}\n </span>\n\n {buckets.map((bucket) => {\n const isAtMin = bucket.quantity <= 0 || !canDecrease;\n const isAtMax = bucket.quantity >= bucket.originalQuantity;\n const priceLabel =\n periodMonths > 1\n ? `${formatCurrencyNumber(bucket.value * periodMonths)}${periodLabel}`\n : formatCurrencyNumber(bucket.value);\n\n return (\n <div key={bucket.key} className=\"flex items-center gap-3 py-2\">\n <div className=\"flex flex-col flex-1\">\n <span className=\"paragraph-small-medium text-zinc-950\">\n {translate('alternativeBuckets.bucketLabel', {\n count: String(bucket.quantity),\n domainLabel:\n bucket.quantity === 1\n ? translate('alternativeBuckets.domainSingular')\n : translate('alternativeBuckets.domainPlural'),\n price: priceLabel,\n })}\n </span>\n </div>\n <div className=\"flex items-center bg-white rounded-xl p-1 shadow-sm\">\n <button\n type=\"button\"\n onClick={() => onDecrease(bucket)}\n disabled={isAtMin}\n className={cn(\n 'size-8 flex items-center justify-center transition-colors rounded-lg',\n isAtMin ? 'opacity-30 cursor-not-allowed' : 'cursor-pointer hover:bg-zinc-50'\n )}\n >\n <IconMinus className=\"size-4.5 text-zinc-800\" />\n </button>\n <span className=\"paragraph-small-semibold text-zinc-950 w-8 text-center\">\n {bucket.quantity}\n </span>\n <button\n type=\"button\"\n onClick={() => onIncrease(bucket)}\n disabled={isAtMax}\n className={cn(\n 'size-8 flex items-center justify-center transition-colors rounded-lg',\n isAtMax ? 'opacity-30 cursor-not-allowed' : 'cursor-pointer hover:bg-zinc-50'\n )}\n >\n <IconPlus className=\"size-4.5 text-zinc-800\" />\n </button>\n </div>\n </div>\n );\n })}\n </div>\n );\n}\n"],"mappings":";AAiCM,cA0BM,YA1BN;AA/BN,SAAS,WAAW,gBAAgB;AACpC,SAAS,uBAAuB;AAChC,SAAS,4BAA4B;AAErC,SAAS,UAAU;AAYZ,SAAS,0BAA0B;AAAA,EACxC;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,GAAmC;AACjC,QAAM,YAAY,gBAAgB,kDAAkD;AACpF,QAAM,EAAE,qBAAqB,IAAI,qBAAqB;AAEtD,MAAI,QAAQ,WAAW,EAAG,QAAO;AAEjC,SACE,qBAAC,SAAI,WAAU,sQACb;AAAA,wBAAC,UAAK,WAAU,yCACb,oBAAU,iCAAiC,GAC9C;AAAA,IAEC,QAAQ,IAAI,CAAC,WAAW;AACvB,YAAM,UAAU,OAAO,YAAY,KAAK,CAAC;AACzC,YAAM,UAAU,OAAO,YAAY,OAAO;AAC1C,YAAM,aACJ,eAAe,IACX,GAAG,qBAAqB,OAAO,QAAQ,YAAY,CAAC,GAAG,WAAW,KAClE,qBAAqB,OAAO,KAAK;AAEvC,aACE,qBAAC,SAAqB,WAAU,gCAC9B;AAAA,4BAAC,SAAI,WAAU,wBACb,8BAAC,UAAK,WAAU,wCACb,oBAAU,kCAAkC;AAAA,UAC3C,OAAO,OAAO,OAAO,QAAQ;AAAA,UAC7B,aACE,OAAO,aAAa,IAChB,UAAU,mCAAmC,IAC7C,UAAU,iCAAiC;AAAA,UACjD,OAAO;AAAA,QACT,CAAC,GACH,GACF;AAAA,QACA,qBAAC,SAAI,WAAU,uDACb;AAAA;AAAA,YAAC;AAAA;AAAA,cACC,MAAK;AAAA,cACL,SAAS,MAAM,WAAW,MAAM;AAAA,cAChC,UAAU;AAAA,cACV,WAAW;AAAA,gBACT;AAAA,gBACA,UAAU,kCAAkC;AAAA,cAC9C;AAAA,cAEA,8BAAC,aAAU,WAAU,0BAAyB;AAAA;AAAA,UAChD;AAAA,UACA,oBAAC,UAAK,WAAU,0DACb,iBAAO,UACV;AAAA,UACA;AAAA,YAAC;AAAA;AAAA,cACC,MAAK;AAAA,cACL,SAAS,MAAM,WAAW,MAAM;AAAA,cAChC,UAAU;AAAA,cACV,WAAW;AAAA,gBACT;AAAA,gBACA,UAAU,kCAAkC;AAAA,cAC9C;AAAA,cAEA,8BAAC,YAAS,WAAU,0BAAyB;AAAA;AAAA,UAC/C;AAAA,WACF;AAAA,WAvCQ,OAAO,GAwCjB;AAAA,IAEJ,CAAC;AAAA,KACH;AAEJ;","names":[]}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { IconTicket, IconX } from "@tabler/icons-react";
|
|
4
|
+
import { useTranslations } from "next-intl";
|
|
5
|
+
import { useChangePlan } from "../useChangePlanState";
|
|
6
|
+
function CouponBlock() {
|
|
7
|
+
const translate = useTranslations("common.account.workspace.subscription.changePlan");
|
|
8
|
+
const { appliedCouponCode, handleRemoveCoupon, handleOpenCouponDialog, hasPendingAuth } = useChangePlan();
|
|
9
|
+
if (appliedCouponCode) {
|
|
10
|
+
return /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsxs(
|
|
11
|
+
"button",
|
|
12
|
+
{
|
|
13
|
+
type: "button",
|
|
14
|
+
onClick: handleRemoveCoupon,
|
|
15
|
+
disabled: hasPendingAuth,
|
|
16
|
+
className: "flex items-center h-8 w-fit px-2 bg-zinc-100 rounded-lg cursor-pointer disabled:cursor-not-allowed disabled:opacity-40",
|
|
17
|
+
children: [
|
|
18
|
+
/* @__PURE__ */ jsx(IconTicket, { size: 18, className: "text-zinc-950" }),
|
|
19
|
+
/* @__PURE__ */ jsx("span", { className: "px-1.5 paragraph-small-semibold text-zinc-950", children: appliedCouponCode }),
|
|
20
|
+
/* @__PURE__ */ jsx(IconX, { className: "size-4.5 text-zinc-950" })
|
|
21
|
+
]
|
|
22
|
+
}
|
|
23
|
+
) });
|
|
24
|
+
}
|
|
25
|
+
return /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsxs(
|
|
26
|
+
"button",
|
|
27
|
+
{
|
|
28
|
+
type: "button",
|
|
29
|
+
onClick: handleOpenCouponDialog,
|
|
30
|
+
disabled: hasPendingAuth,
|
|
31
|
+
className: "flex items-center gap-2 h-8 px-2 w-fit paragraph-small-semibold text-zinc-950 cursor-pointer hover:bg-zinc-100 rounded-lg transition-colors disabled:cursor-not-allowed disabled:opacity-40 disabled:hover:bg-transparent",
|
|
32
|
+
children: [
|
|
33
|
+
/* @__PURE__ */ jsx(IconTicket, { size: 18, className: "text-zinc-950" }),
|
|
34
|
+
/* @__PURE__ */ jsx("span", { children: translate("coupon.addButton") })
|
|
35
|
+
]
|
|
36
|
+
}
|
|
37
|
+
) });
|
|
38
|
+
}
|
|
39
|
+
export {
|
|
40
|
+
CouponBlock
|
|
41
|
+
};
|
|
42
|
+
//# sourceMappingURL=CouponBlock.mjs.map
|
package/dist/components/account/sections/subscription/change-plan/components/CouponBlock.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../src/components/account/sections/subscription/change-plan/components/CouponBlock.tsx"],"sourcesContent":["'use client';\n\nimport { IconTicket, IconX } from '@tabler/icons-react';\nimport { useTranslations } from 'next-intl';\nimport { useChangePlan } from '../useChangePlanState';\n\n/** Cupom aplicado (removível) ou o atalho para digitar um. */\nexport function CouponBlock() {\n const translate = useTranslations('common.account.workspace.subscription.changePlan');\n const { appliedCouponCode, handleRemoveCoupon, handleOpenCouponDialog, hasPendingAuth } = useChangePlan();\n\n if (appliedCouponCode) {\n return (\n <div>\n <button\n type=\"button\"\n onClick={handleRemoveCoupon}\n disabled={hasPendingAuth}\n className=\"flex items-center h-8 w-fit px-2 bg-zinc-100 rounded-lg cursor-pointer disabled:cursor-not-allowed disabled:opacity-40\"\n >\n <IconTicket size={18} className=\"text-zinc-950\" />\n <span className=\"px-1.5 paragraph-small-semibold text-zinc-950\">{appliedCouponCode}</span>\n <IconX className=\"size-4.5 text-zinc-950\" />\n </button>\n </div>\n );\n }\n\n return (\n <div>\n <button\n type=\"button\"\n onClick={handleOpenCouponDialog}\n disabled={hasPendingAuth}\n className=\"flex items-center gap-2 h-8 px-2 w-fit paragraph-small-semibold text-zinc-950 cursor-pointer hover:bg-zinc-100 rounded-lg transition-colors disabled:cursor-not-allowed disabled:opacity-40 disabled:hover:bg-transparent\"\n >\n <IconTicket size={18} className=\"text-zinc-950\" />\n <span>{translate('coupon.addButton')}</span>\n </button>\n </div>\n );\n}\n"],"mappings":";AAcQ,SAME,KANF;AAZR,SAAS,YAAY,aAAa;AAClC,SAAS,uBAAuB;AAChC,SAAS,qBAAqB;AAGvB,SAAS,cAAc;AAC5B,QAAM,YAAY,gBAAgB,kDAAkD;AACpF,QAAM,EAAE,mBAAmB,oBAAoB,wBAAwB,eAAe,IAAI,cAAc;AAExG,MAAI,mBAAmB;AACrB,WACE,oBAAC,SACC;AAAA,MAAC;AAAA;AAAA,QACC,MAAK;AAAA,QACL,SAAS;AAAA,QACT,UAAU;AAAA,QACV,WAAU;AAAA,QAEV;AAAA,8BAAC,cAAW,MAAM,IAAI,WAAU,iBAAgB;AAAA,UAChD,oBAAC,UAAK,WAAU,iDAAiD,6BAAkB;AAAA,UACnF,oBAAC,SAAM,WAAU,0BAAyB;AAAA;AAAA;AAAA,IAC5C,GACF;AAAA,EAEJ;AAEA,SACE,oBAAC,SACC;AAAA,IAAC;AAAA;AAAA,MACC,MAAK;AAAA,MACL,SAAS;AAAA,MACT,UAAU;AAAA,MACV,WAAU;AAAA,MAEV;AAAA,4BAAC,cAAW,MAAM,IAAI,WAAU,iBAAgB;AAAA,QAChD,oBAAC,UAAM,oBAAU,kBAAkB,GAAE;AAAA;AAAA;AAAA,EACvC,GACF;AAEJ;","names":[]}
|