File size: 2,189 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
import { localizeUrl } from '@automattic/i18n-utils';
import { useDispatch } from '@wordpress/data';
import { useEffect } from '@wordpress/element';
import { useResetSupportInteraction } from './use-reset-support-interaction';
/**
* Add your conditions here to open the Help Center automatically when they're met.
*/
export const useActionHooks = () => {
const { setShowHelpCenter, setShowSupportDoc, setNavigateToRoute, setNewMessagingChat } =
useDispatch( 'automattic/help-center' );
const resetSupportInteraction = useResetSupportInteraction();
const queryParams = new URLSearchParams( window.location.search );
const actionHooks = [
/**
* Open to the support doc for the Subscribe block.
*/
{
condition() {
return queryParams.get( 'help-center' ) === 'subscribe-block';
},
action() {
setShowHelpCenter( true );
setShowSupportDoc(
localizeUrl( 'https://wordpress.com/support/wordpress-editor/blocks/subscribe-block/' ),
170164 // post id of subscribe block support doc page
);
},
},
/**
* Open Help Center.
*/
{
condition() {
return queryParams.get( 'help-center' ) === 'home';
},
action() {
setShowHelpCenter( true );
},
},
/**
* Open to Wapuu chat.
*/
{
condition() {
return queryParams.get( 'help-center' ) === 'wapuu';
},
async action() {
await resetSupportInteraction();
setNavigateToRoute( '/odie' );
setShowHelpCenter( true );
},
},
/**
* Open to Chat with Happiness Engineer.
*/
{
condition() {
return queryParams.get( 'help-center' ) === 'happiness-engineer';
},
action() {
setNewMessagingChat( {
initialMessage: queryParams.get( 'user-message' ) ?? '',
siteUrl: queryParams.get( 'site-url' ) ?? '',
siteId: queryParams.get( 'site-id' ) ?? '',
} );
},
},
];
useEffect( () => {
const timeout = setTimeout( () => {
actionHooks.forEach( ( actionHook ) => {
if ( actionHook.condition() ) {
actionHook.action();
}
} );
}, 0 );
return () => clearTimeout( timeout );
// Only want to run this once
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [] );
};
|