/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { useSelect, useDispatch } from '@wordpress/data'; import { decodeEntities } from '@wordpress/html-entities'; import { Card, CardHeader, CardFooter, Button } from '@wordpress/components'; import { useEffect, useRef, useState } from '@wordpress/element'; import { EllipsisMenu, List, Pill } from '@woocommerce/components'; import { Text } from '@woocommerce/experimental'; import { ONBOARDING_STORE_NAME, PAYMENT_GATEWAYS_STORE_NAME, PLUGINS_STORE_NAME, Plugin, WCDataSelector, } from '@woocommerce/data'; import { recordEvent } from '@woocommerce/tracks'; import ExternalIcon from 'gridicons/dist/external'; /** * Internal dependencies */ import './payment-recommendations.scss'; import { createNoticesFromResponse } from '../lib/notices'; import { getPluginSlug } from '~/utils'; const SEE_MORE_LINK = 'https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/?utm_source=payments_recommendations'; const WcPayPromotionGateway = document.querySelector( '[data-gateway_id="pre_install_woocommerce_payments_promotion"]' ); const PaymentRecommendations: React.FC = () => { const [ installingPlugin, setInstallingPlugin ] = useState< string | null >( null ); const [ isDismissed, setIsDismissed ] = useState< boolean >( false ); const [ isInstalled, setIsInstalled ] = useState< boolean >( false ); const { installAndActivatePlugins, dismissRecommendedPlugins, } = useDispatch( PLUGINS_STORE_NAME ); const { createNotice } = useDispatch( 'core/notices' ); const { installedPaymentGateway, installedPaymentGateways, paymentGatewaySuggestions, isResolving, } = useSelect( ( select: WCDataSelector ) => { const installingGatewayId = isInstalled && getPluginSlug( installingPlugin ); return { installedPaymentGateway: installingGatewayId && select( PAYMENT_GATEWAYS_STORE_NAME ).getPaymentGateway( installingGatewayId ), installedPaymentGateways: select( PAYMENT_GATEWAYS_STORE_NAME ) .getPaymentGateways() .reduce( ( gateways: { [ id: string ]: boolean }, gateway ) => { if ( installingGatewayId === gateway.id ) { return gateways; } gateways[ gateway.id ] = true; return gateways; }, {} ), isResolving: select( ONBOARDING_STORE_NAME ).isResolving( 'getPaymentGatewaySuggestions' ), paymentGatewaySuggestions: select( ONBOARDING_STORE_NAME ).getPaymentGatewaySuggestions(), }; }, [ isInstalled ] ); const supportsWCPayments = paymentGatewaySuggestions && paymentGatewaySuggestions.filter( ( paymentGatewaySuggestion: Plugin ) => { return ( paymentGatewaySuggestion.id.indexOf( 'woocommerce_payments' ) === 0 ); } ).length === 1; const triggeredPageViewRef = useRef( false ); const shouldShowRecommendations = paymentGatewaySuggestions && paymentGatewaySuggestions.length > 0 && ! supportsWCPayments && ! isDismissed; useEffect( () => { if ( ( shouldShowRecommendations || ( WcPayPromotionGateway && ! isResolving ) ) && ! triggeredPageViewRef.current ) { triggeredPageViewRef.current = true; const eventProps = ( paymentGatewaySuggestions || [] ).reduce( ( props: { [ key: string ]: boolean }, plugin: Plugin ) => { if ( plugin.plugins && plugin.plugins.length > 0 ) { return { ...props, [ plugin.plugins[ 0 ].replace( /\-/g, '_' ) + '_displayed' ]: true, }; } return props; }, { woocommerce_payments_displayed: !! WcPayPromotionGateway, } ); recordEvent( 'settings_payments_recommendations_pageview', eventProps ); } }, [ shouldShowRecommendations, WcPayPromotionGateway, isResolving ] ); useEffect( () => { if ( ! installedPaymentGateway ) { return; } window.location.href = installedPaymentGateway.settings_url; }, [ installedPaymentGateway ] ); if ( ! shouldShowRecommendations ) { return null; } const dismissPaymentRecommendations = async () => { setIsDismissed( true ); recordEvent( 'settings_payments_recommendations_dismiss', {} ); const success = await dismissRecommendedPlugins( 'payments' ); if ( ! success ) { setIsDismissed( false ); createNotice( 'error', __( 'There was a problem hiding the "Additional ways to get paid" card.', 'woocommerce' ) ); } }; const setupPlugin = ( plugin: Plugin ) => { if ( installingPlugin ) { return; } setInstallingPlugin( plugin.id ); recordEvent( 'settings_payments_recommendations_setup', { extension_selected: plugin.plugins[ 0 ], } ); installAndActivatePlugins( [ plugin.plugins[ 0 ] ] ) .then( () => { setIsInstalled( true ); } ) .catch( ( response: { errors: Record< string, string > } ) => { createNoticesFromResponse( response ); setInstallingPlugin( null ); } ); }; const pluginsList = ( paymentGatewaySuggestions || [] ) .filter( ( plugin: Plugin ) => { return ( ! installedPaymentGateways[ plugin.id ] && plugin.plugins?.length && ( ! window.wcAdminFeatures[ 'wc-pay-promotion' ] || ! plugin.id.startsWith( 'woocommerce_payments' ) ) ); } ) .map( ( plugin: Plugin ) => { return { key: plugin.id, title: ( <> { plugin.title } { plugin.recommended && ( { __( 'Recommended', 'woocommerce' ) } ) } ), content: decodeEntities( plugin.content ), after: ( ), before: ( ), }; } ); return (
{ __( 'Additional ways to get paid', 'woocommerce' ) } { __( 'We recommend adding one of the following payment extensions to your store. The extension will be installed and activated for you when you click "Get started".', 'woocommerce' ) }
(
) } />
); }; export default PaymentRecommendations;