import page from '@automattic/calypso-router'; import { StripeHookProvider, useStripe } from '@automattic/calypso-stripe'; import { Button } from '@automattic/components'; import { CheckoutProvider, CheckoutFormSubmit, useFormStatus, FormStatus, PaymentMethod, } from '@automattic/composite-checkout'; import { isValueTruthy } from '@automattic/wpcom-checkout'; import { CardElement, useElements } from '@stripe/react-stripe-js'; import { useSelect } from '@wordpress/data'; import { Icon, info } from '@wordpress/icons'; import { getQueryArg } from '@wordpress/url'; import { TranslateResult, useTranslate } from 'i18n-calypso'; import { useCallback, useMemo, useEffect } from 'react'; import { useReturnUrl, useIssueAndAssignLicenses, } from 'calypso/jetpack-cloud/sections/partner-portal/hooks'; import { assignNewCardProcessor } from 'calypso/jetpack-cloud/sections/partner-portal/payment-methods/assignment-processor-functions'; import { getStripeConfiguration } from 'calypso/jetpack-cloud/sections/partner-portal/payment-methods/get-stripe-configuration'; import { useCreateStoredCreditCardMethod } from 'calypso/jetpack-cloud/sections/partner-portal/payment-methods/hooks/use-create-stored-credit-card'; import { partnerPortalBasePath } from 'calypso/lib/jetpack/paths'; import { addQueryArgs } from 'calypso/lib/url'; import { useSelector, useDispatch } from 'calypso/state'; import { recordTracksEvent } from 'calypso/state/analytics/actions'; import { getCurrentUserLocale } from 'calypso/state/current-user/selectors'; import { errorNotice, removeNotice, successNotice } from 'calypso/state/notices/actions'; import { creditCardStore } from 'calypso/state/partner-portal/credit-card-form'; import { doesPartnerRequireAPaymentMethod } from 'calypso/state/partner-portal/partner/selectors'; import { fetchStoredCards } from 'calypso/state/partner-portal/stored-cards/actions'; import { APIError } from 'calypso/state/partner-portal/types'; import getSites from 'calypso/state/selectors/get-sites'; import CreditCardLoading from '../credit-card-fields/credit-card-loading'; import useIssueLicenses from '../hooks/use-issue-licenses'; import { parseQueryStringProducts } from '../lib/querystring-products'; import './style.scss'; function onPaymentSelectComplete( { successCallback, translate, showSuccessMessage, }: { successCallback: () => void; translate: ReturnType< typeof useTranslate >; showSuccessMessage: ( message: string | TranslateResult ) => void; } ) { showSuccessMessage( translate( 'Your payment method has been added successfully.' ) ); successCallback(); } function PaymentMethodForm() { const translate = useTranslate(); const reduxDispatch = useDispatch(); const paymentMethodRequired = useSelector( doesPartnerRequireAPaymentMethod ); const { isStripeLoading, stripeLoadingError, stripeConfiguration, stripe } = useStripe(); const stripeMethod = useCreateStoredCreditCardMethod( { isStripeLoading, stripeLoadingError, stripeConfiguration, stripe, } ); const paymentMethods = useMemo( () => [ stripeMethod ].filter( isValueTruthy ), [ stripeMethod ] ); const useAsPrimaryPaymentMethod: boolean = useSelect( ( select ) => select( creditCardStore ).useAsPrimaryPaymentMethod(), [] ); const sites = useSelector( getSites ); const returnQueryArg = ( getQueryArg( window.location.href, 'return' ) ?? '' ).toString(); const products = ( getQueryArg( window.location.href, 'products' ) ?? '' ).toString(); const product = ( getQueryArg( window.location.href, 'product' ) ?? '' ).toString(); const siteId = ( getQueryArg( window.location.href, 'site_id' ) ?? '' ).toString(); const source = useMemo( () => ( getQueryArg( window.location.href, 'source' ) || '' ).toString(), [] ); const isSiteCreationFlow = source === 'create-site' && !! product; const dispatch = useDispatch(); const { issueAndAssignLicenses, isReady: isIssueAndAssignLicensesReady } = useIssueAndAssignLicenses( siteId ? sites.find( ( site ) => site?.ID === parseInt( siteId ) ) : null, { onIssueError: ( error: APIError ) => { if ( error.code === 'missing_valid_payment_method' ) { dispatch( errorNotice( translate( 'A primary payment method is required.{{br/}} {{a}}Try adding a new payment method{{/a}} or contact support.', { components: { a: ( ), br:
, }, } ) ) ); return; } dispatch( errorNotice( error.message ) ); }, onAssignError: ( error: Error ) => dispatch( errorNotice( error.message, { isPersistent: true } ) ), } ); const { issueLicenses } = useIssueLicenses(); useReturnUrl( ! paymentMethodRequired ); const handleChangeError = useCallback( ( { transactionError }: { transactionError: string | null } ) => { if ( transactionError && ( transactionError.toLowerCase().includes( 'cvc' ) || transactionError.toLowerCase().includes( 'security code' ) ) ) { transactionError = translate( 'Your payment method cvc code or expiration date is invalid.' ); } reduxDispatch( errorNotice( transactionError || translate( 'There was a problem assigning that payment method. Please try again.' ), { id: 'payment-method-failure' } ) ); }, [ reduxDispatch, translate ] ); const showSuccessMessage = useCallback( ( message: TranslateResult ) => { // We do not want to show overlapping notice with site creation notice. if ( ! isSiteCreationFlow ) { reduxDispatch( successNotice( message, { isPersistent: true, displayOnNextPage: true, duration: 5000 } ) ); } }, [ isSiteCreationFlow, reduxDispatch ] ); const successCallback = useCallback( () => { // returnQueryArg - will make sure the license issuing flow will be resumed // when the user already has a license issued but not assigned, and will // assign the license after adding a payment method. // // product - will make sure there will be a license issuing for that product // // isSiteCreationFlow - will make sure there will be site creation if ( returnQueryArg || products || isSiteCreationFlow ) { reduxDispatch( fetchStoredCards( { startingAfter: '', endingBefore: '', } ) ); } else { page( partnerPortalBasePath( '/payment-methods' ) ); } }, [ returnQueryArg, products, isSiteCreationFlow, reduxDispatch ] ); useEffect( () => { if ( paymentMethodRequired ) { return; } // If this is a site creation flow, we will need to resume on the creation of site. if ( isSiteCreationFlow ) { issueLicenses( [ { slug: product, quantity: 1 } ] ); page( '/dashboard?provisioning=true' ); return; } if ( ! products ) { return; } dispatch( recordTracksEvent( 'calypso_partner_portal_issue_multiple_licenses_submit', { products, } ) ); const itemsToIssue = parseQueryStringProducts( products ); issueAndAssignLicenses( itemsToIssue ); // Do not update the dependency array with products since // it gets changed on every product change, which triggers this `useEffect` to run infinitely. // eslint-disable-next-line react-hooks/exhaustive-deps }, [ dispatch, issueAndAssignLicenses, paymentMethodRequired ] ); useEffect( () => { if ( stripeLoadingError ) { reduxDispatch( errorNotice( stripeLoadingError.message ) ); } }, [ stripeLoadingError, reduxDispatch ] ); const elements = useElements(); const getPreviousPageLink = () => { if ( isSiteCreationFlow ) { return partnerPortalBasePath( '/create-site' ); } if ( products ) { return addQueryArgs( { products, ...( siteId && { site_id: siteId } ), ...( source && { source } ), }, partnerPortalBasePath( '/issue-license' ) ); } return partnerPortalBasePath( '/payment-methods/' ); }; return ( { onPaymentSelectComplete( { successCallback, translate, showSuccessMessage, } ); } } onPaymentError={ handleChangeError } paymentMethods={ paymentMethods } paymentProcessors={ { card: ( data: unknown ) => { reduxDispatch( removeNotice( 'payment-method-failure' ) ); return assignNewCardProcessor( { useAsPrimaryPaymentMethod, translate, stripe, stripeConfiguration, cardElement: elements?.getElement( CardElement ) ?? undefined, reduxDispatch, }, data ); }, } } initiallySelectedPaymentMethodId="card" isLoading={ isStripeLoading } >

{ translate( 'Credit card details' ) }

); } function PaymentMethodFormMain( { paymentMethods, useAsPrimaryPaymentMethod, }: { paymentMethods: PaymentMethod[]; useAsPrimaryPaymentMethod: boolean; } ) { const translate = useTranslate(); return (
{ 0 === paymentMethods.length && } { paymentMethods && paymentMethods[ 0 ] && paymentMethods[ 0 ].activeContent } { 0 < paymentMethods.length && useAsPrimaryPaymentMethod && (

{ translate( 'By adding your primary payment method, you authorize automatic monthly charges for your active licenses.' ) }

) }
); } function PaymentMethodFormFooter( { disableBackButton, backButtonHref, }: { disableBackButton: boolean; backButtonHref: string; } ) { const translate = useTranslate(); const dispatch = useDispatch(); const onGoToPaymentMethods = () => { dispatch( recordTracksEvent( 'calypso_partner_portal_payment_method_card_go_back_click' ) ); }; const { formStatus } = useFormStatus(); const shouldDisableBackButton = formStatus !== FormStatus.READY || disableBackButton; return (
); } export default function PaymentMethodFormWrapper() { const locale = useSelector( getCurrentUserLocale ); return ( ); }