Files
Torkel Ödegaard da001b01f1 TopNav: Section navigation UX (#55012)
* Design tweaks

* Updated

* Fixing unit tests

* Review fixes

* Text primary on active sections, and change home icon to text

* spacing fix

* More fix

* Fixes

* Updates
2022-09-13 12:24:23 +02:00

75 lines
1.8 KiB
TypeScript

import { css, cx } from '@emotion/css';
import React from 'react';
import { GrafanaTheme2 } from '@grafana/data';
import { Icon, useStyles2 } from '@grafana/ui';
import { Breadcrumb } from './types';
type Props = Breadcrumb & {
isCurrent: boolean;
};
export function BreadcrumbItem(props: Props) {
const styles = useStyles2(getStyles);
return (
<li className={styles.breadcrumbWrapper}>
{props.isCurrent ? (
<span className={styles.breadcrumb} aria-current="page">
{props.text}
</span>
) : (
<>
<a className={cx(styles.breadcrumb, styles.breadcrumbLink)} href={props.href}>
{props.text}
</a>
<div className={styles.separator} aria-hidden={true}>
<Icon name="angle-right" />
</div>
</>
)}
</li>
);
}
const getStyles = (theme: GrafanaTheme2) => {
const separator = css({
color: theme.colors.text.secondary,
});
return {
breadcrumb: css({
alignItems: 'center',
display: 'flex',
padding: theme.spacing(0, 0.5),
whiteSpace: 'nowrap',
}),
breadcrumbLink: css({
'&:hover': {
textDecoration: 'underline',
},
}),
breadcrumbWrapper: css({
alignItems: 'center',
color: theme.colors.text.primary,
display: 'flex',
fontWeight: theme.typography.fontWeightMedium,
// logic for small screens
// hide any breadcrumbs that aren't the second to last child (the parent)
[theme.breakpoints.down('md')]: {
display: 'none',
'&:nth-last-child(2)': {
display: 'flex',
flexDirection: 'row-reverse',
[`.${separator}`]: {
transform: 'rotate(180deg)',
},
},
},
}),
separator,
};
};