| | import { useSelector } from 'react-redux'; |
| | import Site from 'calypso/blocks/site'; |
| | import SidebarSeparator from 'calypso/layout/sidebar/separator'; |
| | import { isP2Theme } from 'calypso/lib/site/utils'; |
| | import isSiteWpcomAtomic from 'calypso/state/selectors/is-site-wpcom-atomic'; |
| | import isSiteWPForTeams from 'calypso/state/selectors/is-site-wpforteams'; |
| | import { isJetpackSite } from 'calypso/state/sites/selectors'; |
| | import { |
| | getSidebarIsCollapsed, |
| | getSelectedSiteId, |
| | getSelectedSite, |
| | } from 'calypso/state/ui/selectors'; |
| | import MySitesSidebarUnifiedItem from './item'; |
| | import MySitesSidebarUnifiedMenu from './menu'; |
| | import useSiteMenuItems from './use-site-menu-items'; |
| | import { isItemSelected } from './utils'; |
| | import 'calypso/state/admin-menu/init'; |
| |
|
| | import './style.scss'; |
| |
|
| | export const MySitesSidebarUnifiedBody = ( { |
| | isGlobalSidebarCollapsed, |
| | path, |
| | children, |
| | onMenuItemClick, |
| | isUnifiedSiteSidebarVisible, |
| | } ) => { |
| | const menuItems = useSiteMenuItems(); |
| | const sidebarIsCollapsed = useSelector( getSidebarIsCollapsed ); |
| | const site = useSelector( getSelectedSite ); |
| | const siteId = useSelector( getSelectedSiteId ); |
| | const isJetpack = useSelector( ( state ) => isJetpackSite( state, siteId ) ); |
| | const isSiteAtomic = useSelector( ( state ) => isSiteWpcomAtomic( state, siteId ) ); |
| | const isP2Site = |
| | useSelector( ( state ) => isSiteWPForTeams( state, siteId ) ) || |
| | ( site?.options?.theme_slug && isP2Theme( site?.options?.theme_slug ) ); |
| |
|
| | |
| | |
| | const shouldOpenExternalLinksInCurrentTab = ! isJetpack || isSiteAtomic; |
| |
|
| | return ( |
| | <> |
| | { menuItems && |
| | menuItems.map( ( item, i ) => { |
| | const isSelected = isItemSelected( item, path, site, isP2Site ); |
| | |
| | if ( 'current-site' === item?.type ) { |
| | return ( |
| | <Site |
| | key={ item.type } |
| | site={ site } |
| | href={ item?.url } |
| | isSelected={ isSelected } |
| | onSelect={ () => onMenuItemClick( item?.url ) } |
| | /> |
| | ); |
| | } |
| | if ( 'separator' === item?.type ) { |
| | return <SidebarSeparator key={ i } />; |
| | } |
| | |
| | if ( item?.children?.length ) { |
| | return ( |
| | <MySitesSidebarUnifiedMenu |
| | key={ item.slug } |
| | path={ path } |
| | link={ item.url } |
| | selected={ isSelected } |
| | sidebarCollapsed={ sidebarIsCollapsed } |
| | shouldOpenExternalLinksInCurrentTab={ shouldOpenExternalLinksInCurrentTab } |
| | isUnifiedSiteSidebarVisible={ isUnifiedSiteSidebarVisible } |
| | { ...item } |
| | /> |
| | ); |
| | } |
| | |
| | return ( |
| | <MySitesSidebarUnifiedItem |
| | key={ item.slug } |
| | selected={ isSelected } |
| | shouldOpenExternalLinksInCurrentTab={ shouldOpenExternalLinksInCurrentTab } |
| | showTooltip={ !! isGlobalSidebarCollapsed } |
| | trackClickEvent={ onMenuItemClick } |
| | { ...item } |
| | /> |
| | ); |
| | } ) } |
| | { children } |
| | </> |
| | ); |
| | }; |
| |
|
| | export default MySitesSidebarUnifiedBody; |
| |
|