mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
78 lines
2.2 KiB
TypeScript
78 lines
2.2 KiB
TypeScript
import { css } from '@emotion/css';
|
|
import React, { FC, useState } from 'react';
|
|
|
|
import { PanelMenuItem, GrafanaTheme2 } from '@grafana/data';
|
|
import { selectors } from '@grafana/e2e-selectors';
|
|
import { Icon, toIconName, useStyles2 } from '@grafana/ui';
|
|
|
|
interface Props {
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
export const PanelHeaderMenuItem: FC<Props & PanelMenuItem> = (props) => {
|
|
const [ref, setRef] = useState<HTMLLIElement | null>(null);
|
|
const isSubMenu = props.type === 'submenu';
|
|
const isDivider = props.type === 'divider';
|
|
const styles = useStyles2(getStyles);
|
|
|
|
const icon = props.iconClassName ? toIconName(props.iconClassName) : undefined;
|
|
|
|
return isDivider ? (
|
|
<li className="divider" />
|
|
) : (
|
|
<li className={isSubMenu ? `dropdown-submenu ${getDropdownLocationCssClass(ref)}` : undefined} ref={setRef}>
|
|
<a onClick={props.onClick} href={props.href}>
|
|
{icon && <Icon name={icon} className={styles.menuIconClassName} />}
|
|
|
|
<span className="dropdown-item-text" aria-label={selectors.components.Panels.Panel.headerItems(props.text)}>
|
|
{props.text}
|
|
{isSubMenu && <Icon name="angle-right" className={styles.shortcutIconClassName} />}
|
|
</span>
|
|
|
|
{props.shortcut && (
|
|
<span className="dropdown-menu-item-shortcut">
|
|
<Icon name="keyboard" className={styles.menuIconClassName} /> {props.shortcut}
|
|
</span>
|
|
)}
|
|
</a>
|
|
{props.children}
|
|
</li>
|
|
);
|
|
};
|
|
|
|
function getDropdownLocationCssClass(element: HTMLElement | null) {
|
|
if (!element) {
|
|
return 'invisible';
|
|
}
|
|
|
|
const wrapperPos = element.parentElement!.getBoundingClientRect();
|
|
const pos = element.getBoundingClientRect();
|
|
|
|
if (pos.width === 0) {
|
|
return 'invisible';
|
|
}
|
|
|
|
if (wrapperPos.right + pos.width + 10 > window.innerWidth) {
|
|
return 'pull-left';
|
|
} else {
|
|
return 'pull-right';
|
|
}
|
|
}
|
|
|
|
function getStyles(theme: GrafanaTheme2) {
|
|
return {
|
|
menuIconClassName: css({
|
|
marginRight: theme.spacing(1),
|
|
'a::after': {
|
|
display: 'none',
|
|
},
|
|
}),
|
|
shortcutIconClassName: css({
|
|
position: 'absolute',
|
|
top: '7px',
|
|
right: theme.spacing(0.5),
|
|
color: theme.colors.text.secondary,
|
|
}),
|
|
};
|
|
}
|