File size: 8,363 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | import {
isDomainRegistration,
isJetpackPlan,
isJetpackProduct,
isAkismetProduct,
} from '@automattic/calypso-products';
import page from '@automattic/calypso-router';
import { Button } from '@automattic/components';
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 DomainCancellationSurvey from 'calypso/components/marketing-survey/cancel-purchase-form/domain-cancellation-survey';
import {
getName,
hasAmountAvailableToRefund,
isOneTimePurchase,
isSubscription,
} from 'calypso/lib/purchases';
import { getPurchaseCancellationFlowType } from 'calypso/lib/purchases/utils';
import { purchasesRoot } from 'calypso/me/purchases/paths';
import { errorNotice, successNotice } from 'calypso/state/notices/actions';
import { clearPurchases } from 'calypso/state/purchases/actions';
import { refreshSitePlans } from 'calypso/state/sites/plans/actions';
import { MarketPlaceSubscriptionsDialog } from '../marketplace-subscriptions-dialog';
import { willShowDomainOptionsRadioButtons } from './domain-options';
class CancelPurchaseButton extends Component {
static propTypes = {
purchase: PropTypes.object.isRequired,
purchaseListUrl: PropTypes.string,
siteSlug: PropTypes.string.isRequired,
cancelBundledDomain: PropTypes.bool.isRequired,
includedDomainPurchase: PropTypes.object,
disabled: PropTypes.bool,
activeSubscriptions: PropTypes.array,
onCancellationStart: PropTypes.func,
onCancellationComplete: PropTypes.func,
onSurveyComplete: PropTypes.func,
moment: PropTypes.func,
// Props from parent component
showDialog: PropTypes.bool,
isLoading: PropTypes.bool,
onDialogClose: PropTypes.func,
onSetLoading: PropTypes.func,
// Methods from parent component
downgradeClick: PropTypes.func,
freeMonthOfferClick: PropTypes.func,
// Control marketplace dialog visibility
showMarketplaceDialog: PropTypes.bool,
};
static defaultProps = {
purchaseListUrl: purchasesRoot,
showMarketplaceDialog: true,
};
state = {
disabled: false,
isShowingMarketplaceSubscriptionsDialog: false,
};
setDisabled = ( disabled ) => {
this.setState( { disabled } );
};
handleCancelPurchaseClick = async () => {
// For all purchases, including domain registrations, show the survey first
// The API call will happen at the end of the survey flow
// For other purchases, determine if we need domain options step
// If onCancellationStart is null, we're already in the domain options step
if ( this.props.onCancellationStart === null ) {
// We're in the domain options step, show survey directly
this.props.onCancellationComplete();
} else {
const needsDomainOptionsStep =
this.props.includedDomainPurchase &&
willShowDomainOptionsRadioButtons( this.props.includedDomainPurchase, this.props.purchase );
if ( needsDomainOptionsStep ) {
// Step 1: Show domain options step
this.props.onCancellationStart();
} else {
// Step 2: Show survey directly (API call will happen in survey)
this.props.onCancellationStart();
}
}
};
closeDialog = () => {
this.setState( {
isShowingMarketplaceSubscriptionsDialog: false,
} );
// Call parent's dialog close handler if provided
if ( this.props.onDialogClose ) {
this.props.onDialogClose();
}
// Always redirect to purchases page when dialog is closed
page.redirect( this.props.purchaseListUrl );
};
shouldHandleMarketplaceSubscriptions() {
const { activeSubscriptions, showMarketplaceDialog } = this.props;
return activeSubscriptions?.length > 0 && showMarketplaceDialog;
}
showMarketplaceDialog = () => {
this.setState( {
isShowingMarketplaceSubscriptionsDialog: true,
} );
};
handleMarketplaceDialogContinue = () => {
// Close the marketplace dialog
this.setState( {
isShowingMarketplaceSubscriptionsDialog: false,
} );
// Show the appropriate survey based on purchase type
this.handleCancelPurchaseClick();
};
handleSurveyComplete = () => {
// Call the parent's survey complete handler
if ( this.props.onSurveyComplete ) {
this.props.onSurveyComplete();
}
};
render() {
const { purchase, translate, cancelBundledDomain, includedDomainPurchase } = this.props;
const onClick = ( () => {
return this.handleCancelPurchaseClick;
} )();
const text = ( () => {
if ( hasAmountAvailableToRefund( purchase ) ) {
if ( isDomainRegistration( purchase ) ) {
return translate( 'Cancel domain and refund' );
}
if ( isSubscription( purchase ) ) {
return translate( 'Cancel subscription' );
}
if ( isOneTimePurchase( purchase ) ) {
return translate( 'Cancel and refund' );
}
}
if ( isDomainRegistration( purchase ) ) {
return translate( 'Cancel domain' );
}
if ( isSubscription( purchase ) ) {
return translate( 'Cancel subscription' );
}
} )();
const disableButtons = this.state.disabled || this.props.disabled;
const { isJetpack, isAkismet, purchaseListUrl, activeSubscriptions, isLoading, showDialog } =
this.props;
const planName = getName( purchase );
return (
<div className="cancel-purchase__button-wrapper">
<Button
className="cancel-purchase__button"
disabled={ disableButtons }
busy={ isLoading }
scary
onClick={
this.shouldHandleMarketplaceSubscriptions() ? this.showMarketplaceDialog : onClick
}
primary
>
{ text }
</Button>
{ ! isJetpack && ! isAkismet && ! isDomainRegistration( purchase ) && (
<CancelPurchaseForm
disableButtons={ disableButtons }
purchase={ purchase }
isVisible={ showDialog }
onClose={ this.closeDialog }
onSurveyComplete={ this.handleSurveyComplete }
downgradeClick={ this.props.downgradeClick }
freeMonthOfferClick={ this.props.freeMonthOfferClick }
flowType={ getPurchaseCancellationFlowType( purchase ) }
cancelBundledDomain={ cancelBundledDomain }
includedDomainPurchase={ includedDomainPurchase }
cancellationInProgress={ isLoading }
/>
) }
{ ( isJetpack || isAkismet ) && (
<CancelJetpackForm
disableButtons={ disableButtons }
purchase={ purchase }
purchaseListUrl={ purchaseListUrl }
isVisible={ showDialog }
onClose={ this.closeDialog }
onSurveyComplete={ this.props.onSurveyComplete }
flowType={ getPurchaseCancellationFlowType( purchase ) }
isAkismet={ isAkismet }
cancellationInProgress={ isLoading }
/>
) }
{ isDomainRegistration( purchase ) && (
<DomainCancellationSurvey
disableButtons={ disableButtons }
purchase={ purchase }
purchaseListUrl={ purchaseListUrl }
isVisible={ showDialog }
onClose={ this.closeDialog }
onSurveyComplete={ this.props.onSurveyComplete }
cancellationInProgress={ isLoading }
/>
) }
{ this.shouldHandleMarketplaceSubscriptions() && (
<MarketPlaceSubscriptionsDialog
isDialogVisible={ this.state.isShowingMarketplaceSubscriptionsDialog }
closeDialog={ this.closeDialog }
removePlan={ this.handleMarketplaceDialogContinue }
planName={ planName }
activeSubscriptions={ activeSubscriptions }
sectionHeadingText={ translate( 'Cancel %(plan)s', {
args: { plan: planName },
} ) }
primaryButtonText={ translate( 'Continue', {
comment:
'This button cancels the active plan and all active Marketplace subscriptions on the site',
} ) }
bodyParagraphText={ translate(
'This subscription will be cancelled. It will be removed when it expires.',
'These subscriptions will be cancelled. They will be removed when they expire.',
{ count: activeSubscriptions.length }
) }
/>
) }
</div>
);
}
}
export default connect(
( state, { purchase } ) => ( {
isJetpack: purchase && ( isJetpackPlan( purchase ) || isJetpackProduct( purchase ) ),
isAkismet: purchase && isAkismetProduct( purchase ),
} ),
{
clearPurchases,
errorNotice,
successNotice,
refreshSitePlans,
}
)( localize( CancelPurchaseButton ) );
|