mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* NavBar: Styling tweaks to tidy up appearance * NavBar: Add external link icon to external links * NavBar: Dim the external link icon * bump drone * NavBar: Rename variable to better describe what it's doing
75 lines
1.9 KiB
TypeScript
75 lines
1.9 KiB
TypeScript
import React from 'react';
|
|
import { css } from '@emotion/css';
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { Icon, IconName, Link, useTheme2 } from '@grafana/ui';
|
|
|
|
export interface Props {
|
|
isDivider?: boolean;
|
|
icon?: IconName;
|
|
onClick?: () => void;
|
|
target?: HTMLAnchorElement['target'];
|
|
text: string;
|
|
url?: string;
|
|
}
|
|
|
|
const DropdownChild = ({ isDivider = false, icon, onClick, target, text, url }: Props) => {
|
|
const theme = useTheme2();
|
|
const styles = getStyles(theme);
|
|
|
|
const linkContent = (
|
|
<div className={styles.linkContent}>
|
|
<div>
|
|
{icon && <Icon data-testid="dropdown-child-icon" name={icon} className={styles.icon} />}
|
|
{text}
|
|
</div>
|
|
{target === '_blank' && (
|
|
<Icon data-testid="external-link-icon" name="external-link-alt" className={styles.externalLinkIcon} />
|
|
)}
|
|
</div>
|
|
);
|
|
|
|
let element = (
|
|
<button className={styles.element} onClick={onClick}>
|
|
{linkContent}
|
|
</button>
|
|
);
|
|
if (url) {
|
|
element =
|
|
!target && url.startsWith('/') ? (
|
|
<Link className={styles.element} onClick={onClick} href={url}>
|
|
{linkContent}
|
|
</Link>
|
|
) : (
|
|
<a className={styles.element} href={url} target={target} rel="noopener" onClick={onClick}>
|
|
{linkContent}
|
|
</a>
|
|
);
|
|
}
|
|
|
|
return isDivider ? <li data-testid="dropdown-child-divider" className="divider" /> : <li>{element}</li>;
|
|
};
|
|
|
|
export default DropdownChild;
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => ({
|
|
element: css`
|
|
background-color: transparent;
|
|
border: none;
|
|
display: flex;
|
|
width: 100%;
|
|
`,
|
|
externalLinkIcon: css`
|
|
color: ${theme.colors.text.secondary};
|
|
margin-left: ${theme.spacing(1)};
|
|
`,
|
|
icon: css`
|
|
margin-right: ${theme.spacing(1)};
|
|
`,
|
|
linkContent: css`
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
`,
|
|
});
|