mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 17:32:42 +08:00

* Variables: Removes experimental Tags feature * Refactor: adds dashboard migration * Tests: fixes snapshots * Docs: removes docs for experimental feature * Refactor: dummy change * Docs: removes reference
107 lines
2.6 KiB
TypeScript
107 lines
2.6 KiB
TypeScript
import React, { FC, MouseEvent, useCallback } from 'react';
|
|
import { css } from '@emotion/css';
|
|
import { Icon, Tooltip, useStyles } from '@grafana/ui';
|
|
import { selectors } from '@grafana/e2e-selectors';
|
|
import { GrafanaTheme } from '@grafana/data';
|
|
|
|
interface Props {
|
|
onClick: () => void;
|
|
text: string;
|
|
loading: boolean;
|
|
onCancel: () => void;
|
|
}
|
|
|
|
export const VariableLink: FC<Props> = ({ loading, onClick: propsOnClick, text, onCancel }) => {
|
|
const styles = useStyles(getStyles);
|
|
const onClick = useCallback(
|
|
(event: MouseEvent<HTMLAnchorElement>) => {
|
|
event.stopPropagation();
|
|
event.preventDefault();
|
|
propsOnClick();
|
|
},
|
|
[propsOnClick]
|
|
);
|
|
|
|
if (loading) {
|
|
return (
|
|
<div
|
|
className={styles.container}
|
|
aria-label={selectors.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts(`${text}`)}
|
|
title={text}
|
|
>
|
|
<VariableLinkText text={text} />
|
|
<LoadingIndicator onCancel={onCancel} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<a
|
|
onClick={onClick}
|
|
className={styles.container}
|
|
aria-label={selectors.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts(`${text}`)}
|
|
title={text}
|
|
>
|
|
<VariableLinkText text={text} />
|
|
<Icon name="angle-down" size="sm" />
|
|
</a>
|
|
);
|
|
};
|
|
|
|
interface VariableLinkTextProps {
|
|
text: string;
|
|
}
|
|
|
|
const VariableLinkText: FC<VariableLinkTextProps> = ({ text }) => {
|
|
const styles = useStyles(getStyles);
|
|
return <span className={styles.textAndTags}>{text}</span>;
|
|
};
|
|
|
|
const LoadingIndicator: FC<Pick<Props, 'onCancel'>> = ({ onCancel }) => {
|
|
const onClick = useCallback(
|
|
(event: MouseEvent) => {
|
|
event.preventDefault();
|
|
onCancel();
|
|
},
|
|
[onCancel]
|
|
);
|
|
|
|
return (
|
|
<Tooltip content="Cancel query">
|
|
<Icon
|
|
className="spin-clockwise"
|
|
name="sync"
|
|
size="xs"
|
|
onClick={onClick}
|
|
aria-label={selectors.components.LoadingIndicator.icon}
|
|
/>
|
|
</Tooltip>
|
|
);
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme) => ({
|
|
container: css`
|
|
max-width: 500px;
|
|
padding-right: 10px;
|
|
padding: 0 ${theme.spacing.sm};
|
|
background-color: ${theme.colors.formInputBg};
|
|
border: 1px solid ${theme.colors.formInputBorder};
|
|
border-radius: ${theme.border.radius.sm};
|
|
display: flex;
|
|
align-items: center;
|
|
color: ${theme.colors.text};
|
|
height: ${theme.height.md}px;
|
|
|
|
.label-tag {
|
|
margin: 0 5px;
|
|
}
|
|
`,
|
|
textAndTags: css`
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
margin-right: ${theme.spacing.xxs};
|
|
user-select: none;
|
|
`,
|
|
});
|