mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* feat: add tracking in query row button group * feat: add tracking for split view * feat: add tracking for query inspector tab open * feat: add tracking for shortened link button * feat: add tracking for change of datasource * feat: add tracking for time range options * refactor: clean up * refactor: repair tests * refactor: clean up * feat: add details to change of data source * refactor: remove duplicate tracking * refactor: make tracking reusable in an easier way * refactor: add property * refactor: change data for time picker * refactor: change tracking label for time picker Co-authored-by: Ivan Ortega Alba <ivanortegaalba@gmail.com> * refactor: store tracking in explore component * refactor: add index signature * refactor: remove ? * refactor: split into 3 callbacks * refactor: apply suggestions from code review Co-authored-by: Piotr Jamróz <pm.jamroz@gmail.com> Co-authored-by: Ivan Ortega Alba <ivanortegaalba@gmail.com> Co-authored-by: Piotr Jamróz <pm.jamroz@gmail.com>
106 lines
3.0 KiB
TypeScript
106 lines
3.0 KiB
TypeScript
import React, { useEffect } from 'react';
|
|
import { connect, ConnectedProps } from 'react-redux';
|
|
|
|
import { CoreApp, TimeZone } from '@grafana/data';
|
|
import { reportInteraction } from '@grafana/runtime/src';
|
|
import { TabbedContainer, TabConfig } from '@grafana/ui';
|
|
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 { StoreState, ExploreItemState, ExploreId } from 'app/types';
|
|
|
|
import { runQueries } from './state/query';
|
|
|
|
interface DispatchProps {
|
|
width: number;
|
|
exploreId: ExploreId;
|
|
timeZone: TimeZone;
|
|
onClose: () => void;
|
|
}
|
|
|
|
type Props = DispatchProps & ConnectedProps<typeof connector>;
|
|
|
|
export function ExploreQueryInspector(props: Props) {
|
|
const { loading, width, onClose, queryResponse, timeZone } = props;
|
|
const dataFrames = queryResponse?.series || [];
|
|
const error = 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 as TimeZone} />,
|
|
};
|
|
|
|
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}
|
|
isLoading={loading}
|
|
options={{ withTransforms: false, withFieldConfig: false }}
|
|
timeZone={timeZone}
|
|
app={CoreApp.Explore}
|
|
/>
|
|
),
|
|
};
|
|
|
|
const queryTab: TabConfig = {
|
|
label: 'Query',
|
|
value: 'query',
|
|
icon: 'info-circle',
|
|
content: <QueryInspector data={dataFrames} onRefreshQuery={() => props.runQueries(props.exploreId)} />,
|
|
};
|
|
|
|
const tabs = [statsTab, queryTab, jsonTab, dataTab];
|
|
if (error) {
|
|
const errorTab: TabConfig = {
|
|
label: 'Error',
|
|
value: 'error',
|
|
icon: 'exclamation-triangle',
|
|
content: <InspectErrorTab error={error} />,
|
|
};
|
|
tabs.push(errorTab);
|
|
}
|
|
return (
|
|
<ExploreDrawer width={width}>
|
|
<TabbedContainer tabs={tabs} onClose={onClose} closeIconTooltip="Close query inspector" />
|
|
</ExploreDrawer>
|
|
);
|
|
}
|
|
|
|
function mapStateToProps(state: StoreState, { exploreId }: { exploreId: ExploreId }) {
|
|
const explore = state.explore;
|
|
const item: ExploreItemState = explore[exploreId]!;
|
|
const { loading, queryResponse } = item;
|
|
|
|
return {
|
|
loading,
|
|
queryResponse,
|
|
};
|
|
}
|
|
|
|
const mapDispatchToProps = {
|
|
runQueries,
|
|
};
|
|
|
|
const connector = connect(mapStateToProps, mapDispatchToProps);
|
|
|
|
export default connector(ExploreQueryInspector);
|