File size: 1,929 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 |
import { HelpCenterSelect } from '@automattic/data-stores';
import { Button } from '@wordpress/components';
import { useDispatch, useSelect } from '@wordpress/data';
import clsx from 'clsx';
import { useFlowCustomOptions, useFlowZendeskUserFields } from '../hooks';
import { useResetSupportInteraction } from '../hooks/use-reset-support-interaction';
import { HELP_CENTER_STORE } from '../stores';
import type { FC, ReactNode } from 'react';
interface HelpCenterInlineButtonProps {
flowName?: string;
children?: ReactNode;
className?: string;
}
/**
* Toggles the Help Center. If no flowName is supplied it opens the default
* route (/odie).
*
* If the flowName is supplied and the flow is a premium flow, it will directly open
* a chat with Happiness Engineers.
*/
const HelpCenterInlineButton: FC< HelpCenterInlineButtonProps > = ( {
flowName,
children,
className,
} ) => {
const resetSupportInteraction = useResetSupportInteraction();
const { setShowHelpCenter, setNavigateToRoute, setNewMessagingChat } =
useDispatch( HELP_CENTER_STORE );
const isShowingHelpCenter = useSelect(
( select ) => ( select( HELP_CENTER_STORE ) as HelpCenterSelect ).isHelpCenterShown(),
[]
);
const flowCustomOptions = useFlowCustomOptions( flowName || '' );
const { userFieldMessage, userFieldFlowName } = useFlowZendeskUserFields( flowName || '' );
function toggleHelpCenter() {
setShowHelpCenter(
! isShowingHelpCenter,
flowCustomOptions?.hasPremiumSupport,
flowCustomOptions
);
if ( flowCustomOptions?.hasPremiumSupport ) {
setNewMessagingChat( {
initialMessage: userFieldMessage || '',
userFieldFlowName: userFieldFlowName || '',
} );
} else {
resetSupportInteraction();
setNavigateToRoute( '/odie' );
}
}
return (
<Button onClick={ toggleHelpCenter } className={ clsx( className, 'is-link' ) }>
{ children }
</Button>
);
};
export default HelpCenterInlineButton;
|