mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
48 lines
1,013 B
JavaScript
48 lines
1,013 B
JavaScript
/**
|
|
* Hooks: Provide the main API for components to interact with the store.
|
|
*
|
|
* These encapsulate store interactions, offering a consistent interface.
|
|
* Hooks simplify data access and manipulation for components.
|
|
*
|
|
* @file
|
|
*/
|
|
|
|
import { useSelect, useDispatch } from '@wordpress/data';
|
|
|
|
import { STORE_NAME } from './constants';
|
|
|
|
const useTransient = ( key ) =>
|
|
useSelect(
|
|
( select ) => select( STORE_NAME ).transientData()?.[ key ],
|
|
[ key ]
|
|
);
|
|
|
|
const usePersistent = ( key ) =>
|
|
useSelect(
|
|
( select ) => select( STORE_NAME ).persistentData()?.[ key ],
|
|
[ key ]
|
|
);
|
|
|
|
const useHooks = () => {
|
|
const { persist, setShape } = useDispatch( STORE_NAME );
|
|
|
|
// Read-only flags and derived state.
|
|
|
|
// Transient accessors.
|
|
const isReady = useTransient( 'isReady' );
|
|
|
|
// Persistent accessors.
|
|
const shape = usePersistent( 'shape' );
|
|
|
|
return {
|
|
persist,
|
|
isReady,
|
|
shape,
|
|
setShape,
|
|
};
|
|
};
|
|
|
|
export const useState = () => {
|
|
const { persist, isReady } = useHooks();
|
|
return { persist, isReady };
|
|
};
|