File size: 5,037 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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
import { Icon, starEmpty } from '@wordpress/icons';
import clsx from 'clsx';
import { useTranslate } from 'i18n-calypso';
import { useCallback, useEffect, useState } from 'react';
import JetpackIcons from 'calypso/components/jetpack/jetpack-icons';
import Sidebar, {
SidebarV2Main as SidebarMain,
SidebarV2Footer as SidebarFooter,
SidebarNavigator,
SidebarNavigatorMenu,
SidebarNavigatorMenuItem,
} from 'calypso/layout/sidebar-v2';
import { useDispatch, useSelector } from 'calypso/state';
import { loadTrackingTool, recordTracksEvent } from 'calypso/state/analytics/actions';
import { isAgencyUser } from 'calypso/state/partner-portal/partner/selectors';
import getSiteAdminUrl from 'calypso/state/sites/selectors/get-site-admin-url';
import { getSelectedSiteId } from 'calypso/state/ui/selectors';
import UserFeedbackModalForm from '../user-feedback-modal-form';
import SidebarHeader from './header';
import JetpackCloudSiteSelector from './site-selector';
import './style.scss';
type Props = {
className?: string;
isJetpackManage?: boolean;
path: string;
menuItems: {
icon: JSX.Element;
path: string;
link: string;
title: string;
onClickMenuItem?: ( path: string ) => void;
withChevron?: boolean;
isExternalLink?: boolean;
isSelected?: boolean;
trackEventName?: string;
trackEventProps?: { [ key: string ]: string };
}[];
title?: string;
description?: string;
backButtonProps?: {
icon: JSX.Element;
label: string;
onClick: () => void;
};
};
const USER_FEEDBACK_FORM_URL_HASH = '#product-feedback';
const JetpackCloudSidebar = ( {
className,
isJetpackManage,
path,
menuItems,
title,
description,
backButtonProps,
}: Props ) => {
const isAgency = useSelector( isAgencyUser );
const siteId = useSelector( getSelectedSiteId );
const jetpackAdminUrl = useSelector( ( state ) =>
siteId ? getSiteAdminUrl( state, siteId ) : null
);
const translate = useTranslate();
const dispatch = useDispatch();
// Determine whether to initially show the user feedback form.
const shouldShowUserFeedbackForm = window.location.hash === USER_FEEDBACK_FORM_URL_HASH;
const [ showUserFeedbackForm, setShowUserFeedbackForm ] = useState( shouldShowUserFeedbackForm );
const onShareProductFeedback = useCallback( () => {
dispatch( recordTracksEvent( 'calypso_jetpack_sidebar_share_product_feedback_click' ) );
setShowUserFeedbackForm( true );
}, [ dispatch ] );
const onCloseUserFeedbackForm = useCallback( () => {
// Remove any hash from the URL.
history.pushState( null, '', window.location.pathname + window.location.search );
setShowUserFeedbackForm( false );
}, [] );
useEffect( () => {
dispatch( loadTrackingTool( 'LogRocket' ) );
}, [ dispatch ] );
return (
<Sidebar className={ clsx( 'jetpack-cloud-sidebar', className ) }>
<SidebarHeader forceAllSitesView={ isJetpackManage } />
<SidebarMain>
<SidebarNavigator initialPath={ path }>
<SidebarNavigatorMenu
path={ path }
title={ title }
description={ description }
backButtonProps={ backButtonProps }
>
{ menuItems.map( ( item ) => (
<SidebarNavigatorMenuItem
key={ item.link }
{ ...item }
onClickMenuItem={ ( path ) => {
if ( item.trackEventName ) {
dispatch( recordTracksEvent( item.trackEventName, item.trackEventProps ) );
}
item.onClickMenuItem?.( path );
} }
/>
) ) }
</SidebarNavigatorMenu>
</SidebarNavigator>
</SidebarMain>
<SidebarFooter className="jetpack-cloud-sidebar__footer">
<ul>
{ ! isJetpackManage && jetpackAdminUrl && (
<SidebarNavigatorMenuItem
isExternalLink
openInSameTab
title={ translate( 'WP Admin' ) }
link={ jetpackAdminUrl }
path={ jetpackAdminUrl }
icon={ <JetpackIcons icon="wordpress" /> }
onClickMenuItem={ () => {
dispatch( recordTracksEvent( 'calypso_jetpack_sidebar_wp_admin_link_click' ) );
} }
/>
) }
<SidebarNavigatorMenuItem
isExternalLink
title={ translate( 'Get help', {
comment: 'Jetpack Cloud sidebar navigation item',
} ) }
link="https://jetpack.com/support"
path=""
icon={ <JetpackIcons icon="help" /> }
onClickMenuItem={ () => {
dispatch(
recordTracksEvent( 'calypso_jetpack_sidebar_menu_click', {
menu_item: 'Jetpack Cloud / Support',
} )
);
} }
/>
{ isAgency && (
<SidebarNavigatorMenuItem
title={ translate( 'Share product feedback', {
comment: 'Jetpack Cloud sidebar navigation item',
} ) }
link={ USER_FEEDBACK_FORM_URL_HASH }
path=""
icon={ <Icon icon={ starEmpty } /> }
onClickMenuItem={ onShareProductFeedback }
/>
) }
</ul>
</SidebarFooter>
<JetpackCloudSiteSelector />
<UserFeedbackModalForm show={ showUserFeedbackForm } onClose={ onCloseUserFeedbackForm } />
</Sidebar>
);
};
export default JetpackCloudSidebar;
|