Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { type Callback } from '@automattic/calypso-router';
import PageViewTracker from 'calypso/a8c-for-agencies/components/a4a-page-view-tracker';
import ReportsSidebar from 'calypso/a8c-for-agencies/components/sidebar-menu/reports';
import SidebarPlaceholder from 'calypso/a8c-for-agencies/components/sidebar-placeholder';
import ReportsLanding from './landing';
import BuildReport from './primary/build-report';
import ReportsDashboard from './primary/dashboard';
import ReportsOverview from './primary/overview';
export const reportsLandingContext: Callback = ( context, next ) => {
context.primary = <ReportsLanding />;
context.secondary = <SidebarPlaceholder />;
next();
};
export const reportsOverviewContext: Callback = ( context, next ) => {
context.secondary = <ReportsSidebar path={ context.path } />;
context.primary = (
<>
<PageViewTracker title="Reports > Overview" path={ context.path } />
<ReportsOverview />
</>
);
next();
};
export const reportsDashboardContext: Callback = ( context, next ) => {
context.secondary = <ReportsSidebar path={ context.path } />;
context.primary = (
<>
<PageViewTracker title="Reports > Dashboard" path={ context.path } />
<ReportsDashboard />
</>
);
next();
};
export const reportsBuildContext: Callback = ( context, next ) => {
context.secondary = <ReportsSidebar path={ context.path } />;
context.primary = (
<>
<PageViewTracker title="Reports > Build" path={ context.path } />
<BuildReport />
</>
);
next();
};