/** * External dependencies */ import { Button } from '@wordpress/components'; import { EllipsisMenu, Link } from '@woocommerce/components'; import { useState, useEffect } from '@wordpress/element'; import { PLUGINS_STORE_NAME, PAYMENT_GATEWAYS_STORE_NAME, } from '@woocommerce/data'; import { recordEvent } from '@woocommerce/tracks'; import { useDispatch, useSelect } from '@wordpress/data'; import { sanitize } from 'dompurify'; import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import './payment-promotion-row.scss'; function sanitizeHTML( html: string ) { return { __html: sanitize( html, { ALLOWED_TAGS: [ 'a', 'img', 'br' ], ALLOWED_ATTR: [ 'href', 'src', 'class', 'alt', 'target' ], } ), }; } type PaymentPromotionRowProps = { paymentMethod: { gatewayId: string; pluginSlug: string; url: string; }; title?: string; columns: { className: string; html: string; width: string | number | undefined; }[]; subTitleContent?: string; }; export const PaymentPromotionRow: React.FC< PaymentPromotionRowProps > = ( { paymentMethod, title, subTitleContent, columns, } ) => { const { gatewayId, pluginSlug, url } = paymentMethod; const [ installing, setInstalling ] = useState( false ); const [ isVisible, setIsVisible ] = useState( true ); const { installAndActivatePlugins } = useDispatch( PLUGINS_STORE_NAME ); const { createNotice } = useDispatch( 'core/notices' ); const { updatePaymentGateway } = useDispatch( PAYMENT_GATEWAYS_STORE_NAME ); const { gatewayIsActive, paymentGateway } = useSelect( ( select ) => { const { getPaymentGateway } = select( PAYMENT_GATEWAYS_STORE_NAME ); const activePlugins: string[] = select( PLUGINS_STORE_NAME ).getActivePlugins(); const isActive = activePlugins && activePlugins.includes( pluginSlug ); let paymentGatewayData; if ( isActive ) { paymentGatewayData = getPaymentGateway( pluginSlug.replace( /\-/g, '_' ) ); } return { gatewayIsActive: isActive, paymentGateway: paymentGatewayData, }; } ); useEffect( () => { if ( gatewayIsActive && paymentGateway && paymentGateway.settings_url ) { window.location.href = paymentGateway.settings_url; } }, [ gatewayIsActive, paymentGateway ] ); const installPaymentGateway = () => { if ( installing ) { return; } setInstalling( true ); recordEvent( 'settings_payments_recommendations_setup', { extension_selected: pluginSlug, } ); installAndActivatePlugins( [ pluginSlug ] ).catch( ( response: { message?: string } ) => { if ( response.message ) { createNotice( 'error', response.message ); } setInstalling( false ); } ); }; const onDismiss = () => { setIsVisible( false ); recordEvent( 'settings_payments_promotions_dismiss', { id: gatewayId, } ); updatePaymentGateway( gatewayId, { settings: { is_dismissed: 'yes', }, } ); }; if ( ! isVisible ) { return null; } return ( <> { columns.map( ( column ) => { if ( column.className.includes( 'name' ) ) { return (
{ title } { subTitleContent ? (
) : null }
); } else if ( column.className.includes( 'status' ) ) { return ( ); } else if ( column.className.includes( 'action' ) ) { return (
e.stopPropagation() } renderContent={ () => (
) } />
); } return ( ); } ) } ); };