woocommerce/plugins/woocommerce-blocks/assets/js/base/hooks/checkout/use-checkout-notices.js

25 lines
617 B
JavaScript
Raw Normal View History

/**
* External dependencies
*/
import useCheckoutContext from '@woocommerce/base-context';
const useCheckoutNotices = () => {
const { notices, updateNotices } = useCheckoutContext();
const addNotice = ( notice ) => {
updateNotices( ( originalNotices ) => [ ...originalNotices, notice ] );
};
const clearAllNotices = () => {
// @todo...figure out how notices are saved - might need unique ids?
// Do we have a special notice creator that takes care of that?
// Use wp notice api?
updateNotices( [] );
};
return {
notices,
addNotice,
clearAllNotices,
};
};
export default useCheckoutNotices;