|
|
import { WordPressLogo } from '@automattic/components/src/logos/wordpress-logo'; |
|
|
import { useIsFetching } from '@tanstack/react-query'; |
|
|
import { CatchNotFound, Outlet, useRouterState } from '@tanstack/react-router'; |
|
|
import { Suspense, lazy } from 'react'; |
|
|
import { LoadingLine } from '../../components/loading-line'; |
|
|
import { PageViewTracker } from '../../components/page-view-tracker'; |
|
|
import NotFound from '../404'; |
|
|
import CommandPalette from '../command-palette'; |
|
|
import { useAppContext } from '../context'; |
|
|
import Header from '../header'; |
|
|
import Snackbars from '../snackbars'; |
|
|
import './style.scss'; |
|
|
|
|
|
const WebpackBuildMonitor = lazy( |
|
|
() => |
|
|
import( |
|
|
'calypso/components/webpack-build-monitor' |
|
|
) |
|
|
); |
|
|
|
|
|
function Root() { |
|
|
const { LoadingLogo = WordPressLogo } = useAppContext(); |
|
|
const isFetching = useIsFetching(); |
|
|
const router = useRouterState(); |
|
|
const isNavigating = router.status === 'pending'; |
|
|
|
|
|
|
|
|
|
|
|
const isInitialLoad = ! router.resolvedLocation; |
|
|
|
|
|
return ( |
|
|
<div className="dashboard-root__layout"> |
|
|
{ ( isFetching > 0 || isNavigating ) && <LoadingLine /> } |
|
|
{ isInitialLoad && <LoadingLogo className="wpcom-site__logo" /> } |
|
|
<Header /> |
|
|
<main> |
|
|
<CatchNotFound fallback={ NotFound }> |
|
|
<Outlet /> |
|
|
</CatchNotFound> |
|
|
</main> |
|
|
<CommandPalette /> |
|
|
<Snackbars /> |
|
|
<PageViewTracker /> |
|
|
{ 'development' === process.env.NODE_ENV && ( |
|
|
<Suspense fallback={ null }> |
|
|
<WebpackBuildMonitor /> |
|
|
</Suspense> |
|
|
) } |
|
|
</div> |
|
|
); |
|
|
} |
|
|
|
|
|
export default Root; |
|
|
|