import React, { PureComponent } from 'react'; import { connect, ConnectedProps } from 'react-redux'; import { ValueLinkConfig, applyFieldOverrides, TimeZone, SplitOpen, DataFrame } from '@grafana/data'; import { Collapse, Table, AdHocFilterItem } from '@grafana/ui'; import { config } from 'app/core/config'; import { PANEL_BORDER } from 'app/core/constants'; import { StoreState } from 'app/types'; import { ExploreId, ExploreItemState } from 'app/types/explore'; import { MetaInfoText } from './MetaInfoText'; import { getFieldLinksForExplore } from './utils/links'; interface TableContainerProps { ariaLabel?: string; exploreId: ExploreId; width: number; timeZone: TimeZone; onCellFilterAdded?: (filter: AdHocFilterItem) => void; splitOpenFn: SplitOpen; } function mapStateToProps(state: StoreState, { exploreId }: TableContainerProps) { const explore = state.explore; // @ts-ignore const item: ExploreItemState = explore[exploreId]; const { loading: loadingInState, tableResult, range } = item; const loading = tableResult && tableResult.length > 0 ? false : loadingInState; return { loading, tableResult, range }; } const connector = connect(mapStateToProps, {}); type Props = TableContainerProps & ConnectedProps; export class TableContainer extends PureComponent { getMainFrame(frames: DataFrame[] | null) { return frames?.find((df) => df.meta?.custom?.parentRowIndex === undefined) || frames?.[0]; } getTableHeight() { const { tableResult } = this.props; const mainFrame = this.getMainFrame(tableResult); if (!mainFrame || mainFrame.length === 0) { return 200; } // tries to estimate table height return Math.max(Math.min(600, mainFrame.length * 35) + 35); } render() { const { loading, onCellFilterAdded, tableResult, width, splitOpenFn, range, ariaLabel, timeZone } = this.props; const height = this.getTableHeight(); const tableWidth = width - config.theme.panelPadding * 2 - PANEL_BORDER; let dataFrames = tableResult; if (dataFrames?.length) { dataFrames = applyFieldOverrides({ data: dataFrames, timeZone, theme: config.theme2, replaceVariables: (v: string) => v, fieldConfig: { defaults: {}, overrides: [], }, }); // Bit of code smell here. We need to add links here to the frame modifying the frame on every render. // Should work fine in essence but still not the ideal way to pass props. In logs container we do this // differently and sidestep this getLinks API on a dataframe for (const frame of dataFrames) { for (const field of frame.fields) { field.getLinks = (config: ValueLinkConfig) => { return getFieldLinksForExplore({ field, rowIndex: config.valueRowIndex!, splitOpenFn, range, dataFrame: frame!, }); }; } } } const mainFrame = this.getMainFrame(dataFrames); const subFrames = dataFrames?.filter((df) => df.meta?.custom?.parentRowIndex !== undefined); return ( {mainFrame?.length ? ( ) : ( )} ); } } export default connector(TableContainer);