|
|
|
|
|
|
|
|
|
|
|
import { recordTracksEvent } from '@automattic/calypso-analytics'; |
|
|
import { useWindowDimensions } from '@automattic/viewport'; |
|
|
import { useMobileBreakpoint } from '@automattic/viewport-react'; |
|
|
import { Card } from '@wordpress/components'; |
|
|
import { useFocusReturn, useMergeRefs } from '@wordpress/compose'; |
|
|
import { useSelect, useDispatch } from '@wordpress/data'; |
|
|
import clsx from 'clsx'; |
|
|
import { useRef, useEffect, useCallback, FC, useState } from 'react'; |
|
|
import Draggable, { DraggableProps } from 'react-draggable'; |
|
|
|
|
|
|
|
|
|
|
|
import { FeatureFlagProvider } from '../contexts/FeatureFlagContext'; |
|
|
import { HELP_CENTER_STORE } from '../stores'; |
|
|
import { Container } from '../types'; |
|
|
import HelpCenterContent from './help-center-content'; |
|
|
import HelpCenterFooter from './help-center-footer'; |
|
|
import HelpCenterHeader from './help-center-header'; |
|
|
import { PersistentRouter } from './persistent-router'; |
|
|
import type { HelpCenterSelect } from '@automattic/data-stores'; |
|
|
interface OptionalDraggableProps extends Partial< DraggableProps > { |
|
|
draggable: boolean; |
|
|
children?: React.ReactNode; |
|
|
} |
|
|
|
|
|
const OptionalDraggable: FC< OptionalDraggableProps > = ( { draggable, ...props } ) => { |
|
|
const dims = useWindowDimensions(); |
|
|
const [ position, setPosition ] = useState( { x: 0, y: 0 } ); |
|
|
|
|
|
useEffect( () => { |
|
|
|
|
|
setPosition( { x: 0, y: 0 } ); |
|
|
}, [ dims.width, dims.height ] ); |
|
|
|
|
|
if ( ! draggable ) { |
|
|
return <>{ props.children }</>; |
|
|
} |
|
|
|
|
|
return ( |
|
|
<Draggable |
|
|
position={ position } |
|
|
onDrag={ ( _, p ) => setPosition( p ) } |
|
|
bounds="body" |
|
|
{ ...props } |
|
|
/> |
|
|
); |
|
|
}; |
|
|
|
|
|
const HelpCenterContainer: React.FC< Container > = ( { |
|
|
handleClose, |
|
|
hidden, |
|
|
currentRoute, |
|
|
openingCoordinates, |
|
|
} ) => { |
|
|
const { show, isMinimized } = useSelect( ( select ) => { |
|
|
const store = select( HELP_CENTER_STORE ) as HelpCenterSelect; |
|
|
return { |
|
|
show: store.isHelpCenterShown(), |
|
|
isMinimized: store.getIsMinimized(), |
|
|
}; |
|
|
}, [] ); |
|
|
|
|
|
const nodeRef = useRef< HTMLDivElement >( null ); |
|
|
const { setIsMinimized } = useDispatch( HELP_CENTER_STORE ); |
|
|
const isMobile = useMobileBreakpoint(); |
|
|
const classNames = clsx( 'help-center__container', isMobile ? 'is-mobile' : 'is-desktop', { |
|
|
'is-minimized': isMinimized, |
|
|
} ); |
|
|
|
|
|
const onDismiss = useCallback( () => { |
|
|
handleClose(); |
|
|
recordTracksEvent( 'calypso_inlinehelp_close' ); |
|
|
}, [ handleClose ] ); |
|
|
|
|
|
const focusReturnRef = useFocusReturn(); |
|
|
|
|
|
const cardMergeRefs = useMergeRefs( [ nodeRef, focusReturnRef ] ); |
|
|
|
|
|
const shouldCloseOnEscapeRef = useRef( false ); |
|
|
|
|
|
shouldCloseOnEscapeRef.current = !! show && ! hidden && ! isMinimized; |
|
|
|
|
|
useEffect( () => { |
|
|
const handleKeydown = ( e: KeyboardEvent ) => { |
|
|
if ( e.key === 'Escape' && shouldCloseOnEscapeRef.current ) { |
|
|
onDismiss(); |
|
|
} |
|
|
}; |
|
|
|
|
|
document.addEventListener( 'keydown', handleKeydown ); |
|
|
return () => { |
|
|
document.removeEventListener( 'keydown', handleKeydown ); |
|
|
}; |
|
|
}, [ shouldCloseOnEscapeRef, onDismiss ] ); |
|
|
|
|
|
if ( ! show || hidden ) { |
|
|
return null; |
|
|
} |
|
|
|
|
|
return ( |
|
|
<PersistentRouter> |
|
|
<FeatureFlagProvider> |
|
|
<OptionalDraggable |
|
|
draggable={ ! isMobile && ! isMinimized } |
|
|
nodeRef={ nodeRef } |
|
|
handle=".help-center__container-header" |
|
|
bounds="body" |
|
|
> |
|
|
<Card className={ classNames } style={ { ...openingCoordinates } } ref={ cardMergeRefs }> |
|
|
<HelpCenterHeader |
|
|
isMinimized={ isMinimized } |
|
|
onMinimize={ () => setIsMinimized( true ) } |
|
|
onMaximize={ () => setIsMinimized( false ) } |
|
|
onDismiss={ onDismiss } |
|
|
/> |
|
|
<HelpCenterContent currentRoute={ currentRoute } /> |
|
|
{ ! isMinimized && <HelpCenterFooter /> } |
|
|
</Card> |
|
|
</OptionalDraggable> |
|
|
</FeatureFlagProvider> |
|
|
</PersistentRouter> |
|
|
); |
|
|
}; |
|
|
|
|
|
export default HelpCenterContainer; |
|
|
|