mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-07 19:54:15 +08:00
Try to fix Google Pay in the editor
This commit is contained in:
parent
be6b8a39ec
commit
3171e943ba
12 changed files with 487 additions and 97 deletions
|
@ -0,0 +1,26 @@
|
|||
import { useState, useEffect } from '@wordpress/element';
|
||||
|
||||
const useGooglepayConfig = ( namespace, isGooglepayLoaded ) => {
|
||||
const [ googlePayConfig, setGooglePayConfig ] = useState( null );
|
||||
|
||||
useEffect( () => {
|
||||
const fetchConfig = async () => {
|
||||
if ( ! isGooglepayLoaded ) {
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
const config = await window[ namespace ].Googlepay().config();
|
||||
setGooglePayConfig( config );
|
||||
} catch ( error ) {
|
||||
console.error( 'Failed to fetch Google Pay config:', error );
|
||||
}
|
||||
};
|
||||
|
||||
fetchConfig();
|
||||
}, [ namespace, isGooglepayLoaded ] );
|
||||
|
||||
return googlePayConfig;
|
||||
};
|
||||
|
||||
export default useGooglepayConfig;
|
Loading…
Add table
Add a link
Reference in a new issue