File size: 4,297 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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
/* eslint-disable no-restricted-imports */
/**
* External Dependencies
*/
import { recordTracksEvent } from '@automattic/calypso-analytics';
import { CardBody, Disabled } from '@wordpress/components';
import { useSelect, useDispatch } from '@wordpress/data';
import { useEffect, useRef } from '@wordpress/element';
import React from 'react';
import { Route, Routes, useLocation, useNavigate } from 'react-router-dom';
/**
* Internal Dependencies
*/
import { useHelpCenterContext } from '../contexts/HelpCenterContext';
import { useSupportStatus } from '../data/use-support-status';
import { HELP_CENTER_STORE } from '../stores';
import { HelpCenterArticle } from './help-center-article';
import { HelpCenterChat } from './help-center-chat';
import { HelpCenterChatHistory } from './help-center-chat-history';
import { HelpCenterContactForm } from './help-center-contact-form';
import { HelpCenterSearch } from './help-center-search';
import { SuccessScreen } from './ticket-success-screen';
import type { HelpCenterSelect } from '@automattic/data-stores';
import './help-center-content.scss';
// Disabled component only applies the class if isDisabled is true, we want it always.
function Wrapper( {
isDisabled,
className,
children,
}: React.PropsWithChildren< { isDisabled: boolean; className: string } > ) {
if ( isDisabled ) {
return (
<Disabled isDisabled={ isDisabled } className={ className }>
{ children }
</Disabled>
);
}
return <div className={ className }>{ children }</div>;
}
const HelpCenterContent: React.FC< { isRelative?: boolean; currentRoute?: string } > = ( {
currentRoute,
} ) => {
const location = useLocation();
const containerRef = useRef< HTMLDivElement >( null );
const navigate = useNavigate();
const { setNavigateToRoute } = useDispatch( HELP_CENTER_STORE );
const { sectionName } = useHelpCenterContext();
const { data, isLoading: isLoadingSupportStatus } = useSupportStatus();
const { navigateToRoute, isMinimized, allowPremiumSupport } = useSelect( ( select ) => {
const store = select( HELP_CENTER_STORE ) as HelpCenterSelect;
return {
navigateToRoute: store.getNavigateToRoute(),
isMinimized: store.getIsMinimized(),
allowPremiumSupport: store.getAllowPremiumSupport(),
};
}, [] );
const isUserEligibleForPaidSupport =
Boolean( data?.eligibility?.is_user_eligible ) || allowPremiumSupport;
const userFieldFlowName = data?.eligibility?.user_field_flow_name;
useEffect( () => {
recordTracksEvent( 'calypso_helpcenter_page_open', {
pathname: location.pathname,
search: location.search,
section: sectionName,
force_site_id: true,
location: 'help-center',
is_free_user: ! isUserEligibleForPaidSupport,
} );
}, [ location, sectionName, isUserEligibleForPaidSupport ] );
useEffect( () => {
if ( navigateToRoute ) {
const fullLocation = [ location.pathname, location.search, location.hash ].join( '' );
// On navigate once to keep the back button responsive.
if ( fullLocation !== navigateToRoute ) {
navigate( navigateToRoute );
}
setNavigateToRoute( null );
}
}, [ navigate, navigateToRoute, setNavigateToRoute, location ] );
useEffect( () => {
if (
containerRef.current &&
! location.hash &&
! location.pathname.includes( '/odie' ) &&
! location.pathname.includes( '/post' )
) {
containerRef.current.scrollTo( 0, 0 );
}
}, [ location ] );
return (
<CardBody ref={ containerRef } className="help-center__container-content">
<Wrapper isDisabled={ isMinimized } className="help-center__container-content-wrapper">
<Routes>
<Route path="/" element={ <HelpCenterSearch currentRoute={ currentRoute } /> } />
<Route path="/post" element={ <HelpCenterArticle /> } />
<Route path="/contact-form" element={ <HelpCenterContactForm /> } />
<Route path="/success" element={ <SuccessScreen /> } />
<Route
path="/odie"
element={
<HelpCenterChat
isLoadingStatus={ isLoadingSupportStatus }
isUserEligibleForPaidSupport={ isUserEligibleForPaidSupport }
userFieldFlowName={ userFieldFlowName }
/>
}
/>
<Route path="/chat-history" element={ <HelpCenterChatHistory /> } />
</Routes>
</Wrapper>
</CardBody>
);
};
export default HelpCenterContent;
|