Files
grafana/public/app/core/components/PageNew/SectionNav.tsx
Ashley Harrison 253f9657cb Navigation: Change collapse icon + behaviour (#61496)
* adjust positioning and switch icon

* hide collapse button unless collapsed/focused

* use Button instead of IconButton
2023-01-23 09:30:28 +00:00

139 lines
3.8 KiB
TypeScript

import { css, cx } from '@emotion/css';
import React, { useEffect, useState } from 'react';
import { useLocalStorage } from 'react-use';
import { NavModel, GrafanaTheme2 } from '@grafana/data';
import { useStyles2, CustomScrollbar, useTheme2 } from '@grafana/ui';
import { SectionNavItem } from './SectionNavItem';
import { SectionNavToggle } from './SectionNavToggle';
export interface Props {
model: NavModel;
}
export function SectionNav({ model }: Props) {
const styles = useStyles2(getStyles);
const { isExpanded, onToggleSectionNav } = useSectionNavState();
if (!Boolean(model.main?.children?.length)) {
return null;
}
return (
<div className={styles.navContainer}>
<nav
className={cx(styles.nav, {
[styles.navExpanded]: isExpanded,
})}
>
<CustomScrollbar showScrollIndicators>
<div className={styles.items} role="tablist">
<SectionNavItem item={model.main} isSectionRoot />
</div>
</CustomScrollbar>
</nav>
<SectionNavToggle
className={cx(styles.collapseIcon, {
[styles.collapseIconExpanded]: isExpanded,
})}
isExpanded={Boolean(isExpanded)}
onClick={onToggleSectionNav}
/>
</div>
);
}
function useSectionNavState() {
const theme = useTheme2();
const isSmallScreen = window.matchMedia(`(max-width: ${theme.breakpoints.values.lg}px)`).matches;
const [navExpandedPreference, setNavExpandedPreference] = useLocalStorage<boolean>(
'grafana.sectionNav.expanded',
!isSmallScreen
);
const [isExpanded, setIsExpanded] = useState(!isSmallScreen && navExpandedPreference);
useEffect(() => {
const mediaQuery = window.matchMedia(`(max-width: ${theme.breakpoints.values.lg}px)`);
const onMediaQueryChange = (e: MediaQueryListEvent) => setIsExpanded(e.matches ? false : navExpandedPreference);
mediaQuery.addEventListener('change', onMediaQueryChange);
return () => mediaQuery.removeEventListener('change', onMediaQueryChange);
}, [navExpandedPreference, theme.breakpoints.values.lg]);
const onToggleSectionNav = () => {
setNavExpandedPreference(!isExpanded);
setIsExpanded(!isExpanded);
};
return { isExpanded, onToggleSectionNav };
}
const getStyles = (theme: GrafanaTheme2) => {
return {
navContainer: css({
display: 'flex',
flexDirection: 'column',
[theme.breakpoints.up('md')]: {
flexDirection: 'row',
},
}),
nav: css({
display: 'flex',
flexDirection: 'column',
background: theme.colors.background.canvas,
flexShrink: 0,
transition: theme.transitions.create(['width', 'max-height']),
maxHeight: 0,
visibility: 'hidden',
[theme.breakpoints.up('md')]: {
width: 0,
maxHeight: 'unset',
},
}),
navExpanded: css({
maxHeight: '50vh',
visibility: 'visible',
[theme.breakpoints.up('md')]: {
width: '250px',
maxHeight: 'unset',
},
}),
items: css({
display: 'flex',
flexDirection: 'column',
padding: theme.spacing(2, 1, 2, 2),
minWidth: '250px',
[theme.breakpoints.up('md')]: {
padding: theme.spacing(4.5, 1, 2, 2),
},
}),
collapseIcon: css({
alignSelf: 'center',
margin: theme.spacing(1, 0),
position: 'relative',
top: theme.spacing(0),
transform: 'rotate(90deg)',
transition: theme.transitions.create('opacity'),
[theme.breakpoints.up('md')]: {
alignSelf: 'flex-start',
left: 0,
margin: theme.spacing(0, 0, 0, 1),
top: theme.spacing(2),
transform: 'none',
},
'div:hover > &, &:focus': {
opacity: 1,
},
}),
collapseIconExpanded: css({
[theme.breakpoints.up('md')]: {
opacity: 0,
},
}),
};
};