Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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 ) )
);