File size: 3,405 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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
/* eslint-disable no-restricted-imports */
/**
* External Dependencies
*/
import { initializeAnalytics } from '@automattic/calypso-analytics';
import { useGetSupportInteractions } from '@automattic/odie-client/src/data/use-get-support-interactions';
import { useCanConnectToZendeskMessaging } from '@automattic/zendesk-client';
import { useSelect } from '@wordpress/data';
import { createPortal, useEffect, useRef } from '@wordpress/element';
/**
* Internal Dependencies
*/
import {
HelpCenterRequiredContextProvider,
useHelpCenterContext,
type HelpCenterRequiredInformation,
} from '../contexts/HelpCenterContext';
import { useActionHooks } from '../hooks';
import { useOpeningCoordinates } from '../hooks/use-opening-coordinates';
import { HELP_CENTER_STORE } from '../stores';
import { Container } from '../types';
import HelpCenterContainer from './help-center-container';
import HelpCenterSmooch from './help-center-smooch';
import type { HelpCenterSelect } from '@automattic/data-stores';
import '../styles.scss';
const HelpCenter: React.FC< Container > = ( {
handleClose,
hidden,
currentRoute = window.location.pathname + window.location.search + window.location.hash,
} ) => {
const portalParent = useRef( document.createElement( 'div' ) ).current;
const { isHelpCenterShown, isMinimized } = useSelect( ( select ) => {
const helpCenterSelect: HelpCenterSelect = select( HELP_CENTER_STORE );
return {
isHelpCenterShown: helpCenterSelect.isHelpCenterShown(),
isMinimized: helpCenterSelect.getIsMinimized(),
};
}, [] );
const { currentUser } = useHelpCenterContext();
const { data: canConnectToZendesk } = useCanConnectToZendeskMessaging();
const { data: supportInteractionsOpen, isLoading: isLoadingOpenInteractions } =
useGetSupportInteractions( 'zendesk', 10, 'open' );
const hasOpenZendeskConversations =
! isLoadingOpenInteractions && supportInteractionsOpen
? supportInteractionsOpen?.length > 0
: false;
useEffect( () => {
if ( currentUser ) {
initializeAnalytics( currentUser, null );
}
}, [ currentUser ] );
useActionHooks();
const openingCoordinates = useOpeningCoordinates( ! isHelpCenterShown, isMinimized );
useEffect( () => {
const classes = [ 'help-center' ];
portalParent.classList.add( ...classes );
portalParent.setAttribute( 'role', 'dialog' );
portalParent.setAttribute( 'aria-modal', 'true' );
portalParent.setAttribute( 'aria-labelledby', 'header-text' );
document.body.appendChild( portalParent );
return () => {
document.body.removeChild( portalParent );
handleClose();
};
}, [ portalParent, handleClose ] );
return createPortal(
<>
<HelpCenterContainer
handleClose={ handleClose }
hidden={ hidden }
currentRoute={ currentRoute }
openingCoordinates={ openingCoordinates }
/>
{ canConnectToZendesk && (
<HelpCenterSmooch enableAuth={ isHelpCenterShown || hasOpenZendeskConversations } />
) }
</>,
portalParent
);
};
export default function ContextualizedHelpCenter( {
hidden,
currentRoute,
handleClose,
...props
}: Container &
Partial< HelpCenterRequiredInformation > &
Pick< HelpCenterRequiredInformation, 'currentUser' | 'sectionName' > ) {
return (
<HelpCenterRequiredContextProvider value={ props }>
<HelpCenter hidden={ hidden } currentRoute={ currentRoute } handleClose={ handleClose } />
</HelpCenterRequiredContextProvider>
);
}
|