react-code-dataset
/
wp-calypso
/client
/sites
/settings
/administration
/tools
/delete-site
/index.jsx
| import { isFreePlanProduct } from '@automattic/calypso-products'; | |
| import page from '@automattic/calypso-router'; | |
| import { Button } from '@automattic/components'; | |
| import { localize, translate } from 'i18n-calypso'; | |
| import PropTypes from 'prop-types'; | |
| import { Component } from 'react'; | |
| import { connect } from 'react-redux'; | |
| import QuerySitePurchases from 'calypso/components/data/query-site-purchases'; | |
| import FormTextInput from 'calypso/components/forms/form-text-input'; | |
| import InlineSupportLink from 'calypso/components/inline-support-link'; | |
| import NavigationHeader from 'calypso/components/navigation-header'; | |
| import { Panel, PanelCard, PanelCardHeading } from 'calypso/components/panel'; | |
| import withP2HubP2Count from 'calypso/data/p2/with-p2-hub-p2-count'; | |
| import { recordTracksEvent } from 'calypso/lib/analytics/tracks'; | |
| import { resetBreadcrumbs, updateBreadcrumbs } from 'calypso/state/breadcrumb/actions'; | |
| import { hasLoadedSitePurchasesFromServer } from 'calypso/state/purchases/selectors'; | |
| import hasCancelableSitePurchases from 'calypso/state/selectors/has-cancelable-site-purchases'; | |
| import isSiteAutomatedTransfer from 'calypso/state/selectors/is-site-automated-transfer'; | |
| import { deleteSite } from 'calypso/state/sites/actions'; | |
| import { isTrialSite } from 'calypso/state/sites/plans/selectors'; | |
| import { getSite, getSiteDomain } from 'calypso/state/sites/selectors'; | |
| import { hasSitesAsLandingPage } from 'calypso/state/sites/selectors/has-sites-as-landing-page'; | |
| import { setSelectedSiteId } from 'calypso/state/ui/actions'; | |
| import { getSelectedSiteId, getSelectedSiteSlug } from 'calypso/state/ui/selectors'; | |
| import { FeatureBreadcrumb } from '../../../../hooks/breadcrumbs/use-set-feature-breadcrumb'; | |
| import ExportNotice from '../export-notice'; | |
| import DeleteSiteWarnings from './delete-site-warnings'; | |
| import './style.scss'; | |
| class DeleteSite extends Component { | |
| static propTypes = { | |
| deleteSite: PropTypes.func.isRequired, | |
| hasLoadedSitePurchasesFromServer: PropTypes.bool, | |
| siteDomain: PropTypes.string, | |
| siteExists: PropTypes.bool, | |
| siteId: PropTypes.number, | |
| siteSlug: PropTypes.string, | |
| translate: PropTypes.func.isRequired, | |
| isTrialSite: PropTypes.bool, | |
| }; | |
| state = { | |
| confirmDomain: '', | |
| isDeletingSite: false, | |
| }; | |
| renderNotice() { | |
| const { siteDomain, siteId } = this.props; | |
| if ( ! siteDomain ) { | |
| return null; | |
| } | |
| return ( | |
| <ExportNotice | |
| siteSlug={ this.props.siteSlug } | |
| siteId={ siteId } | |
| warningText={ translate( | |
| 'Before deleting your site, consider exporting your content as a backup.' | |
| ) } | |
| /> | |
| ); | |
| } | |
| renderDeleteSiteCTA() { | |
| const { isAtomic, isFreePlan, siteDomain } = this.props; | |
| const deleteDisabled = | |
| typeof this.state.confirmDomain !== 'string' || | |
| this.state.confirmDomain.replace( /\s/g, '' ) !== siteDomain; | |
| const isAtomicRemovalInProgress = isFreePlan && isAtomic; | |
| return ( | |
| <> | |
| <p> | |
| { translate( | |
| 'Type {{strong}}%(siteDomain)s{{/strong}} below to confirm you want to delete the site:', | |
| { | |
| components: { | |
| strong: <strong />, | |
| }, | |
| args: { | |
| siteDomain: this.props.siteDomain, | |
| }, | |
| } | |
| ) } | |
| </p> | |
| <> | |
| <FormTextInput | |
| autoCapitalize="off" | |
| className="delete-site__confirm-input" | |
| onChange={ this.onConfirmDomainChange } | |
| value={ this.state.confirmDomain } | |
| aria-required="true" | |
| /> | |
| <Button | |
| primary | |
| scary | |
| busy={ this.state.isDeletingSite } | |
| disabled={ | |
| deleteDisabled || | |
| ! this.props.siteId || | |
| ! this.props.hasLoadedSitePurchasesFromServer || | |
| isAtomicRemovalInProgress | |
| } | |
| onClick={ this.handleDeleteSiteClick } | |
| > | |
| { translate( 'Delete site' ) } | |
| </Button> | |
| </> | |
| </> | |
| ); | |
| } | |
| renderBody() { | |
| return ( | |
| <> | |
| <div> | |
| <p> | |
| { translate( | |
| 'Deletion is {{strong}}irreversible and will permanently remove all site content{{/strong}} — posts, pages, media, users, authors, domains, purchased upgrades, and premium themes.', | |
| { | |
| components: { | |
| strong: <strong />, | |
| }, | |
| } | |
| ) } | |
| </p> | |
| <p> | |
| { translate( | |
| 'Once deleted, your domain {{strong}}%(siteDomain)s{{/strong}} will also become unavailable.', | |
| { | |
| components: { | |
| strong: <strong />, | |
| }, | |
| args: { | |
| siteDomain: this.props.siteDomain, | |
| }, | |
| } | |
| ) } | |
| </p> | |
| </div> | |
| </> | |
| ); | |
| } | |
| handleDeleteSiteClick = async () => { | |
| if ( ! this.props.hasLoadedSitePurchasesFromServer ) { | |
| return; | |
| } | |
| recordTracksEvent( 'calypso_settings_delete_site_options', { | |
| option: 'delete-site', | |
| } ); | |
| try { | |
| this.setState( { isDeletingSite: true } ); | |
| await this.props.deleteSite( this.props.siteId ); | |
| page.redirect( '/sites' ); | |
| } finally { | |
| this.setState( { isDeletingSite: false } ); | |
| } | |
| }; | |
| _goBack = () => { | |
| const { siteSlug } = this.props; | |
| page( `/sites/settings/site/${ siteSlug }` ); | |
| }; | |
| componentDidUpdate( prevProps ) { | |
| const { siteId, siteExists, useSitesAsLandingPage } = this.props; | |
| if ( siteId && prevProps.siteExists && ! siteExists ) { | |
| this.props.setSelectedSiteId( null ); | |
| if ( useSitesAsLandingPage ) { | |
| page.redirect( '/sites' ); | |
| } else { | |
| page.redirect( '/' ); | |
| } | |
| } | |
| } | |
| onConfirmDomainChange = ( event ) => { | |
| this.setState( { | |
| confirmDomain: event.target.value, | |
| } ); | |
| }; | |
| render() { | |
| const { isAtomic, isFreePlan, siteId, hasCancelablePurchases, p2HubP2Count } = this.props; | |
| const isAtomicRemovalInProgress = isFreePlan && isAtomic; | |
| const canDeleteSite = | |
| ! isAtomicRemovalInProgress && ! hasCancelablePurchases && p2HubP2Count === 0; | |
| const strings = { | |
| confirmDeleteSite: translate( 'Confirm delete site' ), | |
| deleteSite: translate( 'Delete site' ), | |
| exportContent: translate( 'Export content' ), | |
| exportContentFirst: translate( 'Export content first' ), | |
| }; | |
| return ( | |
| <Panel className="settings-administration__delete-site"> | |
| <FeatureBreadcrumb siteId={ siteId } title={ strings.deleteSite } /> | |
| <NavigationHeader | |
| compactBreadcrumb={ false } | |
| navigationItems={ [] } | |
| mobileItem={ null } | |
| title={ strings.deleteSite } | |
| subtitle={ translate( | |
| 'Permanently delete your site and all of its content. {{learnMoreLink}}Learn more{{/learnMoreLink}}.', | |
| { | |
| components: { | |
| learnMoreLink: ( | |
| <InlineSupportLink supportContext="delete_site" showIcon={ false } /> | |
| ), | |
| }, | |
| } | |
| ) } | |
| ></NavigationHeader> | |
| { siteId && <QuerySitePurchases siteId={ siteId } /> } | |
| { canDeleteSite ? ( | |
| <PanelCard> | |
| <> | |
| <PanelCardHeading>{ translate( 'Confirm site deletion' ) }</PanelCardHeading> | |
| { this.renderBody() } | |
| { this.renderNotice() } | |
| </> | |
| { this.renderDeleteSiteCTA() } | |
| </PanelCard> | |
| ) : ( | |
| <DeleteSiteWarnings | |
| isAtomicRemovalInProgress={ isAtomicRemovalInProgress } | |
| p2HubP2Count={ this.props.p2HubP2Count } | |
| isTrialSite={ this.props.isTrialSite } | |
| /> | |
| ) } | |
| </Panel> | |
| ); | |
| } | |
| } | |
| export default connect( | |
| ( state ) => { | |
| const siteId = getSelectedSiteId( state ); | |
| const siteDomain = getSiteDomain( state, siteId ); | |
| const siteSlug = getSelectedSiteSlug( state ); | |
| const site = getSite( state, siteId ); | |
| return { | |
| hasLoadedSitePurchasesFromServer: hasLoadedSitePurchasesFromServer( state ), | |
| isAtomic: isSiteAutomatedTransfer( state, siteId ), | |
| isFreePlan: isFreePlanProduct( site?.plan ), | |
| siteDomain, | |
| siteId, | |
| siteSlug, | |
| siteExists: !! getSite( state, siteId ), | |
| hasCancelablePurchases: hasCancelableSitePurchases( state, siteId ), | |
| useSitesAsLandingPage: hasSitesAsLandingPage( state ), | |
| isTrialSite: isTrialSite( state, siteId ), | |
| }; | |
| }, | |
| { | |
| deleteSite, | |
| setSelectedSiteId, | |
| updateBreadcrumbs, | |
| resetBreadcrumbs, | |
| } | |
| )( localize( withP2HubP2Count( DeleteSite ) ) ); | |