File size: 4,463 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 | import { useSuspenseQuery } from '@tanstack/react-query';
import {
__experimentalDivider as Divider,
__experimentalGrid as Grid,
__experimentalHStack as HStack,
__experimentalVStack as VStack,
Button,
} from '@wordpress/components';
import { useViewportMatch } from '@wordpress/compose';
import { __ } from '@wordpress/i18n';
import { chartBar, wordpress } from '@wordpress/icons';
import clsx from 'clsx';
import { siteBySlugQuery } from '../../app/queries/site';
import { siteRoute } from '../../app/router';
import { PageHeader } from '../../components/page-header';
import PageLayout from '../../components/page-layout';
import { getSiteDisplayName } from '../../utils/site-name';
import AgencySiteShareCard from '../overview-agency-site-share-card';
import BackupCard from '../overview-backup-card';
import OverviewCard from '../overview-card';
import DIFMUpsellCard from '../overview-difm-upsell-card';
import DomainsCard from '../overview-domains-card';
import LatestActivityCard from '../overview-latest-activity-card';
import PlanCard from '../overview-plan-card';
import ScanCard from '../overview-scan-card';
import SiteActionMenu from '../overview-site-action-menu';
import SiteOverviewFields from '../overview-site-fields';
import SitePreviewCard from '../overview-site-preview-card';
import VisibilityCard from '../overview-visibility-card';
import './style.scss';
type Breakpoint = Parameters< typeof useViewportMatch >[ 0 ];
const SPACING = {
DEFAULT: 6,
SMALL: 4,
};
function getGridLayout( {
count,
isLargeViewport,
isSmallViewport,
}: {
count: number;
isLargeViewport: boolean;
isSmallViewport: boolean;
} ) {
if ( isLargeViewport ) {
return {
columns: count,
rows: 1,
};
}
if ( isSmallViewport ) {
return {
columns: 1,
rows: count,
};
}
return {
columns: 2,
rows: Math.ceil( count / 2 ),
};
}
function SiteOverview( {
hideSitePreview = false,
breakpoints,
}: {
hideSitePreview: boolean;
breakpoints?: { large: Breakpoint; small: Breakpoint };
} ) {
const { siteSlug } = siteRoute.useParams();
const { data: site } = useSuspenseQuery( siteBySlugQuery( siteSlug ) );
const isLargeViewport = useViewportMatch( breakpoints?.large ?? 'xlarge' );
const isSmallViewport = useViewportMatch( breakpoints?.small ?? 'medium', '<' );
const showSitePreview = ! ( hideSitePreview || isSmallViewport );
const spacing = isSmallViewport ? SPACING.SMALL : SPACING.DEFAULT;
const gridLayout = getGridLayout( {
count: showSitePreview ? 4 : 3,
isLargeViewport,
isSmallViewport,
} );
return (
<PageLayout
header={
<VStack>
<PageHeader
title={ getSiteDisplayName( site ) }
actions={
site.options?.admin_url && (
<>
<Button
__next40pxDefaultSize
variant="primary"
href={ site.options.admin_url }
icon={ wordpress }
>
{ __( 'WP Admin' ) }
</Button>
<SiteActionMenu site={ site } />
</>
)
}
/>
<SiteOverviewFields site={ site } />
</VStack>
}
>
<VStack alignment="stretch" spacing={ isSmallViewport ? 5 : 10 }>
<Grid { ...gridLayout } gap={ spacing }>
{ showSitePreview && <SitePreviewCard site={ site } /> }
<VStack className="site-overview-cards" spacing={ spacing }>
<VisibilityCard site={ site } />
<BackupCard site={ site } />
</VStack>
<VStack className="site-overview-cards" spacing={ spacing }>
{ site.is_a4a_dev_site ? (
<AgencySiteShareCard site={ site } />
) : (
<OverviewCard
title={ __( 'Performance' ) }
icon={ chartBar }
heading="TBA"
description="TBA"
disabled
/>
) }
<ScanCard site={ site } />
</VStack>
<PlanCard site={ site } />
</Grid>
<Divider
orientation="horizontal"
style={ { color: 'var(--dashboard-overview__divider-color)' } }
/>
<HStack
className={ clsx( 'site-overview-cards', 'site-overview-cards--secondary', {
'is-large': isLargeViewport,
} ) }
spacing={ spacing }
alignment="flex-start"
>
<LatestActivityCard site={ site } isCompact={ isSmallViewport } />
<VStack spacing={ spacing } justify="start">
<DomainsCard site={ site } isCompact={ isSmallViewport } />
<DIFMUpsellCard site={ site } />
</VStack>
</HStack>
</VStack>
</PageLayout>
);
}
export default SiteOverview;
|