| | import { PayPalScriptProvider, ReactPayPalScriptOptions } from '@paypal/react-paypal-js'; |
| | import { useI18n } from '@wordpress/react-i18n'; |
| | import { useEffect, useState, createContext, PropsWithChildren, useContext, useRef } from 'react'; |
| |
|
| | export interface PayPalConfigurationApiResponse { |
| | client_id: string | undefined; |
| | } |
| |
|
| | export interface PayPalConfiguration { |
| | clientId: string | undefined; |
| | } |
| |
|
| | export interface UsePayPalConfiguration { |
| | payPalConfiguration: PayPalConfiguration | undefined; |
| | } |
| |
|
| | const PayPalContext = createContext< PayPalConfiguration | undefined >( undefined ); |
| |
|
| | const defaultConfiguration: PayPalConfiguration = { |
| | clientId: undefined, |
| | }; |
| |
|
| | function usePayPalConfigurationInternalOnly( { |
| | fetchPayPalConfiguration, |
| | }: { |
| | fetchPayPalConfiguration: () => Promise< PayPalConfigurationApiResponse >; |
| | } ): { |
| | payPalConfiguration: PayPalConfiguration | undefined; |
| | error: undefined | Error; |
| | } { |
| | const [ configurationError, setConfigurationError ] = useState< undefined | Error >(); |
| | const [ payPalConfiguration, setConfiguration ] = useState< undefined | PayPalConfiguration >( |
| | defaultConfiguration |
| | ); |
| |
|
| | useEffect( () => { |
| | let isSubscribed = true; |
| | fetchPayPalConfiguration() |
| | .then( ( configuration ) => { |
| | if ( ! isSubscribed ) { |
| | return; |
| | } |
| | if ( ! configuration.client_id ) { |
| | throw new Error( |
| | 'Error loading PayPal configuration. Received invalid data from the server.' |
| | ); |
| | } |
| | setConfiguration( { clientId: configuration.client_id } ); |
| | } ) |
| | .catch( ( error ) => { |
| | setConfigurationError( error ); |
| | } ); |
| | return () => { |
| | isSubscribed = false; |
| | }; |
| | }, [ fetchPayPalConfiguration ] ); |
| |
|
| | return { payPalConfiguration, error: configurationError }; |
| | } |
| |
|
| | export function usePayPalConfiguration(): UsePayPalConfiguration { |
| | const payPalConfiguration = useContext( PayPalContext ); |
| | if ( ! payPalConfiguration ) { |
| | throw new Error( 'usePayPalConfiguration can only be used inside a PayPalProvider' ); |
| | } |
| | return { payPalConfiguration }; |
| | } |
| |
|
| | export function PayPalProvider( { |
| | children, |
| | currency, |
| | handleError, |
| | fetchPayPalConfiguration, |
| | }: PropsWithChildren< { |
| | currency: string; |
| | handleError?: ( error: Error ) => void; |
| | fetchPayPalConfiguration: () => Promise< PayPalConfigurationApiResponse >; |
| | } > ) { |
| | const { payPalConfiguration, error } = usePayPalConfigurationInternalOnly( { |
| | fetchPayPalConfiguration, |
| | } ); |
| | const lastError = useRef< Error | undefined >(); |
| |
|
| | useEffect( () => { |
| | if ( ! error || lastError.current === error ) { |
| | return; |
| | } |
| | lastError.current = error; |
| | const errorWithCause = new Error( |
| | `Error fetching PayPal configuration: ${ error?.message ?? error }`, |
| | { |
| | cause: error, |
| | } |
| | ); |
| | |
| | console.error( errorWithCause ); |
| | if ( handleError ) { |
| | handleError( errorWithCause ); |
| | } |
| | }, [ error, handleError ] ); |
| |
|
| | const payPalScriptOptions: ReactPayPalScriptOptions = { |
| | clientId: payPalConfiguration?.clientId ?? 'loading-client-id', |
| | components: 'buttons', |
| | currency, |
| | commit: true, |
| | intent: 'capture', |
| | vault: true, |
| | }; |
| |
|
| | const isConfigurationLoaded = payPalConfiguration?.clientId ? true : false; |
| |
|
| | const { __ } = useI18n(); |
| |
|
| | |
| | |
| | |
| | |
| | |
| | if ( ! isConfigurationLoaded ) { |
| | return <div>{ __( 'Loading…' ) }</div>; |
| | } |
| |
|
| | return ( |
| | <PayPalScriptProvider options={ payPalScriptOptions }> |
| | <PayPalContext.Provider value={ payPalConfiguration }>{ children }</PayPalContext.Provider> |
| | </PayPalScriptProvider> |
| | ); |
| | } |
| |
|