mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
76 lines
1.9 KiB
JavaScript
76 lines
1.9 KiB
JavaScript
import { useCallback, useMemo } from '@wordpress/element';
|
|
|
|
import {
|
|
CommonHooks,
|
|
PayLaterMessagingHooks,
|
|
PaymentHooks,
|
|
SettingsHooks,
|
|
StylingHooks,
|
|
TodosHooks,
|
|
} from '../data';
|
|
|
|
export const useSaveSettings = () => {
|
|
const { withActivity } = CommonHooks.useBusyState();
|
|
|
|
const paymentStore = PaymentHooks.useStore();
|
|
const settingsStore = SettingsHooks.useStore();
|
|
const stylingStore = StylingHooks.useStore();
|
|
const todosStore = TodosHooks.useStore();
|
|
const payLaterStore = PayLaterMessagingHooks.useStore();
|
|
|
|
const storeActions = useMemo(
|
|
() => [
|
|
{
|
|
key: 'methods',
|
|
message: 'Process payment methods',
|
|
store: paymentStore,
|
|
},
|
|
{
|
|
key: 'settings',
|
|
message: 'Process the settings',
|
|
store: settingsStore,
|
|
},
|
|
{
|
|
key: 'styling',
|
|
message: 'Process styling details',
|
|
store: stylingStore,
|
|
},
|
|
{
|
|
key: 'todos',
|
|
message: 'Process todos state',
|
|
store: todosStore,
|
|
},
|
|
{
|
|
key: 'pay-later-messaging',
|
|
message: 'Process pay later messaging details',
|
|
store: payLaterStore,
|
|
},
|
|
],
|
|
[ payLaterStore, paymentStore, settingsStore, stylingStore, todosStore ]
|
|
);
|
|
|
|
const persistAll = useCallback( () => {
|
|
/**
|
|
* Executes onSave on TabPayLaterMessaging component.
|
|
*
|
|
* Todo: find a better way for this, because it's highly unreliable
|
|
* (it only works when the user is still on the "Pay Later Messaging" tab)
|
|
*/
|
|
document.getElementById( 'configurator-publishButton' )?.click();
|
|
|
|
storeActions.forEach( ( { key, message, store } ) => {
|
|
withActivity( `persist-${ key }`, message, store.persist );
|
|
} );
|
|
}, [ storeActions, withActivity ] );
|
|
|
|
const refreshAll = useCallback( () => {
|
|
storeActions.forEach( ( { key, message, store } ) => {
|
|
withActivity( `refresh-${ key }`, message, store.refresh );
|
|
} );
|
|
}, [ storeActions, withActivity ] );
|
|
|
|
return {
|
|
persistAll,
|
|
refreshAll,
|
|
};
|
|
};
|