/* eslint-disable wpcalypso/jsx-classname-namespace */
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 the site has active Marketplace subscriptions, remove these as well
if ( this.shouldHandleMarketplaceSubscriptions() ) {
// no need to await here, as
// - the success/error messages are handled for each request separately
// - the plan removal is awaited below
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: { purchase.domain } },
} );
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: { productName } },
} );
}
this.props.successNotice( successMessage, { isPersistent: true } );
} catch ( error ) {
this.setState( { isRemoving: false } );
this.closeDialog();
this.props.errorNotice( error.message, { displayOnNextPage: true } );
}
};
getChatButton = () => (
);
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 (
);
}
renderWordAdsEligibilityWarningDialog() {
const { purchase } = this.props;
return (
);
}
renderDomainDialog() {
return (
);
}
renderDomainMappingDialog() {
const { purchase } = this.props;
return (
);
}
renderPlanDialog() {
const { activeSubscriptions, purchase, skipRemovePlanSurvey } = this.props;
return (
);
}
renderJetpackDialog() {
const { purchase, purchaseListUrl } = this.props;
return (
);
}
shouldHandleMarketplaceSubscriptions() {
const { activeSubscriptions } = this.props;
return activeSubscriptions?.length > 0;
}
renderMarketplaceSubscriptionsDialog() {
const { purchase, activeSubscriptions } = this.props;
return (
);
}
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 (
);
}
// Jetpack Plan or Product Cancellation
if ( this.props.isJetpack ) {
return this.renderJetpackDialog();
}
return this.renderPlanDialog();
}
render() {
if ( isDataLoading( this.props ) ) {
return null;
}
// If we have a disconnected site that is _not_ a Jetpack purchase _or_ an Akismet purchase, no removal allowed.
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 (
<>
{ this.props.children ? this.props.children : defaultContent }
{ 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 ) );