You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.0 KiB
67 lines
2.0 KiB
import React, { FC, useState } from 'react';
|
|
import { css } from '@emotion/css';
|
|
import { PanelMenuItem } from '@grafana/data';
|
|
import { Icon, IconName, useTheme } from '@grafana/ui';
|
|
import { selectors } from '@grafana/e2e-selectors';
|
|
|
|
interface Props {
|
|
children?: any;
|
|
}
|
|
|
|
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 theme = useTheme();
|
|
const menuIconClassName = css`
|
|
margin-right: ${theme.spacing.sm};
|
|
a::after {
|
|
display: none;
|
|
}
|
|
`;
|
|
const shortcutIconClassName = css`
|
|
position: absolute;
|
|
top: 7px;
|
|
right: ${theme.spacing.xs};
|
|
color: ${theme.colors.textWeak};
|
|
`;
|
|
|
|
return isDivider ? (
|
|
<li className="divider" />
|
|
) : (
|
|
<li className={isSubMenu ? `dropdown-submenu ${getDropdownLocationCssClass(ref)}` : undefined} ref={setRef}>
|
|
<a onClick={props.onClick} href={props.href}>
|
|
{props.iconClassName && <Icon name={props.iconClassName as IconName} className={menuIconClassName} />}
|
|
<span className="dropdown-item-text" aria-label={selectors.components.Panels.Panel.headerItems(props.text)}>
|
|
{props.text}
|
|
{isSubMenu && <Icon name="angle-right" className={shortcutIconClassName} />}
|
|
</span>
|
|
{props.shortcut && (
|
|
<span className="dropdown-menu-item-shortcut">
|
|
<Icon name="keyboard" className={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';
|
|
}
|
|
}
|
|
|