/* eslint-disable jsx-a11y/click-events-have-key-events */ /* eslint-disable jsx-a11y/no-static-element-interactions */ import { WPCOM_FEATURES_INSTALL_PLUGINS, WPCOM_FEATURES_INSTALL_PURCHASED_PLUGINS, } from '@automattic/calypso-products'; import page from '@automattic/calypso-router'; import { Button, Gridicon, ExternalLink } from '@automattic/components'; import { localizeUrl } from '@automattic/i18n-utils'; import clsx from 'clsx'; import { localize } from 'i18n-calypso'; import PropTypes from 'prop-types'; import { Component, useRef } from 'react'; import { connect } from 'react-redux'; import InfoPopover from 'calypso/components/info-popover'; import { marketplacePlanToAdd, getProductSlugByPeriodVariation, getSaasRedirectUrl, } from 'calypso/lib/plugins/utils'; import { getSiteFileModDisableReason } from 'calypso/lib/site/utils'; import { recordGoogleEvent, recordTracksEvent } from 'calypso/state/analytics/actions'; import { getCurrentUserId } from 'calypso/state/current-user/selectors'; import { installPlugin } from 'calypso/state/plugins/installed/actions'; import { removePluginStatuses } from 'calypso/state/plugins/installed/status/actions'; import { getProductsList } from 'calypso/state/products-list/selectors'; import getSiteConnectionStatus from 'calypso/state/selectors/get-site-connection-status'; import isSiteWpcomAtomic from 'calypso/state/selectors/is-site-wpcom-atomic'; import siteHasFeature from 'calypso/state/selectors/site-has-feature'; import isJetpackSite from 'calypso/state/sites/selectors/is-jetpack-site'; import { isCompatiblePlugin } from '../plugin-compatibility'; import { getPeriodVariationValue } from '../plugin-price'; import './style.scss'; const PluginInstallNotice = ( { isEmbed, warningText, children } ) => { const disabledInfoLabel = useRef(); const infoPopover = useRef(); const togglePopover = ( event ) => { infoPopover.current.handleClick( event ); }; return (
{ warningText } { children }
); }; export class PluginInstallButton extends Component { installAction = () => { const { isEmbed, siteId, selectedSite, isInstalling, plugin, canInstallPlugins, siteIsWpcomAtomic, recordGoogleEvent: recordGAEvent, recordTracksEvent: recordEvent, } = this.props; if ( isInstalling ) { return; } if ( canInstallPlugins && siteIsWpcomAtomic ) { this.props.removePluginStatuses( 'completed', 'error', 'up-to-date' ); this.props.installPlugin( siteId, plugin ); } else { return page( `/plugins/${ plugin.slug }/${ selectedSite.slug }` ); } if ( isEmbed ) { recordGAEvent( 'Plugins', 'Install with no selected site', 'Plugin Name', plugin.slug ); recordEvent( 'calypso_plugin_install_click_from_sites_list', { site: siteId, plugin: plugin.slug, } ); } else { recordGAEvent( 'Plugins', 'Install on selected Site', 'Plugin Name', plugin.slug ); recordEvent( 'calypso_plugin_install_click_from_plugin_info', { site: siteId, plugin: plugin.slug, } ); } }; clickSupportLink = () => { this.props.recordGoogleEvent( 'Plugins', 'Clicked How do I fix disabled plugin installs unresponsive site.' ); }; clickSiteManagmentLink = () => { this.props.recordGoogleEvent( 'Plugins', 'Clicked How do I fix disabled plugin installs' ); }; getDisabledInfo() { const { translate, selectedSite, siteId } = this.props; if ( ! selectedSite ) { // we don't have enough info return null; } if ( selectedSite.options.is_multi_network ) { return translate( '%(site)s is part of a multi-network installation, which is not currently supported.', { args: { site: selectedSite.title }, } ); } if ( ! selectedSite.canUpdateFiles && selectedSite.options.file_mod_disabled ) { const reasons = getSiteFileModDisableReason( selectedSite, 'modifyFiles' ); const html = []; if ( reasons.length > 1 ) { html.push(

{ translate( 'Plugin install is not available for %(site)s:', { args: { site: selectedSite.title }, } ) }

); const list = reasons.map( ( reason, i ) => (
  • { reason }
  • ) ); html.push( // eslint-disable-next-line wpcalypso/jsx-classname-namespace ); } else { html.push(

    { translate( 'Plugin install is not available for %(site)s. %(reason)s', { args: { site: selectedSite.title, reason: reasons[ 0 ] }, } ) }

    ); } html.push( { translate( 'How do I fix this?' ) } ); return html; } return null; } renderMarketplaceButton() { const { translate, selectedSite, siteId, userId, plugin, billingPeriod, canInstallPurchasedPlugins, productsList, } = this.props; const variationPeriod = getPeriodVariationValue( billingPeriod ); const variation = plugin?.variations?.[ variationPeriod ]; const product_slug = getProductSlugByPeriodVariation( variation, productsList ); if ( plugin.isSaasProduct ) { const saasRedirectUrl = getSaasRedirectUrl( plugin, userId, siteId ); return ( ); } const buttonLink = canInstallPurchasedPlugins ? `/checkout/${ selectedSite.slug }/${ product_slug }` : `/checkout/${ selectedSite.slug }/${ marketplacePlanToAdd( selectedSite?.plan, billingPeriod ) },${ product_slug }#step2`; return ( ); } renderButton() { const { translate, isInstalling, isEmbed, disabled, isJetpackCloud, canInstallPlugins, siteIsWpcomAtomic, } = this.props; const label = isInstalling ? translate( 'Installing…' ) : translate( 'Install' ); if ( isEmbed ) { return ( { isInstalling ? ( { label } ) : ( ) } ); } return ( ); } renderNoticeOrButton() { const { plugin, isEmbed, selectedSite, siteIsConnected, siteIsJetpackSite, siteIsWpcomAtomic, translate, canInstallPurchasedPlugins, } = this.props; if ( siteIsConnected === false ) { return (

    { translate( '%(site)s is unresponsive.', { args: { site: selectedSite.title } } ) }

    ); } if ( ! isCompatiblePlugin( plugin.slug ) && siteIsWpcomAtomic ) { return (

    { translate( 'This plugin is not supported on WordPress.com.' ) }

    { translate( 'Learn more.' ) }
    ); } const disabledInfo = this.getDisabledInfo(); if ( ! selectedSite.canUpdateFiles && disabledInfo ) { return disabledInfo ? ( { disabledInfo } ) : null; } if ( siteIsJetpackSite && ! siteIsWpcomAtomic && plugin.isMarketplaceProduct ) { return (

    { translate( 'Paid plugins are not yet available for Jetpack Sites.' ) }

    ); } if ( ! plugin.isMarketplaceProduct ) { return this.renderButton(); } return this.renderMarketplaceButton(); } render() { return
    { this.renderNoticeOrButton() }
    ; } } PluginInstallButton.propTypes = { selectedSite: PropTypes.object.isRequired, plugin: PropTypes.object.isRequired, isEmbed: PropTypes.bool, isInstalling: PropTypes.bool, disabled: PropTypes.bool, }; export default connect( ( state, { selectedSite } ) => { const siteId = selectedSite && selectedSite.ID; return { siteId, userId: getCurrentUserId( state ), siteIsConnected: getSiteConnectionStatus( state, siteId ), siteIsWpcomAtomic: isSiteWpcomAtomic( state, siteId ), siteIsJetpackSite: isJetpackSite( state, siteId ), canInstallPurchasedPlugins: siteHasFeature( state, siteId, WPCOM_FEATURES_INSTALL_PURCHASED_PLUGINS ), canInstallPlugins: siteHasFeature( state, siteId, WPCOM_FEATURES_INSTALL_PLUGINS ), productsList: getProductsList( state ), }; }, { installPlugin, removePluginStatuses, recordGoogleEvent, recordTracksEvent, } )( localize( PluginInstallButton ) );