mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* remove code outside of the topnav feature flag * delete NavBar folder * remove topnav toggle from backend * restructure AppChrome folder * fix utils mock * fix applinks tests * remove tests since they're covered in e2e * fix 1 of the approotpage tests * Fix another dashboardpage test * remove reverse portalling + test for plugins using deprecated onNavChanged method * kick drone * handle correlations
56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
import { css } from '@emotion/css';
|
|
import React from 'react';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { useStyles2 } from '@grafana/ui';
|
|
import { Page } from 'app/core/components/Page/Page';
|
|
import { useNavModel } from 'app/core/hooks/useNavModel';
|
|
|
|
import { NavLandingPageCard } from './NavLandingPageCard';
|
|
|
|
interface Props {
|
|
navId: string;
|
|
}
|
|
|
|
export function NavLandingPage({ navId }: Props) {
|
|
const { node } = useNavModel(navId);
|
|
const styles = useStyles2(getStyles);
|
|
const children = node.children?.filter((child) => !child.hideFromTabs);
|
|
|
|
return (
|
|
<Page navId={node.id}>
|
|
<Page.Contents>
|
|
<div className={styles.content}>
|
|
{children && children.length > 0 && (
|
|
<section className={styles.grid}>
|
|
{children?.map((child) => (
|
|
<NavLandingPageCard
|
|
key={child.id}
|
|
description={child.subTitle}
|
|
text={child.text}
|
|
url={child.url ?? ''}
|
|
/>
|
|
))}
|
|
</section>
|
|
)}
|
|
</div>
|
|
</Page.Contents>
|
|
</Page>
|
|
);
|
|
}
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => ({
|
|
content: css({
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
gap: theme.spacing(2),
|
|
}),
|
|
grid: css({
|
|
display: 'grid',
|
|
gap: theme.spacing(3),
|
|
gridTemplateColumns: 'repeat(auto-fill, minmax(300px, 1fr))',
|
|
gridAutoRows: '138px',
|
|
padding: theme.spacing(2, 0),
|
|
}),
|
|
});
|