@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,73 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { IconBarcode, IconCopy, IconExternalLink } from "@tabler/icons-react";
|
|
4
|
+
import { useTranslations } from "next-intl";
|
|
5
|
+
import { toast } from "sonner";
|
|
6
|
+
import { Button } from "../../../ui/buttons/Button";
|
|
7
|
+
import { Toast } from "../../../ui/feedback/Toast";
|
|
8
|
+
import { Dialog, DialogContent, DialogHeader, DialogTitle } from "../../../ui/overlay/Dialog";
|
|
9
|
+
import { useCurrencyFormatter } from "../../../../modules/accounts/hooks/use-currency-formatter.hook";
|
|
10
|
+
import { copyToClipboard } from "../../../../utils/browser/clipboard";
|
|
11
|
+
function InfoRow({ label, value }) {
|
|
12
|
+
return /* @__PURE__ */ jsxs("div", { className: "flex flex-col lg:flex-row gap-1 lg:gap-3 lg:items-center", children: [
|
|
13
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-small-medium text-zinc-950 lg:w-[160px] shrink-0", children: label }),
|
|
14
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-small-regular text-zinc-600", children: value })
|
|
15
|
+
] });
|
|
16
|
+
}
|
|
17
|
+
function BoletoDetailsDialog({ open, charge, onOpenChange }) {
|
|
18
|
+
const translate = useTranslations("common.account.workspace.subscription.boletoDetails");
|
|
19
|
+
const { formatCurrencyNumber } = useCurrencyFormatter();
|
|
20
|
+
const paymentDetails = charge?.payment_details;
|
|
21
|
+
const boletoDetails = paymentDetails?.type === "boleto" ? paymentDetails : null;
|
|
22
|
+
const boletoBarcode = boletoDetails?.barcode;
|
|
23
|
+
const boletoUrl = boletoDetails?.hosted_voucher_url ?? boletoDetails?.pdf ?? charge?.gateway_billet ?? charge?.invoice_url;
|
|
24
|
+
const handleCopyBarcode = async () => {
|
|
25
|
+
if (!boletoBarcode) return;
|
|
26
|
+
await copyToClipboard(boletoBarcode);
|
|
27
|
+
toast.custom((toastId) => /* @__PURE__ */ jsx(Toast, { variant: "success", message: translate("copiedToast"), toastId }));
|
|
28
|
+
};
|
|
29
|
+
if (!charge) return null;
|
|
30
|
+
return /* @__PURE__ */ jsx(Dialog, { open, onOpenChange, children: /* @__PURE__ */ jsxs(DialogContent, { className: "flex flex-col p-0 gap-0 w-full md:w-115 lg:w-115", children: [
|
|
31
|
+
/* @__PURE__ */ jsxs(DialogHeader, { className: "gap-3 text-left p-5", children: [
|
|
32
|
+
/* @__PURE__ */ jsx("div", { className: "flex items-center justify-center w-10 h-10 bg-zinc-50 rounded-lg", children: /* @__PURE__ */ jsx(IconBarcode, { size: 24, className: "text-zinc-950" }) }),
|
|
33
|
+
/* @__PURE__ */ jsx(DialogTitle, { className: "paragraph-medium-semibold text-zinc-950", children: translate("title") })
|
|
34
|
+
] }),
|
|
35
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-4 px-5 pb-5", children: [
|
|
36
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-3", children: [
|
|
37
|
+
/* @__PURE__ */ jsx(InfoRow, { label: translate("valueLabel"), value: formatCurrencyNumber(charge.value) }),
|
|
38
|
+
charge.date_due && /* @__PURE__ */ jsx(
|
|
39
|
+
InfoRow,
|
|
40
|
+
{
|
|
41
|
+
label: translate("dueDate"),
|
|
42
|
+
value: new Date(charge.date_due).toLocaleDateString("pt-BR", { timeZone: "UTC" })
|
|
43
|
+
}
|
|
44
|
+
)
|
|
45
|
+
] }),
|
|
46
|
+
boletoBarcode && /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-2 p-4 bg-zinc-50 rounded-lg", children: [
|
|
47
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-xsmall-medium text-zinc-500", children: translate("digitableLine") }),
|
|
48
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-small-medium text-zinc-950 break-all", children: boletoBarcode })
|
|
49
|
+
] }),
|
|
50
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
51
|
+
boletoBarcode && /* @__PURE__ */ jsxs(Button, { variant: "secondary", className: "h-10 flex-1", onClick: handleCopyBarcode, children: [
|
|
52
|
+
/* @__PURE__ */ jsx(IconCopy, { size: 20 }),
|
|
53
|
+
translate("copyCode")
|
|
54
|
+
] }),
|
|
55
|
+
boletoUrl && /* @__PURE__ */ jsxs(
|
|
56
|
+
Button,
|
|
57
|
+
{
|
|
58
|
+
className: "h-10 flex-1",
|
|
59
|
+
onClick: () => window.open(boletoUrl, "_blank", "noopener,noreferrer"),
|
|
60
|
+
children: [
|
|
61
|
+
/* @__PURE__ */ jsx(IconExternalLink, { size: 20 }),
|
|
62
|
+
translate("openBoleto")
|
|
63
|
+
]
|
|
64
|
+
}
|
|
65
|
+
)
|
|
66
|
+
] })
|
|
67
|
+
] })
|
|
68
|
+
] }) });
|
|
69
|
+
}
|
|
70
|
+
export {
|
|
71
|
+
BoletoDetailsDialog
|
|
72
|
+
};
|
|
73
|
+
//# sourceMappingURL=BoletoDetailsDialog.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../src/components/account/sections/subscription/BoletoDetailsDialog.tsx"],"sourcesContent":["'use client';\n\nimport type { ReactNode } from 'react';\nimport { IconBarcode, IconCopy, IconExternalLink } from '@tabler/icons-react';\nimport { useTranslations } from 'next-intl';\nimport { toast } from 'sonner';\nimport { Button } from '../../../ui/buttons/Button';\nimport { Toast } from '../../../ui/feedback/Toast';\nimport { Dialog, DialogContent, DialogHeader, DialogTitle } from '../../../ui/overlay/Dialog';\nimport { useCurrencyFormatter } from '../../../../modules/accounts/hooks/use-currency-formatter.hook';\nimport type { Charge } from '../../../../modules/charges/types/charge.type';\nimport { copyToClipboard } from '../../../../utils/browser/clipboard';\n\ntype BoletoDetailsDialogProps = {\n open: boolean;\n charge: Charge | null | undefined;\n onOpenChange: (open: boolean) => void;\n};\n\nfunction InfoRow({ label, value }: { label: string; value: ReactNode }) {\n return (\n <div className=\"flex flex-col lg:flex-row gap-1 lg:gap-3 lg:items-center\">\n <span className=\"paragraph-small-medium text-zinc-950 lg:w-[160px] shrink-0\">{label}</span>\n <span className=\"paragraph-small-regular text-zinc-600\">{value}</span>\n </div>\n );\n}\n\n/** Linha digitável e link do boleto de uma cobrança em aberto. */\nexport function BoletoDetailsDialog({ open, charge, onOpenChange }: BoletoDetailsDialogProps) {\n const translate = useTranslations('common.account.workspace.subscription.boletoDetails');\n const { formatCurrencyNumber } = useCurrencyFormatter();\n\n const paymentDetails = charge?.payment_details as Record<string, unknown> | null | undefined;\n const boletoDetails = paymentDetails?.type === 'boleto' ? paymentDetails : null;\n const boletoBarcode = boletoDetails?.barcode as string | null | undefined;\n const boletoUrl =\n (boletoDetails?.hosted_voucher_url as string | null | undefined) ??\n (boletoDetails?.pdf as string | null | undefined) ??\n charge?.gateway_billet ??\n charge?.invoice_url;\n\n const handleCopyBarcode = async () => {\n if (!boletoBarcode) return;\n await copyToClipboard(boletoBarcode);\n toast.custom((toastId) => (\n <Toast variant=\"success\" message={translate('copiedToast')} toastId={toastId} />\n ));\n };\n\n if (!charge) return null;\n\n return (\n <Dialog open={open} onOpenChange={onOpenChange}>\n <DialogContent className=\"flex flex-col p-0 gap-0 w-full md:w-115 lg:w-115\">\n <DialogHeader className=\"gap-3 text-left p-5\">\n <div className=\"flex items-center justify-center w-10 h-10 bg-zinc-50 rounded-lg\">\n <IconBarcode size={24} className=\"text-zinc-950\" />\n </div>\n <DialogTitle className=\"paragraph-medium-semibold text-zinc-950\">\n {translate('title')}\n </DialogTitle>\n </DialogHeader>\n\n <div className=\"flex flex-col gap-4 px-5 pb-5\">\n <div className=\"flex flex-col gap-3\">\n <InfoRow label={translate('valueLabel')} value={formatCurrencyNumber(charge.value)} />\n {charge.date_due && (\n <InfoRow\n label={translate('dueDate')}\n value={new Date(charge.date_due).toLocaleDateString('pt-BR', { timeZone: 'UTC' })}\n />\n )}\n </div>\n\n {boletoBarcode && (\n <div className=\"flex flex-col gap-2 p-4 bg-zinc-50 rounded-lg\">\n <span className=\"paragraph-xsmall-medium text-zinc-500\">{translate('digitableLine')}</span>\n <span className=\"paragraph-small-medium text-zinc-950 break-all\">{boletoBarcode}</span>\n </div>\n )}\n\n <div className=\"flex items-center gap-2\">\n {boletoBarcode && (\n <Button variant=\"secondary\" className=\"h-10 flex-1\" onClick={handleCopyBarcode}>\n <IconCopy size={20} />\n {translate('copyCode')}\n </Button>\n )}\n {boletoUrl && (\n <Button\n className=\"h-10 flex-1\"\n onClick={() => window.open(boletoUrl, '_blank', 'noopener,noreferrer')}\n >\n <IconExternalLink size={20} />\n {translate('openBoleto')}\n </Button>\n )}\n </div>\n </div>\n </DialogContent>\n </Dialog>\n );\n}\n"],"mappings":";AAqBI,SACE,KADF;AAlBJ,SAAS,aAAa,UAAU,wBAAwB;AACxD,SAAS,uBAAuB;AAChC,SAAS,aAAa;AACtB,SAAS,cAAc;AACvB,SAAS,aAAa;AACtB,SAAS,QAAQ,eAAe,cAAc,mBAAmB;AACjE,SAAS,4BAA4B;AAErC,SAAS,uBAAuB;AAQhC,SAAS,QAAQ,EAAE,OAAO,MAAM,GAAwC;AACtE,SACE,qBAAC,SAAI,WAAU,4DACb;AAAA,wBAAC,UAAK,WAAU,8DAA8D,iBAAM;AAAA,IACpF,oBAAC,UAAK,WAAU,yCAAyC,iBAAM;AAAA,KACjE;AAEJ;AAGO,SAAS,oBAAoB,EAAE,MAAM,QAAQ,aAAa,GAA6B;AAC5F,QAAM,YAAY,gBAAgB,qDAAqD;AACvF,QAAM,EAAE,qBAAqB,IAAI,qBAAqB;AAEtD,QAAM,iBAAiB,QAAQ;AAC/B,QAAM,gBAAgB,gBAAgB,SAAS,WAAW,iBAAiB;AAC3E,QAAM,gBAAgB,eAAe;AACrC,QAAM,YACH,eAAe,sBACf,eAAe,OAChB,QAAQ,kBACR,QAAQ;AAEV,QAAM,oBAAoB,YAAY;AACpC,QAAI,CAAC,cAAe;AACpB,UAAM,gBAAgB,aAAa;AACnC,UAAM,OAAO,CAAC,YACZ,oBAAC,SAAM,SAAQ,WAAU,SAAS,UAAU,aAAa,GAAG,SAAkB,CAC/E;AAAA,EACH;AAEA,MAAI,CAAC,OAAQ,QAAO;AAEpB,SACE,oBAAC,UAAO,MAAY,cAClB,+BAAC,iBAAc,WAAU,oDACvB;AAAA,yBAAC,gBAAa,WAAU,uBACtB;AAAA,0BAAC,SAAI,WAAU,oEACb,8BAAC,eAAY,MAAM,IAAI,WAAU,iBAAgB,GACnD;AAAA,MACA,oBAAC,eAAY,WAAU,2CACpB,oBAAU,OAAO,GACpB;AAAA,OACF;AAAA,IAEA,qBAAC,SAAI,WAAU,iCACb;AAAA,2BAAC,SAAI,WAAU,uBACb;AAAA,4BAAC,WAAQ,OAAO,UAAU,YAAY,GAAG,OAAO,qBAAqB,OAAO,KAAK,GAAG;AAAA,QACnF,OAAO,YACN;AAAA,UAAC;AAAA;AAAA,YACC,OAAO,UAAU,SAAS;AAAA,YAC1B,OAAO,IAAI,KAAK,OAAO,QAAQ,EAAE,mBAAmB,SAAS,EAAE,UAAU,MAAM,CAAC;AAAA;AAAA,QAClF;AAAA,SAEJ;AAAA,MAEC,iBACC,qBAAC,SAAI,WAAU,iDACb;AAAA,4BAAC,UAAK,WAAU,yCAAyC,oBAAU,eAAe,GAAE;AAAA,QACpF,oBAAC,UAAK,WAAU,kDAAkD,yBAAc;AAAA,SAClF;AAAA,MAGF,qBAAC,SAAI,WAAU,2BACZ;AAAA,yBACC,qBAAC,UAAO,SAAQ,aAAY,WAAU,eAAc,SAAS,mBAC3D;AAAA,8BAAC,YAAS,MAAM,IAAI;AAAA,UACnB,UAAU,UAAU;AAAA,WACvB;AAAA,QAED,aACC;AAAA,UAAC;AAAA;AAAA,YACC,WAAU;AAAA,YACV,SAAS,MAAM,OAAO,KAAK,WAAW,UAAU,qBAAqB;AAAA,YAErE;AAAA,kCAAC,oBAAiB,MAAM,IAAI;AAAA,cAC3B,UAAU,YAAY;AAAA;AAAA;AAAA,QACzB;AAAA,SAEJ;AAAA,OACF;AAAA,KACF,GACF;AAEJ;","names":[]}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
import { useChargeById } from "../../../../modules/charges/hooks/charge-by-id.hook";
|
|
4
|
+
import { useSubscriptionFlows } from "../../../../store/useSubscriptionFlows";
|
|
5
|
+
import { BoletoDetailsDialog } from "./BoletoDetailsDialog";
|
|
6
|
+
function BoletoGeneratedDialog() {
|
|
7
|
+
const boletoGenerated = useSubscriptionFlows((state) => state.boletoGenerated);
|
|
8
|
+
const close = useSubscriptionFlows((state) => state.closeBoletoGenerated);
|
|
9
|
+
const { data: chargeResult } = useChargeById(boletoGenerated?.subscriptionId);
|
|
10
|
+
return /* @__PURE__ */ jsx(
|
|
11
|
+
BoletoDetailsDialog,
|
|
12
|
+
{
|
|
13
|
+
open: !!boletoGenerated && !!chargeResult?.data,
|
|
14
|
+
charge: chargeResult?.data,
|
|
15
|
+
onOpenChange: (nextOpen) => !nextOpen && close()
|
|
16
|
+
}
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
export {
|
|
20
|
+
BoletoGeneratedDialog
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=BoletoGeneratedDialog.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../src/components/account/sections/subscription/BoletoGeneratedDialog.tsx"],"sourcesContent":["'use client';\n\nimport { useChargeById } from '../../../../modules/charges/hooks/charge-by-id.hook';\nimport { useSubscriptionFlows } from '../../../../store/useSubscriptionFlows';\nimport { BoletoDetailsDialog } from './BoletoDetailsDialog';\n\n/**\n * Boleto da assinatura recém-contratada. A cobrança é buscada pelo id da assinatura criada —\n * é o mesmo dado que o cliente veria depois na lista de cobranças, só que já aberto.\n */\nexport function BoletoGeneratedDialog() {\n const boletoGenerated = useSubscriptionFlows((state) => state.boletoGenerated);\n const close = useSubscriptionFlows((state) => state.closeBoletoGenerated);\n\n const { data: chargeResult } = useChargeById(boletoGenerated?.subscriptionId);\n\n return (\n <BoletoDetailsDialog\n open={!!boletoGenerated && !!chargeResult?.data}\n charge={chargeResult?.data}\n onOpenChange={(nextOpen) => !nextOpen && close()}\n />\n );\n}\n"],"mappings":";AAiBI;AAfJ,SAAS,qBAAqB;AAC9B,SAAS,4BAA4B;AACrC,SAAS,2BAA2B;AAM7B,SAAS,wBAAwB;AACtC,QAAM,kBAAkB,qBAAqB,CAAC,UAAU,MAAM,eAAe;AAC7E,QAAM,QAAQ,qBAAqB,CAAC,UAAU,MAAM,oBAAoB;AAExE,QAAM,EAAE,MAAM,aAAa,IAAI,cAAc,iBAAiB,cAAc;AAE5E,SACE;AAAA,IAAC;AAAA;AAAA,MACC,MAAM,CAAC,CAAC,mBAAmB,CAAC,CAAC,cAAc;AAAA,MAC3C,QAAQ,cAAc;AAAA,MACtB,cAAc,CAAC,aAAa,CAAC,YAAY,MAAM;AAAA;AAAA,EACjD;AAEJ;","names":[]}
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { useMemo, useState } from "react";
|
|
4
|
+
import { IconAlertTriangle, IconClockHour7 } from "@tabler/icons-react";
|
|
5
|
+
import { useTranslations } from "next-intl";
|
|
6
|
+
import { toast } from "sonner";
|
|
7
|
+
import { Button } from "../../../ui/buttons/Button";
|
|
8
|
+
import { Skeleton } from "../../../ui/feedback/Skeleton";
|
|
9
|
+
import { Toast } from "../../../ui/feedback/Toast";
|
|
10
|
+
import { SelectField } from "../../../ui/form/SelectField";
|
|
11
|
+
import { TextAreaField } from "../../../ui/form/TextAreaField";
|
|
12
|
+
import { Dialog, DialogContent } from "../../../ui/overlay/Dialog";
|
|
13
|
+
import { useCountPages } from "../../../../modules/pages/hooks/count-pages.hook";
|
|
14
|
+
import { useProjects } from "../../../../modules/projects/hooks/list-projects.hook";
|
|
15
|
+
import { useCancelSubscription } from "../../../../modules/subscriptions/hooks/cancel-subscription.hook";
|
|
16
|
+
import { useCurrentSubscription } from "../../../../modules/subscriptions/hooks/use-current-subscription.hook";
|
|
17
|
+
import { resolveSubscriptionPlanName } from "../../../../modules/subscriptions/utils/resolve-subscription-plan-name";
|
|
18
|
+
import { useWhitelabel } from "../../../../providers/whitelabel.provider";
|
|
19
|
+
import { formatShortDate } from "../../../../infra/utils/date";
|
|
20
|
+
import { useSubscriptionFlows } from "../../../../store/useSubscriptionFlows";
|
|
21
|
+
import { IconBox } from "../shared/IconBox";
|
|
22
|
+
function CancelPlanDialog() {
|
|
23
|
+
const translate = useTranslations();
|
|
24
|
+
const translateDialog = useTranslations("common.account.workspace.subscription.cancelPlan");
|
|
25
|
+
const translateConfirm = useTranslations("common.account.workspace.subscription.confirmCancel");
|
|
26
|
+
const { whitelabel } = useWhitelabel();
|
|
27
|
+
const isOpen = useSubscriptionFlows((state) => state.isCancelPlanOpen);
|
|
28
|
+
const close = useSubscriptionFlows((state) => state.closeCancelPlan);
|
|
29
|
+
const [reason, setReason] = useState("");
|
|
30
|
+
const [description, setDescription] = useState("");
|
|
31
|
+
const [isConfirming, setIsConfirming] = useState(false);
|
|
32
|
+
const { data: subscriptionData } = useCurrentSubscription();
|
|
33
|
+
const subscription = subscriptionData?.data?.[0];
|
|
34
|
+
const { mutateAsync: cancelSubscription, isPending } = useCancelSubscription();
|
|
35
|
+
const { data: projectsData, isLoading: isLoadingProjects } = useProjects();
|
|
36
|
+
const { data: totalPages, isLoading: isLoadingPages } = useCountPages();
|
|
37
|
+
const totalProjects = projectsData?.total ?? 0;
|
|
38
|
+
const daysUntilEnd = useMemo(() => {
|
|
39
|
+
if (!subscription?.date_due) return 0;
|
|
40
|
+
const today = /* @__PURE__ */ new Date();
|
|
41
|
+
today.setHours(0, 0, 0, 0);
|
|
42
|
+
const due = new Date(subscription.date_due);
|
|
43
|
+
due.setHours(0, 0, 0, 0);
|
|
44
|
+
return Math.max(0, Math.ceil((due.getTime() - today.getTime()) / 864e5));
|
|
45
|
+
}, [subscription]);
|
|
46
|
+
const cancelReasons = [
|
|
47
|
+
{ value: "too_expensive", label: translateDialog("reasons.tooExpensive") },
|
|
48
|
+
{ value: "missing_features", label: translateDialog("reasons.missingFeatures") },
|
|
49
|
+
{ value: "switched_service", label: translateDialog("reasons.switchedService") },
|
|
50
|
+
{ value: "unused", label: translateDialog("reasons.unused") },
|
|
51
|
+
{ value: "customer_service", label: translateDialog("reasons.customerService") },
|
|
52
|
+
{ value: "too_complex", label: translateDialog("reasons.tooComplex") },
|
|
53
|
+
{ value: "low_quality", label: translateDialog("reasons.lowQuality") },
|
|
54
|
+
{ value: "other", label: translateDialog("reasons.other") }
|
|
55
|
+
];
|
|
56
|
+
const handleClose = () => {
|
|
57
|
+
setReason("");
|
|
58
|
+
setDescription("");
|
|
59
|
+
setIsConfirming(false);
|
|
60
|
+
close();
|
|
61
|
+
};
|
|
62
|
+
const handleContinue = () => {
|
|
63
|
+
if (!reason.trim() || !description.trim()) {
|
|
64
|
+
toast.custom((toastId) => /* @__PURE__ */ jsx(Toast, { variant: "error", message: translateDialog("requiredFields"), toastId }));
|
|
65
|
+
return;
|
|
66
|
+
}
|
|
67
|
+
setIsConfirming(true);
|
|
68
|
+
};
|
|
69
|
+
const handleConfirmCancel = async () => {
|
|
70
|
+
if (!subscription?.id) return;
|
|
71
|
+
try {
|
|
72
|
+
await cancelSubscription({
|
|
73
|
+
subscriptionId: subscription.id,
|
|
74
|
+
data: { cancellation_reason: reason, cancellation_description: description }
|
|
75
|
+
});
|
|
76
|
+
handleClose();
|
|
77
|
+
toast.custom((toastId) => /* @__PURE__ */ jsx(Toast, { variant: "success", message: translateConfirm("successToast"), toastId }));
|
|
78
|
+
} catch {
|
|
79
|
+
toast.custom((toastId) => /* @__PURE__ */ jsx(Toast, { variant: "error", message: translateConfirm("errorToast"), toastId }));
|
|
80
|
+
}
|
|
81
|
+
};
|
|
82
|
+
const planName = resolveSubscriptionPlanName(subscription, translate, "Ag\xEAncia");
|
|
83
|
+
const dueDate = subscription?.date_due ? formatShortDate(subscription.date_due) : "\u2014";
|
|
84
|
+
if (isConfirming) {
|
|
85
|
+
return /* @__PURE__ */ jsx(Dialog, { open: isOpen, onOpenChange: (nextOpen) => !nextOpen && handleClose(), children: /* @__PURE__ */ jsxs(DialogContent, { className: "flex flex-col p-0! gap-0! max-w-[calc(100%-2rem)]! w-full sm:max-w-[400px]! lg:max-w-[420px]! rounded-lg border", children: [
|
|
86
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-5 p-4 lg:p-5", children: [
|
|
87
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-medium-semibold text-zinc-950", children: translateConfirm("title") }),
|
|
88
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-4 lg:gap-5 bg-red-50 rounded-lg p-4 lg:p-5", children: [
|
|
89
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-4", children: [
|
|
90
|
+
/* @__PURE__ */ jsx(IconAlertTriangle, { size: 24, className: "text-red-600 shrink-0" }),
|
|
91
|
+
/* @__PURE__ */ jsx("p", { className: "paragraph-small-regular text-zinc-500", children: translateConfirm.rich("projectsAndPages", {
|
|
92
|
+
totalProjects: () => isLoadingProjects ? /* @__PURE__ */ jsx(Skeleton, { className: "inline-block w-4 h-4 align-middle" }) : /* @__PURE__ */ jsx(Fragment, { children: String(totalProjects) }),
|
|
93
|
+
totalPages: () => isLoadingPages ? /* @__PURE__ */ jsx(Skeleton, { className: "inline-block w-4 h-4 align-middle" }) : /* @__PURE__ */ jsx(Fragment, { children: String(totalPages ?? 0) }),
|
|
94
|
+
b: (chunks) => /* @__PURE__ */ jsx("span", { className: "font-semibold text-zinc-950", children: chunks })
|
|
95
|
+
}) })
|
|
96
|
+
] }),
|
|
97
|
+
/* @__PURE__ */ jsx("div", { className: "h-px bg-red-100" }),
|
|
98
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-4", children: [
|
|
99
|
+
/* @__PURE__ */ jsx(IconClockHour7, { size: 24, className: "text-red-600 shrink-0" }),
|
|
100
|
+
/* @__PURE__ */ jsx("p", { className: "paragraph-small-semibold text-zinc-950", children: translateConfirm("daysUntilEnd", {
|
|
101
|
+
daysUntilEnd: String(daysUntilEnd),
|
|
102
|
+
unit: daysUntilEnd === 1 ? translateConfirm("dayUnit") : translateConfirm("daysUnit")
|
|
103
|
+
}) })
|
|
104
|
+
] })
|
|
105
|
+
] })
|
|
106
|
+
] }),
|
|
107
|
+
/* @__PURE__ */ jsx("div", { className: "h-px bg-zinc-200" }),
|
|
108
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-row items-center gap-2 p-4 lg:p-5", children: [
|
|
109
|
+
/* @__PURE__ */ jsx(Button, { className: "h-10 w-fit", onClick: handleConfirmCancel, loading: isPending, children: translateConfirm("submit") }),
|
|
110
|
+
/* @__PURE__ */ jsx(Button, { variant: "secondary", className: "h-10 w-fit", onClick: handleClose, children: translateConfirm("keep") })
|
|
111
|
+
] })
|
|
112
|
+
] }) });
|
|
113
|
+
}
|
|
114
|
+
return /* @__PURE__ */ jsx(Dialog, { open: isOpen, onOpenChange: (nextOpen) => !nextOpen && handleClose(), children: /* @__PURE__ */ jsxs(DialogContent, { className: "flex flex-col p-0 gap-0 max-w-full sm:max-w-full border-0 rounded-t-2xl rounded-b-none h-dvh top-0 bottom-0 left-0 right-0 translate-x-0 translate-y-0 lg:max-w-117.5 lg:h-auto lg:max-h-[90vh] lg:rounded-lg lg:border lg:top-[50%] lg:left-[50%] lg:right-auto lg:bottom-auto lg:translate-x-[-50%] lg:translate-y-[-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: [
|
|
115
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-5 p-4 lg:p-5 flex-1 lg:flex-none", children: [
|
|
116
|
+
/* @__PURE__ */ jsx(IconBox, { className: "bg-red-50 shadow-none", iconClassName: "text-red-600", icon: IconAlertTriangle }),
|
|
117
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-2", children: [
|
|
118
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-medium-semibold text-zinc-950", children: translateDialog("title", { planName }) }),
|
|
119
|
+
/* @__PURE__ */ jsx("p", { className: "paragraph-small-regular text-zinc-500", children: translateDialog.rich("description", {
|
|
120
|
+
whitelabelName: whitelabel?.name || "",
|
|
121
|
+
dueDate,
|
|
122
|
+
b: (chunks) => /* @__PURE__ */ jsx("span", { className: "font-semibold text-zinc-950", children: chunks })
|
|
123
|
+
}) })
|
|
124
|
+
] }),
|
|
125
|
+
/* @__PURE__ */ jsx(
|
|
126
|
+
SelectField,
|
|
127
|
+
{
|
|
128
|
+
label: translateDialog("reasonLabel"),
|
|
129
|
+
required: true,
|
|
130
|
+
placeholder: translateDialog("reasonPlaceholder"),
|
|
131
|
+
options: cancelReasons,
|
|
132
|
+
value: reason,
|
|
133
|
+
onChange: (value) => setReason(value)
|
|
134
|
+
}
|
|
135
|
+
),
|
|
136
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
137
|
+
/* @__PURE__ */ jsx(
|
|
138
|
+
TextAreaField,
|
|
139
|
+
{
|
|
140
|
+
label: translateDialog("descriptionLabel"),
|
|
141
|
+
required: true,
|
|
142
|
+
placeholder: translateDialog("descriptionPlaceholder"),
|
|
143
|
+
value: description,
|
|
144
|
+
onChange: (event) => setDescription(event.target.value),
|
|
145
|
+
rows: 4,
|
|
146
|
+
maxLength: 400
|
|
147
|
+
}
|
|
148
|
+
),
|
|
149
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-xsmall-medium text-zinc-600 text-left mt-1 block", children: translateDialog("charactersCount", { count: String(description.length) }) })
|
|
150
|
+
] })
|
|
151
|
+
] }),
|
|
152
|
+
/* @__PURE__ */ jsxs("div", { className: "border-t border-zinc-200 flex flex-row items-center gap-2 px-4 lg:px-5 py-4 lg:py-5 mt-auto lg:mt-0", children: [
|
|
153
|
+
/* @__PURE__ */ jsx(Button, { className: "h-10 w-fit", onClick: handleContinue, children: translateDialog("submit") }),
|
|
154
|
+
/* @__PURE__ */ jsx(Button, { variant: "secondary", className: "h-10 w-fit", onClick: handleClose, children: translate("common.actions.close") })
|
|
155
|
+
] })
|
|
156
|
+
] }) });
|
|
157
|
+
}
|
|
158
|
+
export {
|
|
159
|
+
CancelPlanDialog
|
|
160
|
+
};
|
|
161
|
+
//# sourceMappingURL=CancelPlanDialog.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../src/components/account/sections/subscription/CancelPlanDialog.tsx"],"sourcesContent":["'use client';\n\nimport { useMemo, useState } from 'react';\nimport { IconAlertTriangle, IconClockHour7 } from '@tabler/icons-react';\nimport { useTranslations } from 'next-intl';\nimport { toast } from 'sonner';\nimport { Button } from '../../../ui/buttons/Button';\nimport { Skeleton } from '../../../ui/feedback/Skeleton';\nimport { Toast } from '../../../ui/feedback/Toast';\nimport { SelectField } from '../../../ui/form/SelectField';\nimport { TextAreaField } from '../../../ui/form/TextAreaField';\nimport { Dialog, DialogContent } from '../../../ui/overlay/Dialog';\nimport { useCountPages } from '../../../../modules/pages/hooks/count-pages.hook';\nimport { useProjects } from '../../../../modules/projects/hooks/list-projects.hook';\nimport { useCancelSubscription } from '../../../../modules/subscriptions/hooks/cancel-subscription.hook';\nimport { useCurrentSubscription } from '../../../../modules/subscriptions/hooks/use-current-subscription.hook';\nimport { resolveSubscriptionPlanName } from '../../../../modules/subscriptions/utils/resolve-subscription-plan-name';\nimport { useWhitelabel } from '../../../../providers/whitelabel.provider';\nimport { formatShortDate } from '../../../../infra/utils/date';\nimport { useSubscriptionFlows } from '../../../../store/useSubscriptionFlows';\nimport { IconBox } from '../shared/IconBox';\n\n/**\n * Cancelamento do plano em dois passos: motivo e descrição, e depois a confirmação com o que a\n * conta perde e quantos dias ainda restam.\n */\nexport function CancelPlanDialog() {\n const translate = useTranslations();\n const translateDialog = useTranslations('common.account.workspace.subscription.cancelPlan');\n const translateConfirm = useTranslations('common.account.workspace.subscription.confirmCancel');\n const { whitelabel } = useWhitelabel();\n\n const isOpen = useSubscriptionFlows((state) => state.isCancelPlanOpen);\n const close = useSubscriptionFlows((state) => state.closeCancelPlan);\n\n const [reason, setReason] = useState('');\n const [description, setDescription] = useState('');\n const [isConfirming, setIsConfirming] = useState(false);\n\n const { data: subscriptionData } = useCurrentSubscription();\n const subscription = subscriptionData?.data?.[0];\n const { mutateAsync: cancelSubscription, isPending } = useCancelSubscription();\n const { data: projectsData, isLoading: isLoadingProjects } = useProjects();\n const { data: totalPages, isLoading: isLoadingPages } = useCountPages();\n\n const totalProjects = projectsData?.total ?? 0;\n\n const daysUntilEnd = useMemo(() => {\n if (!subscription?.date_due) return 0;\n\n const today = new Date();\n today.setHours(0, 0, 0, 0);\n const due = new Date(subscription.date_due);\n due.setHours(0, 0, 0, 0);\n\n return Math.max(0, Math.ceil((due.getTime() - today.getTime()) / 86_400_000));\n }, [subscription]);\n\n const cancelReasons = [\n { value: 'too_expensive', label: translateDialog('reasons.tooExpensive') },\n { value: 'missing_features', label: translateDialog('reasons.missingFeatures') },\n { value: 'switched_service', label: translateDialog('reasons.switchedService') },\n { value: 'unused', label: translateDialog('reasons.unused') },\n { value: 'customer_service', label: translateDialog('reasons.customerService') },\n { value: 'too_complex', label: translateDialog('reasons.tooComplex') },\n { value: 'low_quality', label: translateDialog('reasons.lowQuality') },\n { value: 'other', label: translateDialog('reasons.other') },\n ];\n\n const handleClose = () => {\n setReason('');\n setDescription('');\n setIsConfirming(false);\n close();\n };\n\n const handleContinue = () => {\n if (!reason.trim() || !description.trim()) {\n toast.custom((toastId) => (\n <Toast variant=\"error\" message={translateDialog('requiredFields')} toastId={toastId} />\n ));\n return;\n }\n\n setIsConfirming(true);\n };\n\n const handleConfirmCancel = async () => {\n if (!subscription?.id) return;\n\n try {\n await cancelSubscription({\n subscriptionId: subscription.id,\n data: { cancellation_reason: reason, cancellation_description: description },\n });\n handleClose();\n toast.custom((toastId) => (\n <Toast variant=\"success\" message={translateConfirm('successToast')} toastId={toastId} />\n ));\n } catch {\n toast.custom((toastId) => (\n <Toast variant=\"error\" message={translateConfirm('errorToast')} toastId={toastId} />\n ));\n }\n };\n\n const planName = resolveSubscriptionPlanName(subscription, translate, 'Agência');\n const dueDate = subscription?.date_due ? formatShortDate(subscription.date_due) : '—';\n\n if (isConfirming) {\n return (\n <Dialog open={isOpen} onOpenChange={(nextOpen) => !nextOpen && handleClose()}>\n <DialogContent className=\"flex flex-col p-0! gap-0! max-w-[calc(100%-2rem)]! w-full sm:max-w-[400px]! lg:max-w-[420px]! rounded-lg border\">\n <div className=\"flex flex-col gap-5 p-4 lg:p-5\">\n <span className=\"paragraph-medium-semibold text-zinc-950\">{translateConfirm('title')}</span>\n\n <div className=\"flex flex-col gap-4 lg:gap-5 bg-red-50 rounded-lg p-4 lg:p-5\">\n <div className=\"flex items-center gap-4\">\n <IconAlertTriangle size={24} className=\"text-red-600 shrink-0\" />\n <p className=\"paragraph-small-regular text-zinc-500\">\n {translateConfirm.rich('projectsAndPages', {\n totalProjects: () =>\n isLoadingProjects ? (\n <Skeleton className=\"inline-block w-4 h-4 align-middle\" />\n ) : (\n <>{String(totalProjects)}</>\n ),\n totalPages: () =>\n isLoadingPages ? (\n <Skeleton className=\"inline-block w-4 h-4 align-middle\" />\n ) : (\n <>{String(totalPages ?? 0)}</>\n ),\n b: (chunks) => <span className=\"font-semibold text-zinc-950\">{chunks}</span>,\n })}\n </p>\n </div>\n <div className=\"h-px bg-red-100\" />\n <div className=\"flex items-center gap-4\">\n <IconClockHour7 size={24} className=\"text-red-600 shrink-0\" />\n <p className=\"paragraph-small-semibold text-zinc-950\">\n {translateConfirm('daysUntilEnd', {\n daysUntilEnd: String(daysUntilEnd),\n unit: daysUntilEnd === 1 ? translateConfirm('dayUnit') : translateConfirm('daysUnit'),\n })}\n </p>\n </div>\n </div>\n </div>\n\n <div className=\"h-px bg-zinc-200\" />\n\n <div className=\"flex flex-row items-center gap-2 p-4 lg:p-5\">\n <Button className=\"h-10 w-fit\" onClick={handleConfirmCancel} loading={isPending}>\n {translateConfirm('submit')}\n </Button>\n <Button variant=\"secondary\" className=\"h-10 w-fit\" onClick={handleClose}>\n {translateConfirm('keep')}\n </Button>\n </div>\n </DialogContent>\n </Dialog>\n );\n }\n\n return (\n <Dialog open={isOpen} onOpenChange={(nextOpen) => !nextOpen && handleClose()}>\n <DialogContent className=\"flex flex-col p-0 gap-0 max-w-full sm:max-w-full border-0 rounded-t-2xl rounded-b-none h-dvh top-0 bottom-0 left-0 right-0 translate-x-0 translate-y-0 lg:max-w-117.5 lg:h-auto lg:max-h-[90vh] lg:rounded-lg lg:border lg:top-[50%] lg:left-[50%] lg:right-auto lg:bottom-auto lg:translate-x-[-50%] lg:translate-y-[-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 <div className=\"flex flex-col gap-5 p-4 lg:p-5 flex-1 lg:flex-none\">\n <IconBox className=\"bg-red-50 shadow-none\" iconClassName=\"text-red-600\" icon={IconAlertTriangle} />\n\n <div className=\"flex flex-col gap-2\">\n <span className=\"paragraph-medium-semibold text-zinc-950\">\n {translateDialog('title', { planName })}\n </span>\n <p className=\"paragraph-small-regular text-zinc-500\">\n {translateDialog.rich('description', {\n whitelabelName: whitelabel?.name || '',\n dueDate,\n b: (chunks) => <span className=\"font-semibold text-zinc-950\">{chunks}</span>,\n })}\n </p>\n </div>\n\n <SelectField\n label={translateDialog('reasonLabel')}\n required\n placeholder={translateDialog('reasonPlaceholder')}\n options={cancelReasons}\n value={reason}\n onChange={(value) => setReason(value as string)}\n />\n\n <div>\n <TextAreaField\n label={translateDialog('descriptionLabel')}\n required\n placeholder={translateDialog('descriptionPlaceholder')}\n value={description}\n onChange={(event) => setDescription(event.target.value)}\n rows={4}\n maxLength={400}\n />\n <span className=\"paragraph-xsmall-medium text-zinc-600 text-left mt-1 block\">\n {translateDialog('charactersCount', { count: String(description.length) })}\n </span>\n </div>\n </div>\n\n <div className=\"border-t border-zinc-200 flex flex-row items-center gap-2 px-4 lg:px-5 py-4 lg:py-5 mt-auto lg:mt-0\">\n <Button className=\"h-10 w-fit\" onClick={handleContinue}>\n {translateDialog('submit')}\n </Button>\n <Button variant=\"secondary\" className=\"h-10 w-fit\" onClick={handleClose}>\n {translate('common.actions.close')}\n </Button>\n </div>\n </DialogContent>\n </Dialog>\n );\n}\n"],"mappings":"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","names":[]}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { IconDownload } from "@tabler/icons-react";
|
|
4
|
+
import { useTranslations } from "next-intl";
|
|
5
|
+
import { Button } from "../../../ui/buttons/Button";
|
|
6
|
+
import { Separator } from "../../../ui/data-display/Separator";
|
|
7
|
+
import { Tooltip, TooltipContent, TooltipTrigger } from "../../../ui/overlay/Tooltip";
|
|
8
|
+
import { useCurrencyFormatter } from "../../../../modules/accounts/hooks/use-currency-formatter.hook";
|
|
9
|
+
import { getChargeDownloadUrl } from "../../../../modules/charges/utils/get-charge-download-url";
|
|
10
|
+
import { ChargeStatusBadge } from "./ChargeStatusBadge";
|
|
11
|
+
function formatChargeDate(charge, withTime) {
|
|
12
|
+
const date = charge.date_created ?? charge.datetime_add ?? charge.date_due ?? null;
|
|
13
|
+
if (!date) return "\u2014";
|
|
14
|
+
return new Date(date).toLocaleString("pt-BR", {
|
|
15
|
+
day: "2-digit",
|
|
16
|
+
month: "2-digit",
|
|
17
|
+
year: "numeric",
|
|
18
|
+
...withTime && { hour: "2-digit", minute: "2-digit" }
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
function useChargeRow(charge) {
|
|
22
|
+
const translate = useTranslations();
|
|
23
|
+
const { formatCurrencyNumber } = useCurrencyFormatter();
|
|
24
|
+
const downloadUrl = getChargeDownloadUrl(charge);
|
|
25
|
+
return {
|
|
26
|
+
title: charge.line_descriptions?.[0] || charge.description || charge.title || translate("common.account.workspace.subscription.charges.defaultTitle"),
|
|
27
|
+
subtitle: charge.line_descriptions?.length ? charge.description : void 0,
|
|
28
|
+
value: formatCurrencyNumber(charge.value),
|
|
29
|
+
downloadUrl: charge.status === 1 ? downloadUrl : null,
|
|
30
|
+
canPay: charge.status === 0
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
function ChargeRow({ charge, onPay, onDownload, onViewDetails }) {
|
|
34
|
+
const translate = useTranslations();
|
|
35
|
+
const { title, subtitle, value, downloadUrl, canPay } = useChargeRow(charge);
|
|
36
|
+
return /* @__PURE__ */ jsxs(
|
|
37
|
+
"div",
|
|
38
|
+
{
|
|
39
|
+
className: "flex items-center gap-6 px-6 py-5 cursor-pointer hover:bg-zinc-50 transition-colors",
|
|
40
|
+
onClick: () => onViewDetails(charge),
|
|
41
|
+
children: [
|
|
42
|
+
/* @__PURE__ */ jsx("span", { className: "w-36 shrink-0 paragraph-small-regular text-zinc-600", children: formatChargeDate(charge, true) }),
|
|
43
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-0.5 flex-1 min-w-0", children: [
|
|
44
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-small-semibold text-zinc-600 truncate", title, children: title }),
|
|
45
|
+
subtitle && /* @__PURE__ */ jsx("span", { className: "paragraph-xsmall-medium text-zinc-500 truncate", children: subtitle })
|
|
46
|
+
] }),
|
|
47
|
+
/* @__PURE__ */ jsx("span", { className: "w-28 shrink-0 paragraph-small-semibold text-zinc-600 whitespace-nowrap", children: value }),
|
|
48
|
+
/* @__PURE__ */ jsx("div", { className: "w-32 shrink-0", children: /* @__PURE__ */ jsx(ChargeStatusBadge, { status: charge.status }) }),
|
|
49
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-end gap-2 w-44 shrink-0", children: [
|
|
50
|
+
canPay && /* @__PURE__ */ jsx(
|
|
51
|
+
Button,
|
|
52
|
+
{
|
|
53
|
+
className: "h-10! px-4.5",
|
|
54
|
+
onClick: (event) => {
|
|
55
|
+
event.stopPropagation();
|
|
56
|
+
onPay(charge);
|
|
57
|
+
},
|
|
58
|
+
children: translate("common.account.workspace.subscription.charges.pay")
|
|
59
|
+
}
|
|
60
|
+
),
|
|
61
|
+
downloadUrl && /* @__PURE__ */ jsxs(Tooltip, { children: [
|
|
62
|
+
/* @__PURE__ */ jsx(TooltipTrigger, { asChild: true, children: /* @__PURE__ */ jsx(
|
|
63
|
+
Button,
|
|
64
|
+
{
|
|
65
|
+
variant: "ghost",
|
|
66
|
+
className: "size-10! p-0",
|
|
67
|
+
"aria-label": translate("common.account.workspace.subscription.charges.downloadReceipt"),
|
|
68
|
+
onClick: (event) => {
|
|
69
|
+
event.stopPropagation();
|
|
70
|
+
onDownload(downloadUrl);
|
|
71
|
+
},
|
|
72
|
+
children: /* @__PURE__ */ jsx(IconDownload, { size: 20 })
|
|
73
|
+
}
|
|
74
|
+
) }),
|
|
75
|
+
/* @__PURE__ */ jsx(TooltipContent, { side: "top", children: translate("common.account.workspace.subscription.charges.downloadReceipt") })
|
|
76
|
+
] }),
|
|
77
|
+
/* @__PURE__ */ jsx(
|
|
78
|
+
Button,
|
|
79
|
+
{
|
|
80
|
+
variant: "secondary",
|
|
81
|
+
className: "h-10!",
|
|
82
|
+
onClick: (event) => {
|
|
83
|
+
event.stopPropagation();
|
|
84
|
+
onViewDetails(charge);
|
|
85
|
+
},
|
|
86
|
+
children: translate("common.account.workspace.subscription.charges.details")
|
|
87
|
+
}
|
|
88
|
+
)
|
|
89
|
+
] })
|
|
90
|
+
]
|
|
91
|
+
}
|
|
92
|
+
);
|
|
93
|
+
}
|
|
94
|
+
function ChargeRowMobile({ charge, onPay, onDownload, onViewDetails }) {
|
|
95
|
+
const translate = useTranslations();
|
|
96
|
+
const { title, value, downloadUrl, canPay } = useChargeRow(charge);
|
|
97
|
+
return /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-5 pl-4 pr-3 py-4 bg-white border border-zinc-200 rounded-lg", children: [
|
|
98
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-start justify-between", children: [
|
|
99
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-0.5 min-w-0 flex-1 mr-2", children: [
|
|
100
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-xsmall-medium text-zinc-500", children: formatChargeDate(charge, false) }),
|
|
101
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-small-semibold text-zinc-600 truncate", children: title })
|
|
102
|
+
] }),
|
|
103
|
+
/* @__PURE__ */ jsx(ChargeStatusBadge, { status: charge.status })
|
|
104
|
+
] }),
|
|
105
|
+
/* @__PURE__ */ jsx(Separator, { className: "bg-zinc-200" }),
|
|
106
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-medium-semibold text-zinc-950", children: value }),
|
|
107
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
108
|
+
canPay && /* @__PURE__ */ jsx(Button, { className: "h-10!", onClick: () => onPay(charge), children: translate("common.account.workspace.subscription.charges.pay") }),
|
|
109
|
+
downloadUrl && /* @__PURE__ */ jsx(
|
|
110
|
+
Button,
|
|
111
|
+
{
|
|
112
|
+
variant: "secondary",
|
|
113
|
+
className: "size-10! p-0",
|
|
114
|
+
"aria-label": translate("common.account.workspace.subscription.charges.downloadReceipt"),
|
|
115
|
+
onClick: () => onDownload(downloadUrl),
|
|
116
|
+
children: /* @__PURE__ */ jsx(IconDownload, { size: 24 })
|
|
117
|
+
}
|
|
118
|
+
),
|
|
119
|
+
/* @__PURE__ */ jsx(Button, { variant: "secondary", className: "h-10!", onClick: () => onViewDetails(charge), children: translate("common.account.workspace.subscription.charges.details") })
|
|
120
|
+
] })
|
|
121
|
+
] });
|
|
122
|
+
}
|
|
123
|
+
export {
|
|
124
|
+
ChargeRow,
|
|
125
|
+
ChargeRowMobile
|
|
126
|
+
};
|
|
127
|
+
//# sourceMappingURL=ChargeRow.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../src/components/account/sections/subscription/ChargeRow.tsx"],"sourcesContent":["'use client';\n\nimport { IconDownload } from '@tabler/icons-react';\nimport { useTranslations } from 'next-intl';\nimport { Button } from '../../../ui/buttons/Button';\nimport { Separator } from '../../../ui/data-display/Separator';\nimport { Tooltip, TooltipContent, TooltipTrigger } from '../../../ui/overlay/Tooltip';\nimport { useCurrencyFormatter } from '../../../../modules/accounts/hooks/use-currency-formatter.hook';\nimport { getChargeDownloadUrl } from '../../../../modules/charges/utils/get-charge-download-url';\nimport type { Charge } from '../../../../modules/charges/types/charge.type';\nimport { ChargeStatusBadge } from './ChargeStatusBadge';\n\ntype ChargeRowProps = {\n charge: Charge;\n onPay: (charge: Charge) => void;\n onDownload: (url: string) => void;\n onViewDetails: (charge: Charge) => void;\n};\n\nfunction formatChargeDate(charge: Charge, withTime: boolean): string {\n const date = charge.date_created ?? charge.datetime_add ?? charge.date_due ?? null;\n if (!date) return '—';\n\n return new Date(date).toLocaleString('pt-BR', {\n day: '2-digit',\n month: '2-digit',\n year: 'numeric',\n ...(withTime && { hour: '2-digit', minute: '2-digit' }),\n });\n}\n\nfunction useChargeRow(charge: Charge) {\n const translate = useTranslations();\n const { formatCurrencyNumber } = useCurrencyFormatter();\n const downloadUrl = getChargeDownloadUrl(charge);\n\n return {\n title:\n charge.line_descriptions?.[0] ||\n charge.description ||\n charge.title ||\n translate('common.account.workspace.subscription.charges.defaultTitle'),\n subtitle: charge.line_descriptions?.length ? charge.description : undefined,\n value: formatCurrencyNumber(charge.value),\n downloadUrl: charge.status === 1 ? downloadUrl : null,\n canPay: charge.status === 0,\n };\n}\n\nexport function ChargeRow({ charge, onPay, onDownload, onViewDetails }: ChargeRowProps) {\n const translate = useTranslations();\n const { title, subtitle, value, downloadUrl, canPay } = useChargeRow(charge);\n\n return (\n <div\n className=\"flex items-center gap-6 px-6 py-5 cursor-pointer hover:bg-zinc-50 transition-colors\"\n onClick={() => onViewDetails(charge)}\n >\n <span className=\"w-36 shrink-0 paragraph-small-regular text-zinc-600\">{formatChargeDate(charge, true)}</span>\n\n <div className=\"flex flex-col gap-0.5 flex-1 min-w-0\">\n <span className=\"paragraph-small-semibold text-zinc-600 truncate\" title={title}>\n {title}\n </span>\n {subtitle && <span className=\"paragraph-xsmall-medium text-zinc-500 truncate\">{subtitle}</span>}\n </div>\n\n <span className=\"w-28 shrink-0 paragraph-small-semibold text-zinc-600 whitespace-nowrap\">{value}</span>\n\n <div className=\"w-32 shrink-0\">\n <ChargeStatusBadge status={charge.status} />\n </div>\n\n <div className=\"flex items-center justify-end gap-2 w-44 shrink-0\">\n {canPay && (\n <Button\n className=\"h-10! px-4.5\"\n onClick={(event) => {\n event.stopPropagation();\n onPay(charge);\n }}\n >\n {translate('common.account.workspace.subscription.charges.pay')}\n </Button>\n )}\n {downloadUrl && (\n <Tooltip>\n <TooltipTrigger asChild>\n <Button\n variant=\"ghost\"\n className=\"size-10! p-0\"\n aria-label={translate('common.account.workspace.subscription.charges.downloadReceipt')}\n onClick={(event) => {\n event.stopPropagation();\n onDownload(downloadUrl);\n }}\n >\n <IconDownload size={20} />\n </Button>\n </TooltipTrigger>\n <TooltipContent side=\"top\">\n {translate('common.account.workspace.subscription.charges.downloadReceipt')}\n </TooltipContent>\n </Tooltip>\n )}\n <Button\n variant=\"secondary\"\n className=\"h-10!\"\n onClick={(event) => {\n event.stopPropagation();\n onViewDetails(charge);\n }}\n >\n {translate('common.account.workspace.subscription.charges.details')}\n </Button>\n </div>\n </div>\n );\n}\n\nexport function ChargeRowMobile({ charge, onPay, onDownload, onViewDetails }: ChargeRowProps) {\n const translate = useTranslations();\n const { title, value, downloadUrl, canPay } = useChargeRow(charge);\n\n return (\n <div className=\"flex flex-col gap-5 pl-4 pr-3 py-4 bg-white border border-zinc-200 rounded-lg\">\n <div className=\"flex items-start justify-between\">\n <div className=\"flex flex-col gap-0.5 min-w-0 flex-1 mr-2\">\n <span className=\"paragraph-xsmall-medium text-zinc-500\">{formatChargeDate(charge, false)}</span>\n <span className=\"paragraph-small-semibold text-zinc-600 truncate\">{title}</span>\n </div>\n <ChargeStatusBadge status={charge.status} />\n </div>\n\n <Separator className=\"bg-zinc-200\" />\n\n <span className=\"paragraph-medium-semibold text-zinc-950\">{value}</span>\n\n <div className=\"flex items-center gap-2\">\n {canPay && (\n <Button className=\"h-10!\" onClick={() => onPay(charge)}>\n {translate('common.account.workspace.subscription.charges.pay')}\n </Button>\n )}\n {downloadUrl && (\n <Button\n variant=\"secondary\"\n className=\"size-10! p-0\"\n aria-label={translate('common.account.workspace.subscription.charges.downloadReceipt')}\n onClick={() => onDownload(downloadUrl)}\n >\n <IconDownload size={24} />\n </Button>\n )}\n <Button variant=\"secondary\" className=\"h-10!\" onClick={() => onViewDetails(charge)}>\n {translate('common.account.workspace.subscription.charges.details')}\n </Button>\n </div>\n </div>\n );\n}\n"],"mappings":"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","names":[]}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
import { useTranslations } from "next-intl";
|
|
4
|
+
import { StatusBadge } from "../shared/StatusBadge";
|
|
5
|
+
const STATUS_TONES = {
|
|
6
|
+
0: "yellow",
|
|
7
|
+
1: "green",
|
|
8
|
+
2: "red",
|
|
9
|
+
3: "neutral"
|
|
10
|
+
};
|
|
11
|
+
const STATUS_KEYS = {
|
|
12
|
+
0: "pending",
|
|
13
|
+
1: "paid",
|
|
14
|
+
2: "failed",
|
|
15
|
+
3: "cancelled"
|
|
16
|
+
};
|
|
17
|
+
function ChargeStatusBadge({ status }) {
|
|
18
|
+
const translateStatus = useTranslations("common.account.workspace.subscription.charges.status");
|
|
19
|
+
const tone = STATUS_TONES[status];
|
|
20
|
+
const key = STATUS_KEYS[status];
|
|
21
|
+
if (!tone || !key) return null;
|
|
22
|
+
return /* @__PURE__ */ jsx(StatusBadge, { tone, children: translateStatus(key) });
|
|
23
|
+
}
|
|
24
|
+
export {
|
|
25
|
+
ChargeStatusBadge
|
|
26
|
+
};
|
|
27
|
+
//# sourceMappingURL=ChargeStatusBadge.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../src/components/account/sections/subscription/ChargeStatusBadge.tsx"],"sourcesContent":["'use client';\n\nimport { useTranslations } from 'next-intl';\nimport { StatusBadge, type StatusBadgeTone } from '../shared/StatusBadge';\n\nconst STATUS_TONES: Record<number, StatusBadgeTone> = {\n 0: 'yellow',\n 1: 'green',\n 2: 'red',\n 3: 'neutral',\n};\n\nconst STATUS_KEYS = {\n 0: 'pending',\n 1: 'paid',\n 2: 'failed',\n 3: 'cancelled',\n} as const satisfies Record<number, string>;\n\nexport function ChargeStatusBadge({ status }: { status: number }) {\n const translateStatus = useTranslations('common.account.workspace.subscription.charges.status');\n\n const tone = STATUS_TONES[status];\n const key = STATUS_KEYS[status as keyof typeof STATUS_KEYS];\n\n if (!tone || !key) return null;\n\n return <StatusBadge tone={tone}>{translateStatus(key)}</StatusBadge>;\n}\n"],"mappings":";AA2BS;AAzBT,SAAS,uBAAuB;AAChC,SAAS,mBAAyC;AAElD,MAAM,eAAgD;AAAA,EACpD,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AACL;AAEA,MAAM,cAAc;AAAA,EAClB,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AACL;AAEO,SAAS,kBAAkB,EAAE,OAAO,GAAuB;AAChE,QAAM,kBAAkB,gBAAgB,sDAAsD;AAE9F,QAAM,OAAO,aAAa,MAAM;AAChC,QAAM,MAAM,YAAY,MAAkC;AAE1D,MAAI,CAAC,QAAQ,CAAC,IAAK,QAAO;AAE1B,SAAO,oBAAC,eAAY,MAAa,0BAAgB,GAAG,GAAE;AACxD;","names":[]}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { useState } from "react";
|
|
4
|
+
import { useTranslations } from "next-intl";
|
|
5
|
+
import { Skeleton } from "../../../ui/feedback/Skeleton";
|
|
6
|
+
import { useCharges } from "../../../../modules/charges/hooks/charges.hook";
|
|
7
|
+
import useSubscriptionActions from "../../hooks/useSubscriptionActions";
|
|
8
|
+
import { ChargeRow, ChargeRowMobile } from "./ChargeRow";
|
|
9
|
+
import { FilterPopover } from "../shared/FilterPopover";
|
|
10
|
+
import { ListPagination } from "../shared/ListPagination";
|
|
11
|
+
const CHARGES_PAGE_SIZE = 6;
|
|
12
|
+
function ChargesSkeleton() {
|
|
13
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
14
|
+
/* @__PURE__ */ jsx("div", { className: "hidden lg:block border border-zinc-200 rounded-lg overflow-hidden bg-white divide-y divide-zinc-200", children: Array.from({ length: CHARGES_PAGE_SIZE }).map((_, index) => /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-6 px-6 py-5", children: [
|
|
15
|
+
/* @__PURE__ */ jsx(Skeleton, { className: "h-4 w-28" }),
|
|
16
|
+
/* @__PURE__ */ jsx(Skeleton, { className: "h-4 w-48 flex-1 max-w-60" }),
|
|
17
|
+
/* @__PURE__ */ jsx(Skeleton, { className: "h-4 w-20 ml-auto" }),
|
|
18
|
+
/* @__PURE__ */ jsx(Skeleton, { className: "h-6 w-16 rounded-lg" }),
|
|
19
|
+
/* @__PURE__ */ jsx(Skeleton, { className: "h-10 w-[88px] rounded-lg" })
|
|
20
|
+
] }, index)) }),
|
|
21
|
+
/* @__PURE__ */ jsx("div", { className: "lg:hidden flex flex-col gap-3", children: Array.from({ length: CHARGES_PAGE_SIZE }).map((_, index) => /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-5 pl-4 pr-3 py-4 bg-white border border-zinc-200 rounded-lg", children: [
|
|
22
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-start justify-between", children: [
|
|
23
|
+
/* @__PURE__ */ jsx(Skeleton, { className: "h-4 w-24" }),
|
|
24
|
+
/* @__PURE__ */ jsx(Skeleton, { className: "h-6 w-20 rounded-lg" })
|
|
25
|
+
] }),
|
|
26
|
+
/* @__PURE__ */ jsx("div", { className: "h-px bg-zinc-200" }),
|
|
27
|
+
/* @__PURE__ */ jsx(Skeleton, { className: "h-5 w-32" }),
|
|
28
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
29
|
+
/* @__PURE__ */ jsx(Skeleton, { className: "h-10 w-20" }),
|
|
30
|
+
/* @__PURE__ */ jsx(Skeleton, { className: "h-10 w-20" })
|
|
31
|
+
] })
|
|
32
|
+
] }, index)) })
|
|
33
|
+
] });
|
|
34
|
+
}
|
|
35
|
+
function ChargesList() {
|
|
36
|
+
const translate = useTranslations();
|
|
37
|
+
const actions = useSubscriptionActions();
|
|
38
|
+
const [currentPage, setCurrentPage] = useState(1);
|
|
39
|
+
const [statusFilters, setStatusFilters] = useState([]);
|
|
40
|
+
const { data: chargesData, isLoading } = useCharges({
|
|
41
|
+
page: currentPage,
|
|
42
|
+
limit: CHARGES_PAGE_SIZE,
|
|
43
|
+
status: statusFilters
|
|
44
|
+
});
|
|
45
|
+
const charges = chargesData?.data ?? [];
|
|
46
|
+
const totalPages = Math.ceil((chargesData?.total ?? 0) / CHARGES_PAGE_SIZE);
|
|
47
|
+
const handleToggleStatus = (status, checked) => {
|
|
48
|
+
setStatusFilters(
|
|
49
|
+
(previous) => checked ? [...previous, status] : previous.filter((item) => item !== status)
|
|
50
|
+
);
|
|
51
|
+
setCurrentPage(1);
|
|
52
|
+
};
|
|
53
|
+
const rowProps = {
|
|
54
|
+
onPay: actions.payCharge,
|
|
55
|
+
onDownload: actions.downloadCharge,
|
|
56
|
+
onViewDetails: actions.viewCharge
|
|
57
|
+
};
|
|
58
|
+
return /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-5", children: [
|
|
59
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between gap-4", children: [
|
|
60
|
+
/* @__PURE__ */ jsx("span", { className: "paragraph-medium-semibold text-zinc-950", children: translate("common.account.workspace.subscription.charges.title") }),
|
|
61
|
+
/* @__PURE__ */ jsx(
|
|
62
|
+
FilterPopover,
|
|
63
|
+
{
|
|
64
|
+
label: translate("common.account.workspace.subscription.charges.filter"),
|
|
65
|
+
options: [
|
|
66
|
+
{ value: 0, label: translate("common.account.workspace.subscription.charges.filterPending"), color: "bg-yellow-500" },
|
|
67
|
+
{ value: 1, label: translate("common.account.workspace.subscription.charges.filterPaid"), color: "bg-green-500" },
|
|
68
|
+
{ value: 2, label: translate("common.account.workspace.subscription.charges.filterFailed"), color: "bg-red-500" },
|
|
69
|
+
{ value: 3, label: translate("common.account.workspace.subscription.charges.filterCancelled"), color: "bg-gray-500" }
|
|
70
|
+
],
|
|
71
|
+
selected: statusFilters,
|
|
72
|
+
onToggle: handleToggleStatus
|
|
73
|
+
}
|
|
74
|
+
)
|
|
75
|
+
] }),
|
|
76
|
+
isLoading && /* @__PURE__ */ jsx(ChargesSkeleton, {}),
|
|
77
|
+
!isLoading && charges.length === 0 && /* @__PURE__ */ jsx("div", { className: "flex items-center justify-center py-12 border border-zinc-200 rounded-lg bg-white", children: /* @__PURE__ */ jsx("p", { className: "paragraph-small-medium text-zinc-500", children: translate("common.account.workspace.subscription.charges.noReceipts") }) }),
|
|
78
|
+
!isLoading && charges.length > 0 && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
79
|
+
/* @__PURE__ */ jsx("div", { className: "hidden lg:block border border-zinc-200 rounded-lg overflow-hidden bg-white divide-y divide-zinc-200", children: charges.map((charge) => /* @__PURE__ */ jsx(ChargeRow, { charge, ...rowProps }, charge.id)) }),
|
|
80
|
+
/* @__PURE__ */ jsx("div", { className: "lg:hidden flex flex-col gap-3", children: charges.map((charge) => /* @__PURE__ */ jsx(ChargeRowMobile, { charge, ...rowProps }, charge.id)) })
|
|
81
|
+
] }),
|
|
82
|
+
/* @__PURE__ */ jsx(ListPagination, { currentPage, totalPages, onPageChange: setCurrentPage })
|
|
83
|
+
] });
|
|
84
|
+
}
|
|
85
|
+
export {
|
|
86
|
+
ChargesList
|
|
87
|
+
};
|
|
88
|
+
//# sourceMappingURL=ChargesList.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../src/components/account/sections/subscription/ChargesList.tsx"],"sourcesContent":["'use client';\n\nimport { useState } from 'react';\nimport { useTranslations } from 'next-intl';\nimport { Skeleton } from '../../../ui/feedback/Skeleton';\nimport { useCharges } from '../../../../modules/charges/hooks/charges.hook';\nimport useSubscriptionActions from '../../hooks/useSubscriptionActions';\nimport { ChargeRow, ChargeRowMobile } from './ChargeRow';\nimport { FilterPopover } from '../shared/FilterPopover';\nimport { ListPagination } from '../shared/ListPagination';\n\nconst CHARGES_PAGE_SIZE = 6;\n\nfunction ChargesSkeleton() {\n return (\n <>\n <div className=\"hidden lg:block border border-zinc-200 rounded-lg overflow-hidden bg-white divide-y divide-zinc-200\">\n {Array.from({ length: CHARGES_PAGE_SIZE }).map((_, index) => (\n <div key={index} className=\"flex items-center gap-6 px-6 py-5\">\n <Skeleton className=\"h-4 w-28\" />\n <Skeleton className=\"h-4 w-48 flex-1 max-w-60\" />\n <Skeleton className=\"h-4 w-20 ml-auto\" />\n <Skeleton className=\"h-6 w-16 rounded-lg\" />\n <Skeleton className=\"h-10 w-[88px] rounded-lg\" />\n </div>\n ))}\n </div>\n\n <div className=\"lg:hidden flex flex-col gap-3\">\n {Array.from({ length: CHARGES_PAGE_SIZE }).map((_, index) => (\n <div key={index} className=\"flex flex-col gap-5 pl-4 pr-3 py-4 bg-white border border-zinc-200 rounded-lg\">\n <div className=\"flex items-start justify-between\">\n <Skeleton className=\"h-4 w-24\" />\n <Skeleton className=\"h-6 w-20 rounded-lg\" />\n </div>\n <div className=\"h-px bg-zinc-200\" />\n <Skeleton className=\"h-5 w-32\" />\n <div className=\"flex items-center gap-2\">\n <Skeleton className=\"h-10 w-20\" />\n <Skeleton className=\"h-10 w-20\" />\n </div>\n </div>\n ))}\n </div>\n </>\n );\n}\n\nexport function ChargesList() {\n const translate = useTranslations();\n const actions = useSubscriptionActions();\n const [currentPage, setCurrentPage] = useState(1);\n const [statusFilters, setStatusFilters] = useState<number[]>([]);\n\n const { data: chargesData, isLoading } = useCharges({\n page: currentPage,\n limit: CHARGES_PAGE_SIZE,\n status: statusFilters,\n });\n\n const charges = chargesData?.data ?? [];\n const totalPages = Math.ceil((chargesData?.total ?? 0) / CHARGES_PAGE_SIZE);\n\n const handleToggleStatus = (status: number, checked: boolean) => {\n setStatusFilters((previous) =>\n checked ? [...previous, status] : previous.filter((item) => item !== status)\n );\n setCurrentPage(1);\n };\n\n const rowProps = {\n onPay: actions.payCharge,\n onDownload: actions.downloadCharge,\n onViewDetails: actions.viewCharge,\n };\n\n return (\n <div className=\"flex flex-col gap-5\">\n <div className=\"flex items-center justify-between gap-4\">\n <span className=\"paragraph-medium-semibold text-zinc-950\">\n {translate('common.account.workspace.subscription.charges.title')}\n </span>\n <FilterPopover\n label={translate('common.account.workspace.subscription.charges.filter')}\n options={[\n { value: 0, label: translate('common.account.workspace.subscription.charges.filterPending'), color: 'bg-yellow-500' },\n { value: 1, label: translate('common.account.workspace.subscription.charges.filterPaid'), color: 'bg-green-500' },\n { value: 2, label: translate('common.account.workspace.subscription.charges.filterFailed'), color: 'bg-red-500' },\n { value: 3, label: translate('common.account.workspace.subscription.charges.filterCancelled'), color: 'bg-gray-500' },\n ]}\n selected={statusFilters}\n onToggle={handleToggleStatus}\n />\n </div>\n\n {isLoading && <ChargesSkeleton />}\n\n {!isLoading && charges.length === 0 && (\n <div className=\"flex items-center justify-center py-12 border border-zinc-200 rounded-lg bg-white\">\n <p className=\"paragraph-small-medium text-zinc-500\">\n {translate('common.account.workspace.subscription.charges.noReceipts')}\n </p>\n </div>\n )}\n\n {!isLoading && charges.length > 0 && (\n <>\n <div className=\"hidden lg:block border border-zinc-200 rounded-lg overflow-hidden bg-white divide-y divide-zinc-200\">\n {charges.map((charge) => (\n <ChargeRow key={charge.id} charge={charge} {...rowProps} />\n ))}\n </div>\n\n <div className=\"lg:hidden flex flex-col gap-3\">\n {charges.map((charge) => (\n <ChargeRowMobile key={charge.id} charge={charge} {...rowProps} />\n ))}\n </div>\n </>\n )}\n\n <ListPagination currentPage={currentPage} totalPages={totalPages} onPageChange={setCurrentPage} />\n </div>\n );\n}\n"],"mappings":"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","names":[]}
|