File size: 7,713 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 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 |
import config from '@automattic/calypso-config';
import { Button, Gridicon } from '@automattic/components';
import { localizeUrl } from '@automattic/i18n-utils';
import {
bell,
category,
code,
cog,
commentAuthorAvatar,
lockOutline,
notAllowed,
payment,
seen,
} from '@wordpress/icons';
import { localize } from 'i18n-calypso';
import { Component } from 'react';
import { connect } from 'react-redux';
import { withCurrentRoute } from 'calypso/components/route';
import GlobalSidebar, { GLOBAL_SIDEBAR_EVENTS } from 'calypso/layout/global-sidebar';
import Sidebar from 'calypso/layout/sidebar';
import CollapseSidebar from 'calypso/layout/sidebar/collapse-sidebar';
import SidebarFooter from 'calypso/layout/sidebar/footer';
import SidebarItem from 'calypso/layout/sidebar/item';
import SidebarMenu from 'calypso/layout/sidebar/menu';
import SidebarRegion from 'calypso/layout/sidebar/region';
import { clearStore, disablePersistence } from 'calypso/lib/user/store';
import ProfileGravatar from 'calypso/me/profile-gravatar';
import { purchasesRoot } from 'calypso/me/purchases/paths';
import { itemLinkMatches } from 'calypso/my-sites/sidebar/utils';
import { recordGoogleEvent, recordTracksEvent } from 'calypso/state/analytics/actions';
import { redirectToLogout } from 'calypso/state/current-user/actions';
import { getCurrentUser } from 'calypso/state/current-user/selectors';
import { getShouldShowGlobalSidebar } from 'calypso/state/global-sidebar/selectors';
import { logoutUser } from 'calypso/state/logout/actions';
import { setNextLayoutFocus } from 'calypso/state/ui/layout-focus/actions';
import { getSelectedSiteId } from 'calypso/state/ui/selectors';
import './style.scss';
import 'calypso/my-sites/sidebar/style.scss'; // Copy styles from the My Sites sidebar.
class MeSidebar extends Component {
handleGlobalSidebarMenuItemClick = ( path ) => {
if ( ! this.props.shouldShowGlobalSidebar ) {
return;
}
this.props.recordTracksEvent( GLOBAL_SIDEBAR_EVENTS.MENU_ITEM_CLICK, {
section: 'me',
path,
} );
};
onNavigate = ( event, path ) => {
this.props.setNextLayoutFocus( 'content' );
window.scrollTo( 0, 0 );
this.handleGlobalSidebarMenuItemClick( path );
};
onSignOut = async () => {
const { currentUser } = this.props;
// If user is using a supported locale, redirect to app promo page on sign out
const isSupportedLocale =
config( 'english_locales' ).includes( currentUser?.localeSlug ) ||
config( 'magnificent_non_en_locales' ).includes( currentUser?.localeSlug );
let redirectTo = null;
if ( isSupportedLocale && ! config.isEnabled( 'desktop' ) ) {
redirectTo = localizeUrl( 'https://wordpress.com/?apppromo' );
}
try {
const { redirect_to } = await this.props.logoutUser( redirectTo );
disablePersistence();
await clearStore();
window.location.href = redirect_to || '/';
} catch {
// The logout endpoint might fail if the nonce has expired.
// In this case, redirect to wp-login.php?action=logout to get a new nonce generated
this.props.redirectToLogout( redirectTo );
}
this.props.recordGoogleEvent( 'Me', 'Clicked on Sidebar Sign Out Link' );
};
renderGlobalSidebar() {
const { context } = this.props;
const props = {
path: context.path,
requireBackLink: false,
siteTitle: this.props.translate( 'Profile' ),
};
return <GlobalSidebar { ...props }>{ this.renderMenu( { isGlobal: true } ) }</GlobalSidebar>;
}
renderSidebar() {
const { translate } = this.props;
return (
<Sidebar>
{ this.renderMenu() }
<CollapseSidebar title={ translate( 'Collapse menu' ) } icon="dashicons-admin-collapse" />
<SidebarFooter />
</Sidebar>
);
}
renderMenu( options = {} ) {
const { context, translate } = this.props;
const path = context.path.replace( '/me', '' ); // Remove base path.
const { isGlobal } = options;
const mainContent = (
<>
<ProfileGravatar inSidebar user={ this.props.currentUser } />
<div className="sidebar__me-signout">
<Button
compact
className="sidebar__me-signout-button"
onClick={ this.onSignOut }
title={ translate( 'Log out of WordPress.com' ) }
>
<span className="sidebar__me-signout-text">{ translate( 'Log out' ) }</span>
<Gridicon icon="popout" size={ 16 } />
</Button>
</div>
<SidebarMenu>
<SidebarItem
selected={ itemLinkMatches( '', path ) }
link="/me"
label={ translate( 'My Profile' ) }
icon={ commentAuthorAvatar }
onNavigate={ this.onNavigate }
/>
<SidebarItem
selected={ itemLinkMatches( '/account', path ) }
link="/me/account"
label={ translate( 'Account Settings' ) }
icon={ cog }
onNavigate={ this.onNavigate }
preloadSectionName="account"
/>
<SidebarItem
selected={ itemLinkMatches( '/purchases', path ) }
link={ purchasesRoot }
label={ translate( 'Purchases' ) }
icon={ payment }
onNavigate={ this.onNavigate }
preloadSectionName="purchases"
/>
<SidebarItem
selected={ itemLinkMatches( '/security', path ) }
link="/me/security"
label={ translate( 'Security' ) }
icon={ lockOutline }
onNavigate={ this.onNavigate }
preloadSectionName="security"
/>
<SidebarItem
selected={ itemLinkMatches( '/privacy', path ) }
link="/me/privacy"
label={ translate( 'Privacy' ) }
icon={ seen }
onNavigate={ this.onNavigate }
preloadSectionName="privacy"
/>
<SidebarItem
selected={ itemLinkMatches( '/developer', path ) }
link="/me/developer"
label={ translate( 'Developer Features' ) }
icon={ code }
onNavigate={ this.onNavigate }
preloadSectionName="developer"
/>
<SidebarItem
link="/sites"
label={ translate( 'Manage Blogs' ) }
icon={ category }
forceInternalLink
onNavigate={ ( event, urlPath ) => {
this.handleGlobalSidebarMenuItemClick( urlPath );
} }
/>
<SidebarItem
selected={ itemLinkMatches( '/notifications', path ) }
link="/me/notifications"
label={ translate( 'Notification Settings' ) }
icon={ bell }
onNavigate={ this.onNavigate }
preloadSectionName="notification-settings"
/>
<SidebarItem
selected={ itemLinkMatches( '/site-blocks', path ) }
link="/me/site-blocks"
label={ translate( 'Blocked Sites' ) }
icon={ notAllowed }
onNavigate={ this.onNavigate }
preloadSectionName="site-blocks"
/>
<SidebarItem
selected={ itemLinkMatches( '/get-apps', path ) }
link="/me/get-apps"
label={ translate( 'Apps' ) }
icon="plans"
onNavigate={ this.onNavigate }
/>
</SidebarMenu>
</>
);
// The SkipNavigation that SidebarRegion supplies is already added within the global
// sidebar, only add SidebarRegion if we are not using the global sidebar.
if ( isGlobal ) {
return mainContent;
}
return <SidebarRegion>{ mainContent }</SidebarRegion>;
}
render() {
if ( this.props.shouldShowGlobalSidebar ) {
return this.renderGlobalSidebar();
}
return this.renderSidebar();
}
}
export default withCurrentRoute(
connect(
( state, { currentSection } ) => {
const siteId = getSelectedSiteId( state );
const shouldShowGlobalSidebar = getShouldShowGlobalSidebar( {
state,
siteId,
section: currentSection,
} );
return {
currentUser: getCurrentUser( state ),
shouldShowGlobalSidebar,
};
},
{
logoutUser,
recordGoogleEvent,
recordTracksEvent,
redirectToLogout,
setNextLayoutFocus,
}
)( localize( MeSidebar ) )
);
|