mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 11:13:11 +08:00

* refactor: tooltip is required * refactor: add tooltips * refactor: add tooltips * refactor: add tooltips * refactor: add tooltips * refactor: add tooltips * refactor: add tooltips * refactor: adjust tests * refactor: apply changes from code review * refactor: adjust component for e2e test * refactor: adjust fallback * refactor: apply changes from code review * refactor: apply changes from code review * refactor: set IconButton default as type=button and remove from use cases * refactor: remove aria-labels when duplicated and type=button from use cases * refactor: clean up * refactor: fix tests * refactor: fix type errors * refactor: remove changes in order in order to add them to a separate PR * refactor: set IconButton default as type=button * refactor: remove tooltip * refactor: apply changes requested in review
131 lines
3.6 KiB
TypeScript
131 lines
3.6 KiB
TypeScript
import { css, cx } from '@emotion/css';
|
|
import React, { MouseEventHandler } from 'react';
|
|
import { DraggableProvided } from 'react-beautiful-dnd';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { Icon, IconButton, useStyles2 } from '@grafana/ui';
|
|
|
|
interface QueryOperationRowHeaderProps {
|
|
actionsElement?: React.ReactNode;
|
|
disabled?: boolean;
|
|
draggable: boolean;
|
|
dragHandleProps?: DraggableProvided['dragHandleProps'];
|
|
headerElement?: React.ReactNode;
|
|
isContentVisible: boolean;
|
|
onRowToggle: () => void;
|
|
reportDragMousePosition: MouseEventHandler<HTMLDivElement>;
|
|
title?: string;
|
|
id: string;
|
|
}
|
|
|
|
export const QueryOperationRowHeader = ({
|
|
actionsElement,
|
|
disabled,
|
|
draggable,
|
|
dragHandleProps,
|
|
headerElement,
|
|
isContentVisible,
|
|
onRowToggle,
|
|
reportDragMousePosition,
|
|
title,
|
|
id,
|
|
}: QueryOperationRowHeaderProps) => {
|
|
const styles = useStyles2(getStyles);
|
|
|
|
return (
|
|
<div className={styles.header}>
|
|
<div className={styles.column}>
|
|
<IconButton
|
|
name={isContentVisible ? 'angle-down' : 'angle-right'}
|
|
aria-label="toggle collapse and expand query row"
|
|
tooltip={isContentVisible ? 'Collapse query row' : 'Expand query row'}
|
|
className={styles.collapseIcon}
|
|
onClick={onRowToggle}
|
|
aria-expanded={isContentVisible}
|
|
aria-controls={id}
|
|
/>
|
|
{title && (
|
|
// disabling the a11y rules here as the IconButton above handles keyboard interactions
|
|
// this is just to provide a better experience for mouse users
|
|
// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions
|
|
<div className={styles.titleWrapper} onClick={onRowToggle} aria-label="Query operation row title">
|
|
<div className={cx(styles.title, disabled && styles.disabled)}>{title}</div>
|
|
</div>
|
|
)}
|
|
{headerElement}
|
|
</div>
|
|
|
|
<div className={styles.column}>
|
|
{actionsElement}
|
|
{draggable && (
|
|
<Icon
|
|
title="Drag and drop to reorder"
|
|
name="draggabledots"
|
|
size="lg"
|
|
className={styles.dragIcon}
|
|
onMouseMove={reportDragMousePosition}
|
|
{...dragHandleProps}
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => ({
|
|
header: css`
|
|
label: Header;
|
|
padding: ${theme.spacing(0.5, 0.5)};
|
|
border-radius: ${theme.shape.borderRadius(1)};
|
|
background: ${theme.colors.background.secondary};
|
|
min-height: ${theme.spacing(4)};
|
|
display: grid;
|
|
grid-template-columns: minmax(100px, max-content) min-content;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
white-space: nowrap;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
`,
|
|
column: css`
|
|
label: Column;
|
|
display: flex;
|
|
align-items: center;
|
|
`,
|
|
dragIcon: css`
|
|
cursor: grab;
|
|
color: ${theme.colors.text.disabled};
|
|
margin: ${theme.spacing(0, 0.5)};
|
|
&:hover {
|
|
color: ${theme.colors.text};
|
|
}
|
|
`,
|
|
collapseIcon: css`
|
|
margin-left: ${theme.spacing(0.5)};
|
|
color: ${theme.colors.text.disabled};
|
|
}
|
|
`,
|
|
titleWrapper: css`
|
|
display: flex;
|
|
align-items: center;
|
|
flex-grow: 1;
|
|
cursor: pointer;
|
|
overflow: hidden;
|
|
margin-right: ${theme.spacing(0.5)};
|
|
`,
|
|
title: css`
|
|
font-weight: ${theme.typography.fontWeightBold};
|
|
color: ${theme.colors.text.link};
|
|
margin-left: ${theme.spacing(0.5)};
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
`,
|
|
disabled: css`
|
|
color: ${theme.colors.text.disabled};
|
|
`,
|
|
});
|
|
|
|
QueryOperationRowHeader.displayName = 'QueryOperationRowHeader';
|