| | |
| | import { |
| | isDomainMapping, |
| | isDomainRegistration, |
| | isDomainTransfer, |
| | isGSuiteOrGoogleWorkspace, |
| | isJetpackPlan, |
| | isJetpackProduct, |
| | isPlan, |
| | isTitanMail, |
| | isAkismetProduct, |
| | } from '@automattic/calypso-products'; |
| | import page from '@automattic/calypso-router'; |
| | import { CompactCard, Gridicon } from '@automattic/components'; |
| | import clsx from 'clsx'; |
| | import { localize } from 'i18n-calypso'; |
| | import PropTypes from 'prop-types'; |
| | import { Component } from 'react'; |
| | import { connect } from 'react-redux'; |
| | import CancelJetpackForm from 'calypso/components/marketing-survey/cancel-jetpack-form'; |
| | import CancelPurchaseForm from 'calypso/components/marketing-survey/cancel-purchase-form'; |
| | import { CANCEL_FLOW_TYPE } from 'calypso/components/marketing-survey/cancel-purchase-form/constants'; |
| | import PrecancellationChatButton from 'calypso/components/marketing-survey/cancel-purchase-form/precancellation-chat-button'; |
| | import GSuiteCancellationPurchaseDialog from 'calypso/components/marketing-survey/gsuite-cancel-purchase-dialog'; |
| | import VerticalNavItem from 'calypso/components/vertical-nav/item'; |
| | import { getName, isRemovable } from 'calypso/lib/purchases'; |
| | import NonPrimaryDomainDialog from 'calypso/me/purchases/non-primary-domain-dialog'; |
| | import WordAdsEligibilityWarningDialog from 'calypso/me/purchases/wordads-eligibility-warning-dialog'; |
| | import { recordTracksEvent } from 'calypso/state/analytics/actions'; |
| | import { getCurrentUserId } from 'calypso/state/current-user/selectors'; |
| | import { errorNotice, successNotice } from 'calypso/state/notices/actions'; |
| | import { removePurchase } from 'calypso/state/purchases/actions'; |
| | import getPrimaryDomainBySiteId from 'calypso/state/selectors/get-primary-domain-by-site-id'; |
| | import isDomainOnly from 'calypso/state/selectors/is-domain-only-site'; |
| | import isSiteAutomatedTransfer from 'calypso/state/selectors/is-site-automated-transfer'; |
| | import { receiveDeletedSite } from 'calypso/state/sites/actions'; |
| | import { setAllSitesSelected } from 'calypso/state/ui/actions'; |
| | import { MarketPlaceSubscriptionsDialog } from '../marketplace-subscriptions-dialog'; |
| | import { purchasesRoot } from '../paths'; |
| | import { |
| | isDataLoading, |
| | isAkismetTemporarySitePurchase, |
| | isJetpackTemporarySitePurchase, |
| | } from '../utils'; |
| | import RemoveDomainDialog from './remove-domain-dialog'; |
| | import './style.scss'; |
| |
|
| | class RemovePurchase extends Component { |
| | static propTypes = { |
| | hasLoadedUserPurchasesFromServer: PropTypes.bool.isRequired, |
| | hasNonPrimaryDomainsFlag: PropTypes.bool, |
| | hasSetupAds: PropTypes.bool, |
| | isDomainOnlySite: PropTypes.bool, |
| | hasCustomPrimaryDomain: PropTypes.bool, |
| | receiveDeletedSite: PropTypes.func.isRequired, |
| | removePurchase: PropTypes.func.isRequired, |
| | purchase: PropTypes.object, |
| | site: PropTypes.object, |
| | setAllSitesSelected: PropTypes.func.isRequired, |
| | userId: PropTypes.number.isRequired, |
| | useVerticalNavItem: PropTypes.bool, |
| | onClickTracks: PropTypes.func, |
| | purchaseListUrl: PropTypes.string, |
| | activeSubscriptions: PropTypes.array, |
| | linkIcon: PropTypes.string, |
| | primaryDomain: PropTypes.object, |
| | skipRemovePlanSurvey: PropTypes.bool, |
| | }; |
| |
|
| | static defaultProps = { |
| | purchaseListUrl: purchasesRoot, |
| | }; |
| |
|
| | state = { |
| | isDialogVisible: false, |
| | isRemoving: false, |
| | isShowingNonPrimaryDomainWarning: false, |
| | isShowingMarketplaceSubscriptionsDialog: false, |
| | isShowingPreCancellationDialog: false, |
| | isShowingWordAdsEligibilityWarningDialog: false, |
| | }; |
| |
|
| | closeDialog = () => { |
| | this.setState( { |
| | isDialogVisible: false, |
| | isShowingNonPrimaryDomainWarning: false, |
| | isShowingMarketplaceSubscriptionsDialog: false, |
| | isShowingPreCancellationDialog: false, |
| | isShowingWordAdsEligibilityWarningDialog: false, |
| | } ); |
| | }; |
| |
|
| | showRemovePlanDialog = () => { |
| | this.setState( { |
| | isShowingMarketplaceSubscriptionsDialog: false, |
| | isShowingNonPrimaryDomainWarning: false, |
| | isShowingPreCancellationDialog: false, |
| | isShowingWordAdsEligibilityWarningDialog: false, |
| | isDialogVisible: true, |
| | } ); |
| | }; |
| |
|
| | openDialog = ( event ) => { |
| | event.preventDefault(); |
| |
|
| | if ( this.props.onClickTracks ) { |
| | this.props.onClickTracks( event ); |
| | } |
| | if ( |
| | this.shouldShowNonPrimaryDomainWarning() && |
| | ! this.state.isShowingNonPrimaryDomainWarning |
| | ) { |
| | this.setState( { |
| | isShowingNonPrimaryDomainWarning: true, |
| | isShowingMarketplaceSubscriptionsDialog: false, |
| | isShowingWordAdsEligibilityWarningDialog: false, |
| | isDialogVisible: false, |
| | } ); |
| | } else if ( |
| | this.shouldHandleMarketplaceSubscriptions() && |
| | ! this.state.isShowingMarketplaceSubscriptionsDialog |
| | ) { |
| | this.setState( { |
| | isShowingNonPrimaryDomainWarning: false, |
| | isShowingMarketplaceSubscriptionsDialog: true, |
| | isShowingWordAdsEligibilityWarningDialog: false, |
| | isDialogVisible: false, |
| | } ); |
| | } else if ( |
| | this.shouldShowWordAdsEligibilityWarning() && |
| | ! this.state.isShowingWordAdsEligibilityWarningDialog |
| | ) { |
| | this.setState( { |
| | isShowingNonPrimaryDomainWarning: false, |
| | isShowingMarketplaceSubscriptionsDialog: false, |
| | isShowingWordAdsEligibilityWarningDialog: true, |
| | isDialogVisible: false, |
| | } ); |
| | } else { |
| | this.setState( { |
| | isShowingNonPrimaryDomainWarning: false, |
| | isShowingMarketplaceSubscriptionsDialog: false, |
| | isShowingWordAdsEligibilityWarningDialog: false, |
| | isDialogVisible: true, |
| | } ); |
| | } |
| | }; |
| |
|
| | onClickChatButton = () => { |
| | this.setState( { isDialogVisible: false } ); |
| | }; |
| |
|
| | removePurchase = async () => { |
| | this.setState( { isRemoving: true } ); |
| |
|
| | const { activeSubscriptions, purchaseListUrl, purchase } = this.props; |
| |
|
| | |
| | if ( this.shouldHandleMarketplaceSubscriptions() ) { |
| | |
| | |
| | |
| | activeSubscriptions.forEach( ( s ) => this.handlePurchaseRemoval( s ) ); |
| | } |
| |
|
| | await this.handlePurchaseRemoval( purchase ); |
| |
|
| | page( purchaseListUrl ); |
| | }; |
| |
|
| | handlePurchaseRemoval = async ( purchase ) => { |
| | const { userId, isDomainOnlySite, translate } = this.props; |
| |
|
| | try { |
| | await this.props.removePurchase( purchase.id, userId ); |
| |
|
| | const productName = getName( purchase ); |
| | let successMessage; |
| |
|
| | successMessage = translate( '%(productName)s was removed from {{siteName/}}.', { |
| | args: { productName }, |
| | components: { siteName: <em>{ purchase.domain }</em> }, |
| | } ); |
| |
|
| | if ( |
| | isAkismetTemporarySitePurchase( purchase ) || |
| | isJetpackTemporarySitePurchase( purchase ) |
| | ) { |
| | successMessage = translate( '%(productName)s was removed from your account.', { |
| | args: { productName }, |
| | } ); |
| | } |
| |
|
| | if ( isDomainRegistration( purchase ) ) { |
| | if ( isDomainOnlySite ) { |
| | this.props.receiveDeletedSite( purchase.siteId ); |
| | this.props.setAllSitesSelected(); |
| | } |
| |
|
| | successMessage = translate( 'The domain {{domain/}} was removed from your account.', { |
| | components: { domain: <em>{ productName }</em> }, |
| | } ); |
| | } |
| |
|
| | this.props.successNotice( successMessage, { isPersistent: true } ); |
| | } catch ( error ) { |
| | this.setState( { isRemoving: false } ); |
| | this.closeDialog(); |
| | this.props.errorNotice( error.message, { displayOnNextPage: true } ); |
| | } |
| | }; |
| |
|
| | getChatButton = () => ( |
| | <PrecancellationChatButton |
| | onClick={ this.onClickChatButton } |
| | purchase={ this.props.purchase } |
| | className="remove-domain-dialog__chat-button" |
| | /> |
| | ); |
| |
|
| | shouldShowNonPrimaryDomainWarning() { |
| | const { hasNonPrimaryDomainsFlag, isAtomicSite, hasCustomPrimaryDomain, purchase } = this.props; |
| | return ( |
| | hasNonPrimaryDomainsFlag && isPlan( purchase ) && ! isAtomicSite && hasCustomPrimaryDomain |
| | ); |
| | } |
| |
|
| | shouldShowWordAdsEligibilityWarning() { |
| | const { hasSetupAds, purchase } = this.props; |
| | return hasSetupAds && isPlan( purchase ); |
| | } |
| |
|
| | renderNonPrimaryDomainWarningDialog() { |
| | const { hasSetupAds, purchase, site } = this.props; |
| | return ( |
| | <NonPrimaryDomainDialog |
| | isDialogVisible={ this.state.isShowingNonPrimaryDomainWarning } |
| | closeDialog={ this.closeDialog } |
| | removePlan={ this.showRemovePlanDialog } |
| | planName={ getName( purchase ) } |
| | oldDomainName={ site.domain } |
| | newDomainName={ site.wpcom_url } |
| | hasSetupAds={ hasSetupAds } |
| | /> |
| | ); |
| | } |
| |
|
| | renderWordAdsEligibilityWarningDialog() { |
| | const { purchase } = this.props; |
| | return ( |
| | <WordAdsEligibilityWarningDialog |
| | isDialogVisible={ this.state.isShowingWordAdsEligibilityWarningDialog } |
| | closeDialog={ this.closeDialog } |
| | removePlan={ this.showRemovePlanDialog } |
| | planName={ getName( purchase ) } |
| | /> |
| | ); |
| | } |
| |
|
| | renderDomainDialog() { |
| | return ( |
| | <RemoveDomainDialog |
| | isRemoving={ this.state.isRemoving } |
| | isDialogVisible={ this.state.isDialogVisible } |
| | removePurchase={ this.removePurchase } |
| | closeDialog={ this.closeDialog } |
| | chatButton={ this.getChatButton() } |
| | purchase={ this.props.purchase } |
| | /> |
| | ); |
| | } |
| |
|
| | renderDomainMappingDialog() { |
| | const { purchase } = this.props; |
| |
|
| | return ( |
| | <CancelPurchaseForm |
| | disableButtons={ this.state.isRemoving } |
| | purchase={ purchase } |
| | isVisible={ this.state.isDialogVisible } |
| | onClose={ this.closeDialog } |
| | onSurveyComplete={ this.removePurchase } |
| | flowType={ CANCEL_FLOW_TYPE.REMOVE } |
| | /> |
| | ); |
| | } |
| |
|
| | renderPlanDialog() { |
| | const { activeSubscriptions, purchase, skipRemovePlanSurvey } = this.props; |
| |
|
| | return ( |
| | <CancelPurchaseForm |
| | disableButtons={ this.state.isRemoving } |
| | purchase={ purchase } |
| | linkedPurchases={ activeSubscriptions } |
| | isVisible={ this.state.isDialogVisible } |
| | onClose={ this.closeDialog } |
| | onSurveyComplete={ this.removePurchase } |
| | flowType={ CANCEL_FLOW_TYPE.REMOVE } |
| | skipRemovePlanSurvey={ skipRemovePlanSurvey } |
| | /> |
| | ); |
| | } |
| |
|
| | renderJetpackDialog() { |
| | const { purchase, purchaseListUrl } = this.props; |
| |
|
| | return ( |
| | <CancelJetpackForm |
| | disableButtons={ this.state.isRemoving } |
| | purchase={ purchase } |
| | purchaseListUrl={ purchaseListUrl } |
| | isVisible={ this.state.isDialogVisible } |
| | onClose={ this.closeDialog } |
| | onSurveyComplete={ this.removePurchase } |
| | flowType={ CANCEL_FLOW_TYPE.REMOVE } |
| | /> |
| | ); |
| | } |
| |
|
| | shouldHandleMarketplaceSubscriptions() { |
| | const { activeSubscriptions } = this.props; |
| |
|
| | return activeSubscriptions?.length > 0; |
| | } |
| |
|
| | renderMarketplaceSubscriptionsDialog() { |
| | const { purchase, activeSubscriptions } = this.props; |
| | return ( |
| | <MarketPlaceSubscriptionsDialog |
| | isDialogVisible={ this.state.isShowingMarketplaceSubscriptionsDialog } |
| | closeDialog={ this.closeDialog } |
| | removePlan={ this.showRemovePlanDialog } |
| | planName={ getName( purchase ) } |
| | activeSubscriptions={ activeSubscriptions } |
| | /> |
| | ); |
| | } |
| |
|
| | renderDialog() { |
| | const { purchase } = this.props; |
| |
|
| | if ( isDomainRegistration( purchase ) ) { |
| | return this.renderDomainDialog(); |
| | } |
| |
|
| | if ( isDomainMapping( purchase ) ) { |
| | return this.renderDomainMappingDialog(); |
| | } |
| |
|
| | if ( isDomainTransfer( purchase ) || isTitanMail( purchase ) ) { |
| | return this.renderPlanDialog(); |
| | } |
| |
|
| | if ( isGSuiteOrGoogleWorkspace( purchase ) ) { |
| | return ( |
| | <GSuiteCancellationPurchaseDialog |
| | isVisible={ this.state.isDialogVisible } |
| | onClose={ this.closeDialog } |
| | purchase={ purchase } |
| | site={ this.props.site } |
| | /> |
| | ); |
| | } |
| |
|
| | |
| | if ( this.props.isJetpack ) { |
| | return this.renderJetpackDialog(); |
| | } |
| |
|
| | return this.renderPlanDialog(); |
| | } |
| |
|
| | render() { |
| | if ( isDataLoading( this.props ) ) { |
| | return null; |
| | } |
| |
|
| | |
| | if ( ! this.props.site && ! this.props.isJetpack && ! this.props.isAkismet ) { |
| | return null; |
| | } |
| |
|
| | const { className, purchase, translate, useVerticalNavItem } = this.props; |
| | const productName = getName( purchase ); |
| |
|
| | if ( ! isRemovable( purchase ) ) { |
| | return null; |
| | } |
| |
|
| | const defaultContent = ( |
| | <> |
| | { |
| | // translators: productName is a product name, like Jetpack |
| | translate( 'Remove %(productName)s', { args: { productName } } ) |
| | } |
| | </> |
| | ); |
| |
|
| | const wrapperClassName = clsx( 'remove-purchase__card', className ); |
| | const Wrapper = useVerticalNavItem ? VerticalNavItem : CompactCard; |
| | const getWarningDialog = () => { |
| | if ( this.shouldShowNonPrimaryDomainWarning() ) { |
| | return this.renderNonPrimaryDomainWarningDialog(); |
| | } |
| |
|
| | if ( this.shouldHandleMarketplaceSubscriptions() ) { |
| | return this.renderMarketplaceSubscriptionsDialog(); |
| | } |
| |
|
| | if ( this.shouldShowWordAdsEligibilityWarning() ) { |
| | return this.renderWordAdsEligibilityWarningDialog(); |
| | } |
| |
|
| | return null; |
| | }; |
| |
|
| | return ( |
| | <> |
| | <Wrapper tagName="button" className={ wrapperClassName } onClick={ this.openDialog }> |
| | { this.props.children ? this.props.children : defaultContent } |
| | <Gridicon className="card__link-indicator" icon={ this.props.linkIcon || 'trash' } /> |
| | </Wrapper> |
| | { getWarningDialog() } |
| | { this.renderDialog() } |
| | </> |
| | ); |
| | } |
| | } |
| |
|
| | export default connect( |
| | ( state, { purchase } ) => { |
| | const isJetpack = purchase && ( isJetpackPlan( purchase ) || isJetpackProduct( purchase ) ); |
| | const isAkismet = purchase && isAkismetProduct( purchase ); |
| | return { |
| | isDomainOnlySite: purchase && isDomainOnly( state, purchase.siteId ), |
| | isAtomicSite: isSiteAutomatedTransfer( state, purchase.siteId ), |
| | isJetpack, |
| | isAkismet, |
| | userId: getCurrentUserId( state ), |
| | primaryDomain: getPrimaryDomainBySiteId( state, purchase.siteId ), |
| | }; |
| | }, |
| | { |
| | errorNotice, |
| | receiveDeletedSite, |
| | recordTracksEvent, |
| | removePurchase, |
| | setAllSitesSelected, |
| | successNotice, |
| | } |
| | )( localize( RemovePurchase ) ); |
| |
|