mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Table: Fixes table data links so they refer to correct row after sorting (#32571)
* Table: Fixes table data links so they refer to correct row after sorting * Tests: adds some basic tests incl sorting * Refactor: removes dependeny on app Co-authored-by: Hugo Häggmark <hugo.haggmark@gmail.com>
This commit is contained in:
167
packages/grafana-ui/src/components/Table/Table.test.tsx
Normal file
167
packages/grafana-ui/src/components/Table/Table.test.tsx
Normal file
@@ -0,0 +1,167 @@
|
||||
import React from 'react';
|
||||
import { render, screen, within } from '@testing-library/react';
|
||||
import userEvent from '@testing-library/user-event';
|
||||
import { applyFieldOverrides, DataFrame, FieldType, toDataFrame } from '@grafana/data';
|
||||
|
||||
import { Props, Table } from './Table';
|
||||
import { getTheme } from '../../themes';
|
||||
|
||||
function getDefaultDataFrame(): DataFrame {
|
||||
const dataFrame = toDataFrame({
|
||||
name: 'A',
|
||||
fields: [
|
||||
{
|
||||
name: 'time',
|
||||
type: FieldType.time,
|
||||
values: [1609459200000, 1609462800000, 1609466400000],
|
||||
config: {
|
||||
custom: {
|
||||
filterable: false,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'temperature',
|
||||
type: FieldType.number,
|
||||
values: [10, 11, 12],
|
||||
config: {
|
||||
custom: {
|
||||
filterable: false,
|
||||
},
|
||||
links: [
|
||||
{
|
||||
targetBlank: true,
|
||||
title: 'Value link',
|
||||
url: '${__value.text}',
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'img',
|
||||
type: FieldType.string,
|
||||
values: ['data:image/png;base64,1', 'data:image/png;base64,2', 'data:image/png;base64,3'],
|
||||
config: {
|
||||
custom: {
|
||||
filterable: false,
|
||||
displayMode: 'image',
|
||||
},
|
||||
links: [
|
||||
{
|
||||
targetBlank: true,
|
||||
title: 'Image link',
|
||||
url: '${__value.text}',
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
],
|
||||
});
|
||||
const dataFrames = applyFieldOverrides({
|
||||
data: [dataFrame],
|
||||
fieldConfig: {
|
||||
defaults: {},
|
||||
overrides: [],
|
||||
},
|
||||
replaceVariables: (value, vars, format) => {
|
||||
return vars && value === '${__value.text}' ? vars['__value'].value.text : value;
|
||||
},
|
||||
timeZone: 'utc',
|
||||
theme: getTheme(),
|
||||
});
|
||||
return dataFrames[0];
|
||||
}
|
||||
|
||||
function getTestContext(propOverrides: Partial<Props> = {}) {
|
||||
const onSortByChange = jest.fn();
|
||||
const onCellFilterAdded = jest.fn();
|
||||
const onColumnResize = jest.fn();
|
||||
const props: Props = {
|
||||
ariaLabel: 'aria-label',
|
||||
data: getDefaultDataFrame(),
|
||||
height: 600,
|
||||
width: 800,
|
||||
onSortByChange,
|
||||
onCellFilterAdded,
|
||||
onColumnResize,
|
||||
};
|
||||
|
||||
Object.assign(props, propOverrides);
|
||||
const { rerender } = render(<Table {...props} />);
|
||||
|
||||
return { rerender, onSortByChange, onCellFilterAdded, onColumnResize };
|
||||
}
|
||||
|
||||
function getTable(): HTMLElement {
|
||||
return screen.getByRole('table');
|
||||
}
|
||||
|
||||
function getColumnHeader(name: string | RegExp): HTMLElement {
|
||||
return within(getTable()).getByRole('columnheader', { name });
|
||||
}
|
||||
|
||||
describe('Table', () => {
|
||||
describe('when mounted without data', () => {
|
||||
it('then no data to show should be displayed', () => {
|
||||
getTestContext({ data: toDataFrame([]) });
|
||||
expect(getTable()).toBeInTheDocument();
|
||||
expect(screen.queryByRole('row')).not.toBeInTheDocument();
|
||||
expect(screen.getByText(/no data to show/i)).toBeInTheDocument();
|
||||
});
|
||||
});
|
||||
|
||||
describe('when mounted with data', () => {
|
||||
it('then correct rows should be rendered', () => {
|
||||
getTestContext();
|
||||
expect(getTable()).toBeInTheDocument();
|
||||
expect(screen.getAllByRole('columnheader')).toHaveLength(3);
|
||||
expect(getColumnHeader(/time/)).toBeInTheDocument();
|
||||
expect(getColumnHeader(/temperature/)).toBeInTheDocument();
|
||||
expect(getColumnHeader(/img/)).toBeInTheDocument();
|
||||
|
||||
const rows = within(getTable()).getAllByRole('row');
|
||||
expect(rows).toHaveLength(4);
|
||||
expect(within(rows[1]).getByRole('cell', { name: '2021-01-01 00:00:00' })).toBeInTheDocument();
|
||||
expect(within(rows[1]).getByRole('cell', { name: '10' })).toBeInTheDocument();
|
||||
expect(within(rows[2]).getByRole('cell', { name: '2021-01-01 01:00:00' })).toBeInTheDocument();
|
||||
expect(within(rows[2]).getByRole('cell', { name: '11' })).toBeInTheDocument();
|
||||
expect(within(rows[3]).getByRole('cell', { name: '2021-01-01 02:00:00' })).toBeInTheDocument();
|
||||
expect(within(rows[3]).getByRole('cell', { name: '12' })).toBeInTheDocument();
|
||||
expect(within(rows[1]).getByRole('cell', { name: '10' }).closest('a')).toHaveAttribute('href', '10');
|
||||
expect(within(rows[2]).getByRole('cell', { name: '11' }).closest('a')).toHaveAttribute('href', '11');
|
||||
expect(within(rows[3]).getByRole('cell', { name: '12' }).closest('a')).toHaveAttribute('href', '12');
|
||||
});
|
||||
});
|
||||
|
||||
describe('when sorting with columnheader', () => {
|
||||
it('then correct rows should be rendered', () => {
|
||||
getTestContext();
|
||||
|
||||
userEvent.click(within(getColumnHeader(/temperature/)).getByText(/temperature/i));
|
||||
userEvent.click(within(getColumnHeader(/temperature/)).getByText(/temperature/i));
|
||||
|
||||
const rows = within(getTable()).getAllByRole('row');
|
||||
expect(rows).toHaveLength(4);
|
||||
expect(within(rows[1]).getByRole('cell', { name: '2021-01-01 02:00:00' })).toBeInTheDocument();
|
||||
expect(within(rows[1]).getByRole('cell', { name: '12' })).toBeInTheDocument();
|
||||
expect(within(rows[2]).getByRole('cell', { name: '2021-01-01 01:00:00' })).toBeInTheDocument();
|
||||
expect(within(rows[2]).getByRole('cell', { name: '11' })).toBeInTheDocument();
|
||||
expect(within(rows[3]).getByRole('cell', { name: '2021-01-01 00:00:00' })).toBeInTheDocument();
|
||||
expect(within(rows[3]).getByRole('cell', { name: '10' })).toBeInTheDocument();
|
||||
});
|
||||
|
||||
describe('and clicking on links', () => {
|
||||
it('then correct row data should be in link', () => {
|
||||
getTestContext();
|
||||
|
||||
userEvent.click(within(getColumnHeader(/temperature/)).getByText(/temperature/i));
|
||||
userEvent.click(within(getColumnHeader(/temperature/)).getByText(/temperature/i));
|
||||
|
||||
const rows = within(getTable()).getAllByRole('row');
|
||||
expect(within(rows[1]).getByRole('cell', { name: '12' }).closest('a')).toHaveAttribute('href', '12');
|
||||
expect(within(rows[2]).getByRole('cell', { name: '11' }).closest('a')).toHaveAttribute('href', '11');
|
||||
expect(within(rows[3]).getByRole('cell', { name: '10' }).closest('a')).toHaveAttribute('href', '10');
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -183,7 +183,7 @@ export const Table: FC<Props> = memo((props: Props) => {
|
||||
onCellFilterAdded={onCellFilterAdded}
|
||||
columnIndex={index}
|
||||
columnCount={row.cells.length}
|
||||
rowIndex={rowIndex}
|
||||
dataRowIndex={row.index}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
|
||||
@@ -11,7 +11,8 @@ export interface Props {
|
||||
onCellFilterAdded?: TableFilterActionCallback;
|
||||
columnIndex: number;
|
||||
columnCount: number;
|
||||
rowIndex: number;
|
||||
/** Index before table sort */
|
||||
dataRowIndex: number;
|
||||
}
|
||||
|
||||
export const TableCell: FC<Props> = ({
|
||||
@@ -21,7 +22,7 @@ export const TableCell: FC<Props> = ({
|
||||
onCellFilterAdded,
|
||||
columnIndex,
|
||||
columnCount,
|
||||
rowIndex,
|
||||
dataRowIndex,
|
||||
}) => {
|
||||
const cellProps = cell.getCellProps();
|
||||
|
||||
@@ -42,7 +43,7 @@ export const TableCell: FC<Props> = ({
|
||||
}
|
||||
|
||||
const link: LinkModel | undefined = field.getLinks?.({
|
||||
valueRowIndex: rowIndex,
|
||||
valueRowIndex: dataRowIndex,
|
||||
})[0];
|
||||
|
||||
let onClick: MouseEventHandler<HTMLAnchorElement> | undefined;
|
||||
|
||||
Reference in New Issue
Block a user