mirror of
				https://github.com/grafana/grafana.git
				synced 2025-02-25 18:55:37 -06:00 
			
		
		
		
	* send instance ID to query inspector, ensure requestId match before updating data * Extract logic for mixed request ID, use in Explore prefix when appropriate * Change query inspector to get passed request ID * Fix test
		
			
				
	
	
		
			127 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			127 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import React, { useEffect, useState } from 'react';
 | |
| import { connect, ConnectedProps } from 'react-redux';
 | |
| 
 | |
| import { CoreApp, LoadingState } from '@grafana/data';
 | |
| import { reportInteraction } from '@grafana/runtime/src';
 | |
| import { defaultTimeZone, TimeZone } from '@grafana/schema';
 | |
| import { TabbedContainer, TabConfig } from '@grafana/ui';
 | |
| import { requestIdGenerator } from 'app/core/utils/explore';
 | |
| import { ExploreDrawer } from 'app/features/explore/ExploreDrawer';
 | |
| import { InspectDataTab } from 'app/features/inspector/InspectDataTab';
 | |
| import { InspectErrorTab } from 'app/features/inspector/InspectErrorTab';
 | |
| import { InspectJSONTab } from 'app/features/inspector/InspectJSONTab';
 | |
| import { InspectStatsTab } from 'app/features/inspector/InspectStatsTab';
 | |
| import { QueryInspector } from 'app/features/inspector/QueryInspector';
 | |
| import { mixedRequestId } from 'app/plugins/datasource/mixed/MixedDataSource';
 | |
| import { StoreState, ExploreItemState } from 'app/types';
 | |
| 
 | |
| import { GetDataOptions } from '../query/state/PanelQueryRunner';
 | |
| 
 | |
| import { runQueries } from './state/query';
 | |
| 
 | |
| interface DispatchProps {
 | |
|   width: number;
 | |
|   exploreId: string;
 | |
|   timeZone: TimeZone;
 | |
|   onClose: () => void;
 | |
|   isMixed: boolean;
 | |
| }
 | |
| 
 | |
| type Props = DispatchProps & ConnectedProps<typeof connector>;
 | |
| 
 | |
| export function ExploreQueryInspector(props: Props) {
 | |
|   const { width, onClose, queryResponse, timeZone, isMixed, exploreId } = props;
 | |
|   const [dataOptions, setDataOptions] = useState<GetDataOptions>({
 | |
|     withTransforms: false,
 | |
|     withFieldConfig: true,
 | |
|   });
 | |
|   const dataFrames = queryResponse?.series || [];
 | |
|   let errors = queryResponse?.errors;
 | |
|   if (!errors?.length && queryResponse?.error) {
 | |
|     errors = [queryResponse.error];
 | |
|   }
 | |
| 
 | |
|   useEffect(() => {
 | |
|     reportInteraction('grafana_explore_query_inspector_opened');
 | |
|   }, []);
 | |
| 
 | |
|   const statsTab: TabConfig = {
 | |
|     label: 'Stats',
 | |
|     value: 'stats',
 | |
|     icon: 'chart-line',
 | |
|     content: <InspectStatsTab data={queryResponse!} timeZone={queryResponse?.request?.timezone ?? defaultTimeZone} />,
 | |
|   };
 | |
| 
 | |
|   const jsonTab: TabConfig = {
 | |
|     label: 'JSON',
 | |
|     value: 'json',
 | |
|     icon: 'brackets-curly',
 | |
|     content: <InspectJSONTab data={queryResponse} onClose={onClose} />,
 | |
|   };
 | |
| 
 | |
|   const dataTab: TabConfig = {
 | |
|     label: 'Data',
 | |
|     value: 'data',
 | |
|     icon: 'database',
 | |
|     content: (
 | |
|       <InspectDataTab
 | |
|         data={dataFrames}
 | |
|         dataName={'Explore'}
 | |
|         isLoading={queryResponse.state === LoadingState.Loading}
 | |
|         options={dataOptions}
 | |
|         timeZone={timeZone}
 | |
|         app={CoreApp.Explore}
 | |
|         formattedDataDescription="Matches the format in the panel"
 | |
|         onOptionsChange={setDataOptions}
 | |
|       />
 | |
|     ),
 | |
|   };
 | |
| 
 | |
|   const queryTab: TabConfig = {
 | |
|     label: 'Query',
 | |
|     value: 'query',
 | |
|     icon: 'info-circle',
 | |
|     content: (
 | |
|       <QueryInspector
 | |
|         instanceId={isMixed ? mixedRequestId(0, requestIdGenerator(exploreId)) : requestIdGenerator(exploreId)}
 | |
|         data={queryResponse}
 | |
|         onRefreshQuery={() => props.runQueries({ exploreId })}
 | |
|       />
 | |
|     ),
 | |
|   };
 | |
| 
 | |
|   const tabs = [statsTab, queryTab, jsonTab, dataTab];
 | |
|   if (errors?.length) {
 | |
|     const errorTab: TabConfig = {
 | |
|       label: 'Error',
 | |
|       value: 'error',
 | |
|       icon: 'exclamation-triangle',
 | |
|       content: <InspectErrorTab errors={errors} />,
 | |
|     };
 | |
|     tabs.push(errorTab);
 | |
|   }
 | |
|   return (
 | |
|     <ExploreDrawer width={width}>
 | |
|       <TabbedContainer tabs={tabs} onClose={onClose} closeIconTooltip="Close query inspector" />
 | |
|     </ExploreDrawer>
 | |
|   );
 | |
| }
 | |
| 
 | |
| function mapStateToProps(state: StoreState, { exploreId }: { exploreId: string }) {
 | |
|   const explore = state.explore;
 | |
|   const item: ExploreItemState = explore.panes[exploreId]!;
 | |
|   const { queryResponse } = item;
 | |
| 
 | |
|   return {
 | |
|     queryResponse,
 | |
|   };
 | |
| }
 | |
| 
 | |
| const mapDispatchToProps = {
 | |
|   runQueries,
 | |
| };
 | |
| 
 | |
| const connector = connect(mapStateToProps, mapDispatchToProps);
 | |
| 
 | |
| export default connector(ExploreQueryInspector);
 |