mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Implement react-beautiful-dnd to facilitate column reordering * Refactoring field display components * Refactoring internal types to better align with Grafana style guide --------- Co-authored-by: Sven Grossmann <sven.grossmann@grafana.com>
85 lines
2.6 KiB
TypeScript
85 lines
2.6 KiB
TypeScript
import { css } from '@emotion/css';
|
|
import React from 'react';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data/src';
|
|
import { useTheme2 } from '@grafana/ui/src';
|
|
|
|
import { LogsTableActiveFields } from './LogsTableActiveFields';
|
|
import { LogsTableAvailableFields } from './LogsTableAvailableFields';
|
|
import { FieldNameMeta } from './LogsTableWrap';
|
|
|
|
function getStyles(theme: GrafanaTheme2) {
|
|
return {
|
|
sidebarWrap: css({
|
|
overflowY: 'scroll',
|
|
height: 'calc(100% - 50px)',
|
|
/* Hide scrollbar for Chrome, Safari, and Opera */
|
|
'&::-webkit-scrollbar': {
|
|
display: 'none',
|
|
},
|
|
/* Hide scrollbar for Firefox */
|
|
scrollbarWidth: 'none',
|
|
}),
|
|
columnHeaderButton: css({
|
|
appearance: 'none',
|
|
background: 'none',
|
|
border: 'none',
|
|
fontSize: theme.typography.pxToRem(11),
|
|
}),
|
|
columnHeader: css({
|
|
display: 'flex',
|
|
justifyContent: 'space-between',
|
|
fontSize: theme.typography.h6.fontSize,
|
|
background: theme.colors.background.secondary,
|
|
position: 'sticky',
|
|
top: 0,
|
|
left: 0,
|
|
paddingTop: theme.spacing(0.75),
|
|
paddingRight: theme.spacing(0.75),
|
|
paddingBottom: theme.spacing(0.75),
|
|
paddingLeft: theme.spacing(1.5),
|
|
zIndex: 3,
|
|
marginBottom: theme.spacing(2),
|
|
}),
|
|
};
|
|
}
|
|
|
|
export const LogsTableMultiSelect = (props: {
|
|
toggleColumn: (columnName: string) => void;
|
|
filteredColumnsWithMeta: Record<string, FieldNameMeta> | undefined;
|
|
columnsWithMeta: Record<string, FieldNameMeta>;
|
|
clear: () => void;
|
|
reorderColumn: (oldIndex: number, newIndex: number) => void;
|
|
}) => {
|
|
const theme = useTheme2();
|
|
const styles = getStyles(theme);
|
|
|
|
return (
|
|
<div className={styles.sidebarWrap}>
|
|
{/* Sidebar columns */}
|
|
<>
|
|
<div className={styles.columnHeader}>
|
|
Selected fields
|
|
<button onClick={props.clear} className={styles.columnHeaderButton}>
|
|
Reset
|
|
</button>
|
|
</div>
|
|
<LogsTableActiveFields
|
|
reorderColumn={props.reorderColumn}
|
|
toggleColumn={props.toggleColumn}
|
|
labels={props.filteredColumnsWithMeta ?? props.columnsWithMeta}
|
|
valueFilter={(value) => props.columnsWithMeta[value]?.active ?? false}
|
|
id={'selected-fields'}
|
|
/>
|
|
|
|
<div className={styles.columnHeader}>Fields</div>
|
|
<LogsTableAvailableFields
|
|
toggleColumn={props.toggleColumn}
|
|
labels={props.filteredColumnsWithMeta ?? props.columnsWithMeta}
|
|
valueFilter={(value) => !props.columnsWithMeta[value]?.active}
|
|
/>
|
|
</>
|
|
</div>
|
|
);
|
|
};
|